/*
@File: Adma Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

 
/*================================================
Default Style
=================================================*/

@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,800;1,900&amp;family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&amp;display=swap");

section {
  scroll-snap-align: start;
  /* height: 100vh; */
}

:root {
  --heading-font-family: sans-serif;
  --body-font-family: "Poppins", sans-serif;
  --fontSize: 16px;
  --primaryColor: #fe0003;
  --secenderyColor: #ffc333;
  --whiteColor: #ffffff;
  --blackColor: rgb(0, 30, 67);
  --paragraphColor: #555;
  --transition: 0.5s;
  --brand-color: #fe0003;
  --brand-secondary: #cf0003;
  --brand-lite-red: #ff00005c;
  --brand-yellow-secondary: #fcce09;
  --brand-yellow: #ffcb0b;
}

body {
  margin: 0;
  padding: 0;
  color: var(--paragraphColor);
  font-weight: 400;
  font-size: var(--fontSize);
  font-family: var(--body-font-family);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  color: var(--blackColor);
  font-family: var(--heading-font-family);
}

a {
  transition: var(--transition);
  color: var(--blackColor);
  outline: 0 !important;
}

a:hover {
  color: var(--primaryColor);
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--paragraphColor);
  font-family: var(--body-font-family);
}

p:last-child {
  margin-bottom: 0;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--primaryColor) !important;
}

.ptb-100 {
  padding-top: 110px;
  padding-bottom: 110px;
}

.pt-100 {
  padding-top: 110px;
}

.pb-100 {
  padding-bottom: 110px;
}

.pt-75 {
  padding-top: 85px;
}

.pb-75 {
  padding-bottom: 85px;
}

/*=========================================
Default Btn
===========================================*/
.default-btn {
  padding: 15px 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor) !important;
  background-color: var(--primaryColor);
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 700;
}

.default-btn i {
  line-height: 0;
  font-size: 25px;
  margin-left: 19px;
  position: relative;
}

.default-btn:hover {
  color: var(--blackColor) !important;
  background-color: var(--whiteColor);
}

.default-btn.style-2:hover {
  color: var(--whiteColor) !important;
  background-color: var(--blackColor);
}

.arrow-btn {
  margin-right: 40px;
  position: relative;
  display: inline-block;
  color: var(--secenderyColor);
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 0px;
  width: max-content;
  margin-left: auto;
}

.arrow-btn i {
  top: 2px;
  line-height: 0;
  right: -30px;
  font-size: 17px;
  margin-left: 15px;
  position: absolute;
}

.arrow-btn::before {
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: var(--secenderyColor);
}

.arrow-btn::after {
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: var(--whiteColor);
}

.arrow-btn:hover {
  color: var(--whiteColor);
}

.arrow-btn:hover::before {
  opacity: 0;
}

.arrow-btn:hover::after {
  width: 100%;
}

@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.2, 1.2);
  }

  100% {
    transform: scale(1, 1);
  }
}

@keyframes MOVE-BG {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(60px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.section-title h2 {
  font-size: 42px;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 400;
  font-family: "Canela Text Trial Regular";
  src: local("Canela Text Trial Regular"),
    url("CanelaText-Regular-Trial.woff") format("woff");
}

.title h2 {
  font-size: 42px;
  line-height: 1rem;
  margin-bottom: 40px;
  font-weight: 400;
  font-family: "Canela Text Trial Regular";
  src: local("Canela Text Trial Regular"),
    url("CanelaText-Regular-Trial.woff") format("woff");
}

/*================================================
Top Header Area Style
=================================================*/
.top-header-area {
  background-color: var(--brand-secondary);
  padding-top: 6px;
  padding-bottom: 6px;
}

.top-header-area .container-fluid {
  max-width: 1680px;
  padding-left: 30px;
  padding-right: 30px;
}

.top-header-area.style-2 {
  background-color: #002a5c;
}

.top-header-area.style-3 .container-fluid {
  max-width: 1520px;
  padding-left: 30px;
  padding-right: 30px;
}

.top-header-area.pages-style .container-fluid {
  max-width: 1480px;
  padding-left: 30px;
  padding-right: 30px;
}

.top-header-list ul li {
  margin-right: 13px;
  padding-right: 20px;
  position: relative;
}

.top-header-list ul li a {
  font-size: 13px;
  color: rgb(255, 255, 255);
}

.top-header-list ul li a i {
  top: 2px;
  font-size: 16px;
  margin-right: 7px;
  position: relative;
  color: var(--brand-yellow);
}

.top-header-list ul li a:hover {
  color: var(--brand-yellow);
}

.top-header-list ul li::before {
  top: 2px;
  right: 0;
  width: 1px;
  height: 17px;
  content: "";
  position: absolute;
  background-color: rgb(255, 255, 255);
}

.navbar .navbar-nav .contact-us .dropdown-menu {
  right: 0 !important;
  left: unset;
}

.top-header-list ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.top-header-list ul li:last-child::before {
  display: none;
}

.top-header-list ul li:last-child a i {
  top: -3px;
}

.top-header-list.style-2 ul li a i {
  color: var(--whiteColor);
}

.top-header-social-list ul li .pages-link li {
  margin-right: 6px;
  padding-right: 12px;
  position: relative;
}

.top-header-social-list ul li .pages-link li a {
  font-size: 13px;
  line-height: 1;
  color: rgb(255, 255, 255);
}

.top-header-social-list ul li .pages-link li a:hover {
  color: var(--brand-yellow);
}

.top-header-social-list ul li .pages-link li::before {
  top: 6px;
  right: 0;
  width: 1px;
  height: 15px;
  content: "";
  position: absolute;
  background-color: rgb(255, 255, 255);
}

.top-header-social-list ul li .pages-link li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.top-header-social-list ul li .pages-link li:last-child::before {
  display: none;
}

.top-header-social-list ul li .social-link {
  margin-left: 18px;
}

.top-header-social-list ul li .social-link li {
  margin-right: 4px;
}

.top-header-social-list ul li .social-link li a {
  width: 26px;
  height: 26px;
  font-size: 12px;
  line-height: 26px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: rgb(143, 156, 172);
  background-color: rgba(255, 255, 255, 0.08);
}

.top-header-social-list ul li .social-link li a i {
  bottom: -2px;
  position: relative;
  color: white;
}

.top-header-social-list ul li .social-link li a:hover {
  color: var(--blackColor);
  background-color: var(--secenderyColor);
}

.top-header-social-list ul li .social-link li:last-child {
  margin-right: 0;
}

/*================================================
Navbar Area Style
=================================================*/
.navbar {
  z-index: 2;
  position: relative;
  background-color: var(--whiteColor);
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.05);
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar .container-fluid {
  max-width: 1680px;
  padding-left: 30px;
  padding-right: 30px;
}

.navbar .navbar-brand {
  font-size: inherit;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  margin-right: 10px;
}

.logo-sub-content p {
  font-size: 11px;
  line-height: unset;
  max-width: 280px;
  border-left: 1px solid rgb(194, 194, 194);
  padding-left: 10px;
}

.navbar ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.navbar .navbar-nav .nav-item {
  position: relative;
  margin: 0 12px;
}

.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  color: var(--blackColor);
  transition: var(--transition);
  font-weight: 500;
  font-size: 14px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--primaryColor);
}

.navbar .navbar-nav .nav-item .nav-link:hover::before,
.navbar .navbar-nav .nav-item .nav-link.active::before {
  color: var(--primaryColor);
}

.navbar .navbar-nav .nav-item .nav-link:hover.dropdown-toggle::after,
.navbar .navbar-nav .nav-item .nav-link.active.dropdown-toggle::after {
  opacity: 1;
  margin-top: 0;
  visibility: visible;
}

.navbar .navbar-nav .nav-item .dropdown-toggle {
  margin-right: 17px;
}

.navbar .navbar-nav .nav-item .dropdown-toggle::after {
  left: 0;
  bottom: 0;
  margin: 0;
  opacity: 0;
  content: "";
  height: 1px;
  width: 100%;
  border: none;
  display: block;
  position: absolute;
  background-image: none;
  transition: var(--transition);
  background-color: var(--blackColor);
}

.navbar .navbar-nav .nav-item .dropdown-toggle::before {
  color: rgb(10, 37, 65);
  transition: var(--transition);
  position: absolute;
  content: "\ea4d";
  line-height: 1;
  font-size: 18px;
  right: -23px;
  top: 1px;
  font-family: remixicon !important;
  font-style: normal;
}

.navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}

.navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
}

.navbar .navbar-nav .nav-item:hover .nav-link,
.navbar .navbar-nav .nav-item.active .nav-link {
  color: var(--primaryColor);
}

.navbar .navbar-nav .nav-item:hover .nav-link::before,
.navbar .navbar-nav .nav-item.active .nav-link::before {
  color: var(--primaryColor);
}

.navbar .navbar-nav .nav-item:hover .nav-link.dropdown-toggle::after,
.navbar .navbar-nav .nav-item.active .nav-link.dropdown-toggle::after {
  opacity: 1;
  margin-top: 0;
  visibility: visible;
}

.navbar .navbar-nav .nav-item .dropdown-menu {
  left: 0;
  top: 30px;
  opacity: 0;
  z-index: 99;
  border: none;
  width: 300px;
  margin-top: 0;
  display: block;
  padding: 12px 0;
  border-radius: 0;
  position: absolute;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  transform: translate3d(0, 18px, 0);
  background-color: var(--whiteColor);
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.05);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item {
  margin: 0;
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
  display: block;
  color: var(--blackColor);
  padding: 7px 25px;
  font-size: 14px;
  font-weight: 500;
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.active,
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--primaryColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.dropdown-toggle::before {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.dropdown-toggle::after {
  display: none;
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 100%;
  margin-top: 0;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--blackColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active,
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--primaryColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -100%;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--blackColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active,
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--primaryColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 100%;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--blackColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active,
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--primaryColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--secenderyColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--primaryColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--primaryColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--primaryColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.navbar .others-option .option-item .search-form .form-group {
  position: relative;
}

.navbar .others-option .option-item .search-form .form-group .form-control {
  height: 48px;
  padding-left: 20px;
  border-radius: unset;
  border: 1px solid #ebebeb;
  color: var(--paragraphColor);
}

.navbar .others-option .option-item .search-form .form-group .form-control::-moz-placeholder {
  font-size: 13px;
}

.navbar .others-option .option-item .search-form .form-group .form-control::placeholder {
  font-size: 13px;
}

.navbar .others-option .option-item .search-form .form-group button {
  top: 50%;
  right: 17px;
  border: unset;
  position: absolute;
  transform: translateY(-50%);
  color: var(--paragraphColor);
  background-color: transparent;
}

.navbar .others-option .option-item .responsive-icon a {
  width: 40px;
  height: 40px;
  font-size: 25px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.navbar .others-option .option-item .responsive-icon a:hover {
  background-color: var(--blackColor);
}

.navbar .navbar-toggler {
  color: var(--whiteColor);
  font-size: inherit;
  box-shadow: unset;
  border: none;
  padding: 0;
}

.navbar .navbar-toggler .burger-menu {
  cursor: pointer;
}

.navbar .navbar-toggler .burger-menu span {
  height: 3px;
  width: 30px;
  margin: 5px 0;
  display: block;
  background: var(--primaryColor);
}

.navbar.sticky {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  position: sticky;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar.style-2 .others-option .option-item .default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: var(--blackColor);
}

.navbar.style-3 {
  background-color: #002a5c;
}

.navbar.style-3 .navbar-nav {
  margin-left: 65px;
}

.navbar.style-3 .navbar-nav .nav-item .nav-link {
  color: var(--whiteColor);
}

.navbar.style-3 .navbar-nav .nav-item .nav-link:hover,
.navbar.style-3 .navbar-nav .nav-item .nav-link.active {
  color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item .nav-link:hover::before,
.navbar.style-3 .navbar-nav .nav-item .nav-link.active::before {
  color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-toggle {
  margin-right: 17px;
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-toggle::after {
  background-color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item:hover .nav-link,
.navbar.style-3 .navbar-nav .nav-item.active .nav-link {
  color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item:hover .nav-link::before,
.navbar.style-3 .navbar-nav .nav-item.active .nav-link::before {
  color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu {
  background-color: var(--blackColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item {
  margin: 0;
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--whiteColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.active,
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 100%;
  margin-top: 0;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--whiteColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active,
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--whiteColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active,
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--whiteColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active,
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--s);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.navbar.style-3 .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.navbar.style-3 .container-fluid {
  max-width: 1520px;
  padding-left: 30px;
  padding-right: 30px;
}

.navbar.style-3 .others-option .option-item .default-btn {
  color: var(--blackColor) !important;
  background-color: var(--secenderyColor);
}

.navbar.style-3 .others-option .option-item .default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: var(--primaryColor);
}

.navbar.pages-style .container-fluid {
  max-width: 1480px;
  padding-left: 30px;
  padding-right: 30px;
}

.navbar.pages-style .navbar-nav {
  margin-right: 50px;
}

.navbar.pages-style .others-option .option-item .default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: var(--blackColor);
}

/*================================================
Responsive Navbar
=================================================*/
.responsive-navbar {
  --bs-offcanvas-width: 420px;
  background-color: var(--blackColor);
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.05);
}

.responsive-navbar .offcanvas-header {
  padding: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.responsive-navbar .offcanvas-header .close-btn {
  transition: var(--transition);
  color: var(--whiteColor);
  font-size: 20px;
  cursor: pointer;
  top: 2px;
}

.responsive-navbar .offcanvas-header .close-btn:hover {
  color: var(--primaryColor);
}

.responsive-navbar .offcanvas-body {
  padding: 30px;
}

.responsive-navbar .offcanvas-body ul {
  list-style-type: none;
  margin-bottom: 0;
}

.responsive-navbar .offcanvas-body ul.responsive-menu {
  padding-left: 0;
  overflow: hidden;
}

.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  line-height: 55px;
  height: 55px;
  clear: both;
  width: 100%;
}

.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list:after {
  top: 50%;
  right: 0;
  content: "\ea4e";
  color: black;
  position: absolute;
  transform: translateY(-50%);
  transition: var(--transition);
  font-family: remixicon !important;
  font-style: normal;
}

.without-list a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  line-height: 50px;
}

.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list a {
  height: 100%;
  display: block;
  color: var(--whiteColor);
  padding-right: 40px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list a:hover,
.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list a.active {
  color: var(--secenderyColor);
}

.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list .responsive-menu-items {
  height: 0;
  overflow: hidden;
}

.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list .responsive-menu-items a {
  padding: 0 15px;
  font-size: 15px;
}

.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list .responsive-menu-items a:hover {
  color: var(--whiteColor);
}

.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list.without-icon:after {
  display: none;
}

.responsive-navbar .offcanvas-body ul.responsive-menu .active:after {
  transform: translateY(-50%) rotate(180deg);
}

.responsive-navbar .offcanvas-body ul.responsive-menu .active>.responsive-menu-items {
  transition: all 200ms;
  display: block;
  height: auto;
  clear: both;
  float: left;
  width: 100%;
  padding: 0;
}

.responsive-navbar .offcanvas-body ul.responsive-menu .active>.responsive-menu-items li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.responsive-navbar .offcanvas-body ul.responsive-menu .active>a {
  color: var(--whiteColor);
}

.responsive-navbar .offcanvas-body .others-option {
  margin-top: 50px;
}

.responsive-navbar .offcanvas-body .others-option .option-item .search-form .form-group {
  position: relative;
}

.responsive-navbar .offcanvas-body .others-option .option-item .search-form .form-group .form-control {
  height: 48px;
  padding-left: 20px;
  border-radius: unset;
  border: 1px solid #ebebeb;
  color: var(--paragraphColor);
}

.responsive-navbar .offcanvas-body .others-option .option-item .search-form .form-group .form-control::-moz-placeholder {
  font-size: 13px;
}

.responsive-navbar .offcanvas-body .others-option .option-item .search-form .form-group .form-control::placeholder {
  font-size: 13px;
}

.responsive-navbar .offcanvas-body .others-option .option-item .search-form .form-group button {
  top: 50%;
  right: 17px;
  border: unset;
  position: absolute;
  transform: translateY(-50%);
  color: var(--paragraphColor);
  background-color: transparent;
}

/*================================================
Search Modal Style
=================================================*/
.searchModal .modal-dialog {
  margin: 0;
  width: 100%;
  max-width: 100%;
  background-color: var(--blackColor);
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.05);
  padding-top: 30px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
}

.searchModal .modal-dialog .modal-content {
  border: 0;
  padding: 0;
  display: block;
  border-radius: 0;
  max-width: 720px;
  background-color: transparent;
  margin-left: auto;
  margin-right: auto;
}

.searchModal .modal-dialog .modal-content form {
  position: relative;
}

.searchModal .modal-dialog .modal-content form .input-search {
  height: 60px;
  font-size: 14px;
  border-radius: 6px;
  color: var(--whiteColor);
  border: 1px solid rgba(221, 213, 208, 0.55);
  padding-left: 20px;
  padding-right: 20px;
}

.searchModal .modal-dialog .modal-content form .input-search::-moz-placeholder {
  color: var(--secenderyColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}

.searchModal .modal-dialog .modal-content form .input-search::placeholder {
  color: var(--secenderyColor);
  transition: var(--transition);
}

.searchModal .modal-dialog .modal-content form .input-search:focus {
  outline: none;
  border-color: none;
  box-shadow: none;
}

.searchModal .modal-dialog .modal-content form .input-search:focus::-moz-placeholder {
  color: transparent;
}

.searchModal .modal-dialog .modal-content form .input-search:focus::placeholder {
  color: transparent;
}

.searchModal .modal-dialog .modal-content form button {
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 54px;
  border-radius: 3px;
  position: absolute;
  transition: var(--transition);
  background-color: var(--primaryColor);
  margin-top: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.searchModal .modal-dialog .modal-content form button svg {
  left: 0;
  right: 0;
  top: 50%;
  margin: auto;
  line-height: 1;
  font-size: 21px;
  position: absolute;
  transform: translateY(-50%);
  transition: var(--transition);
}

.searchModal .modal-dialog .modal-content form button svg g path {
  transition: var(--transition);
}

.searchModal .modal-dialog .modal-content form button:hover {
  color: var(--blackColor);
  background-color: var(--secenderyColor);
}

.searchModal .modal-dialog .modal-content form button:hover svg g path {
  fill: var(--blackColor);
}

.searchModal .modal-dialog .modal-content .btn-close {
  top: 7px;
  z-index: 2;
  opacity: 1;
  font-size: 30px;
  right: -50px;
  cursor: pointer;
  box-shadow: unset;
  background: unset;
  position: absolute;
  color: var(--whiteColor);
  transition: var(--transition);
}

.searchModal .modal-dialog .modal-content .btn-close:hover {
  color: var(--primaryColor);
}

/*================================================
Hero Area Style
=================================================*/

/* .hero-area {
  z-index: 1;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/bg/bg-1.jpg);
  padding-top: 190px;
  padding-bottom: 225px;
} */

.hero-area {
  /* z-index: -1; */
  position: relative;
  /* padding-top: 190px;
  padding-bottom: 225px; */
  overflow: hidden;
}

.bg-video {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0%;
  min-width: 100%;
  min-height: 100%;
  /* object-fit: cover; */
  z-index: 0;
}

.hero-content {
  height: 600px;
}

.hero-area .container-fluid {
  max-width: 1680px;
  padding-left: 30px;
  padding-right: 30px;
}

.hero-area::after {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  z-index: -1;
  position: absolute;
  background: linear-gradient(90deg, rgb(2 40 86) 31.2%, rgb(2 40 86) 65.89%);
}

.hero-content {
  /* max-width: 835px; */
}

.hero-content .title {
  margin-bottom: 45px;
}

.hero-content .title h1 {
  font-size: 90px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--whiteColor);
}

.hero-content .title p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-content .hero-btn li {
  margin-right: 30px;
}

.hero-content .hero-btn li:last-child {
  margin-right: 0;
}

.hero-reviews {
  right: 150px;
  bottom: 70px;
  max-width: 442px;
  padding: 30px 35px;
  position: absolute;
  background-color: var(--secenderyColor);
}

.hero-reviews .everything {
  color: #5b5952;
  font-weight: 500;
  margin-bottom: 26px;
  font-size: 16px;
  font-style: italic;
}

.hero-reviews .user .image {
  flex: 0 0 auto;
  display: block;
  margin-right: 13px;
}

.hero-reviews .user .image img {
  width: 48px;
  height: 48px;
  border-radius: 100%;
}

.hero-reviews .user .content h6 {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
}

.hero-reviews .user .content span {
  font-size: 14px;
  color: rgba(85, 85, 85, 0.8);
}

.hero-reviews .quote-icon {
  font-size: 22px;
  color: var(--blackColor);
}

.banner-area {
  z-index: 1;
  position: relative;
  padding-top: 225px;
  padding-bottom: 70px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/bg/bg-2.jpg);
}

.banner-area .container-fluid {
  max-width: 1680px;
  padding-left: 30px;
  padding-right: 30px;
}

.banner-content {
  max-width: 727px;
  margin-bottom: 200px;
}

.banner-content .title {
  margin-bottom: 45px;
}

.banner-content .title p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  font-weight: 500;
}

.banner-content .title p span {
  color: var(--secenderyColor);
}

.banner-content .title h1 {
  font-size: 80px;
  line-height: 1.3;
  color: var(--whiteColor);
}

.banner-content .title h1 span {
  position: relative;
  display: inline-block;
  color: var(--secenderyColor);
}

.banner-content .title h1 span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: var(--secenderyColor);
}

.banner-content ul li {
  margin-right: 25px;
}

.banner-content ul li .play-btn li {
  margin-right: 15px;
}

.banner-content ul li .play-btn li .icon {
  width: 56px;
  height: 56px;
  font-size: 30px;
  line-height: 56px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  background-color: var(--whiteColor);
}

.banner-content ul li .play-btn li .icon i {
  top: 1px;
  left: 2px;
  position: relative;
}

.banner-content ul li .play-btn li .icon:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.banner-content ul li .play-btn li .arrow-btn {
  color: var(--whiteColor);
}

.banner-content ul li .play-btn li .arrow-btn::before {
  background-color: var(--whiteColor);
}

.banner-content ul li .play-btn li .arrow-btn:hover {
  color: var(--primaryColor);
}

.banner-content ul li .play-btn li .arrow-btn:hover::after {
  background-color: var(--primaryColor);
}

.banner-content ul li .play-btn li:last-child {
  margin-right: 0;
}

.banner-content ul li:last-child {
  margin-right: 0;
}

.banner-uesr-info {
  max-width: 1176px;
}

.banner-uesr-info .banner-uesr-item {
  padding: 30px;
  background-color: rgba(38, 16, 0, 0.67);
}

.banner-uesr-info .banner-uesr-item .icon {
  display: block;
  flex: 0 0 auto;
  font-size: 44px;
  margin-right: 20px;
  color: var(--secenderyColor);
}

.banner-uesr-info .banner-uesr-item .content .title {
  margin-bottom: 8px;
}

.banner-uesr-info .banner-uesr-item .content .title h2 {
  font-size: 18px;
  margin-right: 8px;
  color: var(--secenderyColor);
}

.banner-uesr-info .banner-uesr-item .content .title h3 {
  font-size: 18px;
  color: var(--whiteColor);
}

.banner-uesr-info .banner-uesr-item .content a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.57);
  font-family: var(--body-font-family);
  font-size: 14px;
  font-weight: 600;
}

.banner-uesr-info .banner-uesr-item .content a i {
  top: -2px;
  line-height: 0;
  font-size: 25px;
  margin-left: 15px;
  position: absolute;
}

.banner-uesr-info .banner-uesr-item .content a::after {
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: var(--primaryColor);
}

.banner-uesr-info .banner-uesr-item .content a:hover {
  color: var(--primaryColor);
}

.banner-uesr-info .banner-uesr-item .content a:hover::after {
  width: 100%;
}

.banner-uesr-info .banner-uesr-item:hover .content a {
  color: var(--primaryColor);
}

.banner-uesr-info .banner-uesr-item:hover .content a::after {
  width: 100%;
}

.banner-wrap-area {
  background-color: #faf7f2;
}

.banner-wrap-area .container-fluid {
  max-width: 1520px;
  padding-left: 30px;
  padding-right: 30px;
}

.banner-wrap-image {
  position: relative;
  margin-top: 50px;
  margin-right: -40px;
}

.banner-wrap-image .image-2 {
  top: 149px;
  left: 0;
  position: absolute;
}

.banner-wrap-image .image-2 img {
  animation: rotateme 15s linear infinite;
}

.banner-wrap-image .image-2 .middle-img {
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  position: absolute;
  transform: translateY(-50%);
}

.banner-wrap-image .image-2 .middle-img img {
  animation: unset;
}

.banner-wrap-content {
  max-width: 625px;
  margin-left: auto;
  position: relative;
}

.banner-wrap-content .title {
  margin-bottom: 35px;
}

.banner-wrap-content .title p {
  margin-bottom: 5px;
}

.banner-wrap-content .title p span {
  color: var(--primaryColor);
}

.banner-wrap-content .title h1 {
  font-size: 80px;
  line-height: 1.2;
  color: #002a5c;
  margin-bottom: 20px;
}

.banner-wrap-content .title h1 span {
  color: var(--secenderyColor);
  border-bottom: 4px solid var(--secenderyColor);
}

.banner-wrap-content .btn-list li {
  margin-right: 30px;
}

.banner-wrap-content .btn-list li .play-btn li {
  margin-right: 15px;
}

.banner-wrap-content .btn-list li .play-btn li .icon {
  width: 56px;
  height: 56px;
  font-size: 30px;
  line-height: 56px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  background-color: var(--secenderyColor);
}

.banner-wrap-content .btn-list li .play-btn li .icon i {
  top: 1px;
  left: 2px;
  position: relative;
}

.banner-wrap-content .btn-list li .play-btn li .icon:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.banner-wrap-content .btn-list li .play-btn li .arrow-btn {
  color: var(--blackColor);
}

.banner-wrap-content .btn-list li .play-btn li .arrow-btn::before {
  background-color: var(--blackColor);
}

.banner-wrap-content .btn-list li .play-btn li .arrow-btn:hover {
  color: var(--primaryColor);
}

.banner-wrap-content .btn-list li .play-btn li .arrow-btn:hover::after {
  background-color: var(--primaryColor);
}

.banner-wrap-content .btn-list li .play-btn li:last-child {
  margin-right: 0;
}

.banner-wrap-content .btn-list li:last-child {
  margin-right: 0;
}

.banner-wrap-content .user-list {
  margin-top: 70px;
}

.banner-wrap-content .user-list li {
  margin-right: 15px;
}

.banner-wrap-content .user-list li .image li {
  margin-right: -15px;
}

.banner-wrap-content .user-list li .image li img {
  width: 54px;
  height: 54px;
  border-radius: 100%;
  border: 3px solid var(--whiteColor);
}

.banner-wrap-content .user-list li .image li:last-child {
  margin-right: 0;
}

.banner-wrap-content .user-list li h2 {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 5px;
}

.banner-wrap-content .user-list li p {
  font-size: 14px;
}

.banner-wrap-content .content-shape {
  top: -20px;
  right: 70px;
  position: absolute;
}

.banner-wrap-content .content-shape::before {
  left: 0;
  right: 0;
  top: 50%;
  content: "";
  width: 10px;
  height: 10px;
  margin: auto;
  border-radius: 100%;
  position: absolute;
  text-align: center;
  transform: translateY(-50%);
  background-color: var(--primaryColor);
}

.banner-wrap-content .content-shape img {
  animation: rotateme 15s linear infinite;
}

/*================================================
About Area Style
=================================================*/
.about-image {
  margin-bottom: 25px;
}

.about-content {
  margin-left: 70px;
  margin-bottom: 25px;
  margin-right: -10px;
}

.about-content .title {
  margin-bottom: 30px;
}

.about-content .title h2 {
  font-size: 42px;
  line-height: normal;
  margin-bottom: 30px;
}

.about-content .title h2 img {
  margin-right: 10px;
  margin-top: 5px;
}

.about-content .arrow-btn {
  color: var(--primaryColor);
}

.about-content .arrow-btn::before {
  background-color: var(--primaryColor);
}

.about-content .arrow-btn:hover {
  color: var(--blackColor);
}

.about-content .arrow-btn:hover::after {
  background-color: var(--blackColor);
}

/*================================================
Graduets Area Style
=================================================*/
.graduets-tab-info .nav {
  margin-bottom: 45px;
}

.graduets-tab-info .nav .nav-item {
  margin-right: 20px;
}

.graduets-tab-info .nav .nav-item .nav-link {
  padding: 0;
  font-weight: 700;
  position: relative;
  color: var(--paragraphColor);
  background-color: transparent;
  font-family: var(--heading-font-family);
}

.graduets-tab-info .nav .nav-item .nav-link::before {
  left: 0;
  width: 0;
  bottom: 0;
  height: 1px;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: var(--primaryColor);
}

.graduets-tab-info .nav .nav-item .nav-link:hover {
  color: var(--primaryColor);
}

.graduets-tab-info .nav .nav-item .nav-link:hover::before {
  width: 100%;
}

.graduets-tab-info .nav .nav-item .nav-link.active {
  color: var(--primaryColor);
}

.graduets-tab-info .nav .nav-item .nav-link.active::before {
  width: 100%;
}

.graduets-tab-info .nav .nav-item:last-child {
  margin-right: 0;
}

.graduets-content {
  margin-right: 25px;
  margin-bottom: 25px;
}

.graduets-content .graduets-card {
  padding: 30px;
  margin-bottom: 25px;
  background-color: #f6f6f6;
  transition: var(--transition);
}

.graduets-content .graduets-card .image {
  flex: 0 0 auto;
  display: block;
  margin-right: 25px;
}

.graduets-content .graduets-card .image img {
  width: 148px;
  height: 145px;
}

.graduets-content .graduets-card .content h6 {
  font-size: 18px;
  margin-bottom: 9px;
  transition: var(--transition);
}

.graduets-content .graduets-card .content p {
  transition: var(--transition);
}

.graduets-content .graduets-card .content .arrow-btn {
  color: var(--primaryColor);
}

.graduets-content .graduets-card .content .arrow-btn::before {
  background-color: var(--primaryColor);
}

.graduets-content .graduets-card .content .arrow-btn:hover {
  color: var(--whiteColor);
}

.graduets-content .graduets-card:hover {
  background-color: var(--blackColor);
}

.graduets-content .graduets-card:hover .content h6 {
  color: var(--whiteColor);
}

.graduets-content .graduets-card:hover .content p {
  color: rgba(255, 255, 255, 0.75);
}

.graduets-image {
  margin-bottom: 25px;
}

.graduets-image .image {
  margin-bottom: 50px;
}

.graduets-image .graduets-counter h2 {
  line-height: 0;
  font-size: 60px;
  margin-bottom: 15px;
}

.graduets-image .graduets-counter h2 img {
  margin-right: 10px;
}

.graduets-image .graduets-counter p {
  color: var(--blackColor);
}

.graduets-image .graduets-btn .arrow-btn {
  font-weight: 700;
  color: var(--blackColor);
}

.graduets-image .graduets-btn .arrow-btn::before {
  background-color: var(--blackColor);
}

.graduets-image .graduets-btn .arrow-btn:hover {
  color: var(--primaryColor);
}

.graduets-image .graduets-btn .arrow-btn:hover::after {
  background-color: var(--primaryColor);
}

.single-graduates-card {
  height: 100%;
  padding: 50px 40px;
  margin-bottom: 25px;
  background-color: #002a5c;
}

.single-graduates-card h3 {
  font-size: 18px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  color: var(--whiteColor);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.single-graduates-card h3 i {
  font-size: 40px;
  line-height: 0;
  margin-right: 10px;
  color: var(--secenderyColor);
}

.single-graduates-card p {
  padding-bottom: 15px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.single-graduates-card .list li {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-bottom: 15px;
}

.single-graduates-card .list li a {
  font-weight: 800;
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.81);
  font-family: var(--heading-font-family);
}

.single-graduates-card .list li a i {
  font-size: 25px;
  line-height: 0;
  color: var(--secenderyColor);
  transition: var(--transition);
}

.single-graduates-card .list li a::before {
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 100%;
  position: absolute;
  transform: translateY(-50%);
  background-color: var(--secenderyColor);
}

.single-graduates-card .list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: unset;
}

.single-graduates-card .list li:hover a {
  color: var(--primaryColor);
}

.single-graduates-card .list li:hover a i {
  color: var(--primaryColor);
}

.single-graduates-card span {
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.75);
}

.single-graduates-card span i {
  font-size: 20px;
  line-height: 0;
  margin-right: 10px;
  color: var(--secenderyColor);
}

.col-lg-4:nth-child(2) .single-graduates-card {
  background-color: var(--secenderyColor);
}

.col-lg-4:nth-child(2) .single-graduates-card h3 {
  color: var(--blackColor);
  border-color: rgba(255, 255, 255, 0.22);
}

.col-lg-4:nth-child(2) .single-graduates-card h3 i {
  color: var(--primaryColor);
}

.col-lg-4:nth-child(2) .single-graduates-card p {
  color: #5b5952;
  border-color: rgba(255, 255, 255, 0.22);
}

.col-lg-4:nth-child(2) .single-graduates-card .list li {
  border-color: rgba(255, 255, 255, 0.22);
}

.col-lg-4:nth-child(2) .single-graduates-card .list li a {
  color: var(--blackColor);
}

.col-lg-4:nth-child(2) .single-graduates-card .list li a i {
  color: var(--primaryColor);
}

.col-lg-4:nth-child(2) .single-graduates-card .list li a::before {
  background-color: var(--primaryColor);
}

.col-lg-4:nth-child(2) .single-graduates-card .list li a:hover {
  color: var(--primaryColor);
}

.col-lg-4:nth-child(2) .single-graduates-card span {
  color: #5b5952;
}

.col-lg-4:nth-child(2) .single-graduates-card span i {
  color: var(--primaryColor);
}

.col-lg-4:nth-child(3) .single-graduates-card {
  background-color: var(--blackColor);
}

.col-lg-4:nth-child(3) .single-graduates-card h3 {
  border-color: rgba(255, 255, 255, 0.07);
}

.col-lg-4:nth-child(3) .single-graduates-card h3 i {
  color: var(--primaryColor);
}

.col-lg-4:nth-child(3) .single-graduates-card p {
  border-color: rgba(255, 255, 255, 0.07);
}

.col-lg-4:nth-child(3) .single-graduates-card .list li {
  border-color: rgba(255, 255, 255, 0.07);
}

/*================================================
Funfact Area Style
=================================================*/
.single-funfact-info {
  padding: 20px 50px;
  /* margin-bottom: 25px; */
}

.single-funfact-info h2 {
  /* line-height: 0; */
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--whiteColor);
}

.single-funfact-info h2 i {
  font-size: 30px;
  line-height: 0;
  color: #ffffff;
  margin-right: 10px;
}

.single-funfact-info p {
  color: rgba(255, 255, 255, 0.7);
}

.single-funfact-info .arrow-btn {
  color: var(--primaryColor);
}

.single-funfact-info .arrow-btn::before {
  background-color: var(--primaryColor);
}

.single-funfact-info .arrow-btn:hover {
  color: var(--whiteColor);
}

.col-lg-4:nth-child(2) .single-funfact-info {
  background-color: var(--secenderyColor);
}

.col-lg-4:nth-child(2) .single-funfact-info h2 {
  color: var(--blackColor);
}

.col-lg-4:nth-child(2) .single-funfact-info h2 i {
  color: var(--blackColor);
}

.col-lg-4:nth-child(2) .single-funfact-info p {
  color: var(--blackColor);
}

.col-lg-4:nth-child(3) .single-funfact-info {
  background-color: var(--blackColor);
}

/*================================================
Apply Area Style
=================================================*/
.apply-area {
  background-color: #f6f6f6;
}

.apply-area.style-2 {
  background-color: var(--whiteColor);
}

.apply-image {
  position: relative;
  margin-left: -50px;
  margin-right: 50px;
  margin-bottom: 25px;
}

.apply-image .image img {
  border-radius: 100%;
}

.apply-image .user-help {
  top: 150px;
  right: -15px;
  padding: 15px 22px;
  position: absolute;
  background-color: var(--secenderyColor);
}

.apply-image .user-help .icon {
  font-size: 30px;
  flex: 0 0 auto;
  display: block;
  margin-right: 15px;
}

.apply-image .user-help .content span {
  display: block;
  margin-bottom: 2px;
  font-weight: 500;
  color: #5b5952;
}

.apply-image .user-help .content a {
  color: var(--blackColor);
  font-family: var(--heading-font-family);
  font-size: 18px;
  font-weight: 800;
}

.apply-image .user-help .content a:hover {
  color: var(--primaryColor);
}

.apply-image.style-2 {
  margin-left: 50px;
  margin-right: 0;
}

.apply-image.style-2 .image img {
  border-radius: unset;
}

.apply-image.style-2 .user-help {
  left: 0;
  top: 239px;
  right: auto;
}

.apply-image.style-2 .user-image {
  left: 0;
  bottom: 60px;
  position: absolute;
}

.apply-image.style-2 .user-image img {
  width: 166px;
  height: 156.922px;
}

.apply-content {
  margin-left: 10px;
  margin-bottom: 25px;
}

.apply-content .title {
  margin-bottom: 40px;
}

.apply-content .title h2 {
  font-size: 42px;
}

.apply-content .apply-content-card {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
}

.apply-content .apply-content-card .icon {
  flex: 0 0 auto;
  font-size: 35px;
  margin-right: 20px;
  color: var(--primaryColor);
}

.apply-content .apply-content-card .content h3 {
  font-size: 18px;
  margin-bottom: 17px;
}

.apply-content .apply-content-card .content h3 span {
  margin-right: 4px;
  color: var(--primaryColor);
}

.apply-content .apply-content-card:first-child {
  margin-top: 0;
}

.apply-content .apply-btn {
  margin-top: 20px;
}

.apply-content .apply-btn li {
  margin-right: 30px;
}

.apply-content .apply-btn li .play-btn li {
  margin-right: 15px;
}

.apply-content .apply-btn li .play-btn li .icon {
  width: 56px;
  height: 56px;
  font-size: 30px;
  line-height: 56px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  background-color: var(--secenderyColor);
}

.apply-content .apply-btn li .play-btn li .icon i {
  top: 1px;
  left: 2px;
  position: relative;
}

.apply-content .apply-btn li .play-btn li .icon:hover {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

.apply-content .apply-btn li .play-btn li .arrow-btn {
  color: var(--blackColor);
}

.apply-content .apply-btn li .play-btn li .arrow-btn::before {
  background-color: var(--blackColor);
}

.apply-content .apply-btn li .play-btn li .arrow-btn:hover {
  color: var(--primaryColor);
}

.apply-content .apply-btn li .play-btn li .arrow-btn:hover::after {
  background-color: var(--primaryColor);
}

.apply-content .apply-btn li .play-btn li:last-child {
  margin-right: 0;
}

.apply-content .apply-btn li:last-child {
  margin-right: 0;
}

.apply-content.style-2 {
  margin-left: 0;
  margin-right: 40px;
}

.apply-content.style-2 .title {
  margin-bottom: 40px;
}

.apply-content.style-2 .title h2 {
  margin-bottom: 25px;
}

.apply-content.style-2 .apply-content-card {
  margin-bottom: 30px;
  padding-bottom: 0;
  border-bottom: 0;
}

.apply-content.style-2 .apply-content-card .icon {
  width: 76px;
  height: 76px;
  margin-right: 25px;
  line-height: 88px;
  border-radius: 100%;
  text-align: center;
  display: inline-block;
  background-color: #ffebed;
}

.apply-content.style-2 .apply-content-card .content h3 {
  margin-bottom: 15px;
}

.apply-content.style-2 .default-btn {
  margin-top: 10px;
}

.apply-content.style-2 .default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: var(--blackColor);
}

/*================================================
Events Area Style
=================================================*/
.events-area {
  background-color: #f6f6f6;
}

.single-events-card {
  padding: 20px;
  margin-bottom: 25px;
  transition: var(--transition);
  background-color: var(--whiteColor);
}

.single-events-card .image {
  margin-bottom: 25px;
}

.single-events-card .content {
  padding-left: 15px;
}

.single-events-card .content .date {
  position: relative;
  margin-right: 13px;
  padding-right: 13px;
}

.single-events-card .content .date h2 {
  font-size: 42px;
  line-height: 29px;
  margin-bottom: 8px;
  color: var(--secenderyColor);
}

.single-events-card .content .date span {
  display: block;
  text-align: center;
  letter-spacing: 0.63px;
  color: var(--blackColor);
  text-transform: uppercase;
  color: var(--blackColor);
  transition: var(--transition);
  font-size: 18px;
  font-weight: 600;
}

.single-events-card .content .date::before {
  top: 0;
  right: 0;
  width: 1px;
  height: 57px;
  content: "";
  position: absolute;
  background-color: var(--secenderyColor);
}

.single-events-card .content .title {
  margin-top: 5px;
}

.single-events-card .content .title h3 {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 13px;
}

.single-events-card .content .title span {
  font-size: 14px;
  margin-bottom: 5px;
  transition: var(--transition);
}

.single-events-card .content .title span i {
  font-size: 18px;
  margin-right: 8px;
  color: var(--primaryColor);
}

.single-events-card:hover {
  background-color: #002a5c;
}

.single-events-card:hover .content .date span {
  color: rgba(255, 255, 255, 0.65);
}

.single-events-card:hover .content .title h3 a {
  color: var(--whiteColor);
}

.single-events-card:hover .content .title h3 a:hover {
  color: var(--primaryColor);
}

.single-events-card:hover .content .title span {
  color: rgba(255, 255, 255, 0.65);
}

.single-events-card.pages-style {
  background-color: #f6f6f6;
}

.single-events-card.pages-style:hover {
  background-color: #002a5c;
}

/*================================================
Tuition Area Style
=================================================*/
.single-tuition-card {
  padding: 35px;
  margin-bottom: 25px;
  background-color: #002a5c;
}

.single-tuition-card h3 {
  font-size: 18px;
  margin-bottom: 13px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--whiteColor);
}

.single-tuition-card h3 p {
  color: var(--secenderyColor);
}

.single-tuition-card p {
  font-weight: 500;
  margin-bottom: 14px;
  padding-bottom: 14px;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.single-tuition-card p span {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.col-lg-6:nth-child(2) .single-tuition-card {
  background-color: var(--secenderyColor);
}

.col-lg-6:nth-child(2) .single-tuition-card h3 {
  color: var(--blackColor);
  border-color: rgba(255, 255, 255, 0.16);
}

.col-lg-6:nth-child(2) .single-tuition-card h3 p {
  color: var(--blackColor);
}

.col-lg-6:nth-child(2) .single-tuition-card p {
  color: #5b5952;
  border-color: rgba(255, 255, 255, 0.16);
}

.col-lg-6:nth-child(2) .single-tuition-card p span {
  color: #5b5952;
}

.tuition-content {
  margin-left: 80px;
  margin-bottom: 25px;
}

.tuition-content .title {
  margin-bottom: 30px;
}

.tuition-content .title h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.tuition-content .arrow-btn {
  color: var(--primaryColor);
}

.tuition-content .arrow-btn::before {
  background-color: var(--primaryColor);
}

.tuition-content .arrow-btn:hover {
  color: var(--blackColor);
}

.tuition-content .arrow-btn:hover::after {
  background-color: var(--blackColor);
}

/*================================================
Facilities Area Style
=================================================*/
.facilities-content {
  margin-right: 95px;
  margin-bottom: 25px;
}

.facilities-content .title {
  margin-bottom: 25px;
}

.facilities-content .title h2 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.facilities-content .facilities-info {
  margin-bottom: 35px;
}

.facilities-content .facilities-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.facilities-content .facilities-info h3 span {
  margin-right: 5px;
  color: var(--primaryColor);
}

.facilities-content .default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: var(--blackColor);
}

.facilities-content.style-2 {
  margin-right: auto;
  margin-left: 100px;
}

.facilities-content.style-3 {
  margin-right: auto;
  margin-left: 100px;
}

.facilities-image {
  margin-bottom: 25px;
  position: relative;
}

.facilities-image .facilities-image-info {
  left: -60px;
  bottom: 77px;
  max-width: 510px;
  padding: 20px 30px;
  position: absolute;
  background-color: var(--secenderyColor);
}

.facilities-image .facilities-image-info p {
  color: #5b5952;
  font-weight: 500;
  font-style: italic;
}

.facilities-image .facilities-image-info i {
  right: 30px;
  bottom: -28px;
  font-size: 30px;
  position: absolute;
  color: var(--whiteColor);
}

.facilities-image.style-2 .facilities-image-info {
  left: auto;
  right: -70px;
  background-color: var(--blackColor);
}

.facilities-image.style-2 .facilities-image-info p {
  color: var(--whiteColor);
}

.facilities-image.style-2 .facilities-image-info i {
  color: var(--secenderyColor);
}

.facilities-image.style-3 {
  margin-right: 30px;
  margin-bottom: 95px;
}

.facilities-image.style-3 .image-2 {
  right: -45px;
  bottom: -70px;
  position: absolute;
}

.facilities-image.style-3 .shape-4 {
  bottom: 0;
  left: 30px;
  position: absolute;
  transform: rotate(45deg);
}

.facilities-image.style-3 .shape-4 img {
  animation: zoom-in-zoom-out 5s linear infinite;
}

.facilities-image.style-3 .shape-5 {
  top: 10px;
  right: 90px;
  position: absolute;
}

.facilities-image.style-3 .shape-5 img {
  animation: zoom-in-zoom-out 3s linear infinite;
}

.facilities-image.style-3 .shape-6 {
  bottom: -50px;
  right: 245px;
  position: absolute;
}

.facilities-image.style-3 .shape-6 img {
  animation: rotateme 5s linear infinite;
}

/*================================================ 
Testimonial Area Style
=================================================*/
.testimonial-image {
  margin-bottom: 25px;
}

.testimonial-slider-info {
  position: relative;
  margin-left: -40px;
  margin-bottom: 25px;
}

.testimonial-slider-info .next-prev-arrow {
  margin-left: 50px;
}

.testimonial-slider-info .next-prev-arrow .next,
.testimonial-slider-info .next-prev-arrow .prev {
  top: 13px;
  font-size: 26px;
  margin-right: 20px;
  position: relative;
  color: var(--blackColor);
  transition: var(--transition);
}

.testimonial-slider-info .next-prev-arrow .next:hover,
.testimonial-slider-info .next-prev-arrow .prev:hover {
  color: var(--primaryColor);
}

.testimonial-slider-info .testimonial {
  margin-right: 0;
}

.testimonial-slider-info .testimonial .swiper-wrapper .swiper-slide {
  opacity: 0.5;
  width: 50px !important;
  transition: var(--transition);
}

.testimonial-slider-info .testimonial .swiper-wrapper .swiper-slide:hover {
  opacity: 1;
}

.testimonial-slider-info .testimonial .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.testimonial-slider-item {
  padding: 41px;
  /* margin-bottom: 25px; */
  background-color: #faf7f2;
  border-radius: 16px;
}

.testimonial-slider-item .star-icon {
  margin-bottom: 15px;
}

.testimonial-slider-item .star-icon li i {
  font-size: 18px;
  color: rgb(243, 168, 2);
}

.testimonial-slider-item p {
  color: #5b5952;
  margin-bottom: 30px;
  font-style: italic;
  font-weight: 500;
}

.testimonial-slider-item .user .image {
  flex: 0 0 auto;
  display: block;
  margin-right: 15px;
}

.testimonial-slider-item .user .image img {
  width: 48px;
  height: 48px;
  border-radius: 100%;
}

.testimonial-slider-item .user .content h3 {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
}

.testimonial-slider-item .user .content span {
  font-size: 14px;
  color: rgba(85, 85, 85, 0.8);
}

.testimonial-slider-item .quote-icon {
  font-size: 22px;
  color: var(--primaryColor);
}

.testimonial-slider-item.style-3 {
  padding: 30px;
  background-color: #f6f6f6;
}

.testimonial-slider-item.style-3 .user-list {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #dfdfdf;
}

.testimonial-slider-item.style-3 .star-icon {
  margin-bottom: 0;
}

.testimonial-slider-item.style-3 p {
  margin-bottom: 0;
}

.testimonial-item-image img {
  width: 48px;
  height: 48px;
  border-radius: 100%;
}

.testimonial-slider-info-2 {
  margin-bottom: 35px;
  position: relative;
}

.testimonial-slider-info-3 {
  margin-bottom: 35px;
  position: relative;
}

.testimonial-slider-info-3 .swiper-btn .swiper-button-next,
.testimonial-slider-info-3 .swiper-btn .swiper-button-prev {
  top: 110%;
  font-size: 26px;
  margin-right: 20px;
  color: var(--blackColor);
  transition: var(--transition);
}

.testimonial-slider-info-3 .swiper-btn .swiper-button-next:hover,
.testimonial-slider-info-3 .swiper-btn .swiper-button-prev:hover {
  color: var(--primaryColor);
}

.testimonial-slider-info-3 .swiper-btn .swiper-button-next::after,
.testimonial-slider-info-3 .swiper-btn .swiper-button-prev::after {
  display: none;
}

.testimonial-slider-info-3 .swiper-btn .swiper-button-next.active,
.testimonial-slider-info-3 .swiper-btn .swiper-button-prev.active {
  color: var(--primaryColor);
}

.testimonial-slider-info-3 .swiper-btn .swiper-button-next::before,
.testimonial-slider-info-3 .swiper-btn .swiper-button-prev::before {
  position: absolute;
  font-family: flaticon !important;
}

.testimonial-slider-info-3 .swiper-btn .swiper-button-next {
  right: 49%;
}

.testimonial-slider-info-3 .swiper-btn .swiper-button-next::before {
  content: "\f10a";
}

.testimonial-slider-info-3 .swiper-btn .swiper-button-prev {
  left: 51%;
}

.testimonial-slider-info-3 .swiper-btn .swiper-button-prev::before {
  content: "\f10b";
}

/*================================================
Partner Area Style
=================================================*/
.partner-slider-info .partner-slider .swiper-wrapper .swiper-slide .single-partner-logo {
  text-align: center;
}

.single-partner-logo {
  margin-bottom: 25px;
}

.single-partner-logo img {
  width: auto;
  text-align: center;
}

/*================================================
Subscribe Area Style
=================================================*/
.subscribe-image-info {
  margin-right: 10px;
  margin-bottom: 25px;
}

.subscribe-image-info .subscribe-item {
  z-index: 1;
  padding: 60px;
  position: relative;
  background-color: var(--secenderyColor);
  margin-right: -85px;
}

.subscribe-image-info .subscribe-item h3 {
  font-size: 18px;
  margin-bottom: 13px;
}

.subscribe-image-info .subscribe-item p {
  color: #5b5952;
}

.subscribe-image-info .subscribe-item .form-group {
  margin-bottom: 20px;
}

.subscribe-image-info .subscribe-item .form-group .form-control {
  height: 56px;
  border: unset;
  border-radius: unset;
  padding-left: 20px;
  background-color: var(--whiteColor);
}

.subscribe-image-info .subscribe-item .form-group .form-control::-moz-placeholder {
  font-size: 14px;
  color: var(--paragraphColor);
}

.subscribe-image-info .subscribe-item .form-group .form-control::placeholder {
  font-size: 14px;
  color: var(--paragraphColor);
}

.subscribe-image-info .subscribe-item .default-btn {
  width: 100%;
  transition: var(--transition);
  background-color: var(--blackColor);
}

.subscribe-image-info .subscribe-item .default-btn:hover {
  color: var(--blackColor) !important;
  background-color: var(--whiteColor);
}

.subscribe-image {
  margin-left: -20px;
  margin-right: 65px;
}

.subscribe-content {
  margin-left: -50px;
  margin-bottom: 25px;
  margin-right: -15px;
}

.subscribe-content .title {
  margin-bottom: 30px;
}

.subscribe-content .title h2 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 18px;
}

.subscribe-content .subscribe-btn li {
  margin-right: 30px;
}

.subscribe-content .subscribe-btn li .default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: var(--blackColor);
}

.subscribe-content .subscribe-btn li .arrow-btn {
  color: var(--blackColor);
}

.subscribe-content .subscribe-btn li .arrow-btn::before {
  background-color: var(--blackColor);
}

.subscribe-content .subscribe-btn li .arrow-btn:hover {
  color: var(--primaryColor);
}

.subscribe-content .subscribe-btn li .arrow-btn:hover::after {
  background-color: var(--primaryColor);
}

.subscribe-content .subscribe-btn li:last-child {
  margin-right: 0;
}

/*================================================
Overview Area Style
=================================================*/
.overview-content {
  margin-bottom: 25px;
}

.overview-content .image {
  margin-bottom: 40px;
}

.overview-content .graduets-counter h2 {
  line-height: 0;
  font-size: 60px;
  margin-bottom: 15px;
}

.overview-content .graduets-counter h2 img {
  margin-right: 10px;
}

.overview-content .graduets-counter p {
  color: var(--blackColor);
}

.overview-content .graduets-btn .arrow-btn {
  font-weight: 700;
  color: var(--blackColor);
}

.overview-content .graduets-btn .arrow-btn::before {
  background-color: var(--blackColor);
}

.overview-content .graduets-btn .arrow-btn:hover {
  color: var(--primaryColor);
}

.overview-content .graduets-btn .arrow-btn:hover::after {
  background-color: var(--primaryColor);
}

.overview-image {
  margin-top: 30px;
  margin-left: 70px;
  margin-bottom: 25px;
  margin-right: -10px;
}

.overview-image .title {
  margin-bottom: 30px;
}

.overview-image .title h2 {
  font-size: 42px;
  line-height: 0;
  margin-bottom: 25px;
}

.overview-image .title h2 img {
  margin-right: 10px;
}

.overview-image .arrow-btn {
  color: var(--primaryColor);
}

.overview-image .arrow-btn::before {
  background-color: var(--primaryColor);
}

.overview-image .arrow-btn:hover {
  color: var(--blackColor);
}

.overview-image .arrow-btn:hover::after {
  background-color: var(--blackColor);
}

.overview-image .casual-image {
  margin-top: 80px;
  position: relative;
}

.overview-image .casual-image .adma {
  top: -55px;
  right: 0;
  position: absolute;
}

.overview-image .casual-image.pages-style .content-shape {
  top: -55px;
  right: 0;
  position: absolute;
}

.overview-image .casual-image.pages-style .content-shape::before {
  left: 0;
  right: 0;
  top: 50%;
  content: "";
  width: 10px;
  height: 10px;
  margin: auto;
  border-radius: 100%;
  position: absolute;
  text-align: center;
  transform: translateY(-50%);
  background-color: var(--primaryColor);
}

.overview-image .casual-image.pages-style .content-shape img {
  animation: rotateme 15s linear infinite;
}

/*================================================
Programs Area Style
=================================================*/
.programs-area {
  overflow: hidden;
  background-color: #f6f6f6;
}

.programs-section-title {
  margin-bottom: 40px;
}

.programs-section-title .title h2 {
  font-size: 42px;
  margin-bottom: 0;
}

.programs-section-title .programs-nav-tab .nav .nav-item {
  margin-right: 42px;
}

.programs-section-title .programs-nav-tab .nav .nav-item .nav-link {
  padding: 0;
  font-weight: 700;
  position: relative;
  color: var(--blackColor);
  background-color: transparent;
}

.programs-section-title .programs-nav-tab .nav .nav-item .nav-link::before {
  left: 0;
  width: 0;
  bottom: 0;
  height: 1px;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: var(--primaryColor);
}

.programs-section-title .programs-nav-tab .nav .nav-item .nav-link:hover {
  color: var(--primaryColor);
}

.programs-section-title .programs-nav-tab .nav .nav-item .nav-link:hover::before {
  width: 100%;
}

.programs-section-title .programs-nav-tab .nav .nav-item .nav-link.active {
  color: var(--primaryColor);
}

.programs-section-title .programs-nav-tab .nav .nav-item .nav-link.active::before {
  width: 100%;
}

.programs-section-title .programs-nav-tab .nav .nav-item:last-child {
  margin-right: 0;
}

.single-programs-card {
  margin-bottom: 25px;
  padding: 10px;
  transition: var(--transition);
  border: 1px solid rgb(189, 189, 189);
  border-radius: 20px;
}

.single-programs-card .image {
  margin-bottom: 10px;
  position: relative;
}

.staffs .single-programs-card {
  background: white;
}

.staffs .single-programs-card .image img {
  border-radius: 20px;
  height: 340px;
  width: 100%;
  object-fit: cover;
}

.single-programs-card .image .list {
  left: 15px;
  bottom: 15px;
  padding: 10px 14px;
  position: absolute;
  transition: var(--transition);
  background-color: var(--whiteColor);
}

.single-programs-card .image .list li {
  font-size: 14px;
  position: relative;
  margin-right: 8px;
  transition: var(--transition);
  padding-left: 25px;
  padding-right: 12px;
}

.single-programs-card .image .list li i {
  top: -3px;
  left: 0;
  font-size: 18px;
  position: absolute;
  color: var(--blackColor);
  transition: var(--transition);
}

.single-programs-card .image .list li::before {
  top: 0;
  right: 0;
  width: 1px;
  height: 20px;
  content: "";
  position: absolute;
  background-color: #f0f0f0;
  transition: var(--transition);
}

.single-programs-card .image .list li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.single-programs-card .image .list li:last-child::before {
  display: none;
}

.single-programs-card .content h3 {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 5px;
  font-family: "Canela Text Trial Regular No 2";
  font-weight: normal;
  src: local("Canela Text Trial Regular No 2"),
    url("CanelaText-RegularNo2-Trial.woff") format("woff");
}

.single-programs-card .content span {
  font-size: 17px;
  color: var(--brand-secondary);
}

.single-programs-card .content .arrow-btn {
  color: var(--primaryColor);
}

.single-programs-card .content .arrow-btn::before {
  background-color: var(--primaryColor);
}

.single-programs-card .content .arrow-btn:hover {
  color: var(--blackColor);
}

.single-programs-card .content .arrow-btn:hover::after {
  background-color: var(--blackColor);
}

.single-programs-card:hover .image .list {
  background-color: var(--primaryColor);
}

.single-programs-card:hover .image .list li {
  color: var(--whiteColor);
}

.single-programs-card:hover .image .list li i {
  color: var(--whiteColor);
}

.single-programs-card:hover .content h3 a {
  color: var(--brand-color);
}

.programs-tab-content .programs-slider {
  overflow: inherit;
  left: 0;
}

.programs-single-btn .default-btn {
  color: var(--blackColor) !important;
  background-color: var(--secenderyColor);
}

.programs-single-btn .default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: var(--blackColor);
}

/*================================================
Upcoming Area Style
=================================================*/
.upcoming-image {
  padding: 20px;
  background-color: var(--blackColor);
  margin-left: -5px;
  margin-right: 80px;
  margin-bottom: 25px;
}

.upcoming-image .image {
  margin-bottom: 25px;
}

.upcoming-image .content {
  margin-bottom: 20px;
}

.upcoming-image .content .title {
  margin-bottom: 25px;
}

.upcoming-image .content .title h3 {
  font-size: 28px;
  margin-bottom: 14px;
  color: var(--whiteColor);
}

.upcoming-image .content .title h6 {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
}

.upcoming-image .content .upcoming-timer {
  margin-bottom: 30px;
}

.upcoming-image .content .upcoming-timer .coundown-container .big-text {
  font-size: 26px;
  margin-bottom: 0;
  color: var(--whiteColor);
}

.upcoming-image .content .upcoming-timer .coundown-container .countdown-el {
  width: 81px;
  height: 75px;
  padding-top: 10px;
  text-align: center;
  margin-right: 20px;
  background-color: rgba(255, 255, 255, 0.11) !important;
}

.upcoming-image .content .upcoming-timer .coundown-container .countdown-el span {
  text-align: center;
  color: rgba(255, 255, 255, 0.69);
}

.upcoming-image .content .upcoming-timer .coundown-container .countdown-el:last-child {
  margin-right: 0;
}

.upcoming-image .content .arrow-btn {
  font-weight: 700;
  color: var(--primaryColor);
}

.upcoming-image .content .arrow-btn::before {
  background-color: var(--primaryColor);
}

.upcoming-image .content .arrow-btn:hover {
  color: var(--whiteColor);
}

.upcoming-image .content .arrow-btn:hover::after {
  background-color: var(--whiteColor);
}

.upcoming-content {
  margin-left: -35px;
  margin-right: -10px;
  margin-bottom: 25px;
}

.upcoming-content .title {
  margin-bottom: 40px;
}

.upcoming-content .title h2 {
  font-size: 42px;
}

.upcoming-content .upcoming-content-info {
  margin-bottom: 25px;
  background-color: #faf7f2;
}

.upcoming-content .upcoming-content-info .image {
  display: block;
  flex: 0 0 auto;
  position: relative;
}

.upcoming-content .upcoming-content-info .image img {
  width: 203px;
}

.upcoming-content .upcoming-content-info .image .price {
  left: 10px;
  width: 51px;
  height: 33px;
  bottom: 10px;
  margin-bottom: 0;
  line-height: 33px;
  text-align: center;
  position: absolute;
  display: inline-block;
  color: var(--whiteColor);
  background-color: var(--primaryColor);
  font-size: 16px;
  font-weight: 700;
}

.upcoming-content .upcoming-content-info .content {
  padding: 0 30px;
}

.upcoming-content .upcoming-content-info .content h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.upcoming-content .upcoming-content-info .content ul li {
  font-size: 14px;
  padding-left: 24px;
  position: relative;
  margin-right: 15px;
}

.upcoming-content .upcoming-content-info .content ul li i {
  top: -2px;
  left: 0;
  font-size: 18px;
  position: absolute;
  color: var(--primaryColor);
}

.upcoming-content .upcoming-content-info:last-child {
  margin-bottom: 0;
}

.upcoming-content .upcoming-content-info:hover .content h3 a {
  color: var(--primaryColor);
}

/*================================================
Application Area Style
=================================================*/
.application-area {
  position: relative;
  background-color: #f6f6f6;
}

.application-area .shape-1 {
  left: 622px;
  bottom: 90px;
  position: absolute;
}

.application-area .shape-2 {
  top: 150px;
  right: 664px;
  position: absolute;
}

.application-area.university-pages {
  background-color: var(--whiteColor);
}

.application-area.apply-pages {
  background-color: var(--whiteColor);
}

.application-section-title {
  margin-bottom: 40px;
}

.application-section-title .application-title h2 {
  font-size: 42px;
  margin-bottom: 0;
}

.single-application-card {
  padding: 30px;
  margin-bottom: 60px;
  background-color: var(--whiteColor);
}

.single-application-card .icon {
  flex: 0 0 auto;
  font-size: 35px;
  margin-right: 15px;
  color: var(--primaryColor);
}

.single-application-card .content h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.single-application-card .content h3 span {
  margin-right: 4px;
  color: var(--primaryColor);
}

.single-application-card.style-3 {
  padding: 40px;
  margin-bottom: 25px;
}

.single-application-card.style-3 .d-flex {
  margin-bottom: 20px;
}

.single-application-card.style-3 .d-flex .icon {
  font-size: 50px;
  line-height: 0;
}

.single-application-card.style-3 .d-flex h1 {
  font-size: 42px;
  color: transparent;
  transition: var(--transition);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(250, 57, 74, 0.15);
}

.single-application-card.style-3:hover .d-flex h1 {
  font-size: 42px;
  color: var(--primaryColor);
}

.single-application-card.university-pages {
  margin-bottom: 25px;
  background-color: #f6f6f6;
}

.single-application-card.university-pages .image {
  margin-bottom: 25px;
}

.single-application-card.university-pages:hover .content h3 a {
  color: var(--primaryColor);
}

.single-application-card.apply-pages {
  background-color: #f6f6f6;
}

/*================================================
Blog Area Style
=================================================*/
.single-blog-card {
  margin-bottom: 25px;
}

.single-blog-card .image {
  position: relative;
  margin-bottom: 20px;
  transition: var(--transition);
}

.single-blog-card .image span {
  left: 15px;
  bottom: 15px;
  padding: 8px 16px;
  font-size: 14px;
  position: absolute;
  transition: var(--transition);
  background-color: var(--whiteColor);
}

.single-blog-card .image:hover span {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.single-blog-card .content h3 {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.single-blog-card .content ul li {
  font-size: 14px;
  padding-left: 25px;
  position: relative;
  margin-right: 25px;
}

.single-blog-card .content ul li a {
  color: var(--paragraphColor);
}

.single-blog-card .content ul li a:hover {
  color: var(--primaryColor);
}

.single-blog-card .content ul li i {
  top: -2px;
  left: 0;
  font-size: 18px;
  position: absolute;
  color: var(--primaryColor);
}

.single-blog-card .content ul li:last-child {
  margin-right: 0;
}

/*================================================
Admission Area Style
=================================================*/
.admission-area {
  background-color: var(--secenderyColor);
}

.admission-image {
  margin-bottom: 25px;
  position: relative;
}

.admission-image .image-2 {
  top: 15px;
  right: 55px;
  position: absolute;
}

.admission-image .image-2 img {
  width: 129.957px;
  height: 99.473px;
  transform: rotate(30deg);
  border: 3px solid var(--whiteColor);
}

.admission-content {
  margin-bottom: 25px;
}

.admission-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.admission-content h2 i {
  font-size: 30px;
  line-height: 0;
  margin-right: 5px;
  color: var(--blackColor);
}

.admission-content p {
  color: #5b5952;
}

.admission-btn {
  margin-bottom: 25px;
}

.admission-btn .default-btn {
  background-color: var(--blackColor);
}

.admission-btn .default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: var(--primaryColor);
}

/*================================================
Adma About Area Style
=================================================*/
.adma-about-image {
  margin-bottom: 25px;
  position: relative;
}

.adma-about-image .shape-3 {
  top: 35px;
  left: -15px;
  position: absolute;
}

.adma-about-image .shape-3 img {
  animation: rotateme 5s linear infinite;
}

.adma-about-image .shape-4 {
  left: -15px;
  bottom: 40px;
  position: absolute;
}

.adma-about-image .shape-4 img {
  animation: zoom-in-zoom-out 3s linear infinite;
}

.adma-about-content {
  margin-bottom: 25px;
}

.adma-about-content .title {
  max-width: 646px;
  margin-bottom: 30px;
}

.adma-about-content .title h2 {
  font-size: 34px;
  line-height: 0;
  margin-bottom: 25px;
}

.adma-about-content .title h2 img {
  margin-right: 15px;
}

.adma-about-content .adma-about-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.adma-about-content .adma-about-card h3 i {
  line-height: 0;
  font-size: 30px;
  margin-right: 10px;
  color: var(--primaryColor);
}

.adma-about-content .adma-about-card .arrow-btn {
  margin-top: 15px;
  color: var(--primaryColor);
}

.adma-about-content .adma-about-card .arrow-btn::before {
  background-color: var(--primaryColor);
}

.adma-about-content .adma-about-card .arrow-btn:hover {
  color: var(--blackColor);
}

.adma-about-content .adma-about-card .arrow-btn:hover::after {
  background-color: var(--blackColor);
}

.col-lg-6:nth-child(2) .adma-about-card p {
  max-width: 313px;
}

/*================================================
Video Area Style
=================================================*/
.video-area {
  z-index: 1;
  position: relative;
}

.video-area::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  content: "";
  z-index: -1;
  position: absolute;
  background-color: #f6f6f6;
}

.video-area.apply-pages::before {
  display: none;
}

.video-image {
  position: relative;
}

.video-image .video-btn {
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  position: absolute;
  transform: translateY(-50%);
}

.video-image .video-btn a {
  width: 103px;
  height: 103px;
  font-size: 25px;
  border-radius: 100%;
  line-height: 114px;
  text-align: center;
  display: inline-block;
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.video-image .video-btn a i {
  left: 2px;
  position: relative;
}

.video-image .video-btn a:hover {
  background-color: var(--blackColor);
}

/*================================================
Counter Area Style
=================================================*/
.single-counter-info {
  margin-bottom: 25px;
}

.single-counter-info .icon {
  font-size: 50px;
  margin-right: 10px;
  color: var(--secenderyColor);
}

.single-counter-info h2 {
  font-size: 60px;
  line-height: 1;
}

.col-lg-3:nth-child(2) .single-counter-info {
  margin-left: 35px;
}

.col-lg-3:nth-child(3) .single-counter-info {
  margin-left: 85px;
}

/*================================================
Choose Area Style
=================================================*/
.choose-content {
  margin-right: 65px;
  margin-bottom: 25px;
}

.choose-content .title {
  margin-bottom: 30px;
}

.choose-content .title h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.choose-content .arrow-btn {
  color: var(--primaryColor);
}

.choose-content .arrow-btn::before {
  background-color: var(--primaryColor);
}

.choose-content .arrow-btn:hover {
  color: var(--blackColor);
}

.choose-content .arrow-btn:hover::after {
  background-color: var(--blackColor);
}

.choose-content .choose-counter-info {
  margin-top: 40px;
  padding-top: 35px;
  border-top: 1px solid #fff0f0;
}

.choose-content .choose-counter-info ul li {
  margin-right: 100px;
}

.choose-content .choose-counter-info ul li h2 {
  font-size: 60px;
  line-height: 1;
  margin-bottom: 5px;
}

.choose-content .choose-counter-info ul li i {
  line-height: 0;
  font-size: 35px;
  margin-right: 15px;
  color: var(--primaryColor);
}

.choose-content .choose-counter-info ul li p {
  font-weight: 500;
  color: var(--blackColor);
}

.choose-content .choose-counter-info ul li:last-child {
  margin-right: 0;
}

.choose-image {
  position: relative;
  margin-left: 50px;
  margin-bottom: 25px;
}

.choose-image .choose-image-info {
  left: -60px;
  bottom: 50px;
  max-width: 510px;
  padding: 20px 30px;
  position: absolute;
  background-color: var(--secenderyColor);
}

.choose-image .choose-image-info p {
  color: #5b5952;
  font-weight: 500;
  font-style: italic;
}

.choose-image .choose-image-info i {
  right: 20px;
  bottom: -28px;
  font-size: 30px;
  position: absolute;
  color: var(--blackColor);
}

/*================================================
Student Area Style
=================================================*/
.student-image {
  z-index: 1;
  position: relative;
  margin-right: -65px;
  margin-bottom: 25px;
}

.student-card {
  padding: 40px;
  background-color: #f6f6f6;
  margin-left: 35px;
  margin-bottom: 25px;
}

.student-card ul li {
  display: block;
  margin-bottom: 45px;
}

.student-card ul li a {
  margin-right: 40px;
  position: relative;
  display: inline-block;
  color: var(--blackColor);
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 700;
}

.student-card ul li a i {
  top: 2px;
  line-height: 0;
  font-size: 25px;
  margin-left: 15px;
  position: absolute;
}

.student-card ul li a::before {
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: var(--blackColor);
}

.student-card ul li a::after {
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: var(--primaryColor);
}

.student-card ul li a:hover {
  color: var(--primaryColor);
}

.student-card ul li a:hover::before {
  opacity: 0;
}

.student-card ul li a:hover::after {
  width: 100%;
}

.student-card ul li:last-child {
  margin-bottom: 0;
}

.student-content {
  margin-left: 35px;
  margin-bottom: 25px;
  margin-right: -10px;
}

.student-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.student-content .default-btn {
  margin-top: 10px;
}

/*================================================
Newsletter Area Style
=================================================*/
.newsletter-content {
  margin-right: 70px;
  margin-bottom: 25px;
}

.newsletter-content .title {
  margin-bottom: 35px;
}

.newsletter-content .title h2 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 13px;
}

.newsletter-content .subscribe-btn li {
  margin-right: 30px;
}

.newsletter-content .subscribe-btn li .default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: var(--blackColor);
}

.newsletter-content .subscribe-btn li .arrow-btn {
  color: var(--blackColor);
}

.newsletter-content .subscribe-btn li .arrow-btn::before {
  background-color: var(--blackColor);
}

.newsletter-content .subscribe-btn li .arrow-btn:hover {
  color: var(--primaryColor);
}

.newsletter-content .subscribe-btn li .arrow-btn:hover::after {
  background-color: var(--primaryColor);
}

.newsletter-content .subscribe-btn li:last-child {
  margin-right: 0;
}

.newsletter-content.pages-style {
  margin-right: 0;
  margin-left: 70px;
}

.newsletter-form {
  padding: 50px;
  margin-bottom: 25px;
  background-color: var(--secenderyColor);
}

.newsletter-form .title {
  margin-bottom: 25px;
}

.newsletter-form .title h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.newsletter-form .form-group {
  margin-bottom: 20px;
}

.newsletter-form .form-group .form-control {
  height: 56px;
  border: unset;
  border-radius: unset;
  padding-left: 20px;
  background-color: var(--whiteColor);
}

.newsletter-form .form-group .form-control::-moz-placeholder {
  font-size: 14px;
  color: var(--paragraphColor);
}

.newsletter-form .form-group .form-control::placeholder {
  font-size: 14px;
  color: var(--paragraphColor);
}

.newsletter-form .default-btn {
  width: 100%;
  transition: var(--transition);
  background-color: var(--blackColor);
}

.newsletter-form .default-btn:hover {
  color: var(--blackColor) !important;
  background-color: var(--whiteColor);
}

/*================================================
Page Banner Area Style
=================================================*/
.pages-banner-area {
  z-index: 1;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/bg/bg-3.jpg);
}

.pages-banner-area .container-fluid {
  max-width: 1480px;
  padding-left: 30px;
  padding-right: 30px;
}

.pages-banner-area .shape-7 {
  left: 250px;
  bottom: 0;
  position: absolute;
}

.pages-banner-area::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  position: absolute;
  background-color: rgb(207 0 3 / 89%);
}

.pages-banner-area::after {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 110px;
  z-index: -1;
  content: "";
  position: absolute;
  background-color: var(--whiteColor);
}

.pages-title {
  margin-top: 30px;
}

.pages-title h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--whiteColor);
}

.pages-title ul li {
  color: #d2d6dc;
  margin-right: 10px;
  padding-right: 20px;
  position: relative;
}

.pages-title ul li a {
  font-weight: 700;
  color: var(--secenderyColor);
}

.pages-title ul li a:hover {
  color: var(--whiteColor);
}

.pages-title ul li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #d2d6dc;
  transform: translateY(-50%);
}

.pages-title ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.pages-title ul li:last-child::before {
  display: none;
}

.single-pages-widget {
  margin-bottom: 50px;
}

.single-pages-widget h3 {
  font-size: 16px;
  margin-bottom: 20px;
}

.single-pages-widget.form .form-group {
  position: relative;
}

.single-pages-widget.form .form-group .form-control {
  height: 56px;
  padding-left: 20px;
  border-radius: unset;
  border: 1px solid #ebebeb;
}

.single-pages-widget.form .form-group button {
  top: 50%;
  right: 20px;
  border: unset;
  position: absolute;
  background-color: unset;
  transform: translateY(-50%);
  color: rgb(85, 85, 85);
}

.single-pages-widget.latest .latest-card {
  margin-bottom: 25px;
}

.single-pages-widget.latest .latest-card .image {
  display: block;
  flex: 0 0 auto;
  margin-right: 20px;
}

.single-pages-widget.latest .latest-card .image img {
  width: 122px;
  height: 98px;
}

.single-pages-widget.latest .latest-card .content h3 {
  line-height: 1.4;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}

.single-pages-widget.latest .latest-card .content p {
  font-size: 14px;
}

.single-pages-widget.latest .latest-card .content p i {
  font-size: 18px;
  line-height: 1;
  margin-right: 10px;
  color: var(--primaryColor);
}

.single-pages-widget.latest .latest-card:last-child {
  margin-bottom: 0;
}

.single-pages-widget.gallery ul {
  margin-right: -20px;
}

.single-pages-widget.gallery ul li {
  margin-bottom: 15px;
  margin-right: 10px;
}

.single-pages-widget.gallery ul li a {
  display: inline-block;
}

.single-pages-widget.gallery ul li a img {
  width: 94px;
  height: 91px;
}

.single-pages-widget.tags ul {
  margin-right: -11px;
}

.single-pages-widget.tags ul li {
  margin-right: 10px;
  margin-bottom: 15px;
}

.single-pages-widget.tags ul li a {
  font-size: 14px;
  padding: 7px 13px;
  color: var(--blackColor);
  background-color: #f6f6f6;
}

.single-pages-widget.tags ul li a:hover {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

.single-pages-widget.tags.style-2 ul li a:hover {
  background-color: var(--primaryColor);
}

.single-pages-widget.categories a {
  margin-bottom: 20px;
  color: var(--paragraphColor);
}

.single-pages-widget.categories a:hover {
  color: var(--primaryColor);
}

.single-pages-widget.categories a:last-child {
  margin-bottom: 0;
}

.single-pages-widget:last-child {
  margin-bottom: 0;
}

blockquote {
  padding: 30px;
  position: relative;
  background-color: #f6f6f6;
  border-left: 3px solid var(--primaryColor);
  margin-top: 25px;
  margin-bottom: 25px;
}

blockquote i {
  right: 30px;
  bottom: 11px;
  line-height: 0;
  font-size: 25px;
  position: absolute;
  color: var(--blackColor);
  transition: var(--transition);
}

blockquote:hover i {
  color: var(--primaryColor);
}

.pages-share-and-tags {
  padding-bottom: 35px;
  border-bottom: 1px solid #f0f0f0;
  margin-top: 25px;
  margin-bottom: 60px;
}

.pages-share-and-tags .share {
  margin-bottom: 25px;
}

.pages-share-and-tags .share ul li {
  font-size: 16px;
  font-weight: 700;
  margin-right: 10px;
  color: var(--blackColor);
}

.pages-share-and-tags .share ul li a {
  width: 28px;
  height: 28px;
  font-size: 14px;
  line-height: 33px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: var(--primaryColor);
  background-color: #fff3f4;
}

.pages-share-and-tags .share ul li a:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.pages-share-and-tags .share ul li:last-child {
  margin-right: 0;
}

.pages-share-and-tags .tags {
  margin-bottom: 25px;
}

.pages-share-and-tags .tags ul li {
  font-size: 16px;
  font-weight: 700;
  margin-right: 10px;
  color: var(--blackColor);
}

.pages-share-and-tags .tags ul li a {
  padding: 7px 13px;
  color: var(--blackColor);
  background-color: #f6f6f6;
  font-size: 14px;
  font-weight: 400;
}

.pages-share-and-tags .tags ul li a:hover {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

.pages-share-and-tags .tags ul li:last-child {
  margin-right: 0;
}

.pages-comment-area h1 {
  font-size: 42px;
  margin-bottom: 30px;
}

.pages-comment-area h1 span {
  color: #99a5b4;
}

.pages-comment-area .comment-card {
  padding: 35px;
  margin-bottom: 25px;
  background-color: #f6f6f6;
}

.pages-comment-area .comment-card .ml-30 {
  padding-top: 25px;
  border-top: 1px solid #e4e4e4;
  margin-top: 25px;
  margin-left: 30px;
}

.pages-comment-area .comment-card .users {
  margin-bottom: 20px;
}

.pages-comment-area .comment-card .users .image {
  display: block;
  flex: 0 0 auto;
  margin-right: 20px;
}

.pages-comment-area .comment-card .users .image img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
}

.pages-comment-area .comment-card .users .content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 7px;
}

.pages-comment-area .comment-card .users .reply a {
  font-size: 14px;
  padding: 7px 13px;
  display: inline-block;
  color: var(--blackColor);
  background-color: #e2e2e2;
}

.pages-comment-area .comment-card .users .reply a:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.pages-comment-area .comment-card .users .reply .star-icon li {
  margin-right: 5px;
}

.pages-comment-area .comment-card .users .reply .star-icon li i {
  color: rgb(243, 168, 2);
}

.pages-comment-area .comment-card .users .reply .star-icon li:last-child {
  margin-right: 0;
}

.pages-comment-area .comment-card:hover .reply a {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.pages-leave-reply {
  margin-bottom: 25px;
}

.pages-leave-reply h1 {
  font-size: 42px;
  margin-bottom: 30px;
}

.pages-leave-reply form .form-group {
  margin-bottom: 25px;
}

.pages-leave-reply form .form-group .form-control {
  height: 56px;
  padding-left: 20px;
  border-radius: unset;
  border: 1px solid #ebebeb;
}

.pages-leave-reply form .form-group .form-control.textarea {
  height: 229px;
  padding-top: 15px;
}

.pages-leave-reply form .form-check {
  margin-bottom: 40px;
}

.pages-leave-reply form .form-check .form-check-input {
  box-shadow: unset;
  border-radius: unset;
  border: 1px solid var(--primaryColor);
}

.pages-leave-reply form .form-check .form-check-input:checked {
  background-color: var(--primaryColor);
}

.pages-leave-reply form .form-check .form-check-label {
  font-size: 14px;
}

.pages-leave-reply form button {
  width: 100%;
  border: unset;
  display: flex;
  padding: 15px 33px;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--whiteColor) !important;
  background-color: var(--blackColor);
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 700;
}

.pages-leave-reply form button i {
  line-height: 0;
  font-size: 25px;
  margin-left: 19px;
  position: relative;
}

.pages-leave-reply form button:hover {
  background-color: var(--primaryColor);
}

.pages-leave-reply.style-2 h1 {
  margin-bottom: 15px;
}

.pages-leave-reply.style-2 .star-icon {
  margin-bottom: 20px;
}

.pages-leave-reply.style-2 .star-icon span {
  font-size: 14px;
  font-weight: 500;
}

.pages-leave-reply.style-2 .star-icon ul {
  margin-left: 10px;
}

.pages-leave-reply.style-2 .star-icon ul li {
  margin-right: 3px;
}

.pages-leave-reply.style-2 .star-icon ul li i {
  font-size: 18px;
  color: rgb(243, 168, 2);
}

.pages-leave-reply.style-2 .star-icon ul li:last-child {
  margin-right: 0;
}

.tuition-info {
  margin: auto;
  padding: 70px;
  max-width: 872px;
  background-color: #f6f6f6;
}

.tuition-info h1 {
  font-size: 42px;
  margin-bottom: 30px;
  text-align: center;
}

.tuition-info .tuition-item .accordion-item {
  border: none;
  border-radius: 4px;
  margin-bottom: 25px;
  background-color: transparent;
}

.tuition-info .tuition-item .accordion-item .accordion-button {
  padding: 0;
  padding-bottom: 15px;
  border: unset;
  box-shadow: none;
  position: relative;
  transition: var(--transition);
  background-color: transparent;
}

.tuition-info .tuition-item .accordion-item .accordion-button span {
  color: var(--primaryColor);
  transition: var(--transition);
  font-size: 16px;
  font-weight: 700;
}

.tuition-info .tuition-item .accordion-item .accordion-button::after {
  top: 2px;
  width: 15px;
  right: 15px;
  height: 15px;
  content: "\ea4d";
  position: absolute;
  margin: auto !important;
  color: var(--primaryColor);
  transition: var(--transition);
  background-image: unset !important;
  font-size: 14px;
  font-weight: 700;
  font-family: "remixicon" !important;
}

.tuition-info .tuition-item .accordion-item .accordion-button.collapsed {
  border-radius: unset;
  background-color: transparent;
  border-bottom: 1px solid #ececec;
}

.tuition-info .tuition-item .accordion-item .accordion-button.collapsed::after {
  top: 2px;
  color: var(--blackColor);
}

.tuition-info .tuition-item .accordion-item .accordion-button.collapsed span {
  color: var(--blackColor);
}

.tuition-info .tuition-item .accordion-item .accordion-button:focus {
  outline: 0;
  box-shadow: unset;
}

.tuition-info .tuition-item .accordion-item .accordion-button:hover::after {
  color: var(--primaryColor);
}

.tuition-info .tuition-item .accordion-item .accordion-button:hover span {
  color: var(--primaryColor);
}

.tuition-info .tuition-item .accordion-item .accordion-body {
  padding: 0;
  border: unset;
  line-height: 1.8;
  padding-bottom: 15px;
  border-radius: unset;
  color: var(--paragraphColor);
  background-color: transparent;
  border-bottom: 1px solid #ececec;
}

.tuition-info .tuition-item .accordion-item .accordion-body .table {
  margin-bottom: 0;
}

.tuition-info .tuition-item .accordion-item .accordion-body .table thead tr th {
  border: unset;
  padding-left: 25px;
  color: var(--blackColor);
  font-size: 16px;
  font-weight: 500;
}

.tuition-info .tuition-item .accordion-item .accordion-body .table thead tr th:last-child {
  text-align: center;
}

.tuition-info .tuition-item .accordion-item .accordion-body .table tbody tr td {
  border: unset;
  background-color: transparent;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 25px;
}

.tuition-info .tuition-item .accordion-item .accordion-body .table tbody tr td:last-child {
  text-align: center;
}

.tuition-info .tuition-item .accordion-item .accordion-body .table tbody tr .bold {
  font-weight: 700;
  color: var(--blackColor);
}

.tuition-info .tuition-item .accordion-item:last-child {
  margin-bottom: 0;
}

.single-register-info {
  margin: auto;
  padding: 60px;
  max-width: 558px;
  background-color: #f6f6f6;
}

.single-register-info h3 {
  font-size: 28px;
  margin-bottom: 30px;
}

.single-register-info form .form-group {
  margin-bottom: 25px;
}

.single-register-info form .form-group .form-control {
  height: 56px;
  padding-left: 20px;
  border-radius: unset;
  border: 1px solid #ebebeb;
  background-color: transparent;
}

.single-register-info form .form-check {
  margin-bottom: 40px;
}

.single-register-info form .form-check .form-check-input {
  box-shadow: unset;
  border-radius: unset;
  background-color: transparent;
  border: 1px solid var(--primaryColor);
}

.single-register-info form .form-check .form-check-input:checked {
  background-color: var(--primaryColor);
}

.single-register-info form .form-check .form-check-label {
  font-size: 14px;
}

.single-register-info form .form-check .form-check-label a {
  font-weight: 500;
}

.single-register-info form .default-btn {
  width: 100%;
  margin-bottom: 20px;
  transition: var(--transition);
}

.single-register-info form .default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: var(--blackColor);
}

.single-register-info p {
  font-size: 14px;
  text-align: center;
}

.single-register-info p a {
  font-weight: 500;
}

.application-form-details {
  padding: 70px;
  background-color: #f6f6f6;
}

.application-form-details h3 {
  font-size: 28px;
  margin-bottom: 35px;
}

.application-form-details .form-group {
  margin-bottom: 35px;
}

.application-form-details .form-group .form-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 13px;
  color: var(--blackColor);
}

.application-form-details .form-group .form-control {
  height: 56px;
  box-shadow: unset;
  padding-left: 20px;
  border-radius: unset;
  border: 1px solid #ebebeb;
  background-color: transparent;
}

.application-form-details .form-group .form-control.textarea {
  height: 125px;
  padding-top: 15px;
}

.application-form-details .form-group .form-select {
  height: 56px;
  box-shadow: unset;
  padding-left: 20px;
  border-radius: unset;
  border: 1px solid #ebebeb;
  background-color: transparent;
}

.application-form-details .form-check {
  margin-bottom: 40px;
}

.application-form-details .form-check .form-check-input {
  box-shadow: unset;
  border-radius: unset;
  border: 1px solid var(--primaryColor);
  background-color: transparent;
}

.application-form-details .form-check .form-check-input:checked {
  background-color: var(--primaryColor);
}

.application-form-details .form-check .form-check-label {
  font-size: 14px;
}

.application-form-details .form-check .form-check-label a {
  font-weight: 500;
}

.application-form-details .default-btn {
  width: 100%;
  transition: var(--transition);
}

.application-form-details .default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: var(--blackColor);
}

.application-form-details .m-30 {
  margin-bottom: 30px;
}

.single-faculty-card {
  margin-bottom: 25px;
}

.single-faculty-card .image {
  margin-bottom: 25px;
}

.single-faculty-card .content .title {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
}

.single-faculty-card .content .title h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.single-faculty-card .content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 13px;
}

.single-faculty-card .content ul li a {
  color: var(--paragraphColor);
}

.single-faculty-card .content ul li a:hover {
  color: var(--primaryColor);
}

.single-faculty-card .content ul li i {
  left: 0;
  top: 0;
  position: absolute;
  color: var(--primaryColor);
}

.single-faculty-card .content ul li:last-child {
  margin-bottom: 0;
}

.privacy-policy-content .sub {
  font-size: 15px;
  padding: 2px 10px;
  border-radius: 50px;
  margin-bottom: 20px;
  display: inline-block;
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.privacy-policy-content .cards {
  margin-bottom: 30px;
}

.privacy-policy-content .cards h1 {
  font-size: 45px;
  margin-bottom: 15px;
}

.privacy-policy-content .list-card {
  margin-bottom: 25px;
}

.privacy-policy-content .list-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.privacy-policy-content .list-card ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 18px;
}

.privacy-policy-content .list-card ul li i {
  top: -2px;
  left: 0;
  font-size: 18px;
  position: absolute;
  color: var(--primaryColor);
}

.privacy-policy-content .list-card ul li:last-child {
  margin-bottom: 0;
}

.blog-left-sidebar {
  margin-right: 12px;
}

.blog-left-sidebar .leading-management {
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
}

.blog-left-sidebar .leading-management h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.blog-left-sidebar .applications-info h3 {
  font-size: 18px;
  margin-bottom: 13px;
}

.blog-left-sidebar .applications-info .applications-card {
  margin-bottom: 15px;
}

.blog-left-sidebar .applications-info .applications-card i {
  line-height: 1;
  font-size: 25px;
  margin-right: 10px;
  color: var(--primaryColor);
}

.blog-left-sidebar .applications-info .applications-card p {
  font-weight: 500;
}

.blog-left-sidebar .applications-info .image {
  margin-top: 15px;
  margin-bottom: 25px;
}

.blog-right-sidebar {
  margin-left: 5px;
}

.program-details-left-sidebar {
  margin-right: 12px;
}

.program-details-left-sidebar .reviews-image {
  margin-bottom: 25px;
  position: relative;
}

.program-details-left-sidebar .reviews-image .reviews-info {
  left: 30px;
  right: 30px;
  margin: auto;
  bottom: 30px;
  padding: 30px;
  position: absolute;
  background-color: #f6f6f6;
}

.program-details-left-sidebar .reviews-image .reviews-info ul li {
  margin-right: 55px;
}

.program-details-left-sidebar .reviews-image .reviews-info ul li h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}

.program-details-left-sidebar .reviews-image .reviews-info ul li p {
  font-size: 14px;
}

.program-details-left-sidebar .reviews-image .reviews-info ul li .user .image {
  display: block;
  flex: 0 0 auto;
  margin-right: 15px;
}

.program-details-left-sidebar .reviews-image .reviews-info ul li .user .image img {
  width: 48px;
  height: 48px;
  border-radius: 100%;
}

.program-details-left-sidebar .reviews-image .reviews-info ul li .user .content h3 {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
}

.program-details-left-sidebar .reviews-image .reviews-info ul li .user .content p {
  font-size: 14px;
}

.program-details-left-sidebar .reviews-image .reviews-info ul li .star-icon li {
  margin-right: 5px;
}

.program-details-left-sidebar .reviews-image .reviews-info ul li .star-icon li i {
  color: rgb(243, 168, 2);
}

.program-details-left-sidebar .reviews-image .reviews-info ul li .star-icon li:last-child {
  margin-right: 0;
}

.program-details-left-sidebar .reviews-image .reviews-info ul li:last-child {
  margin-right: 0;
}

.program-details-left-sidebar .biochemistry {
  margin-bottom: 45px;
}

.program-details-left-sidebar .biochemistry h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.program-details-left-sidebar .biochemistry .list-info {
  margin-bottom: 20px;
}

.program-details-left-sidebar .biochemistry .list-info .applications-card {
  margin-bottom: 15px;
}

.program-details-left-sidebar .biochemistry .list-info .applications-card i {
  line-height: 1;
  font-size: 20px;
  margin-right: 10px;
  color: var(--primaryColor);
}

.program-details-left-sidebar .biochemistry .list-info .applications-card p {
  font-weight: 500;
}

.program-details-left-sidebar .biochemistry .program-card {
  margin-bottom: 25px;
}

.program-details-left-sidebar .biochemistry .program-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.program-details-right-sidebar {
  margin-left: 5px;
}

.single-program-widget {
  padding: 40px;
  margin-bottom: 50px;
  background-color: #f6f6f6;
}

.single-program-widget h3 {
  font-size: 18px;
  margin-bottom: 30px;
}

.single-program-widget.department .list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 18px;
  color: var(--paragraphColor);
}

.single-program-widget.department .list li a {
  color: var(--paragraphColor);
}

.single-program-widget.department .list li a:hover {
  color: var(--primaryColor);
}

.single-program-widget.department .list li i {
  top: 0;
  left: 0;
  position: absolute;
  color: var(--primaryColor);
}

.single-program-widget.department .share {
  margin-top: 30px;
}

.single-program-widget.department .share ul li {
  font-size: 18px;
  font-weight: 700;
  margin-right: 20px;
  color: var(--blackColor);
}

.single-program-widget.department .share ul li a {
  width: 38px;
  height: 38px;
  font-size: 16px;
  line-height: 45px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  background-color: var(--whiteColor);
}

.single-program-widget.department .share ul li a:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.single-program-widget.department .share ul li:last-child {
  margin-right: 0;
}

.single-program-widget.programs .programs-card {
  margin-bottom: 20px;
}

.single-program-widget.programs .programs-card .image {
  display: block;
  flex: 0 0 auto;
  margin-right: 25px;
}

.single-program-widget.programs .programs-card .image img {
  width: 109px;
  height: 82px;
}

.single-program-widget.programs .programs-card .content h6 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.single-program-widget.programs .programs-card .content ul li {
  position: relative;
  padding-left: 25px;
}

.single-program-widget.programs .programs-card .content ul li i {
  left: 0;
  top: 0;
  position: absolute;
  color: var(--primaryColor);
}

.single-program-widget.programs .programs-card:last-child {
  margin-bottom: 0;
}

.single-program-widget.register form .form-group {
  margin-bottom: 20px;
}

.single-program-widget.register form .form-group .form-control {
  height: 56px;
  border: unset;
  box-shadow: unset;
  padding-left: 20px;
  border-radius: unset;
  background-color: var(--whiteColor);
}

.single-program-widget.register form .default-btn {
  border: 0;
  width: 100%;
  transition: var(--transition);
}

.single-program-widget.events .events-card {
  margin-bottom: 20px;
}

.single-program-widget.events .events-card .image {
  display: block;
  flex: 0 0 auto;
  margin-right: 15px;
}

.single-program-widget.events .events-card .image img {
  width: 122px;
  height: 98px;
}

.single-program-widget.events .events-card .content h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 7px;
}

.single-program-widget.events .events-card .content ul li {
  position: relative;
  padding-left: 25px;
}

.single-program-widget.events .events-card .content ul li i {
  left: 0;
  top: 0;
  position: absolute;
  color: var(--primaryColor);
}

.single-program-widget.events .events-card:last-child {
  margin-bottom: 0;
}

.single-program-widget:last-child {
  margin-bottom: 0;
}

.events-details-left-sidebar {
  margin-right: 12px;
  margin-bottom: 25px;
}

.events-details-left-sidebar .image {
  margin-bottom: 25px;
}

.events-details-left-sidebar h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.events-details-left-sidebar .events-card {
  margin-top: 25px;
}

.events-details-left-sidebar .events-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.events-details-left-sidebar .register {
  margin-top: 50px;
}

.events-details-left-sidebar .register form .form-group {
  margin-bottom: 25px;
}

.events-details-left-sidebar .register form .form-group .form-control {
  height: 56px;
  padding-left: 20px;
  border-radius: unset;
  border: 1px solid #ebebeb;
}

.events-details-left-sidebar .register form .form-group .form-control.textarea {
  height: 229px;
  padding-top: 15px;
}

.events-details-left-sidebar .register form .default-btn {
  margin-top: 30px;
  transition: var(--transition);
}

.events-details-left-sidebar .register form .default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: var(--blackColor);
}

.events-details-right-sidebar {
  margin-left: 5px;
  margin-bottom: 25px;
}

.events-details-right-sidebar .events-details-map iframe {
  width: 100%;
  height: 296px;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-form {
  margin-right: 12px;
  margin-bottom: 25px;
}

.contact-form h1 {
  font-size: 42px;
  margin-bottom: 25px;
  text-align: center;
}

.contact-form form .form-group {
  margin-bottom: 25px;
}

.contact-form form .form-group .form-control {
  height: 56px;
  padding-left: 20px;
  border-radius: unset;
  border: 1px solid #ebebeb;
}

.contact-form form .form-group .form-control.textarea {
  height: 229px;
  padding-top: 15px;
}

.contact-form form .form-check {
  margin-bottom: 40px;
}

.contact-form form .form-check .form-check-input {
  box-shadow: unset;
  border-radius: unset;
  border: 1px solid var(--primaryColor);
}

.contact-form form .form-check .form-check-input:checked {
  background-color: var(--primaryColor);
}

.contact-form form .form-check .form-check-label {
  font-size: 14px;
}

.contact-form form .default-btn {
  width: 100%;
  transition: var(--transition);
}

.contact-form form .default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: var(--blackColor);
}

.contact-information {
  padding: 40px;
  background-color: #f6f6f6;
  /* margin-top: 74px; */
  margin-bottom: 25px;
}

.contact-information h3 {
  font-size: 18px;
  margin-bottom: 25px;
}

.contact-information .information-card {
  margin-bottom: 30px;
}

.contact-information .information-card .icon {
  width: 48px;
  height: 42px;
  display: block;
  flex: 0 0 auto;
  font-size: 23px;
  line-height: 42px;
  margin-right: 20px;
  text-align: center;
  color: var(--blackColor);
  transition: var(--transition);
  background-color: var(--whiteColor);
}

.contact-information .information-card .icon:hover {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

.contact-information .information-card .content a {
  font-weight: 500;
  color: var(--paragraphColor);
}

.contact-information .information-card .content a:hover {
  color: var(--blackColor);
}

.contact-information .information-card .content p {
  font-weight: 500;
  color: var(--paragraphColor);
}

.contact-information .information-card:hover .icon {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

.contact-information .information-card:last-child {
  margin-bottom: 0;
}

.contact-map iframe {
  width: 100%;
  height: 463px;
}

/*================================================
Navigation Area CSS
=================================================*/
.pagination {
  margin-top: 30px;
  margin-bottom: 30px;
}

.pagination .page-item {
  margin-right: 10px;
}

.pagination .page-item .page-link {
  height: 50px;
  width: 50px;
  border: none;
  box-shadow: none;
  line-height: 37px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: var(--blackColor);
  background-color: #f6f6f6;
  transition: var(--transition);
  font-size: 18px;
  font-weight: 700;
}

.pagination .page-item .page-link:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.pagination .page-item .page-link i {
  left: -1px;
  font-size: 25px;
  position: relative;
}

.pagination .page-item .page-link i.two {
  left: 1px;
}

.pagination .page-item .active {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.pagination .page-item:last-child {
  margin-right: 0;
}

/*================================================
Fitness Area CSS
=================================================*/
.fitness-image {
  z-index: 1;
  margin-bottom: 25px;
  position: relative;
  padding-left: 30px;
  padding-bottom: 30px;
}

.fitness-image::before {
  left: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  width: 200px;
  height: 158px;
  position: absolute;
  background-color: var(--secenderyColor);
}

.fitness-image.style-2 {
  padding-left: 0;
  padding-right: 30px;
}

.fitness-image.style-2::before {
  left: auto;
  right: 0;
  width: 200px;
  height: 242.717px;
  background-color: var(--blackColor);
}

.fitness-content {
  margin-left: 45px;
  margin-bottom: 25px;
}

.fitness-content .title {
  margin-bottom: 25px;
}

.fitness-content .title h2 {
  font-size: 42px;
  margin-bottom: 12px;
}

.fitness-content .list li {
  font-weight: 500;
  padding-left: 26px;
  position: relative;
  margin-bottom: 15px;
}

.fitness-content .list li i {
  top: -3px;
  left: 0;
  font-size: 20px;
  position: absolute;
  color: var(--primaryColor);
}

.fitness-content .list li:last-child {
  margin-bottom: 0;
}

.fitness-content.style-2 {
  margin-left: 0;
  margin-right: 45px;
}

.fitness-content.style-2 .fitness-btn {
  margin-top: 35px;
}

.fitness-content.style-2 .fitness-btn li {
  margin-right: 30px;
}

.fitness-content.style-2 .fitness-btn li .play-btn li {
  margin-right: 15px;
}

.fitness-content.style-2 .fitness-btn li .play-btn li .icon {
  width: 56px;
  height: 56px;
  font-size: 30px;
  line-height: 56px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  background-color: var(--secenderyColor);
}

.fitness-content.style-2 .fitness-btn li .play-btn li .icon i {
  top: 1px;
  left: 2px;
  position: relative;
}

.fitness-content.style-2 .fitness-btn li .play-btn li .icon:hover {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

.fitness-content.style-2 .fitness-btn li .play-btn li .arrow-btn {
  color: var(--blackColor);
}

.fitness-content.style-2 .fitness-btn li .play-btn li .arrow-btn::before {
  background-color: var(--blackColor);
}

.fitness-content.style-2 .fitness-btn li .play-btn li .arrow-btn:hover {
  color: var(--primaryColor);
}

.fitness-content.style-2 .fitness-btn li .play-btn li .arrow-btn:hover::after {
  background-color: var(--primaryColor);
}

.fitness-content.style-2 .fitness-btn li .play-btn li:last-child {
  margin-right: 0;
}

.fitness-content.style-2 .fitness-btn li .default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: var(--blackColor);
}

.fitness-content.style-2 .fitness-btn li:last-child {
  margin-right: 0;
}

/*================================================
Support Area CSS
=================================================*/
.support-image {
  z-index: 1;
  margin-bottom: 25px;
  position: relative;
  padding-left: 30px;
  padding-bottom: 30px;
}

.support-image::before {
  left: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  width: 200px;
  height: 233px;
  position: absolute;
  background-color: var(--blackColor);
}

.support-content {
  margin-bottom: 25px;
}

.support-content .title {
  margin-bottom: 30px;
}

.support-content .title h2 {
  font-size: 42px;
}

.support-content .questions-content {
  margin-bottom: 45px;
}

.support-content .questions-content .accordion-item {
  border: none;
  border-radius: 4px;
  margin-bottom: 25px;
  background-color: transparent;
}

.support-content .questions-content .accordion-item .accordion-button {
  padding: 0;
  padding-bottom: 15px;
  border: unset;
  box-shadow: none;
  position: relative;
  transition: var(--transition);
  background-color: transparent;
}

.support-content .questions-content .accordion-item .accordion-button span {
  color: var(--blackColor);
  transition: var(--transition);
  font-size: 16px;
  font-weight: 700;
}

.support-content .questions-content .accordion-item .accordion-button::after {
  top: 2px;
  width: 15px;
  right: 0;
  height: 15px;
  content: "\ea4d";
  position: absolute;
  margin: auto !important;
  color: var(--primaryColor);
  transition: var(--transition);
  background-image: unset !important;
  font-size: 14px;
  font-weight: 700;
  font-family: "remixicon" !important;
}

.support-content .questions-content .accordion-item .accordion-button.collapsed {
  border-radius: unset;
  background-color: transparent;
  border-bottom: 1px solid #ececec;
}

.support-content .questions-content .accordion-item .accordion-button.collapsed::after {
  top: 2px;
  color: var(--blackColor);
}

.support-content .questions-content .accordion-item .accordion-button.collapsed span {
  color: var(--blackColor);
}

.support-content .questions-content .accordion-item .accordion-button:focus {
  outline: 0;
  box-shadow: unset;
}

.support-content .questions-content .accordion-item .accordion-button:hover::after {
  color: var(--primaryColor);
}

.support-content .questions-content .accordion-item .accordion-body {
  padding: 0;
  border: unset;
  line-height: 1.8;
  padding-bottom: 15px;
  border-radius: unset;
  color: var(--paragraphColor);
  background-color: transparent;
  border-bottom: 1px solid #ececec;
}

.support-content .default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: var(--blackColor);
}

/*================================================
Footer Area Style
=================================================*/

.footer-area {
  background-color: #e7f0fa;
}

.single-footer-widget {
  margin-bottom: 25px;
}

.single-footer-widget h3 {
  font-size: 18px;
  margin-bottom: 25px;
}

.single-footer-widget ul li {
  margin-bottom: 20px;
}

.single-footer-widget ul li a {
  text-decoration: none;
  color: var(--paragraphColor);
}

.single-footer-widget ul li a:hover {
  color: var(--primaryColor);
}

.single-footer-widget ul li:last-child {
  margin-bottom: 0;
}

.single-footer-widget.about {
  margin-right: 35px;
}

.single-footer-widget.about p {
  margin-bottom: 35px;
}

.single-footer-widget.about h6 {
  font-size: 18px;
  margin-bottom: 20px;
}

.single-footer-widget.about .social-link li {
  margin-right: 10px;
}

.single-footer-widget.about .social-link li a {
  width: 36px;
  height: 36px;
  line-height: 42px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: var(--paragraphColor);
  background-color: var(--whiteColor);
}

.single-footer-widget.about .social-link li a:hover {
  color: var(--blackColor);
  background-color: var(--secenderyColor);
}

.single-footer-widget.about .social-link li:last-child {
  margin-right: 0;
}

.single-footer-widget.contact {
  margin-left: 15px;
}

.single-footer-widget.contact ul li {
  margin-bottom: 25px;
  padding-left: 25px;
  position: relative;
}

.single-footer-widget.contact ul li a i {
  left: 0;
  top: 1px;
  font-size: 16px;
  position: absolute;
  color: var(--primaryColor);
}

.single-footer-widget.contact ul li i {
  left: 0;
  top: 3px;
  font-size: 16px;
  position: absolute;
  color: var(--primaryColor);
}

.single-footer-widget.quick {
  margin-left: 50px;
}

.single-footer-widget.mobile {
  margin-left: 57px;
}

.single-footer-widget.mobile ul li {
  margin-bottom: 12px;
}

.single-footer-widget.mobile ul li:last-child {
  margin-bottom: 0;
}

.copyright-logo {
  margin-bottom: 25px;
}

.copyright-title p strong {
  color: var(--primaryColor);
}

.copyright-list {
  margin-bottom: 25px;
}

.copyright-list ul li {
  margin-right: 25px;
}

.copyright-list ul li a {
  color: var(--paragraphColor);
}

.copyright-list ul li a:hover {
  color: var(--primaryColor);
}

.copyright-list ul li:last-child {
  margin-right: 0;
}

/*================================================
Back to Top Style
=================================================*/
#back-to-top {
  opacity: 0;
  top: 87%;
  right: 2%;
  z-index: 4;
  width: 40px;
  height: 50px;
  border: unset;
  position: fixed;
  transition: 0.9s;
  cursor: pointer;
  line-height: 45px;
  border-radius: 5px;
  text-align: center;
  background-color: var(--blackColor);
}

#back-to-top i {
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 25px;
  transition: 0.5s;
  position: absolute;
  color: var(--whiteColor);
  transform: translateY(-50%);
}

#back-to-top:hover {
  color: #ffffff;
  background: var(--secenderyColor);
}

#back-to-top:hover i {
  color: var(--blackColor);
}

#back-to-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

#back-to-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

#back-to-top:focus {
  color: #ffffff;
}

#back-to-top:focus::before {
  opacity: 1;
  visibility: visible;
}

#back-to-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

#back-to-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

#back-to-top.active {
  top: 93%;
  right: 2%;
  opacity: 1;
  visibility: visible;
  transform: translateY(-95%);
}

/*# sourceMappingURL=style.css.map */

.main-logo {
  width: 70px;
  margin-right: 7px;
}

.logo-content h2 {
  font-size: 20px;
  font-family: sans-serif;
  color: var(--brand-color);
  margin-bottom: 0;
  font-weight: 800;
}

.logo-content span {
  font-size: 12px;
  font-family: sans-serif;
  color: var(--brand-color);
  font-weight: 600;
  margin-left: 2px;
}

.logo-content p {
  line-height: unset;
}

.autonomous {
  font-size: 10px;
  text-align: start;
  color: black;
  margin-left: 3px;
}

.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-lg,
.navbar>.container-md,
.navbar>.container-sm,
.navbar>.container-xl,
.navbar>.container-xxl {
  flex-wrap: wrap;
}

.top-logo-content ul {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
}

.top-logo-content-nav {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: start;
  flex-wrap: wrap;
  padding: 0;
}

.top-logo-content-nav li {
  margin: 10px 0 20px;
}

.primary-btn {
  border: 1px solid transparent;
  background: var(--brand-secondary);
  border-radius: 32px;
  padding: 7px 21px;
  color: white;
  text-decoration: unset;
  transition: all 0.5s;
  cursor: pointer;
}

.primary-btn:hover {
  border: 1px solid #fe0003;
  background: white;
  color: #fe0003;
}

.container-wrapper {
  width: 93%;
  margin: auto;
}

.logo-top-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.top-log0-left {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: start;
}

.top-logo-content {
  width: 40%;
  text-align: end;
}

.top-marquee {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ptb-60 {
  padding: 60px 0;
}

.top-header-area .list-unstyled {
  display: flex;
  align-items: center;
  justify-content: start;
}

.top-marquee marquee {
  margin: 0;
  line-height: unset;
  margin-bottom: -6px;
  margin-right: 10px;
  color: #fff;
  font-size: 14px;
}

.marquee-parent {
  height: max-content;
}

.top-marquee marquee a {
  color: var(--brand-yellow);
  text-decoration: none;
  padding: 0 5px;
}

.top-marquee marquee a:hover {
  color: white;
}

.about-parallax {
  position: relative;
  height: 400px;
  /* Adjust height as needed */
  overflow: hidden;
}

.sub-title {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  /* margin-bottom: 25px; */
  font-size: 19px;
  color: var(--brand-color);
}

.text-justify {
  text-align: justify;
}

.jarallax .container {
  z-index: 2;
  position: relative;
}

.parallax-section {
  height: 450px;
  color: white;
  text-align: center;
  position: relative;
}

.parallax-section h2 {
  font-size: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.about-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-one {
  width: 40%;
  height: 100%;
}

.about-image {
  width: 100%;
  border-radius: 20px;
  /* height: 100% !important; */
}

.about-image img {
  /* height: 100% !important; */
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
}

.courses-sec {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.featured-courses .tab-content .single-blog-card .image img {
  border-radius: 10px;
}

.featured-courses .tab-content .single-blog-card {
  border: 1px solid rgb(214, 214, 214);
  padding: 13px;
  border-radius: 10px;
}

.featured-courses .content .title a {
  font-size: 20px;
  font-family: "Canela Text Trial Regular No 2";
  font-weight: normal;
  src: local("Canela Text Trial Regular No 2"),
    url("CanelaText-RegularNo2-Trial.woff") format("woff");
}

.featured-courses .nav-courses .active {
  /* color: var(--brand-color) !important; */
  background: var(--brand-secondary) !important;
  color: white !important;
}

.featured-courses .nav-courses .nav-link:hover {
  background: var(--brand-secondary) !important;
  color: white !important;
}

.featured-courses .nav-courses .nav-link {
  color: rgb(56, 56, 56);
  background: rgb(228, 228, 228);
  border-radius: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  transition: all 0.5s;
}

.featured-courses .content li i {
  color: gray !important;
  font-size: 14px !important;
}

.featured-courses .single-blog-card .title a {
  color: black;
}

a {
  color: black;
}

.featured-courses .single-blog-card:hover .title a {
  color: var(--brand-color);
}

.nav-courses .nav-link {
  margin-right: 10px;
  cursor: pointer;
}

.single-blog-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  background-color: #f9f9f9;
}

.single-blog-card img {
  width: 100%;
  border-radius: 10px;
}

.single-blog-card .title {
  font-size: 1rem;
  margin-top: 10px;
}

.filter-item {
  transition: all 0.3s ease;
}

.programs-area .programs-slider .content a {
  color: black;
}

.funfact-area {
  background: var(--brand-secondary);
  position: relative;
}

.funfact-area .round-one {
  position: absolute;
  top: -5%;
  left: 5%;
}

.round-two {
  position: absolute;
  bottom: 0%;
  right: 5%;
}

.count-parent .count-card {
  border-right: 1px solid rgb(85, 0, 0);
  height: 90%;
}

.count-parent .count-card:last-child {
  border-right: unset;
}

.blog-area a {
  color: black;
  font-size: 23px;
  line-height: inherit;
  font-family: "Canela Text Trial Regular No 2";
  font-weight: normal;
  src: local("Canela Text Trial Regular No 2"),
    url("CanelaText-RegularNo2-Trial.woff") format("woff");
}


.blog-area a:hover {
  color: var(--brand-color);
}

.blog-area .list-unstyled li a {
  font-size: 15px;
}

.more-arrow-btn {
  padding: 7px;
  width: 45px;
  height: 45px;
  border: 1px solid black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.more-arrow-btn:hover {
  border: 1px solid var(--brand-secondary);
}

.more-arrow-btn:hover i {
  color: var(--brand-secondary);
}

.more-arrow-btn i {
  line-height: 1px;
  transform: rotate(-45deg);
}

.blog-area {
  background: #f6f6f6;
}

.testimonial-area {
  background: var(--brand-secondary);
}

.testimonial-slider-info-2 .swiper-btn .swiper-button-next,
.testimonial-slider-info-2 .swiper-btn .swiper-button-prev {
  position: unset;
  color: white;
  transition: var(--transition);
  padding: 7px;
  width: 53px;
  height: 53px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin: 0 5px;
}

.testimonial-slider-info-2 .swiper-btn .swiper-button-next:hover,
.testimonial-slider-info-2 .swiper-btn .swiper-button-prev:hover {
  color: var(--brand-color);
  background: white;
}

.testimonial-slider-info-2 .swiper-btn .swiper-button-next::after,
.testimonial-slider-info-2 .swiper-btn .swiper-button-prev::after {
  display: none;
}

.testimonial-slider-info-2 .swiper-btn .swiper-button-next.active,
.testimonial-slider-info-2 .swiper-btn .swiper-button-prev.active {
  color: var(--primaryColor);
}

.testimonial-slider-info-2 .swiper-btn .swiper-button-next::before,
.testimonial-slider-info-2 .swiper-btn .swiper-button-prev::before {
  position: absolute;
  font-family: flaticon !important;
}

.testimonial-slider-info-2 .swiper-btn .swiper-button-next::before {
  content: "\f10a";
}

.testimonial-slider-info-2 .swiper-btn .swiper-button-prev::before {
  content: "\f10b";
}

.testimonial-slider-info-2 .swiper-btn {
  display: flex;
  align-items: center;
  justify-content: start;
}

.latest-news .upcoming-content-info .content h3 {
  font-family: "Canela Text Trial Regular No 2";
  font-weight: normal;
  src: local("Canela Text Trial Regular No 2"),
    url("CanelaText-RegularNo2-Trial.woff") format("woff");
  font-size: 30px;
}

.latest-news .upcoming-content-info .content a {
  color: black !important;
}

.latest-news .upcoming-content {
  margin-left: unset;
  margin-right: unset;
  margin-bottom: unset;
}

.latest-news .upcoming-content .upcoming-content-info {
  padding: 16px;
  border: 1px solid rgb(202, 202, 202);
  border-radius: 10px;
}

.footer-logo {
  width: 110px;
  margin-bottom: 20px;
}

.header-top-end {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.header-main-menu {
  background: var(--brand-yellow);
}

.adma-tab-nav .nav-tabs {
  border-bottom: 1px solid rgb(226, 226, 226) !important;
}

.adma-tab-nav .nav-tabs .nav-link {
  background: #f5f5f5;
  border: none;
  margin-right: 10px;
  padding: 10px 20px;
  font-weight: 600;
  color: #333;
  border-radius: 5px;
  transition: 0.3s;
}

.adma-tab-nav .nav-tabs .nav-link.active {
  background: #0071bc;
  color: #fff;
}

.adma-tab-nav .nav-tabs {
  display: flex;
  justify-content: end;
  align-items: center;
}

.adma-about-area .adma-about-card h3 {
  font-size: 29px;
  font-weight: 600;
}

.adma-about-area .adma-tab-nav li .active {
  border: 1px solid #fe0003 !important;
  background: var(--brand-secondary) !important;
  color: white !important;
  text-decoration: unset !important;
  transition: all 0.5s !important;
  cursor: pointer !important;
}

.adma-about-area .adma-tab-nav li button:hover {
  border: 1px solid #fe0003 !important;
  background: white !important;
  color: #fe0003 !important;
}

.mission-list {
  list-style: none;
  padding-left: 10px;
}

.mission-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  /* space for icon */
}

.mission-list li::before {
  content: "\f19d";
  /* Font Awesome check icon */
  font-family: "Font Awesome 5 Free";
  /* or 6 Free */
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0px;
  color: var(--brand-secondary);
}

.tab-pane {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.1s ease, transform 0.4s ease;
}

.tab-pane.active.show {
  opacity: 1;
  transform: translateY(0);
}

.lazy-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.lazy-fade.reveal {
  opacity: 1;
  transform: translateY(0);
}

.fade-start {
  transform: translateX(-40px);
}

.fade-end {
  transform: translateX(40px);
}

.footer-logo-top {
  display: flex;
  align-items: center;
  justify-content: start;
  margin: 0 0 35px;
}

.footer-area img {
  border-radius: 50%;
}

.footer-area .navbar-brand {
  display: flex;
  align-items: center;
  justify-content: start;
  margin: auto;
}

/* waves */
.ocean {
  height: 100px;
  /* change the height of the waves here */
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-x: hidden;
  position: relative;
}

.wave {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%23E6F0FA'/%3E%3C/svg%3E");
  width: 200%;
  height: 100px;
  position: absolute;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
}

.wave:nth-of-type(2) {
  bottom: 0;
  animation: wave 30s linear reverse infinite;
  opacity: 0.5;
}

.wave:nth-of-type(3) {
  bottom: 0;
  animation: wave 20s -1s linear infinite;
  opacity: 0.5;
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.copyright-area {
  background: var(--brand-secondary);
  padding: 10px 0;
}

.copyright-area p {
  color: white;
  font-size: 14px;
}

.copyright-area p a {
  color: white;
  text-decoration: none;
}

.ptb-20 {
  padding: 20px 0;
}

#smooth-wrapper {
  height: 100%;
  overflow: hidden;
  /* position: fixed; */
  width: 100%;
  top: 0;
  left: 0;
}

#content {
  overflow: visible;
}

.parallax-section {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.pages-banner-area .pages-image img {
  border-radius: 20px;
}

.department .hod-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.department .hod-section img {
  width: 220px;
  border-radius: 10px;
}

.department .hod-details {
  flex: 1;
}

.department table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.department table th,
table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

.departmenttable th {
  background: #e0e0e0;
}


.news-event-card {
  border: 1px solid rgb(223, 223, 223);
  padding: 10px;
  border-radius: 17px;
  position: relative;
  overflow: hidden;
}

.news-event-card img {
  border-radius: 10px;
  margin-bottom: 10px;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
  width: 100%;
  max-height: 220px;
  transition: transform 0.3s ease;
}

.news-event-card h3 {
  min-height: 55px;
}

.news-event-card h3 a {
  font-size: 23px;
  color: black;
  text-decoration: none;
  font-family: "Canela Text Trial Regular No 2";
  font-weight: normal;
  src: local("Canela Text Trial Regular No 2"),
    url("CanelaText-RegularNo2-Trial.woff") format("woff");
}

.news-event-card:hover h3 a {
  color: var(--brand-secondary);
}

.news-event-card .date-sticker {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--brand-secondary);
  border-radius: 6px;
  padding: 2px 8px;
  color: white;
}

.w-95 {
  width: 95%;
}

.news-event-card:hover img {
  transform: scale(1.05);
}

.related-news-div {
  display: flex;
  justify-content: space-between;
  align-items: start;
  justify-content: start;
  border: 1px solid rgb(192, 192, 192);
  padding: 5px;
  border-radius: 7px;
  margin-bottom: 10px;
  margin: 5px;
}

.related-news-div img {
  width: 100px;
  margin-right: 5px;
}

.related-news-div p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 16px;
}

.related-news-div span {
  background: var(--brand-secondary);
  color: white;
  padding: 3px 7px;
  font-size: 13px;
  border-radius: 5px;
  text-align: end;
}

.related-news-div h5 {
  color: var(--brand-secondary);
  font-family: "Canela Text Trial Regular No 2";
  font-weight: normal;
  src: local("Canela Text Trial Regular No 2"),
    url("CanelaText-RegularNo2-Trial.woff") format("woff");
}

.related-news-div h5 a {
  text-decoration: none;
  color: var(--brand-secondary);
}

.recent-update {
  padding: 10px;
  border: 1px solid var(--brand-lite-red);
  border-radius: 10px;
}

.recent-updates {
  font-family: "Canela Text Trial Regular No 2";
  font-weight: normal;
  src: local("Canela Text Trial Regular No 2"),
    url("CanelaText-RegularNo2-Trial.woff") format("woff");
}

.related-news {
  height: 382px;
  overflow: hidden;
  position: relative;
  /* box-shadow: 0 0 10px; */
}

.related-news-inner {
  display: flex;
  flex-direction: column;
  animation: scroll-up 13s linear infinite;
}

.related-news:hover .related-news-inner {
  animation-play-state: paused;
}

.related-news-div {
  display: flex;
  gap: 15px;
  padding: 10px;
  align-items: center;
  border-bottom: 1px solid #ccc;
  background-color: #fff;
}

.related-news-div img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
}

@keyframes scroll-up {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-100%);
  }
}

.align-items-end {
  align-items: end;
}

.department-courses {
  display: flex;
  align-items: end;
  height: 100%;
}

.all-departments .programs-tab-content .single-programs-card p {
  line-height: unset;
  font-size: 15px;
}

.all-departments .programs-tab-content .single-programs-card .image img {
  border-radius: 8px;
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.all-departments .programs-tab-content .single-programs-card .list-unstyled {
  padding: 5px 10px;
  border-radius: 3px;
}

/* placement & training */
.training-placement {
  background: linear-gradient(67deg, #5200e8, #f8008a, #f939a4);
  font-family: "Segoe UI", sans-serif;
}

.bg-brand-linear {
  background: linear-gradient(67deg, #fff600, #cf0003, #fe0003);
  background-size: 300% 300%;
  animation: animateGradient 6s ease infinite;
  color: white;
  /* optional text contrast */
}

@keyframes animateGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.training-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.training-section-header h2 {
  font-size: 36px;
  color: #002855;
  margin-bottom: 10px;
  font-family: "Canela Text Trial Regular No 2";
  font-weight: normal;
  src: local("Canela Text Trial Regular No 2"),
    url("CanelaText-RegularNo2-Trial.woff") format("woff");
}

.training-section-header p {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.tp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.tp-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.tp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 113, 188, 0.15);
}

.tp-icon {
  font-size: 40px;
  color: var(--brand-yellow);
  margin-bottom: 20px;
}

.tp-card h4 {
  font-size: 22px;
  color: var(--brand-secondary);
  margin-bottom: 10px;
}

.tp-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.programs-slider_2 .content h3 a {
  color: #000;
}

.highlight-topic {
  background: linear-gradient(270deg, #fcce09, #cf0003, #fe0003, #fcce09);
  background-size: 400% 400%;
  padding: 10px 40px;
  border-radius: 8px;
  color: white;
  animation: animateBG 5s ease infinite;
}

/* Keyframes for the moving gradient */
@keyframes animateBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.news-profile img {
  height: 100px;
  min-width: 80px;
  object-fit: cover;
}

.programs-slider_2 .left_right-arrow {
  position: absolute;
  bottom: 0;
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -0px;
}

.programs-slider_2 {
  z-index: 999999;
}

.recent-news-bottom {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: end;
}

.recent-news-bottom a {
  font-size: 14px;
  color: var(--brand-yellow-secondary);
}

.recent-news-bottom a i {
  font-size: 17px;
}

.recent-news-bottom a:hover {
  color: var(--brand-secondary);
}

.all-departments .programs-tab-content .single-programs-card:hover {
  background: linear-gradient(-110deg,
      var(--brand-secondary),
      var(--brand-yellow-secondary));
  color: white;
}

.all-departments .programs-tab-content .single-programs-card:hover h3 a {
  color: white;
}

.all-departments .programs-tab-content .single-programs-card:hover a {
  color: white;
  border-color: #fff;
}

.all-departments .single-programs-card:hover .content .arrow-btn::before {
  background-color: #fff;
}

.all-departments .single-programs-card .content .arrow-btn:hover::before {
  background-color: #fff !important;
}

.all-departments .programs-tab-content .single-programs-card:hover p {
  color: white;
}

.latest-news .swiper-btn .swiper-button-next,
.latest-news .swiper-btn .swiper-button-prev {
  /* position: unset; */
  color: white;
  transition: var(--transition);
  padding: 7px;
  width: 53px;
  height: 53px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin: 0 5px;
}

.latest-news .upcoming-content-info:hover .content h3 a {
  color: var(--brand-secondary);
}

.list-overview {
  border-radius: 10px;
  width: 100%;
}

.list-overview ul {
  list-style: none;
  padding: 0;
  border-radius: 12px;
  width: 100%;
}

.list-overview ul .active {
  background: var(--brand-secondary);
  /* background: linear-gradient(to bottom,var(--brand-yellow-secondary) , #ff3636, var(--brand-secondary), var(--brand-secondary),var(--brand-secondary), var(--brand-secondary), var(--brand-yellow-secondary)); */
}

.list-overview ul .active a {
  color: white;
}

.list-overview ul li {
  border: 1px solid #fff;
  padding: 10px;
  width: 100%;
  transition: all 0.5s !important;
  background: linear-gradient(to left,
      var(--brand-secondary),
      var(--brand-yellow-secondary));
}

.list-overview ul li:hover {
  background: var(--brand-secondary);
  /* background: linear-gradient(to bottom,var(--brand-yellow-secondary) 2%, #ff3636, var(--brand-secondary), var(--brand-secondary), var(--brand-secondary), var(--brand-yellow-secondary)); */
}

.list-overview ul li:hover a {
  color: white;
}

.list-overview ul li a {
  text-decoration: none;
  color: #000000;
  width: 100%;
}

.w-100 {
  width: 100%;
}

.list-overview ul li:first-child {
  border-radius: 10px 10px 0 0;
}

.list-overview ul li:last-child {
  border-radius: 0 0 10px 10px;
}

.ptb-30 {
  padding: 30px 0;
}

.list-sec {
  position: sticky;
  top: 170px;
}

.list-sec h4 {
  /* font-family: 'Canela Text Trial Regular No 2'; */
  font-size: 30px;
  font-weight: 600;
  /* src: local('Canela Text Trial Regular No 2'), url('CanelaText-RegularNo2-Trial.woff') format('woff'); */
}

.groups {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.groups table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  animation: fadeIn 0.5s ease-in-out;
  border-bottom: 1px solid gray;
}

.groups thead {
  background-color: var(--brand-secondary);
  color: white;
}


.groups th,
.groups td {
  padding: 16px 10px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  transition: background 0.3s ease;
}

.groups thead th {
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.groups tbody tr:last-child td {
  border-bottom: none;
}

.groups tbody tr td {
  text-align: start;
}

.groups tbody tr:hover {
  background-color: #e8f4fd;
  cursor: pointer;
}

.groups a {
  color: #000000;
  font-weight: normal;
  transition: color 0.3s ease;
  text-decoration: none;
}

.groups a:hover {
  color: var(--brand-secondary);
}

@media (max-width: 600px) {

  .groups table,
  .groups thead,
  .groups tbody,
  .groups th,
  .groups td,
  .groups tr {
    display: block;
  }

  .groups thead {
    display: none;
  }

  .groups tr {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    background-color: #fff;
  }

  .groups td {
    text-align: right;
    /* padding-left: 50%; */
    position: relative;
  }

  .groups td::before {
    content: attr(data-label);
    position: absolute;
    left: 16px;
    width: 45%;
    padding-right: 10px;
    font-weight: bold;
    text-align: left;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.core-values {
  font-family: "Roboto", sans-serif;
  padding: 30px 20px;
  background: #f4f9fc;
  text-align: center;
}

.core-values h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: black;
  font-family: "Canela Text Trial Regular No 2";
  font-weight: normal;
  src: local("Canela Text Trial Regular No 2"),
    url("CanelaText-RegularNo2-Trial.woff") format("woff");
}

.core-values p.subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.core-values .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.core-values .value-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.core-values .value-card:hover {
  border-color: var(--brand-secondary);
  transform: translateY(-5px);
}

.core-values .value-card i {
  font-size: 36px;
  color: var(--brand-yellow-secondary);
  margin-bottom: 15px;
}

.core-values .value-card h4 {
  font-size: 20px;
  color: var(--brand-secondary);
  margin-bottom: 10px;
}

.core-values .value-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.chairman-message {
  font-family: "Roboto", sans-serif;
  background: #f9fcff;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  border: 1px solid var(--brand-secondary);
  border-radius: 10px;
  height: max-content;
}

.chairman-message .section-title {
  text-align: center;
  margin-bottom: 20px;
}

.chairman-message .section-title h2 {
  font-size: 36px;
  color: var(--brand-secondary);
  margin-bottom: 10px;
}

.chairman-message .section-title p {
  font-size: 16px;
  color: #555;
}

.chairman-message .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.chairman-message .photo {
  flex: 0 0 280px;
  max-width: 280px;
}

.chairman-message .photo img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.chairman-message .text {
  flex: 1;
  min-width: 280px;
}

.chairman-message .text p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.chairman-message .text .name {
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-yellow);
}

.chairman-message .text .designation {
  font-size: 14px;
  color: #888;
}

@media (max-width: 768px) {
  .chairman-message .content {
    flex-direction: column;
    text-align: center;
  }

  .chairman-message .text {
    padding: 0 10px;
  }

  .logo-sub-content {
    display: none;
  }

  .top-logo-content {
    display: none;
  }

  .parallax-section {
    height: max-content;
  }
}

.board-management table,
.governing-body table,
.advisory-committee table,
.executive-committee table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.board-management th,
.governing-body th,
.advisory-committee th,
.executive-committee th,
.board-management td,
.governing-body td,
.advisory-committee td,
.executive-committee td {
  padding: 14px 16px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.board-management th,
.governing-body th,
.advisory-committee th,
.executive-committee th {
  background-color: var(--brand-secondary);
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.board-management tbody tr:hover,
.governing-body tbody tr:hover,
.advisory-committee tbody tr:hover,
.executive-committee tbody tr:hover {
  background-color: #f1f5fa;
}

.overiview-sec .main p {
  text-indent: 40px;
}

.text-indent-40 {
  text-indent: 40px;
}

.patrons h3 {
  text-decoration: underline;
  color: var(--brand-secondary);
}

.mandatory-disclosure {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.mandatory-disclosure .container {
  max-width: 1000px;
  margin: 0 auto;
}

.mandatory-disclosure .section-title {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: bold;
  color: var(--brand-secondary);
  text-align: center;
  border-bottom: 2px solid var(--brand-secondary);
  display: inline-block;
  padding-bottom: 10px;
}

.mandatory-disclosure .disclosure-item {
  background: #fff;
  border: 1px solid #ddd;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.mandatory-disclosure .disclosure-item h3 {
  font-size: 22px;
  color: var(--brand-secondary);
  margin-bottom: 15px;
  border-left: 4px solid var(--brand-secondary);
  padding-left: 10px;
}

.mandatory-disclosure .disclosure-item p,
.mandatory-disclosure .disclosure-item li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #333;
}

.mandatory-disclosure ul {
  list-style-type: disc;
  padding-left: 20px;
}

.committee-section {
  padding: 10px 20px;
  /* background-color: #f7f9fc; */
  font-family: "Segoe UI", sans-serif;
}

.committee-table {
  margin-bottom: 40px;
  background: #eeeeee;
  border-radius: 20px;
}

.committee-table h3 {
  font-size: 22px;
  color: var(--brand-secondary);
  margin-bottom: 15px;
  border-left: 5px solid var(--brand-secondary);
  padding-left: 10px;
}

.committee-table .table-responsive {
  overflow-x: auto;
}

.committee-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.committee-table table thead {
  background-color: var(--brand-secondary);
  color: #fff;
}

.committee-table table thead tr th {
  padding: 10px 8px;
}

.committee-tabletable th,
.committee-table table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
  font-size: 15px;
}

.committee-table table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

@media screen and (max-width: 768px) {
  .committee-section .section-title {
    font-size: 24px;
  }

  .committee-section table th,
  table td {
    font-size: 14px;
    padding: 10px;
  }

}

.calendar-container {
  max-width: 1000px;
  margin: 0 auto;
}

.calendar-title {
  text-align: center;
  font-size: 36px;
  /* color: var(--brand-secondary); */
  margin-bottom: 40px;
  font-weight: 600;
}

.academic-year {
  /* background-color: #ffffff; */
  border-left: 5px solid var(--brand-secondary);
  padding: 5px 25px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
}

.academic-year h3 {
  font-size: 24px;
  color: var(--brand-secondary);
}

.academic-year ul {
  list-style-type: none;
  padding-left: 0;
}

.academic-year li {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 10px;
}

.academic-year li strong {
  color: black;
}

.calendar-top {
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.news-event-card p {
  line-height: unset;
  font-size: 15px;
}

.image-gallery {
  /* padding: 10px; */
  border: 1px solid rgb(192, 192, 192);
  border-radius: 10px;
}

.image-gallery img {
  border-radius: 10px;
}

/* faculty */
.faculty-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.faculty-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  margin-bottom: 30px;
}

.faculty-card img {
  object-fit: cover;
  margin-bottom: 2px;
  min-height: 239px;
}

.faculty-card h4 {
  margin: 10px 0 5px;
  font-size: 18px;
  color: #ffffff;
}

.faculty-card p {
  font-size: 14px;
  margin-bottom: 0;
  color: #ffffff;
}

@media (max-width: 768px) {
  .faculty-card {
    padding: 15px;
  }

  .faculty-card img {
    width: 100px;
    height: 100px;
  }
}

.faculty-content {
  padding: 10px;
  background: var(--brand-secondary);
}

.organogram-section {
  padding: 50px 20px;
  text-align: center;
}

.organogram .tree {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.organogram .node {
  background: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  display: inline-block;
}

.organogram .node::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 30px;
  background: var(--brand-secondary);
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.organogram .tree>.node::after {
  display: none;
}

.organogram .children {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  margin-top: 30px;
}

.organogram .children::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-secondary);
}

.organogram .children .node::after {
  top: -15px;
  height: 15px;
}

@media (max-width: 768px) {
  .organogram .children {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .organogram .children::before {
    display: none;
  }

  .organogram .node::after {
    display: none;
  }

  .hero-slider-new {
    height: 350px;
  }

  .hero-slider-new #carouselExampleCaptions {
    height: 350px;
  }

  .hero-slider-new #carouselExampleCaptions .carousel-inner .carousel-item {
    height: 350px;
  }
}

.department {
  font-family: Arial, sans-serif;
}

.department .list-sec ul {
  list-style: none;
  padding: 0;
}

.department .list-sec ul li {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  border: 1px solid #fff;
  padding: 10px;
  width: 100%;
  transition: all 0.5s !important;
  background: linear-gradient(to left,
      var(--brand-secondary),
      var(--brand-yellow-secondary));
}

.department .list-sec ul li:hover {
  background: var(--brand-secondary);
  color: white;
}

.department .list-sec ul li a {
  text-decoration: none;
  display: block;
  cursor: pointer;
  color: black;
}

.department .list-sec ul li:hover a {
  color: white;
}

.department .list-sec ul li.active {
  background: var(--brand-secondary);
  color: #ffffff;
}

.department .list-sec ul li.active a {
  color: #ffffff;
}

.department .content-section {
  display: none;
  padding: 20px;
  float: left;
  min-height: 300px;
}

.department .content-section.active {
  display: block;
}

.department .clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.department .list-sec ul li:first-child {
  border-radius: 10px 10px 0 0;
}

.department .list-sec ul li:last-child {
  border-radius: 0 0 10px 10px;
}

.list-sec h4 {
  margin-bottom: 20px;
  font-family: "Canela Text Trial Regular No 2";
  font-style: normal;
  font-weight: normal;
  src: local("Canela Text Trial Regular No 2"),
    url("CanelaText-RegularNo2-Trial.woff") format("woff");
}

.department-features h3 {
  font-family: "Canela Text Trial Regular No 2";
  font-weight: 700;
  color: var(--brand-secondary);
  src: local("Canela Text Trial Regular No 2"),
    url("CanelaText-RegularNo2-Trial.woff") format("woff");
}

.dept-title {
  background: linear-gradient(to right,
      var(--brand-secondary),
      var(--brand-yellow-secondary));
  padding: 10px;
  font-size: 22px;
  width: 100%;
  color: white !important;
}

.content-section .paragraph p:first-child {
  text-indent: 40px;
  margin-top: 20px;
}

.dpt-img img {
  width: 100%;
  object-fit: cover;
  height: 300px;
  border-radius: 20px;
  margin: 20px 0;
}

.department-features .adma-about-card h3 {
  font-size: 30px;
  color: black;
}

.department-features #vision .adma-tab-nav .active {
  border: 1px solid var(--brand-secondary);
  background: var(--brand-secondary);
  color: white;
}

.department-features #vision .adma-tab-nav button:hover {
  border: 1px solid var(--brand-secondary);
  color: var(--brand-secondary);
  background: white;
}

.faculty-profile {
  display: flex;
  align-items: start;
  border: 1px solid rgb(221, 221, 221);
  justify-content: start;
  padding: 20px;
  border-radius: 20px;
  background-color: var(--brand-secondary);
}

.faculty-profile img {
  width: 250px;
  height: 250px;
  border-radius: 20px;
}

.faculty-profile-content {
  padding: 40px;
}

.faculty-profile-content {
  color: white;
}

.faculty-profile-content a {
  color: white;
}

.faculty-profile-content span {
  color: var(--secenderyColor);
}

.faculty-profile-content h4 {
  font-size: 20px;
}

.lap-facilities {
  border: 1px solid var(--secenderyColor);
  border-radius: 10px;
  background: var(--brand-secondary);
}

.lap-facilities img {
  border-radius: 10px 10px 0 0;
}

.lap-facilities .content {
  padding: 20px;
}

.lap-facilities .content h4 a {
  color: var(--secenderyColor);
  font-size: 21px;
  margin-bottom: 13px;
  text-align: center;
  font-family: "Canela Text Trial Regular No 2";
  font-weight: normal;
  src: local("Canela Text Trial Regular No 2"),
    url("CanelaText-RegularNo2-Trial.woff") format("woff");
  text-decoration: none;
}

.lap-facilities .content p {
  color: #fff;
  font-size: 15px;
  text-align: center;
}

.details {
  color: var(--secenderyColor);
  font-size: 16px;
  text-decoration: none;
  text-align: right;
}

.details:hover {
  color: #fff;
}

.placements .carousel-item {
  border-radius: 20px;
}

.placements .carousel-item img {
  border-radius: 20px;
}

.placements .carousel-control-prev .carousel-control-prev-icon {
  background: rgba(0, 0, 0, 0.884);
  width: 50px;
  color: rgb(255, 255, 255);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 24px;
}

.placements .carousel-control-next .carousel-control-next-icon {
  background: rgba(0, 0, 0, 0.87);
  width: 50px;
  color: rgb(255, 255, 255);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 24px;
}

.contact-card {
  border: 1px solid gray;
  padding: 10px;
  border-radius: 20px;
  text-align: start;
}

.important-content p {
  text-indent: 40px !important;
}

.table-sub-heading {
  font-size: 17px;
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
}

.spl-sub-title {
  font-size: 22px;
  color: var(--brand-secondary);
  margin-bottom: 15px;
  border-left: 4px solid var(--brand-secondary);
  padding-left: 10px;
}

.placement-header {
  background: linear-gradient(135deg,
      var(--placement-primary-color),
      var(--placement-secondary-color));
  color: white;
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.placement-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1521791055366-0d553872125f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80") center/cover;
  opacity: 0.2;
  z-index: 0;
}

.placement-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  position: relative;
}

.placement-header p {
  font-size: 1.2rem;
  margin: 0 auto;
  position: relative;
}

.placement-section-title {
  text-align: center;
  margin-bottom: 40px;
  color: var(--placement-primary-color);
  font-size: 2.2rem;
  position: relative;
}

.placement-section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--placement-secondary-color);
  margin: 15px auto 0;
}

.placement-intro {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  line-height: 1.8;
}

.placement-features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.placement-feature-card {
  flex: 1 1 300px;
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.placement-feature-card:hover {
  transform: translateY(-10px);
}

.placement-feature-icon {
  font-size: 2.5rem;
  color: var(--placement-secondary-color);
  margin-bottom: 20px;
}

.placement-feature-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--placement-primary-color);
}

.placement-training-modules {
  margin-top: 20px;
  padding-left: 20px;
}

.placement-training-modules li {
  margin-bottom: 10px;
  position: relative;
}

.placement-training-modules li::before {
  content: "•";
  color: var(--placement-secondary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.placement-infrastructure {
  margin-top: 40px;
  background-color: var(--placement-light-color);
  padding: 40px;
  border-radius: 8px;
}

.placement-infrastructure h3 {
  color: var(--placement-primary-color);
  margin-bottom: 20px;
}

.placement-footer {
  background-color: var(--placement-primary-color);
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .placement-header h1 {
    font-size: 2rem;
  }

  .placement-feature-card {
    flex: 1 1 100%;
  }
}


/* Tab buttons */
.placement-tab-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

/* Tab content */
.placement-tab-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  display: none;
}

.placement-tab-content.placement-active {
  display: block;
  animation: placement-fadeIn 0.5s ease-in-out;
}

.placement-feature-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.placement-feature-title {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--brand-secondary);
  margin-left: 10px;
}

@keyframes placement-fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.placement-tab-buttons button {
  background: #f5f5f5;
  border: none;
  margin-right: 10px;
  padding: 10px 20px;
  font-weight: 600;
  color: #333;
  border-radius: 5px;
  transition: 0.3s;
}

.placement-tab-buttons .placement-active {
  border: 1px solid #fe0003 !important;
  background: var(--brand-secondary) !important;
  color: white !important;
  text-decoration: unset !important;
  transition: all 0.5s !important;
  cursor: pointer !important;
  border: none;
}

.placement-title {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 22px;
  color: var(--brand-secondary);
  margin-bottom: 15px;
  border-left: 4px solid var(--brand-secondary);
  padding-left: 10px;
}

.placement-list {
  list-style: none;
  padding-left: 10px;
}

.placement-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
}

.placement-list li:before {
  content: "\f19d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0px;
  color: var(--brand-secondary);
}

.admission li a {
  color: rgb(0, 0, 0);
}

.admission li:hover a {
  color: white;
}

.fees_structure table tbody tr td a i {
  font-size: 14px !important;
}


.fees_structure table tbody tr td a {
  border: 1px solid var(--brand-secondary);
  padding: 4px 10px;
  background: var(--brand-secondary);
  border-radius: 30px;
  color: #fff;
  transition: all 0.5s;
}


.fees_structure table tbody tr td a:hover {
  border: 1px solid var(--brand-secondary);
  padding: 4px 10px;
  background: #fff;
  border-radius: 30px;
  color: var(--brand-secondary);
}

.apply-section {
  padding: 20px;
}

.apply-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #0047bb;
  margin-bottom: 20px;
}

.apply-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.step-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0px 4px 8px rgb(182, 51, 51);
  transition: 0.3s;
  margin-bottom: 15px;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 10px rgb(172, 0, 0);
}

.step-number {
  font-size: 22px;
  font-weight: bold;
  color: var(--brand-secondary);
  margin-bottom: 10px;
}

.step-card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.apply-btn:hover {
  background: linear-gradient(90deg, #00c6ff, #0047bb);
}

.how-to-apply .primary-btn {
  padding: 14px 16px;
}

/* Scgolorship */
.scholarship a {
  color: inherit
}

.scholarship .container {
  max-width: 1120px;
  margin: auto;
  padding: 20px
}

.scholarship .grid {
  display: grid;
  gap: 20px
}

.scholarship .card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.scholarship .btn {
  padding: 12px 16px;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  font-weight: 600
}

.scholarship .btn-primary {
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: white
}

.scholarship .hero {
  display: grid;
  gap: 14px;
  align-items: center
}

.scholarship .title {
  font-size: 32px;
  margin: 0
}

.scholarship .subtitle {
  color: var(--muted);
  margin: 0
}

.scholarship .sch-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px
}

.scholarship .sch-name {
  font-weight: 700;
  font-size: 18px;
  margin: 0
}

.scholarship .sch-amount {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}


.reports-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: auto;
  padding: 20px;
}

.report-card {
  background: #f1f5f7;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.report-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.report-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #111;
}

.hr-list li a {
  color: rgb(0, 0, 0) !important;
}

.hr-list .active a {
  color: rgb(255, 255, 255) !important;
}

.hr-list li:hover a {
  color: rgb(255, 255, 255) !important;
}

.regulatuon tbody tr td a {
  color: white;
}

.aicte-committe table tbody tr td {
  cursor: auto;
}

.aicte_list #menu-list li a {
  color: black;
}

.aicte_list #menu-list .active a {
  color: rgb(255, 255, 255);
}

.aicte_list #menu-list li:hover a {
  color: rgb(255, 255, 255);
}

/* Gk Banner */
.sdg-banner {
  position: relative;
  width: 100%;
  max-width: 900px;
  /* change max width as needed */
  aspect-ratio: 1 / 1;
  /* square tile like SDG cards */
  background: var(--sdg-orange);
  color: var(--white);
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
}

/* Top area (number + title) */
.sdg-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  padding-bottom: 0;
}

.sdg-number {
  font-size: clamp(56px, 12vw, 180px);
  /* scales with tile */
  line-height: 0.9;
  font-weight: 700;
  flex: 0 0 auto;
}

.sdg-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(18px, 3.6vw, 48px);
  letter-spacing: 1px;
  white-space: pre-line;
  margin-top: 8px;
  /* small offset so looks like official tile */
}

/* Icon block (bottom center) */
.sdg-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 6%;
  width: 72%;
  max-height: 52%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
}

.sdg-icon img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.0));
}

/* Make tile smaller on very small screens */
@media (max-width:420px) {
  .sdg-top {
    padding: 16px
  }

  .sdg-icon {
    width: 82%
  }
}

.reach-us-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
  text-transform: uppercase;
}

.reach-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin: 20px auto;
  max-width: 600px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.reach-card h3 {
  /* font-size: 1.5rem; */
  margin-bottom: 15px;
  color: var(--brand-secondary);
}

.reach-card ul {
  list-style: none;
  padding: 0;
}

.reach-card ul li {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.6;
}

.reach-card ul li i {
  margin-right: 7px;
  color: var(--brand-secondary)
}

.information-card .content p a {
  text-decoration: unset;
}

.responsive-navbar {
  color: rgb(0, 0, 0) !important;
}

.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list .responsive-menu-items a {
  color: black;
}

.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list a {
  color: black;
}

.responsive-navbar .offcanvas-header .close-btn i {
  color: black;
  font-size: 30px;
}

@media (max-width: 768px) {
  .department .hod-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .department .hod-section img {
    width: 100%;
    max-width: 300px;
  }

  .top-log0-left {
    width: 100%;
  }

  .top-logo-content {
    width: 100%;
    margin-top: 16px;
  }

  .top-marquee {
    justify-content: center;
  }

  .top-marquee .marquee-parent {
    display: none;
  }

  .top-header-area .list-unstyled {
    justify-content: center;
  }

  .top-header-area .list-unstyled li {
    margin: 0 10px;
  }

  .bg-video {
    height: 250px;
  }

  .hero-content {
    height: 250px;
  }

  .wave {
    height: 80px;
  }
}

.hero-slider-new {
  height: 500px;
  position: relative;
}

.hero-slider-new #carouselExampleCaptions {
  height: 500px;
}

.hero-slider-new #carouselExampleCaptions .carousel-inner {
  height: 500px;
}

.hero-slider-new #carouselExampleCaptions .carousel-inner .carousel-item {
  height: 500px;
}

.hero-slider-new #carouselExampleCaptions .carousel-inner img {
  height: 100%;
  width: auto;
  object-fit: cover;
}

.dropdown-menu .submenu {
  display: none;
  padding-left: 20px;
}

.dropdown-menu .has-submenu:hover .submenu {
  display: block;
  position: absolute;
  left: -270px;
  width: 290px;
  top: 0 !important;
  background: white;
  padding: 10px 20px;
  z-index: 9999;
}


.dropdown-menu .has-submenu .submenu li {
  margin-bottom: 10px;
}

.dropdown-menu .has-submenu .submenu li a {
  color: #001e43;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.dropdown-menu .has-submenu .submenu li:hover a {
  color: #fe0003;
}



.greviency .form-section {
  flex: 2;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 6px;
}

.greviency .form-section p {
  font-size: 13px;
  margin-bottom: 15px;
  color: #333;
}

.greviency .form-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.greviency .form-section h3 {
  margin-top: 30px;
}

label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.greviency .radio-group {
  margin-top: 5px;
}

.greviency .radio-group label {
  font-weight: normal;
  margin-right: 15px;
}

textarea {
  height: 80px;
  resize: none;
}

.greviency .captcha {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.greviency .captcha span {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 4px;
  font-family: "Courier New", monospace;
}

.greviency .btn-submit {
  margin-top: 20px;
  background: #4CAF50;
  color: #fff;
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.greviency .sidebar {
  flex: 1;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 6px;
  height: fit-content;
  position: sticky;
  top: 150px;
}

.greviency .sidebar h3 {
  background: red;
  color: #fff;
  padding: 10px;
  text-align: center;
  margin: 0;
  border-radius: 4px;
  font-size: 15px;
}

.greviency .sidebar ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.greviency .sidebar ul li {
  margin-bottom: 10px;
}

.greviency .sidebar ul li a {
  text-decoration: none;
  color: #007b5e;
}

.greviency .admission-box {
  margin-top: 20px;
  text-align: center;
  border: 1px dashed red;
  padding: 10px;
}

.greviency .admission-box p {
  margin: 0;
  font-size: 13px;
}

.greviency .admission-box span {
  display: block;
  font-size: 20px;
  color: red;
  font-weight: bold;
  margin-top: 5px;
}

/* Style for Select Dropdown */
select[name="feedback_category"] {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333'%3E%3Cpath d='M4.516 6.547a.75.75 0 011.06 0L8 8.97l2.424-2.423a.75.75 0 111.06 1.06L8.53 10.53a.75.75 0 01-1.06 0L4.516 7.606a.75.75 0 010-1.06z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

select[name="feedback_category"]:focus {
  border-color: #28a745;
  box-shadow: 0 0 5px rgba(40, 167, 69, 0.4);
}

select[name="feedback_category"] option {
  padding: 10px;
}

.greviency select {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333'%3E%3Cpath d='M4.516 6.547a.75.75 0 011.06 0L8 8.97l2.424-2.423a.75.75 0 111.06 1.06L8.53 10.53a.75.75 0 01-1.06 0L4.516 7.606a.75.75 0 010-1.06z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.greviency textarea {
  margin-top: 10px;
}

.faculty-img img {
  object-fit: cover;
}

.top-logo-content li img {
  width: 90px;
  margin: 0 10px
}

.hamburger-icon {
  width: max-content;
  margin-left: auto;
}

.headtop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {

  .hero-slider-new {
    height: max-content;
  }

  .hero-slider-new #carouselExampleCaptions {
    height: max-content;
  }

  .hero-slider-new #carouselExampleCaptions .carousel-inner .carousel-item {
    height: max-content;
  }
}


.nav-item {
  position: relative;
}

.dropdown-menu,
.submenu {
  display: none;
  position: absolute;
  background: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ccc;
  min-width: max-content;
  z-index: 1000;
  padding-left: 0;
}

.dropdown-menu li,
.submenu li {
  position: relative;
}

.nav-item:hover>.dropdown-menu {
  display: block;
}

.dropdown-menu li:hover>.submenu {
  display: block;
  top: 0;
  left: 100%;
  min-width: 200px;
  border: unset;
}

.nav-link {
  display: block;
  text-decoration: none;
  color: #333;
}

.submenu .nav-link {
  padding-left: 0 !important;
}

.dropdown-menu .nav-item a {
  position: relative;
}

.dropdown-menu .nav-item a i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.fees_structure table tbody tr td a {
  border: 1px solid var(--brand-secondary);
  padding: 4px 18px;
  background: var(--brand-secondary);
  border-radius: 30px;
  color: #fff !important;
  transition: all 0.5s;
}

.fees_structure table tbody tr td a:hover {
  color: var(--brand-color) !important;
  padding: 4px 18px;
}

.criteria-sec h3 {
  color: var(--brand-color);
}

.companies-list span {
  background: var(--brand-color) !important;
}

.companies-list li a {
  padding: 10px !important;
}

.companies-list li {
  list-style: none;
}

.board-of-management .faculty-card img {
  height: 300px;
}

.campus_life .dropdown-menu li:hover>.submenu {
  left: -60% !important;
}

.campus-sports ul {
  list-style: none !important;
}

.campus-sports .student-list li {
  margin-top: 30px;
}

.campus-sports ul li p {
  margin-bottom: 5px
}

.campus-sports .participant li {
  margin-bottom: 20px;
}

.library .groups table thead tr th {
  background: transparent !important;
  color: white !important;
}

.library .groups table tbody tr {
  border-bottom: 1px solid gray !important;
}

.style-italic {
  font-style: italic;
  font-family: cursive;
}


.gallery img {
  width: 200px;
  margin: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0px 0px 20px #000;
}

#caption {
  margin: 20px;
  text-align: center;
  color: #ccc;
  font-size: 18px;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #ff4444;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  transition: 0.3s;
  user-select: none;
}

.prev {
  left: 20px;
  text-decoration: none;
}

.next {
  right: 20px;
  text-decoration: none;
}

.prev:hover, .next:hover {
  color: #ff4444;
}

.gallery-images .gallery img {
  height: 200px;
  object-fit: cover;
}

.banner-main {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-content-main {
  width: 25%;
  display: flex;
  padding: 12px;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(67deg, #fff600, #cf0003, #fe0003);
  background-size: 300% 300%;
  animation: animateGradient 6s ease infinite;

}

.banner-content-main div {
  text-align: center;
  height: max-content;
}

.banner-content-main h4 {
  color: white;
}

.banner-content-main p {
  color: white;
  margin-top: 20px;
}

.banner-img {
  width: 75%;
  height: 100%;
}

.banner-img img {
  height: 100%;
}

.hero-slider-new .arrow-btns .carousel-control-prev {
  left: 90%;
  width: max-content;
}

.hero-slider-new .arrow-btns .carousel-control-next {
  left: 95%;
  width: max-content;
}

@media screen and (max-width:768px) {

  .banner-main {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    height: max-content;
  }

  .banner-main .banner-content-main {
    width: 100%;
  }

  .banner-main .banner-img {
    width: 100%;
  }

  .banner-main .banner-content-main {
    height: 250px;
  }

  .banner-main .banner-img {
    height: 250px;
  }

  .hero-slider-new #carouselExampleCaptions .carousel-inner {
    height: max-content;
  }

  .hero-slider-new .arrow-btns .carousel-control-prev {
    left: 80%;
  }

  .hero-slider-new .arrow-btns .carousel-control-next {
    left: 90%;
  }

  .department .content-section {
    padding: 5px;
  }
}

.payment-card {
  text-align: center;
  padding: 10px;
  border: 1px solid rgb(189, 189, 189);
  height: 100%;
}

.payment-card h4 {
  color: var(--brand-color);
}

.bank-details-container {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.bank-details-table {
  width: 100%;
  border-collapse: collapse;
}

.bank-details-table th,
.bank-details-table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
  font-size: 15px;
}

.bank-details-table th {
  background-color: #f1f1f1;
  font-weight: 600;
  width: 40%;
  color: #333;
}

.bank-details-table td {
  background-color: #fff;
  color: #555;
}

/* Responsive */
@media (max-width: 600px) {

  .bank-details-table th,
  .bank-details-table td {
    display: block;
    width: 100%;
  }

  .bank-details-table th {
    background-color: #f6f6f6;
    border-bottom: none;
  }

  .bank-details-table td {
    border-top: none;
  }
}

.star-list li {
  list-style: none;
  position: relative;
  padding-left: 25px;
}

.star-list li:before {
  font-family: "Font Awesome 5 Free";
  /* ✅ Correct font family */
  content: "\f005";
  /* ✅ Correct Unicode for star */
  font-weight: 900;
  /* ✅ Needed for solid style icons */
  position: absolute;
  left: 0;
  font-size: 14px !important;
  color: var(--brand-color);
  /* optional – gold star color */
}

.campus-map {
  padding: 40px 0;
  background: #e60000;
}

.header-top-link {
  display: flex !important;
  align-items: center !important;
  justify-content: start !important;
}

.header-top-link a {
  text-decoration: none;
}

.youtube-section {
  max-height: 330px;
}

.event-details .event-image img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px !important;
}

.event-details {
  background-color: #f8f9fa;
}

.event-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.event-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
}

.event-meta {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.event-meta li {
  font-size: 16px;
  margin-bottom: 6px;
  color: #444;
}

.event-meta strong {
  color: #000;
  font-weight: 600;
}

.event-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
  text-align: justify;
}

/* Quote design */
.event-quote {
  background: #e9f5ff;
  border-left: 5px solid #0d6efd;
  font-size: 18px;
  color: #333;
  font-style: italic;
}

/* Sidebar card */
.side-card {
  position: sticky;
  top: 170px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.side-card h5 {
  font-weight: 700;
  color: var(--brand-color);
}

.side-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.side-item:last-child {
  border-bottom: none;
}

.side-item h6 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  color: #353535;
}

.side-item small {
  color: #666;
}

.blog-detail-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.blog-detail-header h2 {
  color: var(--brand-color);
}


/* Popup Background */
.popup {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Popup Box */
.popup-content {
  width: max-content;
  max-width: 90%;
  height: max-content;
  margin: auto;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  position: relative;
  animation: fadeIn 0.4s;
  
}

/* Image */
.popup-content img {
  /* max-width: 100%; */
  height: 85vh;
  margin: auto;
  border-radius: 6px;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--brand-color);
  color: #fff;
  font-size: 22px;
  padding: 2px 8px;
  border-radius: 50%;
  cursor: pointer;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.8);}
  to {opacity: 1; transform: scale(1);}
}

@media screen and (max-width:575px) {
  .popup-content img{
    max-height: max-content;
  }
}
.apply-form-content {}

.apply-modal.show {
    display: flex;
}

.apply-modal-content {
    background: #041b35;
    padding: 25px;
    width: 100%;
    position: relative;
    border-radius: 20px;
}

#applyModal .close-modal {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: black;
}

/* #applyForm{
    max-height: 420px;
    overflow-y: scroll;
} */
#applyForm .form-group {
    margin-bottom: 10px;
}

#applyForm .form-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    color: white;
}

#applyForm .form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px
}


/* 17-12-25 */
.info-grid {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
}

.info-card {
    background: #fff;
    padding: 5px 7px;
    border-radius: 16px;
    text-align: start;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    width: 100%;
}

.info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #2b2e83, #00a8ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.3s;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-6px);
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #f4f6ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    width: 38px;
}

.info-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 5px;
}

.info-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.check-title {
    position: relative;
    padding-left: 34px;
}

.check-title::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background: #e60000;
    color: #ffffff;
    border-radius: 50%;
    font-size: 13px;
    line-height: 22px;
    text-align: center;
    font-weight: 600;
}

.apply-modal {
    border: 1px solid gray;
    border-radius: 20px;
}
.apply-modal-content h3{
    color: white;
}
.w-max{
    width: max-content;
}
.arrow-link {
        display: inline-block;
        position: relative;
        padding: 5px 40px 5px 15px;
        background: #003f67;
        color: #fff !important;
        font-weight: bold;
        text-decoration: none;
        font-size: 16px;
        border-radius: 6px 0 0 6px;
        min-width: 138px;
    }

    .arrow-link::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -25px;
        width: 0;
        height: 0;
        border-top: 22px solid transparent;
        border-bottom: 22px solid transparent;
        border-left: 25px solid #003f67;
        transform: translateY(-50%);
    }

    .arrow-link:hover {
        background: #002b4a;
    }

    .arrow-link:hover::after {
        border-left-color: #002b4a;
    }