@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&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&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&display=swap");
:root {
  --primary-clr-900: #2492EB;
  --primary-clr-800: #FF954E;
  --primary-clr-700: #FFAA72;
  --primary-clr-600: #FFBF95;
  --primary-clr-500: #FFD5B8;
  --primary-clr-400: #FFE6D5;
  --secondary-clr-900: #071D2F;
  --secondary-clr-800: #353E5D;
  --secondary-clr-700: #5D647D;
  --secondary-clr-600: #858B9D;
  --secondary-clr-500: #AEB2BE;
  --secondary-clr-400: #CED1D8;
  --accent-clr-900: #E8EBFA;
  --accent-clr-800: #F5D75D;
  --accent-clr-700: #F7DF7D;
  --accent-clr-600: #F9E79D;
  --accent-clr-500: #FBEFBE;
  --accent-clr-400: #FDF5D8;
  --tertiary-clr-900: #F5F5F5;
  --tertiary-clr-800: #F7F7F7;
  --tertiary-clr-700: #F8F8F8;
  --tertiary-clr-600: #FAFAFA;
  --tertiary-clr-500: #FCFCFC;
  --tertiary-clr-400: #FDFDFD;
  --base-clr: #ffffff;
  --title-clr: #33383C;
  --txt-clr: #2C2A2A;
  --white-clr: #fff;
  --nav-clr:#1E1E1E;
  --shadow-sm: 0px 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 2px 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 2px 4px 18px rgba(0, 0, 0, 0.15);
  --font-title:"Poppins", sans-serif;
  --font-content: "Mulish", sans-serif;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-accordion-btn-icon:url('data:image/svg+xml,<svg width="19" height="17" viewBox="0 0 19 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.30078 1.31689V15.3169" stroke="%23170F49" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M1.00391 8.31689H17.6019" stroke="%23170F49" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>')!important;
  --heading-1: 56px;
  --heading-2: 48px;
  --heading-3: 36px;
  --heading-4: 32px;
  --heading-5: 24px;
  --heading-6: 20px;
  --content-md: 17px;
  --content: 16px;
  --content-sm: 14px;
  --lh-1: 84px;
  --lh-2: 72px;
  --lh-3: 63px;
  --lh-4: 48px;
  --lh-5: 36px;
  --lh-6: 30px;
  --lh-content: 24px;
  --sm-content: 21px;
  --lh-content-md: 25.5px;
  --lh-content-lg: 25.5px;
  --spacing-256: 256px;
  --spacing-160: 160px;
  --spacing-128: 128px;
  --spacing-80: 80px;
  --spacing-72: 72px;
  --spacing-64: 64px;
  --spacing-56: 56px;
  --spacing-48: 48px;
  --spacing-40: 40px;
  --spacing-32: 32px;
  --spacing-24: 24px;
  --spacing-20: 20px;
  --spacing-16: 16px;
  --spacing-12: 12px;
  --spacing-8: 8px;
  --spacing-6: 6px;
  --spacing-4: 4px;
  --spacing-2: 2px;
  --border-rouded: 50%;
  --border-40: 40px;
  --border-32: 32px;
  --border-24: 24px;
  --border-16: 16px;
  --border-8: 8px;
  --border-4: 4px;
  --font-bold: 700;
  --font-semibold: 600;
  --font-medium: 500;
  --font-regular: 400;
  --font-light: 300;
}

::-moz-selection {
  background-color: var(--primary-clr-900);
  color: var(--white-clr);
}

::selection {
  background-color: var(--primary-clr-900);
  color: var(--white-clr);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-content);
  overflow-x: hidden !important;
}

.shadow-small {
  box-shadow: var(--shadow-sm);
}

.shadow-medium {
  box-shadow: var(--shadow-md);
}

.shadow-large {
  box-shadow: var(--shadow-lg);
}

.border-8 {
  border-radius: var(--border-8);
}

.border-16 {
  border-radius: var(--border-16);
}

.border-24 {
  border-radius: var(--border-24);
}

.border-32 {
  border-radius: var(--border-32);
}

.font-bold {
  font-weight: var(--font-bold);
}

.font-semibold {
  font-weight: var(--font-semibold);
}

.font-medium {
  font-weight: var(--font-medium);
}

.font-regular {
  font-weight: var(--font-regular);
}

.font-light {
  font-weight: var(--font-light);
}

.spacing-256 {
  padding: var(--spacing-256) 0;
}

.spacing-160 {
  padding: var(--spacing-160) 0;
}

.spacing-128 {
  padding: var(--spacing-128) 0;
}

.spacing-80 {
  padding: var(--spacing-80) 0;
}

.spacing-72 {
  padding: var(--spacing-72) 0;
}

.spacing-64 {
  padding: var(--spacing-64) 0;
}

.spacing-56 {
  padding: var(--spacing-56) 0;
}

.spacing-48 {
  padding: var(--spacing-48) 0;
}

.spacing-40 {
  padding: var(--spacing-40) 0;
}

.spacing-32 {
  padding: var(--spacing-32) 0;
}

.spacing-24 {
  padding: var(--spacing-24) 0;
}

.spacing-20 {
  padding: var(--spacing-20) 0;
}

.spacing-16 {
  padding: var(--spacing-16) 0;
}

.spacing-12 {
  padding: var(--spacing-12) 0;
}

.spacing-8 {
  padding: var(--spacing-8) 0;
}

.spacing-4 {
  padding: var(--spacing-4) 0;
}

.spacing-2 {
  padding: var(--spacing-2) 0;
}

a {
  text-decoration: none !important;
}

h1 {
  font-size: var(--heading-2);
  font-family: var(--font-title);
  font-weight: var(--font-bold);
  line-height: var(--lh-2);
  color: var(--title-clr);
}

h2 {
  font-size: var(--heading-3);
  font-family: var(--font-title);
  font-weight: var(--font-semibold);
  line-height: var(--lh-3);
  color: var(--title-clr);
  margin-bottom: 20px;
}

span {
  color: var(--primary-clr-900);
}

h3 {
  font-size: var(--heading-3);
  font-family: var(--font-title);
  font-weight: var(--font-semibold);
  line-height: var(--lh-3);
  color: var(--title-clr);
  padding-bottom: var(--spacing-24);
}
h3 span {
  color: var(--primary-clr-900);
}

h4 {
  font-size: var(--heading-4);
  font-family: var(--font-content);
  font-weight: var(--font-medium);
  line-height: var(--lh-4);
  color: var(--title-clr);
}

h5 {
  font-size: var(--heading-6);
  font-family: var(--font-content);
  font-weight: var(--font-medium);
  line-height: var(--lh-6);
  color: var(--title-clr);
}

h6 {
  font-size: var(--heading-6);
  font-family: var(--font-content);
  font-weight: var(--font-regular);
  line-height: var(--lh-6);
  color: var(--title-clr);
}

p {
  font-size: var(--content);
  font-family: var(--font-content);
  font-weight: var(--font-regular);
  line-height: var(--lh-content);
  color: var(--title-clr);
}

p.sm {
  font-size: var(content-sm);
  font-family: var(--font-content);
  font-weight: var(--font-regular);
  line-height: var(--lh-content-sm);
  color: var(--title-clr);
}

a,
.button,
button {
  transition: 0.3s;
}

a:focus,
.button:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

a,
button {
  outline: medium none;
}

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

.download-wh-btn {
  background: var(--white-clr);
  padding: 10px;
  display: flex;
  font-weight: 600;
  border-radius: 8px;
  align-items: center;
  color: var(--txt-clr);
  transition: all 0.5s ease;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media (min-width: 768px) {
  .download-wh-btn {
    padding: 150x 30px;
    font-size: 16px;
  }
}
.download-wh-btn:hover {
  background: transparent;
  border: 1px solid var(--white-clr);
  color: var(--white-clr);
}
.download-wh-btn:hover img {
  visibility: hidden;
}

.aaply-now-btn {
  background: var(--white-clr);
  padding: 10px;
  display: flex;
  position: relative;
  z-index: 99;
  color: var(--txt-clr);
  font-weight: 600;
  align-items: center;
  transition: all 0.5s ease;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--white-clr);
  margin: auto;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .aaply-now-btn {
    padding: 10px 30px;
    font-size: 16px;
  }
}
.aaply-now-btn:hover {
  background: transparent;
  border: 1px solid var(--white-clr);
  color: var(--white-clr);
}
.aaply-now-btn:hover img {
  visibility: hidden;
}

.primarybtn {
  background: var(--primary-clr-900);
  padding: 10px;
  display: flex;
  text-align: center;
  margin: auto;
  position: relative;
  z-index: 99;
  color: var(--white-clr);
  justify-content: center;
  font-weight: 600;
  align-items: center;
  transition: all 0.5s ease;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--primary-clr-900);
  margin: auto;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .primarybtn {
    padding: 10px 20px;
    font-size: 16px;
  }
}
.primarybtn img {
  background: #2492eb !important;
  border-radius: 9px;
  margin-right: 15px;
}
.primarybtn:hover {
  background: transparent;
  border: 1px solid var(--primary-clr-900);
  background: transparent;
  color: var(--primary-clr-900);
}
.primarybtn:hover img {
  background: #2492eb !important;
  border-radius: 9px;
  margin-right: 15px;
}

.primarybtnlft {
  background: var(--primary-clr-900);
  padding: 10px;
  text-align: center;
  margin: auto;
  position: relative;
  z-index: 99;
  color: var(--white-clr);
  font-weight: 600;
  transition: all 0.5s ease;
  border: 1px solid var(--primary-clr-900);
  margin: auto;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .primarybtnlft {
    padding: 10px 20px;
    font-size: 16px;
  }
}
.primarybtnlft img {
  background: #2492eb !important;
  border-radius: 9px;
  margin-right: 0px;
}
.primarybtnlft:hover {
  background: transparent;
  border: 1px solid var(--primary-clr-900);
  background: transparent;
  color: var(--primary-clr-900);
}
.primarybtnlft:hover img {
  background: #2492eb !important;
  border-radius: 9px;
  margin-right: 15px;
}

.primarybtnline {
  background: transparent;
  padding: 10px;
  text-align: center;
  margin: auto;
  position: relative;
  z-index: 99;
  color: var(--primary-clr-900);
  font-weight: 600;
  transition: all 0.5s ease;
  border: 1px solid var(--primary-clr-900);
  margin: auto;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .primarybtnline {
    padding: 10px 20px;
    font-size: 16px;
  }
}
.primarybtnline img {
  background: #2492eb !important;
  border-radius: 9px;
  margin-right: 2px;
}
.primarybtnline:hover {
  border: 1px solid var(--primary-clr-900);
  background: var(--primary-clr-900);
  color: var(--white-clr);
}
.primarybtnline:hover img {
  background: #2492eb !important;
  border-radius: 9px;
  margin-right: 15px;
}

@media (max-width: 767px) {
  :root {
    --lh-1: 60px;
    --lh-2: 48px;
    --lh-3: 36px;
    --lh-4: 30px;
    --lh-5: 27px;
    --lh-6: 24px;
    --lh-content: 24px;
    --lh-content-sm: 21px;
    --heading-1: 40px;
    --heading-2: 32px;
    --heading-3: 24px;
    --heading-4: 20px;
    --heading-5: 18px;
    --heading-6: 17px;
    --content: 16px;
    --content-sm: 14px;
    --spacing-256: 128px;
    --spacing-160: 80px;
    --spacing-128: 64px;
    --spacing-80: 40px;
    --spacing-72: 36px;
    --spacing-64: 32px;
    --spacing-56: 28px;
    --spacing-48: 24px;
    --spacing-40: 20px;
    --spacing-32: 16px;
    --spacing-24: 12px;
  }
  #banner-sec {
    height: 600px;
  }
  #about-product {
    margin-top: -450px;
  }
  #homepage-banner h1, #homepage-banner h2 {
    font-size: var(--heading-3);
    line-height: var(--lh-3);
    padding-bottom: var(--spacing-24);
    text-align: center;
  }
  .swiper h3,
  .swiper h4 {
    text-align: center;
  }
}
#header .header {
  background: var(--white-clr);
  position: relative;
  box-shadow: var(--shadow-sm);
}
#header .header-one {
  background: var(--txt-clr);
}
#header .header-one .site-navigation {
  background: var(--secondary-clr-500);
}
#header .header-one .navbar-collapse {
  padding-left: 0;
}
#header .header-one ul.navbar-nav > li {
  padding-left: 0;
  padding-right: var(--spacing-32);
}
#header .header-one .logo-area {
  padding: var(--spacing-32) 0;
}
#header .navbar-fixed {
  z-index: 9999;
  position: fixed;
  width: 100%;
  top: 0;
}
#header .header-two {
  background: var(--white-clr);
  box-shadow: var(--shadow-sm);
  padding: var(--spacing-16) 0;
}
#header .header-two .navbar-fixed {
  background-color: var(--white-clr);
}
#header .header-two .logo {
  width: 150px;
}
#header .header-two .navbar-nav > .header-get-a-quote {
  top: -4px;
}
#header ul.navbar-nav > li {
  padding: 0 var(--spacing-20);
  position: relative;
}
#header ul.navbar-nav > li > a {
  padding: var(--spacing-16) 0 !important;
  color: var(--white-clr);
  font-family: var(--content);
  color: var(--white-clr) !important;
  text-rendering: optimizeLegibility;
  font-weight: var(--font-semibold) !important;
  text-transform: uppercase;
  font-size: var(--content);
  margin: 0;
  line-height: var(--lh-content);
  padding: var(--spacing-32) 0;
  transition: 350ms;
}
#header ul.navbar-nav > li > a:hover {
  background: none;
}
#header ul.navbar-nav > li > a:focus {
  background: none;
}
#header ul.navbar-nav > li > a i {
  font-weight: var(--font-bold);
}
@media (max-width: 1199px) {
  #header ul.navbar-nav > li > a i {
    position: absolute;
    right: 0;
  }
}
#header ul.navbar-nav > li > a:after {
  display: none;
  display: none;
}
#header ul.navbar-nav > li:hover > a {
  color: var(--secondary-clr-500) !important;
  color: var(--white-clr);
  position: relative;
}
#header ul.navbar-nav > li:last-child:after {
  background: none;
}
#header ul.navbar-nav > li.active > a {
  color: var(--secondary-clr-500) !important;
  position: relative;
}
#header .logo img {
  width: auto;
  height: 75px;
}
#header .navbar-toggler {
  float: left;
  margin-top: var(--spacing-8);
  padding: var(--spacing-12);
  margin: var(--spacing-8) 0;
  padding: var(--spacing-8);
  border-radius: 0;
  font-size: var(--content);
  background: var(--secondary-clr-500);
  color: var(--white-clr);
}
#header .navbar-toggler:focus {
  outline: 0;
}
#header .navbar {
  border-radius: 0;
  border: 0;
  margin-bottom: 0;
}
#header .navbar-light ul.navbar-nav > li > a {
  color: var(--txt-clr) !important;
  font-size: var(--content-sm);
}
#header .dropdown-submenu {
  position: relative;
}
#header .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -2px;
  border-radius: 0;
}
#header .dropdown-submenu > a:after {
  display: block;
  content: "\f105";
  font-family: "FontAwesome";
  float: right;
  margin-top: 0;
  margin-right: -5px;
  border: 0;
}
#header .dropdown-submenu:hover > a:after {
  border-left-color: var(--white-clr);
}
#header .dropdown-menu {
  text-align: left;
  background: var(--white-clr);
  z-index: 100;
  min-width: 200px;
  border-radius: 0;
  border: 0;
  border-top: 2px solid var(--secondary-clr-500);
  padding: 0 var(--spacing-20);
  margin: 0;
  box-shadow: var(--shadow-sm);
}
#header .dropdown-menu li a {
  font-family: var(--content);
  display: block;
  font-size: var(--content-sm);
  text-transform: uppercase;
  font-weight: var(--font-semibold);
  line-height: normal;
  text-decoration: none;
  padding: var(--spacing-8);
  border-bottom: 1px solid var(--tertiary-clr-500);
  color: var(--txt-clr);
}
#header .dropdown-menu li a:hover {
  color: #fff;
  background: var(--primary-clr-900) !important;
}
#header .dropdown-menu li a:focus {
  color: var(--secondary-clr-500);
}
#header .dropdown-menu li:last-child > a {
  border-bottom: 0;
}
#header .dropdown-menu > .active > a {
  background: none;
  color: var(--secondary-clr-500);
}
#header .dropdown-menu > .active > a:hover {
  background: none;
  color: var(--secondary-clr-500);
}
#header .dropdown-menu > .active > a:focus {
  background: none;
  color: var(--secondary-clr-500);
}
#header .dropdown-menu > .active > .dropdown-menu > .active > a {
  background: none;
  color: var(--secondary-clr-500);
}
#header .dropdown-menu-large {
  min-width: 400px;
}
#header .dropdown-menu-large > li > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
#header .dropdown-menu-large > li > ul > li > a {
  padding-left: 0;
}
#header .dropdown-menu-large > li > ul > li.active > a {
  color: var(--secondary-clr-500) !important;
}
#header .navbar-nav > li > .dropdown-menu a {
  background: none;
}

@media (max-width: 767px) {
  #header .top-social ul {
    margin-right: 0;
    margin-top: var(--spacing-8);
  }
}
@media (max-width: 991px) {
  #header .navbar-collapse.collapse {
    overflow-y: auto;
  }
  #header .header-one ul.navbar-nav > li {
    padding-right: 0;
  }
  #header ul.navbar-nav > li > a {
    padding: 1px 0 !important;
  }
  #header ul.navbar-nav > li > a i {
    float: right;
  }
  #header .navbar-nav {
    margin-bottom: var(--spacing-16);
  }
  #header .header-two ul.navbar-nav > li {
    padding: 0;
    width: 100%;
  }
  #header .header-two ul.navbar-nav > li > a i {
    color: var(--white-clr);
  }
  #header .header-two ul.navbar-nav > li > a.active i {
    color: var(--secondary-clr-500);
  }
  #header .header-two ul.navbar-nav > li.active > a i {
    color: var(--secondary-clr-500);
  }
  #header .dropdown-menu {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  }
  #header .dropdown-menu li a {
    padding: 12px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #header .header-two .logo img {
    height: 70px;
  }
}
@media (max-width: 576px) {
  #header .header-two .logo img {
    height: 62px;
  }
}
@media (max-width: 1200px) {
  #header ul.navbar-nav > li {
    padding: 0 var(--spacing-4);
    width: 100%;
  }
  #header ul.navbar-nav > li .nav-link {
    font-size: var(--content-sm);
  }
}
@media (min-width: 991px) {
  #header ul.nav li.dropdown:hover ul.dropdown-menu {
    display: block;
  }
  #header ul.nav li.dropdown ul.dropdown-menu li.dropdown-submenu .dropdown-menu {
    left: 100%;
    top: 0px;
    display: none;
  }
  #header ul.nav li.dropdown ul.dropdown-menu li.dropdown-submenu:hover .dropdown-menu {
    display: block;
  }
  .site-navigation {
    position: absolute;
    width: 100%;
    top: 10px;
  }
  ul.dropdown-menu li {
    border-bottom: 1px solid rgba(36, 146, 235, 0.1215686275);
  }
  .dropdown::after {
    content: "\f107";
    position: absolute;
    right: -2px;
    top: 16px;
    font-family: "fontawesome";
  }
}
header#header {
  position: relative;
  width: 100%;
  top: 0;
  z-index: 99;
}

#header .dropdown-menu {
  text-align: left;
  background: var(--white-clr);
  z-index: 100;
  left: 0;
  min-width: 200px;
  border-radius: 10px;
  overflow: hidden;
  border: 0;
  border-top: 0px solid var(--secondary-clr-500);
  padding: 0;
  margin: 0;
  box-shadow: none;
  right: 0;
}

.navbar-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1080;
  transition: all ease;
  left: 0;
  right: 0;
  box-shadow: var(--shadow-sm);
  background: var(--white-clr);
  padding: var(--spacing-12) !important;
}

@media (min-width: 1199px) {
  .navbar-fixed {
    animation: smoothScroll 1s forwards;
  }
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (max-width: 1200px) {
  .navbar-fixed {
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 1080 !important;
    transition: all ease !important;
    left: 0 !important;
    right: 0 !important;
    box-shadow: var(--shadow-sm) !important;
    background: var(--white-clr) !important;
    padding: 0 !important;
  }
}
.bg-boxnav button.active {
  background: #cfe2fc !important;
  border-radius: 0;
  color: #2492eb !important;
  font-weight: 600 !important;
}

.bg-boxnav button {
  border-radius: 0 !important;
  text-align: start !important;
  color: var(--txt-clr) !important;
}

.bg-boxnav {
  background: #fff;
  width: 600px;
  height: 300px;
  box-shadow: var(--shadow-lg);
}
.bg-boxnav .tab-content {
  height: 300px;
  overflow-y: scroll !important;
  overflow-x: hidden;
  width: 385px;
}
.bg-boxnav .tab-content li {
  font-size: 15px;
}
.bg-boxnav .nav {
  border-right: 1px solid rgba(204, 204, 204, 0.9490196078);
  height: 400px;
}

.tab-content::-webkit-scrollbar {
  width: 8px;
}

.tab-content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.tab-content::-webkit-scrollbar-thumb {
  border-radius: 15px;
  background-color: var(--primary-clr-900);
  outline: 1px solid var(--primary-clr-900);
}

ul.nav-items.nav-expand-content {
  height: 100%;
  overflow-y: scroll;
}

a {
  cursor: pointer !important;
}

@media (min-width: 991px) {
  .filter-btn .dropdown::after {
    content: "\f107";
    position: absolute;
    right: -2px;
    top: 16px;
    display: none;
    font-family: "fontawesome";
  }
}
.popular-university .filter-btn:hover {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.popular-university .filter-btn {
  border: 1px solid #fff;
  transition: all 0.5s ease;
}

.flag-img img {
  width: 70px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
  display: block;
}

#simple-list-example a {
  color: var(--txt-clr);
  display: block;
  width: -moz-max-content !important;
  width: max-content !important;
  padding: 10px 20px !important;
}

.navslider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
}

#mobile-menu-metreal .nav-top {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 101;
  width: 100%;
  height: 50px;
  background-color: var(--primary-clr-500);
}
#mobile-menu-metreal .nav-top .hamburger {
  margin-left: auto;
  color: var(--white-clr);
  cursor: pointer;
}
#mobile-menu-metreal .nav-drill {
  margin-top: 0px;
}
#mobile-menu-metreal .nav-drill li p {
  color: var(--tertiary-clr-800);
  font-size: var(--content);
  margin: var(--spacing-4) var(--spacing-16);
}
#mobile-menu-metreal .nav-drill {
  display: flex;
  position: absolute;
  z-index: 100;
  top: auto;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--tertiary-clr-500);
  overflow-y: hidden;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transition: 0.45s;
}
#mobile-menu-metreal .nav-items {
  flex: 0 0 100%;
}
#mobile-menu-metreal .nav-link {
  display: block;
  padding: var(--spacing-8) var(--spacing-16);
  background-color: var(--tertiary-clr-500);
  color: var(--txt-clr);
  font-size: var(--content);
  line-height: var(--content);
  font-weight: var(--font-regular);
}
#mobile-menu-metreal .nav-link:hover {
  color: var(--txt-clr);
}
#mobile-menu-metreal .nav-expand-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  background-color: var(--tertiary-clr-300);
  transition: 0.3s;
  visibility: hidden;
}
#mobile-menu-metreal .nav-expand-content .nav-link {
  background-color: var(--tertiary-clr-300);
}
#mobile-menu-metreal .nav-expand-content .nav-back-link {
  display: flex;
  align-items: center;
  background-color: var(--secondary-clr-900);
  color: var(--white-clr);
}
#mobile-menu-metreal .nav-expand-content .nav-back-link::before {
  content: "\f053";
  margin-right: var(--spacing-4);
  font-family: "fontawesome";
}
#mobile-menu-metreal .nav-expand-link {
  display: flex;
  justify-content: space-between;
}
#mobile-menu-metreal .nav-expand-link::after {
  content: "\f054";
  flex: 0 1 auto;
  font-family: "fontawesome";
}
#mobile-menu-metreal .nav-expand.active > .nav-expand-content {
  transform: translateX(0);
  visibility: visible;
}
#mobile-menu-metreal .btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: var(--spacing-4);
  color: #000;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 50%;
  opacity: 1;
  box-shadow: none;
  margin: 0;
  position: inherit;
}
#mobile-menu-metreal h5 {
  font-size: var(--content-lg);
  font-family: var(--font-content);
  font-weight: var(--font-semibold);
  margin: 0;
  color: var(--white-clr);
}
#mobile-menu-metreal .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-16);
  background: var(--primary-clr-900);
  height: 80px;
}
@media (min-width: 568px) {
  #mobile-menu-metreal .offcanvas-end {
    width: 40%;
  }
}
@media (min-width: 992px) {
  #mobile-menu-metreal .offcanvas-end {
    width: 30%;
  }
}
@media (min-width: 400px) and (max-width: 567px) {
  #mobile-menu-metreal .offcanvas-end {
    width: 50%;
  }
}
@media (max-width: 499px) {
  #mobile-menu-metreal .offcanvas-end {
    width: 85%;
  }
}
#mobile-menu-metreal .cards {
  display: flex;
  align-items: center;
}
#mobile-menu-metreal .cards img {
  width: 50px;
}
#mobile-menu-metreal .cards h6 {
  font-size: var(--content);
  font-weight: var(--font-regular);
  margin-left: var(--spacing-16);
  line-height: var(--lh-content);
}
#mobile-menu-metreal .offcanvas-body {
  flex-grow: 1;
  padding: 0;
  overflow-y: auto;
  background: var(--tertiary-clr-300);
}
@media (max-width: 568px) {
  #mobile-menu-metreal .nav-link {
    padding: 10px 10px;
    background-color: var(--tertiary-clr-500);
    color: var(--txt-clr);
    font-size: var(--content);
    line-height: var(--lh-content);
    font-weight: var(--font-regular);
  }
}
#mobile-menu-metreal #metreal-navigation-m {
  background-color: var(--tertiary-clr-900);
}
#mobile-menu-metreal #metreal-navigation-m img {
  width: 150px;
}
#mobile-menu-metreal #metreal-navigation-m .fa-bars {
  font-size: var(--heading-2);
}

#mobile-menu-metreal #metreal-navigation-m img {
  width: 71px;
}

button.navbar-toggler {
  background: var(--primary-clr-900);
}

#mobile-menu-metreal .nav-expand-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  background-color: var(--tertiary-clr-300);
  transition: 0.3s;
  visibility: hidden;
  background: #fff;
}

#mobile-menu-metreal .nav-link {
  padding: 10px 10px;
  background-color: var(--tertiary-clr-500);
  color: var(--txt-clr);
  font-size: var(--content);
  text-transform: uppercase;
  line-height: var(--lh-content);
  font-weight: var(--font-regular);
  border-bottom: 1px solid #ccc;
}

#mobile-menu-metreal .cards h6 {
  font-size: var(--content);
  font-weight: var(--font-regular);
  margin-left: var(--spacing-16);
  line-height: var(--lh-content);
  margin-bottom: 0;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}

#mobile-menu-metreal #metreal-navigation-m {
  background-color: transparent;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99;
}

header#header {
  z-index: 999999;
}

#mobile-menu-metreal #metreal-navigation-m .fa-bars {
  font-size: var(--heading-3);
  padding: 2px;
}

.banner {
  background-size: cover !important;
  height: 100%;
  padding: 50px 0;
  background-attachment: fixed !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  position: relative;
}
.banner:before {
  background: rgba(0, 0, 0, 0.4392156863);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
}
.banner .container {
  z-index: 999;
  position: relative;
}
.banner .breadcrumb {
  align-items: center;
}
.banner .breadcrumb li {
  color: var(--white-clr);
  text-transform: uppercase;
  font-family: var(--font-content);
  font-size: 16px;
  margin: 0 5px;
  line-height: 50px;
}
.banner .breadcrumb li a {
  color: var(--white-clr);
  text-decoration: none;
}
.banner .breadcrumb li .active {
  color: var(--white-clr);
  font-weight: 600;
}
.banner .breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: "\f054";
  font-family: "fontawesome";
  font-size: 14px;
  color: var(--white-clr);
}
.banner .flag-img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 10px;
}
.banner h1 {
  color: var(--white-clr);
}
.banner p {
  font-family: var(--font-content);
  font-size: var(--heading-5);
  line-height: var(--lh-5);
  color: var(--white-clr);
  font-weight: 600;
}
.banner .fee-structure {
  background: var(--white-clr);
  border-radius: var(--border-16);
  margin: 40px 0;
}
.banner .fee-structure img {
  margin: 0 5px 0 5px;
}
.banner .fee-structure .lgtxt {
  font-size: var(--content);
  color: var(--txt-clr);
  line-height: var(--lh-content);
  margin-bottom: 4px;
}
.banner .fee-structure .lgtxt span {
  color: var(--secondary-clr-900);
  font-size: 16px;
}
.banner .fee-structure .cntbox {
  padding: 15px;
}
.banner .br-line {
  border-right: 1px solid rgba(0, 0, 0, 0.1254901961);
}
@media (max-width: 568px) {
  .banner .br-line {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1254901961);
  }
}
.banner .fa-star {
  color: #F0BC02;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none !important;
}

.fee-structure {
  background: var(--secondary-clr-900);
  position: relative;
  overflow: hidden;
}
.fee-structure .container {
  position: relative;
  z-index: 9999;
}
.fee-structure .cicle1 {
  width: 300px;
  height: 300px;
  position: absolute;
  right: -150px;
  border-radius: 50%;
  border: 30px solid var(--primary-clr-900);
}
.fee-structure .cicle2 {
  width: 300px;
  height: 300px;
  position: absolute;
  left: -100px;
  bottom: -50px;
  border-radius: 50%;
  border: 30px solid var(--primary-clr-900);
}
.fee-structure .fee-card {
  background: var(--white-clr);
  border-radius: 20px;
  padding: 15px 5px;
}
.fee-structure .fee-card .fee {
  width: 60px;
  height: auto;
  margin-right: 15px;
}
@media (max-width: 568px) {
  .fee-structure .fee-card .fee {
    height: 60px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 15px;
  }
}
.fee-structure .fee-card .lg {
  font-size: 22px;
  font-weight: 500;
  font-family: var(--font-content);
}
@media (max-width: 568px) {
  .fee-structure .fee-card .lg {
    font-size: 17px;
    font-weight: 500;
    font-family: var(--font-content);
    margin: 0;
  }
}
.fee-structure .fee-card .sm {
  font-size: 20px;
  font-family: var(--font-content);
  font-weight: 300;
  color: #252829;
  margin-bottom: 0;
}
@media (max-width: 568px) {
  .fee-structure .fee-card .sm {
    font-size: 17px;
    font-family: var(--font-content);
    font-weight: 300;
    color: #252829;
  }
}
@media (max-width: 568px) {
  .fee-structure .fee-card .mob-box {
    display: block !important;
    text-align: center;
  }
}

.why-study li {
  display: flex;
  margin-bottom: 16px;
  align-items: self-start;
  position: relative;
}
.why-study li::before {
  content: "";
  background-image: url(../images/country/common-images/check.png);
  background-repeat: no-repeat;
  display: inline-block;
  width: 81px;
  position: absolute;
  height: 50px;
  left: 0;
  top: 7px;
}
.why-study li img {
  margin-right: 14px;
}
.why-study li p {
  margin-bottom: 0;
  margin-left: 40px;
}

.why-study-wh {
  position: relative;
}
.why-study-wh li {
  display: flex;
  margin-bottom: 16px;
  align-items: self-start;
  color: var(--white-clr) !important;
  position: relative;
  margin-left: 24px;
}
.why-study-wh li::before {
  content: "";
  background-image: url(../images/country/common-images/pros-check.png);
  background-repeat: no-repeat;
  display: inline-block;
  width: 46px;
  height: 50px;
  position: absolute;
  height: 50px;
  left: -35px;
  top: 3px;
}
.why-study-wh li img {
  margin-right: 14px;
}
.why-study-wh li p {
  margin-bottom: 0;
  margin-left: 40px;
}

.why-study-drk {
  position: relative;
}
.why-study-drk li {
  display: flex;
  margin-bottom: 16px;
  align-items: self-start;
  position: relative;
  margin-left: 24px;
}
.why-study-drk li::before {
  content: "";
  background-image: url(../images/country/common-images/cons-check.png);
  background-repeat: no-repeat;
  display: inline-block;
  width: 46px;
  height: 50px;
  position: absolute;
  height: 50px;
  left: -35px;
  top: 3px;
}
.why-study-drk li img {
  margin-right: 14px;
}
.why-study-drk li p {
  margin-bottom: 0;
  margin-left: 40px;
}

.university-slider {
  background: url(../images/country/common-images/univercity-bg.jpg);
  background-attachment: fixed;
  position: relative;
  background-size: cover;
}
.university-slider::before {
  background: rgb(2, 0, 36);
  background: linear-gradient(90deg, rgb(2, 0, 36) 0%, rgb(7, 29, 47) 0%, rgba(7, 29, 47, 0) 95%);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.university-slider .container {
  position: relative;
  z-index: 9999;
}
.university-slider .card-university {
  background: var(--white-clr);
  border-radius: 24px;
  padding: 15px;
  position: relative;
  min-height: 300px;
  overflow: hidden;
}
.university-slider .card-university .bg-card .btm-shape {
  width: 134%;
  left: -54px;
  right: 0;
  margin: auto;
  display: block;
  bottom: 0px;
  position: absolute;
}
.university-slider .card-university .bg-card .btmbox {
  position: absolute;
  background: var(--primary-clr-900);
  height: 100px;
  width: 100%;
  bottom: 0;
  left: 0;
}
.university-slider .card-university h3 {
  text-align: center;
  font-size: var(--heading-6);
  line-height: var(--lh-6);
  font-weight: var(--font-bold);
  font-family: var(--font-content);
  padding: 0;
}
.university-slider .card-university .circle {
  width: 300px;
  height: 300px;
  background: rgba(157, 148, 52, 0.1254901961);
  border-radius: 50%;
  left: auto;
  position: absolute;
  top: -150px;
  right: -100px;
}
.university-slider .card-university .university-box-img img {
  width: 98%;
  height: 200px;
  max-width: 100%;
  position: relative;
  margin: 5px auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  border: 5px solid var(--white-clr);
  display: block;
}
.university-slider .card-university .city-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: auto;
}
.university-slider .card-university .city-details p {
  font-size: var(--heading-6) !important;
  line-height: var(--lh-6);
  font-weight: 600;
  position: relative;
  margin: 12px 0;
  z-index: 999;
  font-family: var(--font-content);
  color: var(--white-clr);
}
.university-slider .owl-carousel .owl-nav button.owl-prev, .university-slider .owl-carousel .owl-nav button.owl-next, .university-slider .owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  background: var(--white-clr);
  font: inherit;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 20px;
}
.university-slider .owl-carousel .owl-stage {
  display: flex;
}
.university-slider .card-university {
  display: flex;
  flex: 1 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}
.university-slider img {
  width: auto;
  margin: 0 auto 15px;
  display: block;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100px;
}

.eligibility-criteria {
  background: var(--tertiary-clr-900);
  position: relative;
}
.eligibility-criteria .card-box {
  background-color: var(--secondary-clr-900);
  border-radius: 16px;
}
.eligibility-criteria .card-box .cnt-box1 {
  background-color: var(--tertiary-clr-900);
  padding: var(--spacing-16);
  margin-bottom: 16px;
  border-radius: 8px;
}
.eligibility-criteria .card-box .cnt-box1 p {
  margin: 0;
}
.eligibility-criteria .card-box h2 {
  font-size: var(--heading-5);
  text-align: start !important;
  line-height: var(--lh-5);
}
.eligibility-criteria .card-box .cnt-box-2 {
  background: var(--primary-clr-900);
  color: var(--white-clr);
  border-radius: 16px;
  padding: var(--spacing-24);
  height: 100%;
}
.eligibility-criteria p.text-white.mb-0 {
  display: flex;
}
.eligibility-criteria .imgbox {
  width: 33px;
  -o-object-fit: contain;
     object-fit: contain;
  float: left;
  margin-right: 10px;
}
.eligibility-criteria .sticky {
  position: sticky;
  top: 20px;
}

.mbbs-cost {
  background: var(--secondary-clr-900);
}
.mbbs-cost .tablebox {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white-clr);
}
.mbbs-cost .table {
  margin-bottom: 0;
}
.mbbs-cost .table tr th {
  background: #E8EBFA;
  border: 1px solid #888888;
}
.mbbs-cost td {
  border: 1px solid #888888;
}

.study-mbbbs .table tr th {
  background: var(--secondary-clr-900);
  color: var(--white-clr);
  border: 1px solid #888888;
  text-align: center;
}
.study-mbbbs .table .tablebox {
  border-radius: 16px;
  overflow: hidden;
}
.study-mbbbs .table .tablebox td {
  background: #e8ebfa;
  border: 1px solid #888888;
}
.study-mbbbs .border-box {
  padding: 0px;
  border-radius: 24px;
  border: 1px solid #888888;
  overflow: hidden;
}
.study-mbbbs .border-box td {
  background: #e8ebfa;
  border: 1px solid #888888;
}

.testimonial .border-box {
  width: 300px;
  height: 420px;
  border-radius: 0;
  left: 9%;
  top: 4%;
  border: 10px solid var(--primary-clr-900);
  position: absolute;
}
@media (max-width: 768px) {
  .testimonial .border-box {
    width: 312px;
    display: none !important;
    height: 80% !important;
    border: 10px solid var(--primary-clr-900);
    position: absolute;
    border-radius: 0;
    left: 0;
  }
}
.testimonial .mt-50 {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .testimonial .testimonialslider {
    position: relative;
    padding-top: 50px;
  }
}
.testimonial .test-box {
  background: var(--tertiary-clr-900);
  padding: 50px;
  max-height: 400px;
}
@media (max-width: 992px) {
  .testimonial .test-box {
    padding: 10px;
    padding: 10px;
    margin-top: 0px;
  }
}
.testimonial .img-box {
  position: relative;
  width: 80%;
  height: 100%;
}
@media (max-width: 768px) {
  .testimonial .img-box {
    position: relative;
    width: 85px;
    height: 100%;
    margin-bottom: 0;
  }
}
.testimonial .img-box::before {
  content: "";
  width: 150px;
  height: 170px;
  position: absolute;
  left: 0;
  background: var(--primary-clr-900);
  right: -15px;
  left: auto;
  top: -11px;
}
@media (max-width: 768px) {
  .testimonial .img-box::before {
    content: "";
    width: 73px;
    background: var(--primary-clr-900);
    right: -8px;
    left: auto;
    position: absolute;
    height: 90px;
    top: -8px;
  }
}
.testimonial .img-box img {
  position: relative;
}
.testimonial .testtext {
  font-size: var(--heading-5);
  font-weight: 600;
  line-height: var(--lh-5);
}
.testimonial .squre {
  width: 30px;
  height: 30px;
  background: var(--primary-clr-900);
}
.testimonial .shape {
  display: flex;
  align-items: center;
}
.testimonial .shape .line {
  width: 50px;
  border: 1px solid #000;
  position: absolute;
  margin-left: 15px;
}
.testimonial .des {
  display: flex;
  align-items: center;
}
.testimonial .lftms {
  margin-left: 51px !important;
}
.testimonial p.name {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}
.testimonial .testimonialslider {
  position: relative;
}
@media (max-width: 768px) {
  .testimonial .testimonialslider .col-md-5 {
    margin-left: auto;
    margin-right: 15px;
    position: relative;
    margin-top: -71px;
    margin-bottom: 14px;
  }
}
.testimonial .owl-carousel .owl-nav button.owl-prev,
.testimonial .owl-carousel .owl-nav button.owl-next,
.testimonial .owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  background: var(--white-clr);
  font: inherit;
  border: 2px solid var(--primary-clr-900);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 20px;
}
.testimonial .owl-carousel .owl-nav button.owl-prev:hover,
.testimonial .owl-carousel .owl-nav button.owl-next:hover,
.testimonial .owl-carousel button.owl-dot:hover {
  background: var(--primary-clr-900);
  color: var(--white-clr);
}
.testimonial .owl-carousel .owl-stage {
  display: flex;
}
.testimonial .card-univercity {
  display: flex;
  flex: 1 0 auto;
  height: 100%;
}

.blog {
  background: var(--tertiary-clr-900);
}
.blog .card-blog {
  background: var(--white-clr);
  border-radius: 16px;
  padding: 4px;
}
.blog .card-blog .blog-img {
  border-radius: 12px;
  margin-bottom: 8px;
}
.blog .card-blog h3 {
  font-size: 17px;
  font-family: var(--font-content);
  line-height: 23px;
  padding: 0 10px;
}
.blog .card-blog p {
  font-size: var(--content-sm);
  padding: 0 10px;
  font-family: var(--font-content);
  font-weight: var(--font-regular);
  line-height: var(--lh-content-sm);
  color: var(--title-clr);
}
.blog .owl-carousel .owl-nav button.owl-prev,
.blog .owl-carousel .owl-nav button.owl-next,
.blog .owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  background: var(--white-clr);
  font: inherit;
  border: 2px solid var(--primary-clr-900);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 20px;
}
.blog .owl-carousel .owl-nav button.owl-prev:hover,
.blog .owl-carousel .owl-nav button.owl-next:hover,
.blog .owl-carousel button.owl-dot:hover {
  background: var(--primary-clr-900);
  color: var(--white-clr) !important;
}
.blog .owl-carousel .owl-stage {
  display: flex;
}

.procons {
  background: var(--white-clr);
}
.procons .box {
  display: flex;
  align-items: center;
  border-radius: 0 50px 0 50px;
  overflow: hidden;
}
.procons .card-one {
  background: var(--primary-clr-900);
  padding: 30px;
}
@media (max-width: 768px) {
  .procons .card-one {
    width: 100%;
  }
}
.procons .card-flex {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.procons .card-two {
  background: #D9D9D9;
  padding: 30px;
}
@media (max-width: 768px) {
  .procons .card-two {
    width: 100%;
  }
}
.procons img {
  width: 40px;
}
.procons h3 {
  font-size: 24px;
  line-height: 32px;
  align-items: center;
  padding: 0;
  margin-bottom: 20px;
}

.glance .bg-blue-box {
  background: var(--primary-clr-900);
  padding: 15px;
  height: 100%;
  border-radius: 18px;
}
@media (max-width: 768px) {
  .glance .bg-blue-box {
    margin: 15px 0;
  }
}
.glance .bg-blue-box .bg-white {
  border-radius: 8px;
  margin: 8px;
}
.glance .bg-blue-box .bg-white p {
  margin: 0;
}
.glance .bg-blue-box .flex-box {
  display: flex;
  flex-wrap: wrap;
}

.faq {
  background-color: var(--tertiary-clr-900);
  position: relative;
  overflow: hidden;
}
.faq .circle {
  width: 800px;
  height: 800px;
  position: absolute;
  right: -400px;
  background-color: var(--primary-clr-900);
  bottom: -400px;
  border-radius: 50%;
}
.faq .bg-faq {
  position: relative;
  background: var(--white-clr);
  padding: 30px;
  z-index: 999;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .faq .bg-faq {
    padding: 15px;
  }
}
.faq .accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: 0;
}
@media (max-width: 768px) {
  .faq .accordion-item {
    padding: 15px 0 !important;
  }
}
.faq .accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: transparent;
  box-shadow: none;
  border-bottom: none;
}
.faq button.accordion-button {
  padding: 0;
  border-bottom: 1px solid #D9DBE9;
  border-radius: 0 !important;
}
.faq .accordion-body {
  padding: 0;
}
.faq button.accordion-button {
  color: var(--primary-clr-900) !important;
  font-size: var(--heading-6);
  font-weight: 400;
}
.faq .accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}
.faq button.accordion-button.collapsed {
  color: var(--txt-clr) !important;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

#simple-list-example {
  background: var(--tertiary-clr-900);
  font-size: 16px;
  position: sticky;
  z-index: 9999;
  top: 0;
  width: -moz-max-content;
  width: max-content;
  padding: 0px 30px;
}
#simple-list-example a {
  color: var(--txt-clr);
  width: -moz-max-content;
  width: max-content;
  padding: 10px 20px !important;
}
#simple-list-example .active {
  background: var(--primary-clr-900) !important;
  color: var(--white-clr) !important;
}
#simple-list-example .slider {
  display: flex;
  flex-wrap: nowrap;
  width: -moz-max-content;
  width: max-content;
}

.scroll-line {
  height: 3px;
  background-color: var(--primary-clr-900);
  top: 0;
  left: 0;
  height: 3px;
  position: fixed;
  z-index: 1000000000000000000;
  transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes scrollRight {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.slider {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
}

#simple-list-example {
  background: var(--tertiary-clr-900);
  font-size: 16px;
  position: sticky;
  z-index: 9999;
  top: 80px;
  width: -moz-max-content;
  width: max-content;
  padding: 0px 30px;
}

/* width */
.navslider::-webkit-scrollbar {
  width: 0px;
  height: 0;
}

/* Track */
.navslider::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.navslider::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.navslider::-webkit-scrollbar-thumb:hover {
  background: transparent;
}

.navbar-fixed {
  position: fixed !important;
  top: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
  transition: all ease !important;
  left: 0 !important;
  right: 0 !important;
  box-shadow: var(--shadow-sm) !important;
  background: var(--white-clr) !important;
  padding: 0 !important;
}

#simple-list-example {
  top: 55px !important;
}

@media (max-width: 768px) {
  #simple-list-example {
    top: 82px !important;
  }
}
.university-banner {
  height: 80vh;
  position: relative;
}
@media (max-width: 992px) {
  .university-banner {
    height: auto;
  }
}
.university-banner:before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.829), transparent);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
}

@media (min-width: 768px) {
  .university-details {
    background: var(--secondary-clr-900);
  }
}
@media (min-width: 768px) {
  .university-details .tab-content {
    background: var(--tertiary-clr-900);
    margin: 0 20px;
    padding: 15px;
  }
}
.university-details button {
  width: 100%;
  background: transparent !important;
}
.university-details button.active {
  background: var(--primary-clr-900) !important;
  color: var(--white-clr) !important;
}
.university-details .nav-link {
  color: #fff !important;
  border: 1px solid rgba(36, 146, 235, 0.7058823529);
  margin-bottom: 5px;
}
.university-details #contentuniversity {
  max-height: 100px;
  overflow: hidden;
}
.university-details #contentuniversity1 {
  max-height: 100px;
  overflow: hidden;
}
.university-details .expanded {
  max-height: 100% !important;
  display: block;
}
.university-details #v-pills-Overview button {
  background: var(--primary-clr-900) !important;
  padding: 10px;
  display: flex;
  text-align: center;
  margin-top: 8px;
  position: relative;
  z-index: 99999;
  color: var(--white-clr);
  justify-content: center;
  font-weight: 600;
  align-items: center;
  transition: all 0.5s ease;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--primary-clr-900);
  border-radius: 8px;
}
@media (max-width: 768px) {
  .university-details #v-pills-Overview button {
    padding: 5px 15px;
  }
}
.university-details .cntbox {
  margin-bottom: 15px;
}

.expanded {
  overflow: hidden;
  max-height: auto !important;
}

.university-details #contentuniversity1.expandeded {
  max-height: 100%;
}

#v-pills-Choose button {
  background: var(--primary-clr-900) !important;
  padding: 10px;
  display: flex;
  text-align: center;
  margin-top: 8px;
  position: relative;
  z-index: 99999;
  color: var(--white-clr);
  justify-content: center;
  font-weight: 600;
  align-items: center;
  transition: all 0.5s ease;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--primary-clr-900);
  border-radius: 8px;
}
@media (max-width: 768px) {
  #v-pills-Choose button {
    padding: 5px 15px;
  }
}

.rating-img {
  height: auto;
  width: 100%;
}

#v-pills-Ranking h6 {
  font-weight: 700;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 15px auto;
  display: block;
}
#v-pills-Ranking h6 span {
  color: var(--primary-clr-900);
}

@media (max-width: 768px) {
  div#v-pills-Highlights {
    display: block;
    opacity: 1;
    margin-top: 20px;
  }
  div#v-pills-Highlights h5 {
    font-size: var(--heading-3);
    font-family: var(--font-title);
    font-weight: var(--font-semibold) !important;
    line-height: var(--lh-3);
    color: var(--title-clr);
    margin-bottom: 20px;
    margin-top: 20px;
  }
  div#v-pills-Highlights h5 b {
    font-weight: inherit;
  }
  div#v-pills-Ranking {
    display: block;
    opacity: 1;
    margin-top: 20px;
  }
  div#v-pills-Ranking h5 {
    font-size: var(--heading-3);
    font-family: var(--font-title);
    font-weight: var(--font-semibold) !important;
    line-height: var(--lh-3);
    color: var(--title-clr);
    margin-bottom: 20px;
    margin-top: 20px;
  }
  div#v-pills-Ranking h5 b {
    font-weight: inherit;
  }
  div#v-pills-Choose {
    display: block;
    opacity: 1;
    margin-top: 20px;
  }
  div#v-pills-Choose h5 {
    font-size: var(--heading-3);
    font-family: var(--font-title);
    font-weight: var(--font-semibold) !important;
    line-height: var(--lh-3);
    color: var(--title-clr);
    margin-bottom: 20px;
    margin-top: 20px;
  }
  div#v-pills-Choose h5 b {
    font-weight: inherit;
  }
  #v-pills-Overview h5 {
    font-size: var(--heading-3);
    font-family: var(--font-title);
    font-weight: var(--font-semibold) !important;
    line-height: var(--lh-3);
    color: var(--title-clr);
    margin-bottom: 20px;
    margin-top: 20px;
  }
  #v-pills-Overview h5 b {
    font-weight: inherit;
  }
}
@media (max-width: 768px) {
  .banner .breadcrumb li {
    color: var(--white-clr);
    text-transform: uppercase;
    font-family: var(--font-content);
    font-size: 12px;
    margin: 0 0px;
    line-height: 50px;
  }
}

@media (max-width: 768px) {
  .small-image {
    width: 80%;
    margin: auto;
    display: block;
  }
}

@media (max-width: 768px) {
  .addmittion-process .cicle1 {
    width: 200px;
    height: 200px;
    border: 30px solid var(--primary-clr-900);
    position: absolute;
    border-radius: 50%;
    display: none;
    right: -50px;
    top: -60px;
  }
}

.course-highlights {
  background: var(--tertiary-clr-900);
}
.course-highlights .fee-structure {
  background: var(--white-clr);
  padding: 15px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
}
.course-highlights .fee-structure p.lgtxt {
  margin: 0;
  margin-left: 15px;
  font-weight: 600;
}
@media (min-width: 1199px) {
  .course-highlights .nmb5 {
    top: -40px;
    position: relative;
  }
}
.course-highlights h5 {
  text-align: center;
}

section.campus-highlights img {
  height: 80px;
  margin: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 80px;
}

.course-highlights .cntbox {
  margin-bottom: 15px;
}

.addmittion-process {
  background: var(--white-clr);
}
.addmittion-process .box {
  background-image: linear-gradient(to right, rgba(150, 198, 238, 0.199), rgba(107, 133, 156, 0.4));
  padding: 20px 20px 50px 20px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.addmittion-process .cicle1 {
  width: 200px;
  height: 200px;
  border: 30px solid var(--primary-clr-900);
  position: absolute;
  border-radius: 50%;
  right: -50px;
  top: -60px;
}
.addmittion-process .cicle2 {
  width: 200px;
  height: 200px;
  border: 30px solid var(--primary-clr-900);
  position: absolute;
  border-radius: 50%;
  left: -50px;
  bottom: -60px;
}
.addmittion-process .process-box {
  background: var(--white-clr);
  padding: 15px;
  position: relative;
  z-index: 999;
  width: 130px;
  margin-top: 50px;
  min-height: 110px;
  border: 1px solid rgba(36, 146, 235, 0.7137254902);
  box-shadow: var(--shadow-sm);
  border-radius: 20px;
  position: relative;
}
.addmittion-process .process-box h5 {
  font-size: 17px;
  line-height: 24px;
  font-weight: 600;
}
.addmittion-process .process-box::after {
  content: "";
  width: 37px;
  position: absolute;
  height: 1px;
  right: -50px;
  border: 1px dashed var(--primary-clr-900);
  top: 50%;
}
.addmittion-process .process-box::after:last-child {
  border: 0;
}
.addmittion-process .process-box .b-none::after {
  display: none;
  content: "";
}
.addmittion-process .icon {
  background: var(--secondary-clr-900);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  margin: auto;
  margin-bottom: 20px;
  justify-content: center;
  position: relative;
  margin-top: -40px;
}
.addmittion-process .icon img {
  width: 30px;
  height: 30px;
}
.addmittion-process .flexbox {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .addmittion-process .flexbox {
    flex-wrap: wrap;
    justify-content: start;
    flex: 1 1;
  }
  .addmittion-process .flexbox .process-box {
    margin: 15px;
  }
}
@media (max-width: 768px) {
  .addmittion-process .flexbox {
    flex-wrap: wrap;
    justify-content: start;
    flex: 1 1;
  }
  .addmittion-process .flexbox .process-box {
    margin: 40px auto;
    display: block;
  }
  .addmittion-process .flexbox .process-box::after {
    content: "";
    width: 1px;
    position: absolute;
    height: 50px;
    right: 0;
    left: 0;
    bottom: -110px;
    margin: auto;
    display: block;
    border: 1px dashed var(--primary-clr-900);
    top: 50%;
  }
  .addmittion-process .flexbox .process-box::after:nth-child(4), .addmittion-process .flexbox .process-box::after:nth-child(5), .addmittion-process .flexbox .process-box::after:nth-child(6) {
    display: none;
  }
}
.addmittion-process .process-box.b-none::after {
  content: "";
  display: none;
}
@media (min-width: 568px) and (max-width: 768px) {
  .addmittion-process .flexbox .process-box:nth-child(4)::after,
  .addmittion-process .flexbox .process-box:nth-child(5)::after,
  .addmittion-process .flexbox .process-box:nth-child(6)::after {
    display: none;
  }
}
@media (max-width: 568px) {
  .addmittion-process .flexbox .process-box:nth-child(5)::after,
  .addmittion-process .flexbox .process-box:nth-child(6)::after {
    display: none;
  }
  .addmittion-process .flexbox .process-box:nth-child(1)::before,
  .addmittion-process .flexbox .process-box:nth-child(5)::before {
    content: "";
    width: 30px;
    position: absolute;
    height: 1px;
    right: 0;
    left: 0;
    margin: auto;
    display: block;
    border: 1px dashed var(--primary-clr-900);
    top: 50%;
    left: 102%;
  }
}

.compare-fees {
  background: var(--tertiary-clr-900);
}
.compare-fees .tablebox {
  border-radius: 15px;
  overflow: hidden;
}
.compare-fees .tablebox table.table.table-bordered {
  margin-bottom: 0;
}
.compare-fees .tablebox tr,
.compare-fees .tablebox td {
  border: 1px solid #888888 !important;
}
.compare-fees .tablebox .tablebox {
  border: 1px solid #000 !important;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid;
}
.compare-fees .tablebox {
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid #071d2f;
}

.campus-highlights {
  background: var(--tertiary-clr-900);
}

.compare-fees .tablebox table.table.table-bordered {
  margin-bottom: 0;
  border: 1px solid #071d2f !important;
  padding: 1px;
}

.homepage-banner {
  position: relative;
  padding: 120px 0 var(--spacing-80) 0;
  background: #edf0ff url(../images/homepage/bannerbg.png);
}
.homepage-banner .bbline span {
  border-bottom: 1px solid var(--primary-clr-900);
}
.homepage-banner h1 {
  font-size: var(--heading-2);
  line-height: var(--lh-2);
}
.homepage-banner .background-circle {
  width: 400px;
  position: absolute;
  top: 0;
  height: 400px;
  left: 7%;
  border-radius: 50%;
  background: var(--primary-clr-900);
  right: 0;
  margin: auto;
  border: 20px solid #CBDFF9;
  display: block;
}
.homepage-banner img {
  position: relative;
  z-index: 999;
  margin: auto;
  display: block;
}

.counter {
  background: var(--secondary-clr-900);
  position: relative;
  overflow: hidden;
  padding: var(--spacing-80) 0 var(--spacing-40) 0;
}
.counter .circle1 {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--primary-clr-900);
  top: -24px;
  left: 12%;
  border-radius: 50%;
}
.counter .circle2 {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 6%;
  background: var(--primary-clr-900);
  bottom: -24px;
  border-radius: 50%;
}
.counter .circle3 {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #2492eb;
  top: -24px;
  right: 6%;
  border-radius: 50%;
}
.counter .circle4 {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #2492eb;
  bottom: -24px;
  right: 12%;
  border-radius: 50%;
}
.counter .cntbx {
  position: relative;
  overflow: hidden;
  padding-bottom: 34px;
  margin: 0 5px;
}
@media (max-width: 768px) {
  .counter .cntbx {
    margin: 0 20px;
  }
}
.counter .beforebox {
  width: 91%;
  height: 32px;
  background: #AFC3D3;
  border-radius: 15px;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  position: absolute;
  bottom: 25px;
}
.counter .box {
  background: var(--white-clr);
  padding: 15px;
  margin: auto;
  display: block;
  border-radius: 15px;
  position: relative;
  z-index: 9;
  justify-content: center;
}
.counter .box img {
  height: 60px;
  width: auto;
}
.counter .count {
  font-weight: 600;
  font-size: var(--heading-5);
  line-height: 0;
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--secondary-clr-900);
  position: relative;
}
.counter p {
  margin: 0;
}

#mobile-menu-metreal .offcanvas-end {
  width: 85%;
  z-index: 89999;
}

.how-it-work {
  position: relative;
  overflow: hidden;
  background: #F3F5FB;
}
.how-it-work .ciclelft {
  width: 800px;
  height: 800px;
  bottom: -400px;
  left: -400px;
  border-radius: 50%;
  background: var(--primary-clr-900);
  position: absolute;
}
@media (max-width: 768px) {
  .how-it-work .ciclelft {
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
    background: var(--primary-clr-900);
    position: absolute;
  }
}
.how-it-work .imgmain {
  position: absolute;
  width: 350px;
  height: auto;
  bottom: 0;
  left: -60px;
}
@media (max-width: 768px) {
  .how-it-work .imgmain {
    position: relative;
    position: relative;
    left: 0;
    height: 100%;
    width: auto;
  }
}
.how-it-work .container {
  z-index: 999;
  position: relative;
}
.how-it-work .badge {
  background: #fff;
  padding: 8px 15px;
  border-radius: 50px;
  margin-right: 20px;
  font-size: 16px;
  color: #000;
  margin-bottom: 20px;
}
.how-it-work .contentno {
  display: flex;
  align-items: start;
  flex-direction: column;
}
.how-it-work .card-cnt-1 {
  display: flex;
  margin-bottom: 15px;
}
.how-it-work h6 {
  font-weight: 600;
}
.how-it-work .w-35 {
  width: 25%;
}
@media (max-width: 768px) {
  .how-it-work .w-35 {
    width: 100%;
  }
}
.how-it-work .w-65 {
  width: 75%;
}
@media (max-width: 768px) {
  .how-it-work .w-65 {
    width: 100%;
  }
}

.counter {
  background: var(--secondary-clr-900);
  position: relative;
  overflow: hidden;
  padding: var(--spacing-80) 0 var(--spacing-40) 0;
}
.counter .circle1 {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--primary-clr-900);
  top: -24px;
  left: 12%;
  border-radius: 50%;
}
.counter .circle2 {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 6%;
  background: var(--primary-clr-900);
  bottom: -24px;
  border-radius: 50%;
}
.counter .circle3 {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #2492eb;
  top: -24px;
  right: 6%;
  border-radius: 50%;
}
.counter .circle4 {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #2492eb;
  bottom: -24px;
  right: 12%;
  border-radius: 50%;
}
.counter .cntbx {
  position: relative;
  overflow: hidden;
  padding-bottom: 34px;
  margin: 0 5px;
}
@media (max-width: 768px) {
  .counter .cntbx {
    margin: 0 20px;
  }
}
.counter .beforebox {
  width: 91%;
  height: 32px;
  background: #AFC3D3;
  border-radius: 15px;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  position: absolute;
  bottom: 25px;
}
.counter .box {
  background: var(--white-clr);
  padding: 15px;
  margin: auto;
  display: block;
  border-radius: 15px;
  position: relative;
  z-index: 9;
  justify-content: center;
}
.counter .box img {
  height: 60px;
  width: auto;
}
.counter .count {
  font-weight: 600;
  font-size: var(--heading-5);
  line-height: 0;
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--secondary-clr-900);
  position: relative;
}
.counter p {
  margin: 0;
}

#mobile-menu-metreal .offcanvas-end {
  width: 85%;
  z-index: 89999;
}

.popular-country {
  padding: var(--spacing-80) 0;
  background: #e9ecfb;
}
.popular-country .bgcrd-box {
  background: var(--white-clr);
  border-radius: 16px;
  padding: 8px 0;
}
.popular-country .bgcrd-box img {
  width: 100%;
}
.popular-country .bgcrd-box .content {
  padding: var(--spacing-12);
}
.popular-country .bgcrd-box .content h4 {
  font-size: var(--heading-6);
  font-family: var(--font-content);
  line-height: var(--lh-6);
  font-weight: 700;
}
.popular-country .bgcrd-box .content .sm-icon {
  width: 20px;
  padding: 0;
  height: auto;
  margin-left: 0;
}
.popular-country .owl-carousel .owl-nav button.owl-prev, .popular-country .owl-carousel .owl-nav button.owl-next, .popular-country .owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  background: var(--white-clr);
  font: inherit;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 20px;
}
.popular-country .owl-carousel .owl-stage {
  display: flex;
}
.popular-country .bgcrd-box {
  display: flex;
  flex: 1 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}
.popular-country .cardimg img {
  height: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .popular-country .cardimg img {
    height: 162px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}

.popular-university {
  background: url(../images/homepage/poppular-univercity.jpg) center center no-repeat;
  background-size: cover;
  padding: var(--spacing-80) 0;
}
.popular-university .filter-btn {
  background: var(--white-clr);
  padding: 8px 20px;
  font-weight: 700;
  border-radius: 7px;
  font-size: 20px;
  color: var(--primary-clr-900);
}
.popular-university .filter-btn img {
  width: 20px;
}
.popular-university .bg-card {
  position: relative;
  overflow: hidden;
}
.popular-university .bg-card .aaply-now-btn {
  background: transparent;
  padding: 10px;
  display: flex;
  position: relative;
  z-index: 99999;
  color: var(--white-clr);
  font-weight: 600;
  align-items: center;
  transition: all 0.5s ease;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--white-clr);
  margin: auto;
  border-radius: 8px;
}
.popular-university .br-line {
  width: 100%;
  height: 1px;
  margin-top: 15px;
  background: #fff;
}
.popular-university .card-university {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  margin: 30px 0;
}
.popular-university .card-university h3 {
  font-size: 20px;
  line-height: 24px;
  position: relative;
  text-align: center;
  width: 95%;
  margin: 40px auto 0 auto;
  z-index: 999;
}
.popular-university .circle {
  width: 200px;
  height: 200px;
  background: rgba(157, 148, 52, 0.1725490196);
  border-radius: 50%;
  top: -70px;
  position: absolute;
  right: -50px;
}
.popular-university .two {
  background: rgba(138, 83, 91, 0.137254902);
}
.popular-university .one {
  background: rgba(36, 145, 235, 0.2588235294);
}
.popular-university img.wshapes {
  position: absolute;
  width: 100%;
  bottom: 0;
}
.popular-university .university-box-img {
  width: 90%;
  margin: 0 auto 15px auto;
  z-index: 999;
  position: relative;
  border: 2px solid #fff;
  border-radius: 15px;
}
.popular-university .university-box-img img {
  border-radius: 15px;
}
.popular-university .owl-carousel .owl-nav button.owl-prev, .popular-university .owl-carousel .owl-nav button.owl-next, .popular-university .owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  background: var(--white-clr);
  font: inherit;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 20px;
}

.unibg {
  background: #edf0ff !important;
}

.service-card {
  background: var(--tertiary-clr-900);
  padding: var(--spacing-80) 0;
}
.service-card .col-xl-3 {
  border-radius: 15px;
}
.service-card .col-xl-3 .card-box {
  padding: var(--spacing-16);
  box-shadow: var(--shadow-lg);
  height: 100%;
  border-radius: 15px;
  font-weight: 400 h5;
  font-weight-margin-top: 15px;
  font-weight-font-weight: 600;
}
.service-card .col-xl-3 .card-box .icon-box {
  width: 60px;
  height: auto;
}

.service-card .even {
  background: var(--primary-clr-900);
  color: var(--white-clr);
}
.service-card .even h5 {
  margin-top: 15px;
  font-weight: 600;
  color: var(--white-clr);
}
.service-card .even p {
  color: var(--white-clr);
}

.service-card .odd {
  background: var(--white-clr);
  color: var(--txt-clr);
}
.service-card .odd h5 {
  margin-top: 15px;
  font-weight: 600;
  color: var(--title-clr);
}

@media (max-width: 768px) {
  .m-even {
    background: var(--primary-clr-900) !important;
  }
  .m-even h5,
  .m-even p {
    color: var(--white-clr) !important;
  }
  .m-odd {
    background: var(--white-clr) !important;
  }
  .m-odd h5,
  .m-odd p {
    color: var(--txt-clr) !important;
  }
}
.award-achivement {
  background: var(--secondary-clr-900);
  padding: var(--spacing-80) 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.award-achivement .line {
  position: absolute;
  width: 100%;
  height: 58px;
  left: -50px;
}
.award-achivement .main-img {
  position: relative;
  z-index: 999;
}

.bg-form {
  background: var(--tertiary-clr-900);
}
.bg-form .card-bg-box {
  background: var(--white-clr);
  border: 16px;
  position: relative;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  padding: 20px 40px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .bg-form .card-bg-box {
    padding: 20px 10px;
  }
}
.bg-form .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  border: 0;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: 0;
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-bottom: 1px solid #000;
  border-radius: 0;
}
.bg-form .bg-box {
  background: var(--primary-clr-900);
  height: 100%;
  width: 25%;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 768px) {
  .bg-form .bg-box {
    background: var(--primary-clr-900);
    height: 25%;
    width: 100%;
    position: absolute;
    right: 0;
    top: auto;
    bottom: 0;
  }
}
.bg-form .bg-dark-clr {
  background: var(--secondary-clr-900);
  border-radius: 15px;
  z-index: 999;
  border: 5px solid #fff;
  position: relative;
}
@media (max-width: 768px) {
  .bg-form .bg-dark-clr {
    margin-top: 20px;
  }
}
.bg-form .d-flex.align-items-start.my-3 {
  display: flex;
  align-items: start;
  overflow: hidden;
}
.bg-form .floatingbox.my-3 div:first-child {
  float: left;
  overflow: hidden;
  margin: auto;
}
.bg-form .floatingbox img {
  width: 40px !important;
}
@media (max-width: 768px) {
  .bg-form .floatingbox img {
    width: 33px !important;
  }
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #ccc;
  outline: 0;
  box-shadow: none;
}

footer {
  background: var(--secondary-clr-900);
  padding-bottom: 0;
}
@media (max-width: 768px) {
  footer .d-flex {
    display: block !important;
  }
}
footer ul li img {
  width: 35px;
  margin-left: 15px;
}
footer .br-line {
  border: 1px solid #fff;
}
footer .d-flex.align-items-start.my-3 {
  display: flex;
  align-items: start;
  overflow: hidden;
}
footer .floatingbox.my-3 div:first-child {
  float: left;
  overflow: hidden;
  margin: auto;
}
footer .floatingbox img {
  width: 20px !important;
}
footer li a {
  font-size: 14px;
  color: white;
  font-weight: 400;
}
footer p {
  font-size: 14px;
  color: #fff;
}
footer .bg-dark-light {
  background: #344A5B;
  display: flex;
  justify-content: center;
  padding: 15px 0;
}
footer .bg-dark-light p, footer .bg-dark-light a {
  color: #fff;
  margin: 0;
}
footer .social {
  display: flex !important;
}
footer .d-flex.flex-column {
  display: flex !important;
}

.homepage-banner .flexy {
  flex-direction: column;
  align-items: flex-end;
  align-items: baseline;
  justify-content: space-between;
}
.homepage-banner .ms-n2 {
  margin-left: -30px;
}

.about-exam {
  font-size: var(--heading-5);
  line-height: var(--lh-5);
  margin-bottom: 0;
  padding-bottom: 0;
}

.bordered {
  border-radius: 20px;
}

.mnc-guidance {
  background: var(--tertiary-clr-900);
}
.mnc-guidance .bg-shape {
  width: 60px;
  height: 150%;
  background: var(--primary-clr-900);
  position: absolute;
  top: 0;
  right: 10%;
}
.mnc-guidance h4 {
  font-size: var(--content-lg);
  font-weight: var(--font-bold);
  line-height: var(--lh-content-lg);
}
.mnc-guidance .mnc-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  z-index: 9;
  display: flex;
  position: relative;
}
.mnc-guidance .mnc-card img {
  margin-right: 15px;
  width: 60px;
}
.mnc-guidance .mnc-guidance h4 {
  font-size: var(--content-lg);
  font-weight: var(--font-bold);
  margin-bottom: 0;
  line-height: var(--lh-content-lg);
}
.mnc-guidance .bg-shape {
  width: 100px;
  height: 150%;
  background: var(--primary-clr-900);
  position: absolute;
  top: -80px;
  right: 10%;
}

.cnt-sec-main {
  position: relative;
}

@media (min-width: 768px) {
  .sticky {
    position: sticky;
    top: 100px;
    left: 0;
  }
}
@media (max-width: 768px) {
  .sticky {
    background: #f5f5f5;
    position: relative;
    z-index: 9;
  }
}

.relativebx {
  position: relative;
  z-index: 999;
  background: #fff;
}

.document-card {
  display: flex;
  align-items: center;
  padding: 5px 15px;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.5215686275);
  transition: all 1s;
  margin-bottom: 15px;
}
a .document-card:hover {
  box-shadow: var(--shadow-sm);
  background: var(--tertiary-clr-900);
}
.document-card img {
  margin-right: 15px;
}

.examfee th {
  background: var(--secondary-clr-900) !important;
  color: #fff !important;
}
.examfee td {
  border: 1px solid #888888 !important;
  background: #e8ebfa;
}

.exam p {
  font-weight: 700;
}
.exam .card-cnt-1 {
  display: flex;
  margin-bottom: 15px;
  align-items: end;
}

.slidecarousel img {
  width: 100px !important;
  height: auto !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  aspect-ratio: 3/2;
}

@media (max-width: 992px) {
  .exam .card-cnt-1 {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
  }
}
.exam-banner {
  background: var(--secondary-clr-900);
}
.exam-banner h1 {
  font-size: var(--heading-3);
  line-height: var(--lh-3);
  font-weight: 600;
}

.rprocess .process-box {
  background: var(--white-clr);
  padding: 15px;
  position: relative;
  z-index: 999;
  width: 190px;
  margin-top: 50px;
  min-height: 110px;
  border: 1px solid rgba(36, 146, 235, 0.7137254902);
  box-shadow: var(--shadow-sm);
  border-radius: 20px;
  position: relative;
}
.rprocess .process-box:nth-child(5)::before {
  content: "";
  width: 30px;
  position: absolute;
  height: 1px;
  right: 0;
  left: 0;
  margin: auto;
  display: block;
  border: 1px dashed var(--primary-clr-900);
  top: 50%;
  left: 102%;
  display: none !important;
}

.eligibility {
  background: #e8ebfa;
}
.eligibility .box {
  background: var(--secondary-clr-900);
  padding: 15px;
  border-radius: 15px;
}
.eligibility .box .why-study li {
  background: #fff;
  padding: 10px;
  border-radius: 15px;
}
.eligibility .box .why-study li::before {
  left: 18px !important;
  top: 12px !important;
}

.exam-patternlist li {
  display: flex;
  margin-bottom: 16px;
  align-items: self-start;
  position: relative;
}
.exam-patternlist li::before {
  content: "";
  background-image: url(../images/mainexam/arrow.svg);
  background-repeat: no-repeat;
  display: inline-block;
  width: 81px;
  position: absolute;
  height: 50px;
  left: 0;
  top: 7px;
}
.exam-patternlist li p {
  padding-left: 35px;
}

.exam-pattern {
  background: #e8ebfa;
  padding: 15px;
  border-radius: 15px;
  border: 1px solid rgba(34, 34, 34, 0.4901960784);
}

.row.exam-pattern-detail {
  background: var(--secondary-clr-900);
  border-radius: 15px;
  position: relative;
  margin-top: -35px;
  padding: 30px;
}
.row.exam-pattern-detail h4 {
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  font-weight: 700;
}
.row.exam-pattern-detail p {
  color: var(--white-clr);
  font-weight: 400;
}
.row.exam-pattern-detail hr {
  background: #fff;
  width: 80%;
  height: 1px;
  opacity: 1;
  border-top: 1px solid #fff;
}

.syllabus {
  background: var(--tertiary-clr-900);
}
.syllabus .bgdark-clr {
  background: var(--secondary-clr-900);
  border-radius: 15px;
  overflow: hidden;
  height: 450px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .syllabus .bgdark-clr {
    background: var(--secondary-clr-900);
    border-radius: 15px;
    overflow: hidden;
    height: auto;
    background: #fff;
    overflow: hidden;
  }
}
.syllabus .bgdark-clr .tab-content {
  background: transparent !important;
  margin: 0;
}
.syllabus .bgdark-clr .nav-link {
  color: #071D2F !important;
  border: 0px solid rgba(36, 146, 235, 0.7058823529);
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3294117647);
  border-radius: 0;
}
.syllabus div#v-pills-tab {
  background: #fff;
}

.syllabus div#v-pills-tab {
  background: #fff;
  background: #fff;
  height: 800px !important;
}

.content-bg-dark {
  background: #2C386A;
  border-radius: 15px;
  height: 410px;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 15px;
}
.content-bg-dark p {
  color: #fff;
}

.Syllabus-points li {
  color: #fff;
  list-style: disc;
  font-family: var(--font-content);
  font-size: 16px;
  line-height: 21px;
  font-weight: 200;
  margin: 10px 30px;
}

.syllabus button.active {
  background: var(--primary-clr-900) !important;
  color: var(--white-clr) !important;
}

@media (max-width: 768px) {
  .br-wh {
    border-top: 1px solid rgba(255, 255, 255, 0.5215686275);
  }
}
.vision-mission {
  background: var(--tertiary-clr-900);
}
.vision-mission .content-box {
  width: 100%;
  border-radius: 0;
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--gradient-clr);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  display: block;
  height: 100%;
  background: #fff;
  padding: 15px;
  margin: auto;
  border-radius: 15px;
}
.vision-mission .content-box h3 {
  font-size: 24px !important;
}
@media (max-width: 568px) {
  .vision-mission .content-box {
    display: block;
  }
}
.vision-mission .content-box .icon {
  width: 60px;
  height: 60px;
  margin: auto;
  display: block;
  background-color: var(--primary-clr-900);
  display: flex;
  border-radius: 50%;
}
.vision-mission .content-box .icon img {
  padding: var(--spacing-8);
  max-width: 100%;
  height: auto;
  width: 60px;
  display: block;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 568px) {
  .vision-mission .content-box .icon img {
    width: 75px;
  }
}
@media (max-width: 355px) {
  .vision-mission .content-box .icon img {
    padding: var(--spacing-8);
  }
}
.vision-mission .content-box .content {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 0;
  background: var(--tertiary-clr-200);
}
@media (max-width: 568px) {
  .vision-mission .content-box .content {
    width: 100%;
  }
}
@media (max-width: 355px) {
  .vision-mission .content-box .content {
    padding: var(--spacing-8);
  }
}
.vision-mission .content-box .content span {
  font-size: var(--heading-4);
  color: var(--primary-clr-500);
  font-weight: var(--font-bold);
  margin-right: var(--spacing-16);
}
@media (max-width: 355px) {
  .vision-mission .content-box .content span {
    margin-right: var(--spacing-2);
  }
}
.vision-mission .content-box .content h5 {
  margin-bottom: var(--spacing-12);
}
@media (max-width: 568px) {
  .vision-mission .content-box .content h5 {
    text-align: end;
  }
}
.vision-mission .content-box p {
  margin: 0;
  font-size: var(--content-md);
}
@media (max-width: 568px) {
  .vision-mission .content-box p {
    font-size: var(--content);
  }
}

.cd-horizontal-timeline {
  opacity: 0;
  transition: opacity 0.2s;
}

.cd-horizontal-timeline::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: "mobile";
  display: none;
}

.cd-horizontal-timeline.loaded {
  /* show the timeline after events position has been set (using JavaScript) */
  opacity: 1;
}

.cd-horizontal-timeline .timeline {
  position: relative;
  height: 100px;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.cd-horizontal-timeline .events-wrapper {
  position: relative;
  height: 100%;
  margin: 0 40px;
  overflow: hidden;
}

.cd-horizontal-timeline .events-wrapper::after,
.cd-horizontal-timeline .events-wrapper::before {
  /* these are used to create a shadow effect at the sides of the timeline */
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  height: 100%;
  width: 20px;
}

.cd-horizontal-timeline .events-wrapper::before {
  left: 0;
}

.cd-horizontal-timeline .events-wrapper::after {
  right: 0;
}

.cd-horizontal-timeline .events {
  /* this is the grey line/timeline */
  position: absolute;
  z-index: 1;
  left: 0;
  top: 49px;
  height: 2px;
  /* width will be set using JavaScript */
  background: #dfdfdf;
  transition: transform 0.4s;
}

.cd-horizontal-timeline .filling-line {
  /* this is used to create the green line filling the timeline */
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #7b9d6f;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s;
}

.cd-horizontal-timeline .events a {
  position: absolute;
  bottom: 0;
  z-index: 2;
  text-align: center;
  font-size: 1.3rem;
  padding-bottom: 15px;
  color: #383838;
  /* fix bug on Safari - text flickering while timeline translates */
  transform: translateZ(0);
}

.cd-horizontal-timeline .events a::after {
  /* this is used to create the event spot */
  content: "";
  position: absolute;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  bottom: -5px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  border: 2px solid #dfdfdf;
  background-color: #f8f8f8;
  transition: background-color 0.3s, border-color 0.3s;
}

.no-touch .cd-horizontal-timeline .events a:hover::after {
  background-color: #7b9d6f;
  border-color: #7b9d6f;
}

.cd-horizontal-timeline .events a.selected {
  pointer-events: none;
}

.cd-horizontal-timeline .events a.selected::after {
  background-color: #7b9d6f;
  border-color: #7b9d6f;
}

.cd-horizontal-timeline .events a.older-event::after {
  border-color: #7b9d6f;
}

@media only screen and (min-width: 1100px) {
  .cd-horizontal-timeline::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: "desktop";
  }
}
.cd-timeline-navigation a {
  /* these are the left/right arrows to navigate the timeline */
  position: absolute;
  z-index: 1;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border: 2px solid #dfdfdf;
  /* replace text with an icon */
  overflow: hidden;
  color: transparent;
  text-indent: 100%;
  white-space: nowrap;
  transition: border-color 0.3s;
}

.cd-timeline-navigation a::after {
  /* arrow icon */
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%) translateY(-50%);
  background: url(../images/about-us/arrow.svg) no-repeat 0 0;
}

.cd-timeline-navigation a.prev {
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}

.cd-timeline-navigation a.next {
  right: 0;
}

.no-touch .cd-timeline-navigation a:hover {
  border-color: #7b9d6f;
}

.cd-timeline-navigation a.inactive {
  cursor: not-allowed;
}

.no-touch .cd-timeline-navigation a.inactive:hover {
  border-color: #dfdfdf;
}

.cd-horizontal-timeline .events-content {
  position: relative;
  width: 100%;
  margin: 2em 0;
  overflow: hidden;
  transition: height 0.4s;
}

.cd-horizontal-timeline .events-content li {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  padding: 0 5%;
  opacity: 0;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
}

.cd-horizontal-timeline .events-content li.selected {
  /* visible event content */
  position: relative;
  z-index: 2;
  opacity: 1;
  transform: translateX(0);
}

.cd-horizontal-timeline .events-content li.enter-right,
.cd-horizontal-timeline .events-content li.leave-right {
  animation-name: cd-enter-right;
}

.cd-horizontal-timeline .events-content li.enter-left,
.cd-horizontal-timeline .events-content li.leave-left {
  animation-name: cd-enter-left;
}

.cd-horizontal-timeline .events-content li.leave-right,
.cd-horizontal-timeline .events-content li.leave-left {
  animation-direction: reverse;
}

.cd-horizontal-timeline .events-content li > * {
  max-width: 800px;
  margin: 0 auto;
}

.cd-horizontal-timeline .events-content h2 {
  font-weight: bold;
  font-size: 2.6rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
}

.cd-horizontal-timeline .events-content em {
  display: block;
  font-style: italic;
  margin: 10px auto;
}

.cd-horizontal-timeline .events-content em::before {
  content: "- ";
}

@media only screen and (min-width: 768px) {
  .cd-horizontal-timeline .events-content h2 {
    font-size: 7rem;
  }
  .cd-horizontal-timeline .events-content em {
    font-size: 2rem;
  }
}
@keyframes cd-enter-right {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes cd-enter-left {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
.cd-timeline-navigation a::after {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 60%;
  top: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%) translateY(-50%);
  background: url(../images/about-us/arrow.svg) no-repeat 0 0;
}

.cd-horizontal-timeline {
  background: var(--secondary-clr-900);
}

.cd-horizontal-timeline .events-content li > p {
  color: #fff;
}

.cd-horizontal-timeline .events-content li > h6 {
  color: #fff !important;
}

.cd-timeline-navigation a {
  background: #fff;
}

.cd-horizontal-timeline .events a {
  position: absolute;
  bottom: 0;
  z-index: 2;
  text-align: center;
  font-size: 1.3rem;
  padding-bottom: 15px;
  color: #fff;
  transform: translateZ(0);
}

.crdbox {
  background: var(--white-clr);
  padding: var(--spacing-16);
  border-radius: 15px;
}

.border-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: auto;
  display: block;
}

.crdbox {
  background: #f5f5f5;
  padding: var(--spacing-16);
  border-radius: 15px;
}

#contact-form {
  background: var(--tertiary-clr-900);
}

#contact-form .content-box .listitem .listitem-txt {
  overflow: hidden;
  padding-top: 5px;
}

#contact-form .content-box .listitem .listitem-txt h5 {
  color: var(--title-clr);
  font-weight: var(--font-bold);
  margin-bottom: 10px;
  font-size: 19px;
}

#contact-form .content-box .listitem .listitem-txt p.listitem-desc-txt {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  color: var(--txt-clr);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  #contact-form .content-box .listitem .listitem-txt p.listitem-desc-txt {
    line-height: 32px !important;
  }
}
#contact-form .content-box .listitem .listitem-txt p {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--spacing-32);
  color: var(--txt-clr);
  margin-bottom: 0;
}

#contact-form .content-box .listitem .listitem-txt ul {
  padding: 4px 0 0;
}

#contact-form .content-box .listitem .listitem-txt ul li {
  list-style: none;
  display: block;
  color: var(--txt-clr);
  font-size: 16px;
  margin-bottom: var(--spacing-6);
  position: relative;
}

#contact-form .content-box .listitem .listitem-txt ul li a.email {
  color: var(--title-clr);
  line-height: var(--lh-content);
  margin-right: 10px;
  text-decoration: none;
  text-overflow: ellipsis !important;
  overflow: hidden;
  width: 100%;
  display: flex;
}

#contact-form .content-box .listitem .listitem-txt ul li a.email:hover {
  color: var(--secondary-clr-800);
}

#contact-form .content-box .listitem .listitem-txt ul li i {
  color: var(--secondary-clr-900);
}

#contact-form .content-box .listitem .listitem-txt ol {
  padding: 4px 0 0;
}

#contact-form .content-box .listitem .listitem-txt ol li {
  list-style: none;
  display: inline-block;
  color: var(--txt-clr);
  font-size: 16px;
  margin-right: 20px;
  position: relative;
}

#contact-form .content-box .listitem .listitem-txt ol li:last-child {
  margin-right: 0;
}

#contact-form h2.sectxt-title {
  font-size: 35px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
  color: var(--txt-clr);
  margin-bottom: var(--spacing-32);
}

#contact-form .form-control {
  border-radius: 0px;
  font-size: 17px;
  padding: 0 20px;
  box-shadow: 4px 0 14px rgba(2, 3, 8, 0.2);
  height: var(--spacing-56);
}

#contact-form .form-control:focus {
  box-shadow: inherit;
  box-shadow: 4px 0 14px rgba(2, 3, 8, 0.2) !important;
}

#contact-form .textarea {
  box-shadow: 4px 0 14px rgba(2, 3, 8, 0.2);
  padding: 0 20px;
  width: 100%;
  height: var(--spacing-128);
  opacity: 1;
  padding-top: var(--spacing-24);
  font-size: 17px;
}

#contact-form .submitbtn {
  padding: 8px var(--spacing-32) 8px var(--spacing-32);
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  transition: 0.6s;
  border: 2px solid var(--secondary-clr-900);
  border-width: 2px;
  background: var(--secondary-clr-900);
  box-shadow: 4px 0 14px rgba(2, 3, 8, 0.2);
  color: var(--white-clr);
  border-radius: var(--spacing-32);
}

#contact-form .submitbtn:hover {
  color: var(--white-clr);
  border: 2px solid var(--primary-clr-900);
  background: var(--primary-clr-900);
}

#contact-form .invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 2px;
  font-size: 90%;
  color: var(--primary-clr-900);
}

.listitem {
  background: #fff;
  padding: 15px;
  height: 100%;
  border-radius: 15px;
  box-shadow: 4px 3px 11px rgba(0, 0, 0, 0.1019607843);
}

#contact-form i {
  color: var(--primary-clr-900) !important;
}

.blog-crd {
  background: #e8ebfa;
  border-radius: 15px;
  padding: 15px;
}
.blog-crd img {
  width: 100%;
  border-radius: 8px;
}
.blog-crd p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-crd h5 {
  font-size: 17px;
}
.blog-crd h4 {
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
}
.blog-crd .text-justify {
  text-align: justify;
  margin-top: 20px;
}

.imgbanner {
  width: 100%;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}

.bg-lightclr {
  background: var(--secondary-clr-900);
  font-size: 17px;
  padding: 10px;
  height: 80px;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

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

.count::after {
  content: "+";
}

[data-theme=navigationwhite] #mobile-menu-metreal #metreal-navigation-m {
  background-color: #fff;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 9999;
}
[data-theme=navigationwhite] .site-navigation {
  position: relative;
  width: 100%;
  padding: 15px 0;
  top: 0;
  z-index: 9999;
}

h1 li {
  list-style: none !important;
}

.university-slider .card-university .bg-card .btmbox {
  position: absolute;
  background: var(--primary-clr-900);
  height: 100px;
  width: 100%;
  bottom: 0;
  display: none;
  left: 0;
}

.owl-carousel .owl-item .btm-shape {
  display: block !important;
  width: 166% !important;
  height: auto !important;
  left: -20px !important;
  position: absolute !important;
  bottom: -70px !important;
}/*# sourceMappingURL=main.css.map */


#simple-list-example { 
  z-index: 999999; 
}
.modal { 
  z-index: 99999999999; 
}