/*
@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
** - Section Title Style
** - Top Header Area Style
** - Navbar Area Style
** - Hero Area Style
** - About Area Style
** - Graduets Area Style
** - Funfact Area Style
** - Apply Area Style
** - Events Area Style
** - Tuition Area Style
** - Facilities Area Style
** - Testimonial Area Style
** - Partner Area Style
** - Footer Area Style
** - Overview Area Style
** - Programs Area Style
** - Upcoming Area Style
** - Application Area Style
** - Blog Area Style
** - Admission Area Style
** - Adma About Area Style
** - Video Area Style
** - Student Area Style
** - Counter Area Style
** - Choose Area Style
** - Newsletter Area Style
** - Page Banner Area Style
** - Fitness Area Style
** - Support Area Style
** - Contact Area Style
*/
/*================================================
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");

:root {
  --heading-font-family: "Roboto Slab", serif;
  --body-font-family: "Poppins", sans-serif;
  --fontSize: 16px;
  --primaryColor: #e64626;
  --secenderyColor: #fce349;
  --whiteColor: #ffffff;
  --blackColor: #141414;
  --paragraphColor: #555;
  --transition: .5s;
}

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: "Roboto Mono", monospace;
}

a {
  transition: var(--transition);
  color: #142c60;
  outline: 0 !important;
  font-family: "Roboto Mono", monospace;
}

a:hover {
  color: #E64626;
}

.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: 15px;
  margin-bottom: 15px;
  color: var(--paragraphColor);
  font-family: var(--body-font-family);
  text-align: justify;
}

p:last-child {
  margin-bottom: 0;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #E64626 !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: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  background-color: #fce459;
  font-family: "Roboto Mono", monospace;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid #000;
}

.default-btn i {
  line-height: 0;
  font-size: 25px;
  margin-left: 19px;
  position: relative;
}

.default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: var(--blackColor);
}

.default-btn.style-2:hover {
  color: var(--whiteColor) !important;
  background-color: var(--blackColor);
}

.arrow-btn {
  margin-right: 40px;
  position: relative;
  display: inline-block;
  color: #fce459;
  font-family: "Roboto Mono", monospace;
  font-size: 16px;
  font-weight: 700;
}

.arrow-btn i {
  top: 2px;
  line-height: 0;
  font-size: 25px;
  margin-left: 15px;
  position: absolute;
}

.arrow-btn::before {
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: #fce459;
}

.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 Style
===========================================*/
.section-title {
  max-width: 610px;
  margin-bottom: 35px !important;
}

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

.section-title h2 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 0;
}

/*================================================
Top Header Area Style
=================================================*/
.top-header-area {
  background-color: var(--blackColor);
  padding: 5px 0px;
}

.top-header-area .container-fluid {
  max-width: 1680px;
  padding-left: 30px;
  padding-right: 30px;
}

.top-header-area.style-2 {
  background-color: #8aa7df;
}

.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 h6 {
  font-size: 12px;
  color: #fff;
  margin-right: 10px;
  margin-bottom: 0px;
  padding-top: 3px;
}

.top-header-list ul li {
  padding: 0 3px;
  position: relative;
  cursor: pointer;
}

.top-header-list ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  padding: 10px 0;
}

.top-header-list ul li a i {
  top: 2px;
  font-size: 12px;
  margin-right: 7px;
  position: relative;
  color: #E64626;
}

.top-header-list ul li a:hover {
  color: #E64626;
}

.top-header-list ul li::before {
  top: 2px;
  right: 0;
  width: 1px;
  height: 17px;
  /* content: ""; */
  position: absolute;
  background-color: rgb(31, 57, 90);
}

.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: 0;
}

.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: 15px;
  /* line-height: 1; */
  color: white;
}

.top-header-social-list ul li .pages-link li a:hover {
  color: #141414;
}

.top-header-social-list ul li .pages-link li::before {
  top: 6px;
  right: 0;
  width: 1px;
  height: 15px;
  content: "";
  position: absolute;
  background-color: white;
}

.others-option {
  /* margin-left: 50px; */
}

.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;
}

.top-header-social-list ul li .social-link li a:hover {
  color: var(--blackColor);
  background-color: #fce459;
}

.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: 0px;
  height: 100px;
  /* padding-top: 25px;
  padding-bottom: 25px;   */
}

.navbar .container-fluid {
  max-width: 1680px;
  padding-left: 30px;
  padding-right: 30px;
}

.navbar .navbar-brand {
  font-size: inherit;
  line-height: 1;
  padding: 0;
}

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

.navbar .navbar-nav {
  margin-right: 60px;
}

.navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 22px;
  /* margin-right: 22px; */
}

.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  color: var(--blackColor);
  transition: var(--transition);
  font-weight: 500;
  font-size: 18px;
  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: #E64626;
}

.navbar .navbar-nav .nav-item .nav-link:hover::before,
.navbar .navbar-nav .nav-item .nav-link.active::before {
  color: #E64626;
}

.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: #E64626;
}

.navbar .navbar-nav .nav-item .dropdown-toggle::before {
  color: #141414;
  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: #E64626;
}

.navbar .navbar-nav .nav-item:hover .nav-link::before,
.navbar .navbar-nav .nav-item.active .nav-link::before {
  color: #E64626;
}

.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: 270px;
  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: 16px;
  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: #E64626;
}

.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: #E64626;
}

.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: #E64626;
}

.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: #E64626;
}

.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: #fce459;
}

.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: #E64626;
}

.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: #E64626;
}

.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: #E64626;
}

.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: 18px;
  line-height: 40px;
  text-align: center;
  display: inline-flex;
  color: var(--blackColor);
  background-color: #fce459;
  border: 2px solid #141414;
  padding: 10px 16px;
  font-weight: 500;
}

.navbar .others-option .option-item .responsive-icon a:hover {
  background-color: var(--blackColor);
  color: white;
}

.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: #E64626;
}

.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: 25px;
  padding-bottom: 25px; */
}

.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: #fce459;
}

.navbar.style-3 .navbar-nav .nav-item .nav-link:hover::before,
.navbar.style-3 .navbar-nav .nav-item .nav-link.active::before {
  color: #fce459;
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-toggle {
  margin-right: 17px;
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-toggle::after {
  background-color: #fce459;
}

.navbar.style-3 .navbar-nav .nav-item:hover .nav-link,
.navbar.style-3 .navbar-nav .nav-item.active .nav-link {
  color: #fce459;
}

.navbar.style-3 .navbar-nav .nav-item:hover .nav-link::before,
.navbar.style-3 .navbar-nav .nav-item.active .nav-link::before {
  color: #fce459;
}

.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: #fce459;
}

.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: #fce459;
}

.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: #fce459;
}

.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: #fce459;
}

.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: #fce459;
}

.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: #fce459;
}

.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: #fce459;
}

.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: #fce459;
}

.navbar.style-3 .others-option .option-item .default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: #E64626;
}

.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: #fff;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.05);
}

.responsive-navbar .offcanvas-header {
  /* padding: 0px !important; */
  border-bottom: 1px solid rgba(0, 0, 0, 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: #E64626;
}

.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(0, 0, 0, 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: var(--blackColor);
  position: absolute;
  transform: translateY(-50%);
  transition: var(--transition);
  font-family: remixicon !important;
  font-style: normal;
}

.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list a {
  height: 100%;
  display: block;
  color: var(--blackColor);
  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: #E64626;
}

.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(--blackColor);
}

.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(0, 0, 0, 0.1);
}

.responsive-navbar .offcanvas-body ul.responsive-menu .active>a {
  color: var(--blackColor);
}

.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: #fce459;
  -moz-transition: var(--transition);
  transition: var(--transition);
}

.searchModal .modal-dialog .modal-content form .input-search::placeholder {
  color: #fce459;
  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: #E64626;
  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: #fce459;
}

.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: #E64626;
}

/*================================================
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 .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, rgba(0, 9, 41, 0.9) 31.2%, rgba(0, 9, 41, 0) 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: #fce459;
}

.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: 125px;  
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(https://darkorchid-rhinoceros-436192.hostingersite.com/latestassets/img/bg/bg-2.jpg);
} */

.banner-area {
  position: relative;
  padding-top: 125px;
  overflow: hidden;
}

/* Image ko background jaisa behave karwana */
.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


.banner-area .container-fluid {
  max-width: 1680px;
  padding-left: 30px;
  padding-right: 30px;
}

.banner-content {
  max-width: 727px;
  margin-bottom: 100px;
}

.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: #fce459;
}

.banner-content .title h1 {
  font-size: 65px;
  line-height: 1.3;
  color: var(--whiteColor);
}

.banner-content .title h1 span {
  position: relative;
  display: inline-block;
  color: #fce459;
}

.banner-content .title h1 span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #fce459;
}

.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: #E64626;
}

.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: #E64626;
}

.banner-content ul li .play-btn li .arrow-btn:hover::after {
  background-color: #E64626;
}

.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;
  padding-bottom: 20px;
}

.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: #fce459;
}

.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: #fce459;
}

.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: #E64626;
}

.banner-uesr-info .banner-uesr-item .content a:hover {
  color: #E64626;
}

.banner-uesr-info .banner-uesr-item .content a:hover::after {
  width: 100%;
}

.banner-uesr-info .banner-uesr-item:hover .content a {
  color: #E64626;
}

.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: #E64626;
}

.banner-wrap-content .title h1 {
  font-size: 80px;
  line-height: 1.2;
  color: #002a5c;
  margin-bottom: 20px;
}

.banner-wrap-content .title h1 span {
  color: #fce459;
  border-bottom: 4px solid #fce459;
}

.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: #fce459;
}

.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: #E64626;
}

.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: #E64626;
}

.banner-wrap-content .btn-list li .play-btn li .arrow-btn:hover::after {
  background-color: #E64626;
}

.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: #E64626;
}

.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: 0;
  margin-bottom: 30px;
}

.about-content .title h2 img {
  margin-right: 10px;
  margin-top: 5px;
}

.about-content .arrow-btn {
  color: #E64626;
}

.about-content .arrow-btn::before {
  background-color: #E64626;
}

.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: 55px;
}

.graduets-tab-info .nav .nav-item .nav-link {
  padding: 0;
  font-weight: 700;
  position: relative;
  color: var(--paragraphColor);
  background-color: transparent;
  font-family: "Roboto Mono", monospace;
}

.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: #E64626;
}

.graduets-tab-info .nav .nav-item .nav-link:hover {
  color: #E64626;
}

.graduets-tab-info .nav .nav-item .nav-link:hover::before {
  width: 100%;
}

.graduets-tab-info .nav .nav-item .nav-link.active {
  color: #E64626;
}

.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);
  border-radius: 0px;
}

.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: #E64626;
}

.graduets-content .graduets-card .content .arrow-btn::before {
  background-color: #E64626;
}

.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: #E64626;
}

.graduets-image .graduets-btn .arrow-btn:hover::after {
  background-color: #E64626;
}

.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 a {
  color: #fff;
}

.single-graduates-card h3 i {
  font-size: 40px;
  line-height: 0;
  margin-right: 10px;
  color: #fce459;
}

.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-size: 18px;
  font-weight: 800;
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.81);
  font-family: "Roboto Mono", monospace;
}

.upcoming-content .upcoming-content-info .content h3 a {
  font-size: 18px;
}

.single-graduates-card .list li a i {
  font-size: 25px;
  line-height: 0;
  color: #fce459;
  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: #fce459;
}

.single-graduates-card .list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: unset;
}

.single-graduates-card .list li:hover a {
  color: #E64626;
}

.single-graduates-card h3 a:hover {
  color: #E64626;
}

.single-graduates-card .list li:hover a i {
  color: #E64626;
}

.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: #fce459;
}

.col-lg-4:nth-child(2) .single-graduates-card {
  background-color: #fce459;
}

.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: #E64626;
}

.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: #E64626;
}

.col-lg-4:nth-child(2) .single-graduates-card .list li a::before {
  background-color: #E64626;
}

.col-lg-4:nth-child(2) .single-graduates-card .list li a:hover {
  color: #E64626;
}

.col-lg-4:nth-child(2) .single-graduates-card span {
  color: #5b5952;
}

.col-lg-4:nth-child(2) .single-graduates-card span i {
  color: #E64626;
}

.col-lg-4:nth-child(3) .single-graduates-card {
  background-color: #002a5c;
}

.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: #E64626;
}

.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: 50px;
  margin-bottom: 25px;
  background-color: #002A5C;
}

.single-funfact-info h2 {
  line-height: 0;
  font-size: 60px;
  margin-bottom: 15px;
  color: var(--whiteColor);
}

.single-funfact-info h2 i {
  font-size: 45px;
  line-height: 0;
  color: #e4b200;
  margin-right: 10px;
}

.single-funfact-info p {
  color: rgba(255, 255, 255, 0.7);
}

.single-funfact-info .arrow-btn {
  color: #E64626;
}

.single-funfact-info .arrow-btn::before {
  background-color: #E64626;
}

.single-funfact-info .arrow-btn:hover {
  color: var(--whiteColor);
}

.col-lg-4:nth-child(2) .single-funfact-info {
  background-color: #fce459;
}

.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: #fce459;
}

.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: "Roboto Mono", monospace;
  font-size: 18px;
  font-weight: 800;
}

.apply-image .user-help .content a:hover {
  color: #E64626;
}

.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: #E64626;
}

.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: #E64626;
}

.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: #fce459;
}

.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: #E64626;
}

.apply-content .apply-btn li .play-btn li .arrow-btn:hover::after {
  background-color: #E64626;
}

.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);
  /* border-radius: 10px; */
}

.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: #fce459;
}

.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: #fce459;
}

.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: #E64626;
}

.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: #E64626;
}

.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: #013069;
}

/*================================================
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: #fce459;
}

.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: #fce459;
}

.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: #E64626;
}

.tuition-content .arrow-btn::before {
  background-color: #E64626;
}

.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: 26px;
  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: #E64626;
}

.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: #fce459;
}

.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: #002a5c;
}

.facilities-image.style-2 .facilities-image-info p {
  color: var(--whiteColor);
}

.facilities-image.style-2 .facilities-image-info i {
  color: #fce459;
}

.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: #E64626;
}

.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;
}

.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: #E64626;
}

.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-2 .swiper-btn .swiper-button-next,
.testimonial-slider-info-2 .swiper-btn .swiper-button-prev {
  top: 110%;
  font-size: 26px;
  margin-right: 20px;
  color: var(--blackColor);
  transition: var(--transition);
}

.testimonial-slider-info-2 .swiper-btn .swiper-button-next:hover,
.testimonial-slider-info-2 .swiper-btn .swiper-button-prev:hover {
  color: #E64626;
}

.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: #E64626;
}

.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 {
  right: 49%;
}

.testimonial-slider-info-2 .swiper-btn .swiper-button-next::before {
  content: "\f10a";
}

.testimonial-slider-info-2 .swiper-btn .swiper-button-prev {
  left: 51%;
}

.testimonial-slider-info-2 .swiper-btn .swiper-button-prev::before {
  content: "\f10b";
}

.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: #E64626;
}

.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: #E64626;
}

.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: #fce459;
  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-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: #E64626;
}

.subscribe-content .subscribe-btn li .arrow-btn:hover::after {
  background-color: #E64626;
}

.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: #E64626;
}

.overview-content .graduets-btn .arrow-btn:hover::after {
  background-color: #E64626;
}

.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: #E64626;
}

.overview-image .arrow-btn::before {
  background-color: #E64626;
}

.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: #E64626;
}

.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: #E64626;
}

.programs-section-title .programs-nav-tab .nav .nav-item .nav-link:hover {
  color: #E64626;
}

.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: #E64626;
}

.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: 45px; */
  transition: var(--transition);
}

.single-programs-card .image {
  /* margin-bottom: 25px; */
  position: relative;
}

.single-programs-card .image .list {
  left: 10px;
  right: 10px;
  bottom: 15px;
  padding: 8px 10px;
  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 {
  font-size: 18px;
  margin-bottom: 10px;
  padding-top: 10px;

}

.single-programs-card .content .arrow-btn {
  color: #E64626;
}

.single-programs-card .content .arrow-btn::before {
  background-color: #E64626;
}

.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: #E64626;
}

.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: #E64626;
}

.programs-tab-content .programs-slider {
  overflow: inherit;
  left: 0;
}

.programs-single-btn .default-btn {
  color: var(--blackColor) !important;
  background-color: #fce459;
}

.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: #E64626;
}

.upcoming-image .content .arrow-btn::before {
  background-color: #E64626;
}

.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: #E64626;
  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: #E64626;
}

.upcoming-content .upcoming-content-info:last-child {
  margin-bottom: 0;
}

.upcoming-content .upcoming-content-info:hover .content h3 a {
  color: #E64626;
}

/*================================================
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: #E64626;
}

.single-application-card .content h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.single-application-card .content h3 span {
  margin-right: 4px;
  color: #E64626;
}

.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: #E64626;
}

.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: #E64626;
}

.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: #E64626;
}

.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: #E64626;
}

.single-blog-card .content ul li i {
  top: -2px;
  left: 0;
  font-size: 18px;
  position: absolute;
  color: #E64626;
}

.single-blog-card .content ul li:last-child {
  margin-right: 0;
}

/*================================================
Admission Area Style
=================================================*/
.admission-area {
  background-color: #c9ddeb;
}

.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: #fce459;
}

.admission-btn .default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: var(--blackColor);
}

/*================================================
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;
  padding-left: 50px;
}

.adma-about-content .title {
  max-width: 646px;
  margin-bottom: 30px;
}

.adma-about-content .title h2 {
  /* font-size: 42px; */
  line-height: 0;
  margin-bottom: 35px;
}

.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: #E64626;
}

.adma-about-content .adma-about-card .arrow-btn {
  margin-top: 15px;
  color: #E64626;
}

.adma-about-content .adma-about-card .arrow-btn::before {
  background-color: #E64626;
}

.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 img {
  width: 100%;

}

.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: #E64626;
}

.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: #fce459;
}

.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: #E64626;
}

.choose-content .arrow-btn::before {
  background-color: #E64626;
}

.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: #E64626;
}

.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: #fce459;
}

.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: "Roboto Mono", monospace;
  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: #E64626;
}

.student-card ul li a:hover {
  color: #E64626;
}

.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: #E64626;
}

.newsletter-content .subscribe-btn li .arrow-btn:hover::after {
  background-color: #E64626;
}

.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: #fce459;
}

.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: 30px 0 80px 0;
  height: auto;
  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: rgba(0, 30, 67, 0.92);
}

.pages-banner-area::after {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  z-index: -1;
  content: "";
  position: absolute;
  background-color: var(--whiteColor);
}

.pages-title {
  /* margin-top: 65px; */
}

.pages-title h2 {
  font-size: 56px;
  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: #fce459;
}

.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: #E64626;
}

.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: #E64626;
}

.single-pages-widget.categories a {
  margin-bottom: 20px;
  color: var(--paragraphColor);
}

.single-pages-widget.categories a:hover {
  color: #E64626;
}

.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 #E64626;
  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: #E64626;
}

.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: #E64626;
  background-color: #fff3f4;
}

.pages-share-and-tags .share ul li a:hover {
  color: var(--whiteColor);
  background-color: #E64626;
}

.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: #E64626;
}

.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: #E64626;
}

.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 #E64626;
}

.pages-leave-reply form .form-check .form-check-input:checked {
  background-color: #E64626;
}

.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: "Roboto Mono", monospace;
  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: #E64626;
}

.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: 30px;
  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: #E64626;
  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: #E64626;
  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: #E64626;
}

.tuition-info .tuition-item .accordion-item .accordion-button:hover span {
  color: #E64626;
}

.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 #E64626;
}

.single-register-info form .form-check .form-check-input:checked {
  background-color: #E64626;
}

.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: 50px;
  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 #E64626;
  /* background-color: transparent; */
}

.application-form-details .form-check .form-check-input:checked {
  background-color: #E64626;
}

.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: #E64626;
}

.single-faculty-card .content ul li i {
  left: 0;
  top: 0;
  position: absolute;
  color: #E64626;
}

.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: #E64626;
}

.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: #E64626;
}

.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;
}

.applications-card {
  display: flex;
  gap: 5px;
}

.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: #E64626;
}

.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: #e64626;

}

.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;
  color: #fff;
}

.program-details-left-sidebar .reviews-image .reviews-info ul li p {
  font-size: 12px;
  color: #fff;
}

.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: #E64626;
}

.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: #E64626;
}

.single-program-widget.department .list li i {
  top: 0;
  left: 0;
  position: absolute;
  color: #E64626;
}

.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: #E64626;
}

.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: #E64626;
}

.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: #E64626;
}

.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
=================================================*/
.tuition-table h2 {
  padding-top: 20px;
}

.list-unstyled {
  font-size: 16px;
}

.acc-sec {
  text-align: left !important;
}

.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: 50px;
  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 #E64626;
}

.contact-form form .form-check .form-check-input:checked {
  background-color: #E64626;
}

.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: 38px;
  height: 32px;
  display: block;
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 32px;
  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: #fce459;
}

.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: #E64626;
}

.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: #E64626;
}

.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: #fce459;
}

.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;
  margin-top: -30px;
}

.fitness-content .title h2 {
  font-size: 40px;
  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: #E64626;
}

.fitness-content .list li:last-child {
  margin-bottom: 0;
}

.fitness-content.style-2 {
  margin-left: 0;
  margin-right: 45px;
  margin-top: -50px;
}

.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: #fce459;
}

.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: #E64626;
}

.fitness-content.style-2 .fitness-btn li .play-btn li .arrow-btn:hover::after {
  background-color: #E64626;
}

.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-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: #E64626;
  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: #E64626;
}

.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: #E64626;
}

.single-footer-widget {
  margin-bottom: 25px;
}

.single-footer-widget h3 {
  font-size: 22px;
  margin-bottom: 25px;
  color: #fff;
}

.single-footer-widget ul li {
  margin-bottom: 12px;
}

.single-footer-widget ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
}

.single-footer-widget ul li a:hover {
  color: #141414;
}

.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;
}

.social-link {
  padding-top: 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: #fce459;
}

.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: 15px;
  padding-left: 25px;
  position: relative;
}

.single-footer-widget.contact ul li a i {
  left: 0;
  top: 1px;
  font-size: 16px;
  position: absolute;
  color: #fff;
}

.single-footer-widget.contact ul li i {
  left: 0;
  top: 3px;
  font-size: 16px;
  position: absolute;
  color: #E64626;
}

.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-area {
  background-color: #141414;
  padding: 30px 0;
}

.copyright-title p strong {
  color: #E64626;
}

.copyright-title p a {
  color: #fff;
  font-weight: 600;
}

.copyright-title p a:hover {
  color: #fce459;
}

.copyright-list ul li {
  margin-right: 25px;
}

.copyright-list ul li a {
  color: var(--paragraphColor);
}

.copyright-list ul li a:hover {
  color: #E64626;
}

.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: #003a70;
}

#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: #fce459;
}

#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 */

.academics {
  margin-left: 50px;
}

.fitness-image img {
  height: 350px;
  width: 500px;
}

.adma-about-image img {
  /* margin-left: -40px; */
}

.copyright-area .copyright-title p {
  text-align: center;
  color: white;
}

.detailcontainer,
.blogContainer {
  max-width: 1240px;
}

.reviews-image img {
  width: 100%;
  border-radius: 20px;
  /* margin-left: 30px; */
}

.program-card h3 {
  /* background-color: #010f78;
  color: white; */
  padding: 5px 10px;
  font-size: 22px;
  margin: 20px 0;
}

.tuition-table table,
td,
th {
  border: 1px solid black;
}

.tuition-table td {
  font-size: 14px;
}

.program-card p>a {
  color: #E64626;
  text-decoration: none;
  font-weight: 500;
}

.program-card p>a:hover {
  color: #E64626;
  text-decoration: none;
}

.btn-brouchure {
  border: none;
  /* border-radius: 10px; */
  padding: 10px 20px;
  color: white;
  background-color: #E64626;
  margin-bottom: 10px;
}

.btn-brouchure:hover {
  background-color: #141414;
}

.applications-card p {
  margin: 5px 0;
  line-height: 1.6;
}

.scope-box {
  background: #ffffff;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.scope-box:hover {
  transform: translateY(-8px);
}

.scope-box h5 {
  margin-bottom: 10px;
  color: #222;
}

.scope-box p {
  margin: 0;
  line-height: 1.6;
}


/* Hero Section Split */
.hero1-container {
  text-align: center;
  background: #fff;
}

.hero1-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.hero1-content h1 {
  margin-top: 20px;
  font-weight: 700;
  font-size: 2.5rem;
  color: #2c2c2c;
}

.hero1-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Step Cards */
.card1 {
  border: none;
  /* border-radius: 20px; */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  height: 100%;
  background: white;
}

.card1:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.15);
}

.step-number {
  background: linear-gradient(135deg, #6c63ff, #48c6ef);
  color: white;
  font-weight: 700;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.3rem;
}

.icon {
  font-size: 45px;
  color: #6c63ff;
}

.card1 h5 {
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.card1 .step-number {
  background: #e64626;
  color: white;
  font-weight: 700;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin: 0;
  /* 👈 pehle wala auto margin hata diya */
}

/* Conclusion Banner */
.conclusion {
  background: #fff7d9;
  color: #141414;
  padding: 30px 20px;
  margin-top: 50px;
  text-align: center;
}

.conclusion h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

.conclusion p {
  font-size: 1.1rem;
  padding: 0 30px;
  margin: 0 auto;
  color: #141414;
}

/* Responsive */
@media(max-width: 992px) {
  .hero {
    flex-direction: column;
  }

  .hero-img {
    border-radius: 20px;
    width: 100%;
  }

  .hero-content {
    padding: 30px 20px;
    text-align: center;
  }
}


/* Gallery  */
.gallery-section1 {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.mySwiper2 {
  width: 100%;
  height: 500px;
  margin-bottom: 10px;
}

.mySwiper2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mySwiper {
  height: 120px;
  box-sizing: border-box;
}

.mySwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.mySwiper img:hover {
  transform: scale(1.05);
}


.gallery-section {
  margin-bottom: 50px;
  padding: 0px 40px;
  text-align: center;
}

.gallery-section h2 {
  font-size: 42px;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-item1 {
  position: relative;
  overflow: hidden;
}

.gallery-item1 img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item1:hover img {
  transform: scale(1.05);
  /* Zoom thoda */
  filter: brightness(0.8);
  /* Thoda dark effect */
}

.gallery-item1 .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 58, 112, 0.7);
  color: #fff;
  padding: 8px;
  font-size: 16px;
  text-align: center;
}



/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  flex-direction: column;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.lightbox.active {
  display: flex;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.prev,
.next {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  user-select: none;
  align-items: center;
  justify-content: center;
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

.reviews-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0px;
}

.assist-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.assist-card {
  background: #fff;
  border: 1px solid #f0eaea;
  padding: 30px 25px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #0066ff, #00c6ff);
  color: #fff;
  font-size: 30px;
}

.assist-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #222;
}

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

.assist-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #555;
}

.assist-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00c6ff;
  font-weight: bold;
  font-size: 14px;
}


.single-application-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  transition: all 0.3s ease;
}

.single-application-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}


/*   VIDEO CSS */
.shortVideo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* Adjusted min-width to 250px */
  gap: 20px;
  margin-top: 30px;
}

.shortVideo .video-image img {
  width: 100%;



  height: 250px;
}

.shortVideo .video-image .video-btn {
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  position: absolute;
  transform: translateY(-50%);
}

.shortVideo .video-image .video-btn a {
  width: 68px;
  height: 68px;
  font-size: 15px;
  border-radius: 100%;
  line-height: 74px;
  text-align: center;
  display: inline-block;
  color: var(--whiteColor);
  background-color: #E64626;
}

.shortVideo .video-image .video-btn a i {
  left: 2px;
  position: relative;
}

.shortVideo .video-image .video-btn a:hover {
  background-color: var(--blackColor);
}



/* Rajesh Added */
.overview-area {
  background-color: #fff7d9;
}

.top-header-area.style-2 {
  background-color: #E64626;
}



/* program section css */
.program-card {
  border: none;
}

.program-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.program-content h3 {
  background: none;
  color: #141414;
  padding: 0px;
  margin: 10px 0;
}


.curriculum-box {
  background: #fff;
  border: 1px solid #ebe6e6;
  padding: 25px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.curriculum-box:hover {
  transform: translateY(-5px);
}

.requirement-card ul li {
  line-height: 1.8;
  font-size: 15px;
  color: var(--paragraphColor);
}

.card {
  border-radius: 0px;
}

.card-body,
.requirement-card i {
  color: #e64626;
}

.card-body h5 {
  color: #141414;
}

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

.requirement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.carousel-item img {
  object-fit: cover;
  height: auto;
  width: 100%;
  cursor: pointer;
}

@media(max-width: 768px) {
  .carousel-item img {
    height: 250px;
  }
}

.provider-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #eee;
  overflow: hidden;
  background: #fff;
  transition: all 0.4s ease;
  height: 100%;
}

.provider-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  padding: 10px;
}

.provider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.provider-body {
  padding: 15px;
  text-align: center;
}

.provider-body h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.provider-body p {
  font-size: 14px;
  color: inherit;
}

.provider-card:hover {
  background: #fff7d9;
  color: #141414;
  transform: translateY(-5px);
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); */
}

.tips-section {
  padding: 30px 0 60px 0;
  font-family: "Inter", sans-serif;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #e5e7eb;
}

.tip-item:last-child {
  border-bottom: none;
}

.tip-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf2ff;
  color: #e64626;
  font-size: 20px;
  flex-shrink: 0;
}


.access-icon {
  width: 35px;
  height: 35px;
  /* border-radius: 10px; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  background: #003a70;
  color: #fff;
}

.custom-select {
  /* padding: 8px 40px 8px 15px;    */
  border: 2px solid #141414;
  font-size: 15px;
  cursor: pointer;
  border-radius: 0px;
  background: #fce459 url("data:image/svg+xml;utf8,<svg fill='black' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 10px center;

}

.custom-select:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #141414;
}

.subbreadcumb {
  font-style: italic;
}

.aboutVideo {
  background: #c9ddeb;
}

.aboutVideo h2 {
  padding-top: 50px;
}

/*  */

.gallery {
  display: flex;
  gap: 30px;
}

.gallery-item {
  position: relative;
  width: 400px;
  /*height: 400px;*/
  overflow: hidden;
  cursor: pointer;
}

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

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

.caption {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-weight: bold;
  font-size: 25px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.lyonInfo,
.lyonInfo h3,
.lyonInfo .information-card .content p,
.lyonInfo .information-card .content a {
  color: #fff;
}

.information-card .content span {
  font-size: 14px;
}





.video-box .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #e64626;
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 15px;
  text-decoration: none;
  color: white;
  display: flex;
  justify-content: center;
  text-align: center;
}

.video-box .play-btn:hover {
  background-color: #141414;
}

/* Brochure */
.brochure-box .card-body {
  background-color: #fce459;
  border: 1px solid #333;
  padding: 20px;
}

.download-btn {
  font-weight: 600;
  text-decoration: none;
  color: #000;
}

.download-btn:hover {
  text-decoration: underline;
}

/* Apply Now */
.apply-now .card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}


.apply-list {
  list-style: none;
  padding-left: 0;
}

.apply-list .bullet {
  color: #e64626;
  font-size: 20px;
  margin-right: 5px;
  font-weight: bold;
}

.apply-list li a {
  text-decoration: none;
  color: #141414;
}

.apply-list li a:hover {
  color: #e64626;
}

.apply-list ul li {
  /* color: #757272; */
  font-size: 14px;
}

.program-details-left-sidebar .reviews-image .reviews-info p {
  text-align: left;
}

.program-details-left-sidebar .reviews-image .reviews-info .reviews-info-row h3 {
  color: white;
  font-size: 18px;
}

.program-details-left-sidebar .reviews-image .reviews-info .reviews-info-row p {
  color: white;
  font-size: 13px;
}

.brochure-section {
  margin-bottom: 30px;
}

.brochure-card {
  background: #fce459;
  padding: 20px 10px;
  text-align: center;
}

.brochure-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.download-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #e64626;
  border: 2px solid #141414;
  color: #fff;
  text-decoration: none;
  font-family: "Roboto Mono", monospace;
  letter-spacing: 2px;
  /* word-spacing: 10px; */

}

.download-btn:hover {
  background: #141414;
  color: #fff;
  text-decoration: none;
}

.how-to-apply {
  padding: 10px;
}

.how-to-apply .card-body h5,
.apply-now .card-body h5 {
  font-size: 25px;
  margin-top: -10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0dbdb;
}

.how-to-apply .video-box {
  margin-top: 20px;
}

.how-to-apply .card-body p a {
  padding-top: 15px;
  color: #141414;
}

.apply-now {
  padding: 10px;
}

.apply-now .card-body ul li {
  color: #141414;
}

.apply-now .card-body ul li ::marker {
  color: #e64626;
}

.app-proc .title h2 {
  font-size: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #141414;
}

.support-image img {
  margin-top: 50px;
}

.documents-section img {
  margin-top: -50px;
}

.apply-sub {
  color: #e64626;
  font-size: 13px;
  word-spacing: -3px;
}

.blog-tabs {
  gap: 20px;
  border-bottom: 2px solid #eee;
}

.blog-tabs .tab-link {
  background: none;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  color: #333;
  transition: 0.3s;
}

.blog-tabs .tab-link.active,
.blog-tabs .tab-link:hover {
  color: #e30613;
}

.blog-tabs .tab-link.active::after,
.blog-tabs .tab-link:hover::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e30613;
}

.blog-card {
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 15px;
}

.blog-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content a {
  text-decoration: none;
}

.blog-content h4:hover {
  color: #e64626;
}

.blog-content .author {
  font-size: 14px;
  color: #555;
}

.language-switch {
  display: none !important;
  color: #fff;
}

.language-switch::before {
  content: none !important;
}

@media (min-width: 992px) {
  .top-header-social-list ul li .pages-link li.no-line-desktop::before {
    content: none !important;
  }
}

/* .navbar-brand .black-logo {
  height: 110px;
} */

.top-header-list.style-2 ul li a i:hover {
  color: var(--blackColor);
}


/* ----------- 18/11/25 changes -------------*/
@media (max-width: 1300px) and (min-width: 1024px) {
  .navbar .navbar-nav .nav-item {
    margin-left: 12px;
    margin-right: 5px !important;
  }

  /* .navbar-brand .black-logo {
    height: 90px !important;
  } */
}


@media (max-width: 1850px) and (min-width: 1300px) {
  .default-btn {
    padding: 5px;
    margin-left: 20px;
    height: 38px;
    display: flow;
    justify-content: center;
    padding-bottom: 38px;
    padding-top: -0px;
  }

  .flaticon-right-arrow:before {
    /* content: "" !important; */
  }
}

@media only screen and (max-width: 767px) {
  .section-title h2 {
    text-align: left;
  }

}

/* 
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar .others-option .option-item .responsive-icon {
    display: none !important;
  }
} */




/* Rajesh Added Css */
section.locationMISB {
  width: 100vw;
  height: 20%;
  background-image: url(/mashPages/assets/img/lyon2.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 5% 0px;
}

section.locationMISB h2 {
  color: #fff !important;
  font-size: 30px !important;
}

.locationP {
  color: #fff;
}

.campusLocation {
  padding: 3% 0px;
}

.misbContentWrapper {
  background-color: #fff7d9;
  padding: 10px;
  color: #141414;
  border-radius: 5px;
}

.locationContent {
  position: relative;
}

.locationContent h3 {
  font-size: 18px;
}

.locationContent span {
  position: relative;
  font-size: 14px;
  display: block;
  border-bottom: 1px solid #e4b200;
  padding-bottom: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
}

.locationContent span:last-child {
  border-bottom: none;
}

.locationContent span::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #e4b200;
  position: absolute;
  left: 0;
  bottom: 50%;
  border-radius: 50%;
}

.misbIcon {
  color: #e64626;
  margin-bottom: 15px;
  width: 50px;
  height: 50px;
  font-size: 25px;
  border-radius: 50%;
  text-align: center;
  background: #FFEBED;
  padding: 7px 0px;
}

.locationContent p {
  text-align: left;
  font-size: 14px;
  color: #141414;
}

.support-content .questions-content .accordion-item .accordion-button span {
  font-size: 20px;
}

.certButton a {
  display: inline-block
}

.branchSlider .carousel-caption h5 {
  text-align: left;
  font-size: 2.25rem;
  color: #fff;
}

.branchSlider .carousel-caption p a {
  display: inline-block;
}

.branchSlider {
  margin: 3% 0px;
  padding: 3% 0px;
  background: #f6f6f6;
}

@media(max-width: 992px) {
  .misbContentWrapper {
    margin-bottom: 5%;
  }
}



/* recentchangelast */
.navbar-brand img {
  max-width: none !important;
  height: auto;
}


/* ================= 992px – 1300px  ================= */
@media (min-width: 992px) and (max-width: 1300px) {
  #navbar .container {
    max-width: 960px;
    padding-left: 0;
    padding-right: 0;
  }

  #navbar .navbar-brand img {
    height: 100px;
    width: auto;
  }

  #navbar .navbar-nav {
    margin: 0;
  }

  #navbar .nav-link {
    font-size: 15px;
    /*white-space: nowrap;*/
  }

  #navbar .others-option {
    flex-shrink: 0;
    gap: 8px;
  }

  #navbar .default-btn {
    padding: 7px 10px;
    font-size: 13px;
    white-space: nowrap;
  }
}

#siteLoader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  /* very important */
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #e0e0e0;
  border-top: 5px solid #f4c430;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}