/* ======================================================
   IMPORTS & CHARSETS
====================================================== */
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Work+Sans: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=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* ======================================================
   GLOBAL CSS
====================================================== */

/* --- Desktop / Base Styles --- */
:root {
  --primary: #fc6441;
  --paragraph: #525271;
  --dark: #0d0d25;
  --white: #ffffff;
}

:root {
  --headingFont: "Inter", sans-serif;
  --bodyFont: "Inter", sans-serif;
  --anotherHeading: "Inter", serif;
}

body {
  font-family: var(--bodyFont);
  color: var(--paragraph);
  line-height: 1.7;
  padding: 0;
  margin: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark);
  font-family: var(--headingFont);
  font-weight: 700;
  line-height: 1.4;
}

a {
  text-decoration: none !important;
}

.container-fluid {
  max-width: 1745px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.ptb-100 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ptb-80 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.ptb-130 {
  padding-top: 130px;
  padding-bottom: 130px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mt-100 {
  margin-top: 100px;
}

.ml-0 {
  margin-left: 0 !important;
}

.pt-30 {
  padding-top: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  transition: 0.6s;
  text-decoration: none;
}

a:hover {
  color: var(--paragraph);
}

p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.7;
}

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

.bg-F8F8F9 {
  background: #f8f8f9;
}

.bg-FAF6F6 {
  background: #faf6f6;
}

.bg-E8E8F4 {
  background: #e8e8f4;
}

.bg-FAFAFA {
  background: #fafafa;
}

.bg-EEEEF5 {
  background: #eeeef5;
}

.border-right {
  border-right: solid 1px #ebeaf0;
}

.border-bottom {
  border-bottom: solid 1px #e8e9ed;
}

.only-992-device {
  display: none;
}

.default-btn {
  background-color: var(--primary);
  color: var(--white);
  display: inline-block;
  font-family: Work Sans;
  font-size: 16px;
  line-height: 1;
  padding: 20px 32px;
  transition: 0.6s;
  border: none;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
}

.default-btn:hover {
  color: #fff;
  box-shadow: 0 0 40px 40px rgb(248, 202, 77) inset;
}

.default-btn:focus {
  color: #fff;
  outline: 0;
}

.default-btn i {
  position: relative;
  top: 5px;
  left: 4px;
  font-size: 22px;
  font-weight: 400;
  line-height: 0;
}

.section-title {
  margin-bottom: 40px;
  text-align: center;
}

.section-title h2 {
  font-family: Inter;
  font-size: 38px;
  letter-spacing: 1.28px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.3;
}

.section-warp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-warp h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  letter-spacing: 1.28px;
  font-weight: 400;
  margin-bottom: 0;
}

.section-warp .section-link {
  color: #fc6441;
  font-family: Work Sans;
  font-weight: 600;
}

.section-warp .section-link i {
  position: relative;
  font-size: 20px;
  left: 2px;
  top: 2px;
}

.section-warp .section-link .article-link {
  color: #362983;
}

#backtotop {
  opacity: 0;
  visibility: hidden;
  right: 5px;
  z-index: 99;
  width: 50px;
  bottom: 20px;
  height: 50px;
  font-size: 25px;
  transition: 0.5s;
  line-height: 49px;
  background-color: var(--primary);
  animation: border-transform 10s linear infinite alternate forwards;
}

#backtotop:hover {
  background-color: var(--primary);
  color: var(--white);
}

#backtotop.active {
  opacity: 100%;
  visibility: visible;
}

#backtotop i {
  color: var(--white);
}

@keyframes border-transform {
  0%,
  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }

  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }

  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }

  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }

  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }

  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }

  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.top-header-warp {
  background: #e8e8f4;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
  z-index: 999;
}

.top-header-warp.style2-top-header {
  background-color: var(--white);
}

.top-header-details {
  display: flex;
  align-items: center;
}

.top-header-details ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.top-header-details ul li {
  display: inline-block;
  position: relative;
}

.top-header-details .social-list {
  padding-right: 95px;
  position: relative;
}

.top-header-details .social-list::before {
  content: "";
  position: absolute;
  bottom: 0;
  top: -12px;
  right: 0;
  height: 51px;
  width: 335px;
  background: #7768e5;
}

.top-header-details .social-list li {
  padding-right: 15px;
}

.top-header-details .social-list li:last-child {
  padding-right: 0;
}

.top-header-details .social-list li:hover .icon {
  filter: brightness(0) saturate(100%) invert(97%) sepia(50%) saturate(4378%) hue-rotate(318deg) brightness(102%) contrast(94%);
}

.top-header-details .header-contact {
  padding-left: 30px;
}

.top-header-details .header-contact li {
  font-size: 13px;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
  padding-right: 30px;
}

.top-header-details .header-contact li:last-child {
  padding-right: 0;
}

.top-header-details .header-contact li a {
  color: #525271;
}

.top-header-details .header-contact li a:hover {
  color: var(--primary);
}

.top-header-details .header-contact li i {
  position: absolute;
  left: 0;
  font-size: 16px;
  top: 4px;
}

.top-header-link-details {
  display: flex;
  align-items: center;
  justify-content: end;
}

.top-header-link-details ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.top-header-link-details ul li {
  display: inline-block;
  position: relative;
}

.top-header-link-details .header-link {
  padding-right: 35px;
  position: relative;
}

.top-header-link-details .header-link::before {
  content: "";
  position: absolute;
  top: 7px;
  right: 0;
  bottom: 0;
  height: 14px;
  width: 1px;
  background: #b3b3d6;
}

.top-header-link-details .header-link li {
  padding-right: 40px;
}

.top-header-link-details .header-link li:last-child {
  padding-right: 0;
}

.top-header-link-details .header-link li a {
  font-size: 13px;
  font-weight: 500;
  color: #525271;
}

.top-header-link-details .header-link li a:hover {
  color: var(--primary);
}

.top-header-link-details .header-account {
  padding-left: 35px;
}

.top-header-link-details .header-account li {
  padding-right: 30px;
}

.top-header-link-details .header-account li .form-select {
  background-color: transparent;
  padding: 1px 0 0 0;
  width: 50px;
  border: none;
  box-shadow: unset;
  font-family: Work Sans;
  font-size: 13px;
  font-weight: 500;
  background-position: right center;
  background-image: url(../img/svgs/caret-down.svg);
}

.top-header-link-details .header-account li:last-child {
  padding-left: 20px;
  padding-right: 0;
}

.top-header-link-details .header-account li:last-child i {
  position: absolute;
  left: 0;
  top: 7px;
  color: rgb(13, 13, 37);
}

.top-header-link-details .header-account li:last-child a {
  color: #525271;
  font-size: 13px;
  font-weight: 500;
}

.information {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
}

.information li {
  display: inline-block;
  width: 353px;
  text-align: center;
  padding: 36px 30px;
}

.information li:first-child {
  background: #f8ca4d;
}

.information li:nth-child(2) {
  background: #4569b4;
}

.information li:last-child {
  background: #353688;
}

.information li a {
  font-family: Alfa Slab One;
  letter-spacing: 0.64px;
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}

.information li i {
  position: relative;
  color: var(--white);
  font-size: 24px;
  top: 3px;
  right: 6px;
}

.update-link {
  position: absolute;
  font-weight: 500;
  color: var(--white);
  right: 100px;
  bottom: 155px;
  font-family: Work Sans;
}

.update-link span {
  position: relative;
}

.update-link span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 30px;
  height: 1px;
  width: 100%;
  transition: 0.6s;
  background-color: var(--white);
}

/* .update-link span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 30px;
  height: 1px;
  width: 0%;
  transition: 0.6s;
  background-color: var(--primary);
} */

.update-link i {
  position: relative;
  font-size: 20px;
  left: 5px;
  top: 4px;
}

.update-link:hover {
  color: var(--primary);
}

.update-link:hover span::before {
  width: 0;
}

.update-link:hover span::after {
  width: 100%;
}

.program-images {
  padding-right: 15px;
}

.program-images .logo-content {
  display: flex;
  align-items: center;
  background: #f3edeb;
  position: relative;
  z-index: 2;
  padding: 25px;
  margin-top: 40px;
  margin-right: -75px;
}

.program-images .logo-content .logo {
  width: 121px;
  height: 89px;
}

.program-images .logo-content .content {
  padding-left: 10px;
}

.program-images .logo-content .content h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 1px;
  letter-spacing: 1.2px;
}

.program-images .logo-content .content p {
  font-size: 14px;
  line-height: 1.5;
}

.program-images .big-image {
  padding-right: 20px;
  margin-left: -5px;
}

.find-program-warp {
  padding-top: 145px;
}

.program-content {
  padding-left: 55px;
  padding-right: 52px;
}

.program-content h2 {
  font-size: 32px;
  color: #0d0d25;
  margin-bottom: 20px;
  font-weight: 400;
  font-family: Alfa Slab One;
}

.program-content p {
  margin-bottom: 20px;
}

.program-content .program-input {
  height: 70px;
  position: relative;
  margin-bottom: 15px;
}

.program-content .program-input .form-control {
  height: 70px;
  background: #e8e8f4;
  padding-left: 60px;
  border-radius: 0;
  font-size: 14px;
  border: transparent;
}

.program-content .program-input .form-control:focus {
  box-shadow: unset;
}

.program-content .program-input .form-control:focus::-moz-placeholder {
  color: transparent;
}

.program-content .program-input .form-control:focus::placeholder {
  color: transparent;
}

.program-content .program-input .form-control::-moz-placeholder {
  -moz-transition: 0.6s;
  transition: 0.6s;
  color: #89899f;
}

.program-content .program-input .form-control::placeholder {
  transition: 0.6s;
  color: #89899f;
}

.program-content .program-input .search-btn {
  position: absolute;
  background: transparent;
  border: none;
  padding: 0;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.program-content .blank-program {
  display: inline-block;
  margin-bottom: 30px;
}

.program-content .program-list {
  list-style: none;
  padding-left: 0;
  margin-left: -25px;
  margin-bottom: 0;
}

.program-content .program-list span {
  width: 100%;
  display: inline-block;
}

.program-content .program-list li {
  padding-right: 5px;
  display: inline-block;
}

.program-content .program-list li a {
  font-size: 14px;
  color: #525271;
  text-decoration: underline;
}

.program-content .program-list li a:hover {
  color: var(--primary);
}

.program-content .search-list {
  font-size: 14px;
  color: #89899f;
  font-weight: 500;
}

.program-content .program-item {
  margin-top: 30px;
  border: 1px solid #e8e8f4;
  padding: 5px;
  display: flex;
  position: relative;
  align-items: center;
}

.program-content .program-item .image {
  width: 114px;
  height: 90px;
}

.program-content .program-item .content {
  padding-left: 20px;
}

.program-content .program-item .content h4 {
  font-size: 16px;
  font-weight: 600;
}

.program-content .program-item .content h4 a {
  color: #000000;
}

.program-content .program-item .content h4 a:hover {
  color: var(--primary);
}

.program-content .program-item .content span {
  font-size: 12px;
  line-height: 1;
  padding: 5px 6px;
  color: #f6f6fa;
  font-family: Work Sans;
  background: #7768e5;
  display: inline-block;
  margin-bottom: 10px;
}

.program-content .program-item .icon {
  position: absolute;
  width: 40px;
  height: 40px;
  right: -20px;
  text-align: center;
  border-radius: 2px;
  color: rgb(119, 104, 229);
  line-height: 40px;
  display: inline-block;
  background: #e8e8f4;
}

.program-content .program-item .icon:hover {
  color: var(--white);
  background-color: var(--primary);
}

.mission-tab {
  display: block;
  padding-right: 40px;
}

.mission-tab .tablinks {
  margin-bottom: 20px;
  width: 100%;
  border: none;
  display: block;
  padding: 10px 10px 10px 30px;
  transition: 0.6s;
  z-index: 999;
  position: relative;
  background-color: var(--white);
}

.mission-tab .tablinks.active {
  width: 110%;
}

.mission-tab .tablinks .mission-tab-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: start;
  align-items: center;
  position: relative;
  background-color: var(--white);
  color: #0d0d25;
  font-weight: 600;
  letter-spacing: -0.32px;
  padding: 0;
}

.mission-tab .tablinks .mission-tab-btn .icon {
  width: 40px;
  border-radius: 2px;
  background: #faf6f6;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: rgb(252, 100, 65);
  display: inline-block;
  transition: 0.6s;
}

.mission-tab .tablinks .mission-tab-btn .icon:hover {
  color: var(--white);
  background-color: var(--primary);
}

.mission-content {
  padding-left: 38px;
}

.mission-content h3 {
  font-family: Inter;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 45px;
  line-height: 1.3;
}

.mission-content .mission-box .icon {
  margin-bottom: 16px;
}

.mission-content .mission-box h5 {
  font-size: 22px;
  margin-bottom: 10px;
}

.mission-content .mission-box p {
  margin-bottom: 18px;
}

.mission-content .mission-box .mission-link {
  font-weight: 600;
  color: #353688;
  font-family: Work Sans;
  display: block;
  margin-bottom: 20px;
}

.mission-content .mission-box .mission-link i {
  position: relative;
  left: 4px;
  top: 4px;
  font-size: 20px;
}

.mission-content .mission-box .mission-link span {
  text-decoration: underline;
}

.mission-warp {
  position: relative;
  z-index: 1;
}

.mission-warp .tabcontent {
  display: none;
  transition: 0.6s;
}

.mission-warp .tabcontent.active {
  display: block !important;
}

.mission-warp .mission-image {
  padding-left: 20px;
  padding-right: 25px;
  position: relative;
}

.mission-warp .mission-image .mission-shape {
  position: absolute;
  top: 90px;
  right: 0;
}

.mission-warp::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 17%;
  left: 0;
  right: 0;
  z-index: -1;
  
  background: #DDD9E9;
}

.fun-fact-card h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: -13px;
  line-height: 1;
}

.fun-fact-card .icon .style {
  margin-right: 20px;
}

.fun-fact-card p {
  font-size: 14px;
  letter-spacing: 1.4px;
  margin-top: 25px;
  line-height: 1.8;
  padding-right: 90px;
}

.col-lg-3:nth-child(4) .fun-fact-card {
  margin-left: 150px;
}

.col-lg-3:nth-child(4) .fun-fact-card p {
  padding-right: 0;
}

.col-lg-3:nth-child(3) .fun-fact-card {
  margin-left: 100px;
}

.col-lg-3:nth-child(3) .fun-fact-card p {
  padding-right: 0;
}

.col-lg-3:nth-child(2) .fun-fact-card {
  margin-left: 50px;
}

.col-lg-3:nth-child(2) .fun-fact-card p {
  padding-right: 0;
}

.features-warp .container-fluid {
  max-width: 1500px;
}

.features-box .content {
  padding-top: 20px;
}

.features-box .content .title {
  font-size: 12px;
  font-family: Work Sans;
  font-weight: 500;
  line-height: 1;
  padding: 5px 6px;
  display: inline-block;
  color: var(--white);
  margin-bottom: 12px;
}

.features-box .content .title.bg1 {
  background: #fc6441;
}

.features-box .content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  padding-right: 30px;
}

.features-box .content h3 a {
  color: #0d0d25;
}

.features-box .content h3 a:hover {
  color: var(--primary);
}

.features-box .content .features-link {
  color: #353688;
  font-family: Work Sans;
  font-size: 16px;
  font-weight: 600;
}

.features-box .content .features-link span {
  text-decoration: underline;
}

.features-box .content .features-link i {
  position: relative;
  left: 2px;
  top: 4px;
  font-size: 20px;
}

.features-box video {
  -o-object-fit: cover;
  object-fit: cover;
  height: 468px;
  width: 100%;
}

.features-item {
  padding-left: 40px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
}

.features-item .image {
  width: 150px;
  height: 134px;
}

.features-item .content {
  margin-left: 20px;
}

.features-item .content .title {
  font-size: 12px;
  font-family: Work Sans;
  font-weight: 500;
  line-height: 1;
  padding: 5px 6px;
  display: inline-block;
  color: var(--white);
  margin-bottom: 12px;
}

.features-item .content .title.bg1 {
  background: #7768e5;
}

.features-item .content .title.bg2 {
  background: #5ca89f;
}

.features-item .content .title.bg3 {
  background: #4569b4;
}

.features-item .content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.features-item .content h3 a {
  color: #0d0d25;
}

.features-item .content h3 a:hover {
  color: var(--primary);
}

.features-item .content .features-link {
  color: #353688;
  font-family: Work Sans;
  font-size: 16px;
  font-weight: 600;
}

.features-item .content .features-link span {
  text-decoration: underline;
}

.features-item .content .features-link i {
  position: relative;
  left: 2px;
  top: 4px;
  font-size: 20px;
}

.features-item-link {
  display: flex;
  margin-left: 40px;
  align-items: center;
  background-color: var(--white);
  padding: 38px;
}

.features-item-link .icon {
  width: 48px;
  height: 48px;
}

.features-item-link .content {
  padding-left: 38px;
}

.features-item-link .content p {
  color: #0d0d25;
  font-family: Work Sans;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 1px;
}

.features-item-link .content p span {
  font-weight: 700;
  color: #0d0d25;
}

.features-item-link .content .features-link {
  color: #353688;
  font-family: Work Sans;
  font-size: 16px;
  font-weight: 600;
}

.features-item-link .content .features-link span {
  text-decoration: underline;
}

.features-item-link .content .features-link i {
  position: relative;
  left: 2px;
  top: 4px;
  font-size: 20px;
}

.information-image {
  padding-left: 220px;
  position: relative;
}

.information-image .small-image {
  position: absolute;
  bottom: 78px;
  left: 38px;
  width: 204px;
  height: 204px;
}

.information-image .small-image .information {
  width: 204px;
  height: 204px;
}

.information-image .round-shape {
  width: 192.2px;
  height: 192.249px;
  text-align: center;
  position: absolute;
  top: -50px;
  left: 69px;
  line-height: 192px;
}

.information-image .round-shape .text-shape {
  position: absolute;
  left: 0;
  top: 0;
  animation: rotateme 9s linear infinite;
}

.information-content h2 {
  font-size: 38px;
  letter-spacing: -0.1;
  color: #0d0d25;
  font-family: Inter;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
  letter-spacing: 0.1;
}

.information-content .information-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
  font-weight: 500;
  color: #3a3a5e;
  margin-top: 20px;
}

.information-content .information-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
}

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

.information-content .information-list li i {
  position: absolute;
  left: 0;
  top: 1px;
  color: rgb(252, 100, 65);
  font-size: 22px;
}

.information-content .info-button {
  margin-bottom: 25px;
}

.information-content .info-button .style2 {
  background: #862E84;
  margin-right: 15px;
}

.information-content .info-link-chat {
  display: flex;
  align-items: center;
}

.information-content .info-link-chat .chat-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.information-content .info-link-chat .chat-list li {
  display: inline-block;
  margin-left: -25px;
}

.information-content .info-link-chat .chat-list li:first-child {
  margin-left: 0;
}

.information-content .info-link-chat .chat-list li .image {
  width: 50px;
  height: 50px;
}

.information-content .info-link-chat .content {
  margin-left: 15px;
}

.information-content .info-link-chat .content p {
  color: #0d0d25;
  font-family: Work Sans;
  font-weight: 500;
  margin-bottom: 2px;
}

.information-content .info-link-chat .content .chat-link {
  color: #353688;
  font-family: Work Sans;
  font-size: 16px;
  font-weight: 600;
}

.information-content .info-link-chat .content .chat-link:hover {
  color: var(--primary);
}

.information-content .info-link-chat .content .chat-link span {
  text-decoration: underline;
}

.information-content .info-link-chat .content .chat-link i {
  position: relative;
  left: 2px;
  top: 4px;
  font-size: 20px;
}

.culture-warp {
  overflow: hidden;
}

.culture-warp .container-fluid {
  max-width: 100%;
  padding: 0 !important;
}

.culture-box {
  position: relative;
  overflow: hidden;
}

.culture-box .content {
  position: absolute;
  padding: 30px 50px;
  max-width: 480px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(13, 13, 37, 0.5);
  opacity: 0;
  transition: 0.8s;
  left: -200px;
  bottom: -100px;
}

.culture-box .content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.culture-box .content h3 a {
  color: var(--white);
}

.culture-box .content h3 a:hover {
  color: var(--primary);
}

.culture-box .content p {
  color: #d8d8e5;
  margin-bottom: 15px;
}

.culture-box .content .culture-link {
  color: #fc6441;
  font-family: Work Sans;
  font-weight: 600;
}

.culture-box .content .culture-link span {
  text-decoration: underline;
}

.culture-box .content .culture-link i {
  position: relative;
  left: 2px;
  top: 4px;
  font-size: 20px;
}

.culture-box:hover .content {
  left: 0;
  bottom: 0;
  opacity: 1;
}

.academic-item {
  background: #faf6f6;
  padding: 35px 30px 35px 30px;
}

.academic-item .academic-card span {
  padding: 5px 6px;
  background: #fff;
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
  color: #7768e5;
  font-family: Work Sans;
  font-size: 12px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 10px;
}

.academic-item .academic-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.academic-item .academic-card h3 a {
  color: #0d0d25;
}

.academic-item .academic-card .image {
  margin-bottom: 15px;
}

.academic-box {
  margin-bottom: 25px;
}

.academic-box span {
  padding: 5px 6px;
  background: #fff;
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
  color: #7768e5;
  font-family: Work Sans;
  font-size: 12px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 10px;
}

.academic-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.academic-box h3 a {
  color: #0d0d25;
}

.academic-box p {
  padding-bottom: 5px;
}

.academic-box .image {
  margin-bottom: 15px;
}

.academic-box .default-btn {
  background: #f8ca4d;
}

.academic-box .image {
  position: relative;
  overflow: hidden;
}

.academic-box .image img {
  transition: 0.6s;
}

.academic-box .image::before {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  transition: 0.6s;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.academic-box:hover .image::before {
  animation: shine 0.75s;
}

.academic-box:hover .image img {
  transform: scale(1.1);
}

.academic-slider-warp {
  background: #f8f8f9;
  padding: 25px 30px 25px 30px;
  position: relative;
}

.academic-slider-warp .swiper-pagination2 {
  line-height: 1;
  margin-top: 48px;
}

.academic-slider-warp .swiper-pagination2 .swiper-pagination-bullet {
  height: 6px;
  width: 6px;
  opacity: 1;
  background-color: #c5c5d3;
}

.academic-slider-warp .swiper-pagination2 .swiper-pagination-bullet-active {
  background-color: #5c5c7e;
}

.academic-option {
  position: relative;
}

.academic-option .content {
  padding-bottom: 25px;
  margin-bottom: 25px;
  position: relative;
}

.academic-option .content::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -30px;
  right: -30px;
  height: 1px;
  width: 120%;
  background: #ece5e5;
}

.academic-option .content .academic-link {
  display: block;
  color: #353688;
  font-weight: 600;
  margin-bottom: 10px;
}

.academic-option .content .academic-link:nth-child(3) {
  margin-bottom: 0;
}

.academic-option .content .academic-link i {
  position: relative;
  left: 2px;
  top: 4px;
  font-size: 20px;
}

.academic-option .content .academic-link span {
  position: relative;
}

.academic-option .content .academic-link span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 0%;
  transition: 0.6s;
  background-color: rgb(252, 100, 65);
}

.academic-option .content .academic-link:hover {
  color: rgb(252, 100, 65);
}

.academic-option .content .academic-link:hover span::before {
  width: 100%;
}

.academic-option .content h3 {
  font-size: 22px;
  margin-bottom: 18px;
}

.academic-option .academic-date {
  padding-bottom: 25px;
}

.academic-option .academic-date .title {
  display: block;
  font-weight: 600;
  color: #0d0d25;
  display: block;
  margin-bottom: 5px;
}

.academic-option .academic-date:nth-child(5) {
  padding-bottom: 0;
}

.academic-option .academic-date .date-link {
  display: block;
  color: #353688;
  font-weight: 600;
}

.academic-option .academic-date .date-link:nth-child(4) {
  margin-bottom: 0;
}

.academic-option .academic-date .date-link i {
  position: relative;
  left: 2px;
  top: 4px;
  font-size: 20px;
}

.academic-option .academic-date .date-link span {
  position: relative;
}

.academic-option .academic-date .date-link span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 0%;
  transition: 0.6s;
  background-color: rgb(252, 100, 65);
}

.academic-option .academic-date .date-link:hover {
  color: rgb(252, 100, 65);
}

.academic-option .academic-date .date-link:hover span::before {
  width: 100%;
}

.recognized-content {
  padding-left: 90px;
}

.recognized-content h2 {
  letter-spacing: 1.28px;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 25px;
}

.recognized-content p {
  margin-bottom: 20px;
}

.recognized-content .recognized-link {
  display: block;
  color: #353688;
  font-weight: 600;
  margin-bottom: 10px;
}

.recognized-content .recognized-link:nth-child(3) {
  margin-bottom: 0;
}

.recognized-content .recognized-link i {
  position: relative;
  left: 2px;
  top: 2px;
  font-size: 20px;
}

.recognized-content .recognized-link span {
  position: relative;
}

.recognized-content .recognized-link span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 0%;
  transition: 0.6s;
  background-color: rgb(252, 100, 65);
}

.recognized-content .recognized-link:hover {
  color: rgb(252, 100, 65);
}

.recognized-content .recognized-link:hover span::before {
  width: 100%;
}

.choose-warp {
  position: relative;
  z-index: 1;
}

.choose-warp::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 50%;
  background: #e8e8f4;
}

.choose-warp .container-fluid {
  max-width: 1820px;
}

.choose-card {
  padding: 42px 40px;
}

.choose-card h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 15px;
}

.choose-card p {
  color: #effffd;
  margin-bottom: 15px;
}

.choose-card .choose-link {
  display: block;
  color: #f8ca4d;
  font-weight: 600;
}

.choose-card .choose-link:nth-child(3) {
  margin-bottom: 0;
}

.choose-card .choose-link i {
  position: relative;
  left: 2px;
  top: 4px;
  font-size: 20px;
}

.choose-card .choose-link span {
  position: relative;
}

.choose-card .choose-link span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 0%;
  transition: 0.6s;
  background-color: var(--white);
}

.choose-card .choose-link:hover {
  color: var(--white);
}

.choose-card .choose-link:hover span::before {
  width: 100%;
}

.choose-card.bg-1 {
  background: #fc6441;
}

.choose-card.bg-2 {
  background: #5ca89f;
}

.choose-card.bg-3 {
  background: #4569b4;
}

.choose-card.bg-4 {
  background: #1d5f72;
}

.service-content {
  padding-right: 50px;
}

.service-content h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.28px;
  margin-bottom: 20px;
}

.service-content p {
  margin-bottom: 20px;
  padding-right: 55px;
}

.service-content .default-btn {
  background: #7768e5;
}

.service-content .service-list {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
  margin-bottom: 0;
}

.service-content .service-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #3a3a5e;
  font-weight: 500;
}

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

.service-content .service-list li i {
  position: absolute;
  left: 0;
  color: #fc6441;
  top: 2px;
  font-size: 20px;
}

.service-image {
  padding-left: 40px;
  position: relative;
}

.service-image .service-counter {
  padding: 30px;
  text-align: center;
  max-width: 250px;
  position: absolute;
  background-color: var(--white);
  bottom: 0;
  left: -140px;
}

.service-image .service-counter h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: -5px;
}

.service-image .service-counter .icon .style {
  margin-right: 15px;
}

.service-image .service-counter p {
  font-size: 14px;
  letter-spacing: 1.4px;
  margin-top: 14px;
  line-height: 1.8;
}

.service-image .image.style2 {
  margin-top: 66px;
}

.image-blog-card {
  position: relative;
}

.image-blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(13, 13, 37, 0.1) 68.67%, #0d0d25 100%);
}

.image-blog-card .content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
}

.image-blog-card .content span {
  line-height: 1;
  display: inline-flex;
  padding: 5px 6px;
  color: #7768e5;
  font-family: Work Sans;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  background: var(--white);
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
}

.image-blog-card .content h3 {
  font-size: 22px;
  margin-bottom: 0;
}

.image-blog-card .content h3 a {
  color: var(--white);
}

.image-blog-card .content h3 a:hover {
  color: var(--primary);
}

.content-blog-card span {
  line-height: 1;
  display: inline-flex;
  padding: 5px 6px;
  color: #7768e5;
  font-family: Work Sans;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  background: var(--white);
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
}

.content-blog-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.content-blog-card h3 a {
  color: #0d0d25;
}

.content-blog-card h3 a:hover {
  color: var(--primary);
}

.content-blog-card .blog-list {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0;
}

.content-blog-card .blog-list li {
  display: inline-block;
  padding-right: 36px;
  color: #525271;
  position: relative;
}

.content-blog-card .blog-list li::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 7px;
  bottom: 0;
  height: 16px;
  width: 1px;
  background: #e8e8f4;
}

.content-blog-card .blog-list li:last-child {
  padding-right: 0;
}

.content-blog-card .blog-list li:last-child::before {
  display: none;
}

.blog-content-widget {
  padding-left: 30px;
}

.blog-content-widget .blog-donate {
  display: flex;
  padding: 24px 30px;
  align-items: center;
  background: linear-gradient(90deg, #b0c2ff 0%, #f1f1fc 100%);
}

.blog-content-widget .blog-donate .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  line-height: 64px;
  text-align: center;
  background-color: var(--white);
}

.blog-content-widget .blog-donate .content {
  padding-left: 35px;
}

.blog-content-widget .blog-donate .content h6 {
  font-size: 22px;
  margin-bottom: 5px;
}

.blog-content-widget .blog-donate .content .donate-link {
  display: block;
  color: #353688;
  font-weight: 600;
}

.blog-content-widget .blog-donate .content .donate-link:nth-child(3) {
  margin-bottom: 0;
}

.blog-content-widget .blog-donate .content .donate-link i {
  position: relative;
  left: 2px;
  top: 2px;
  font-size: 20px;
}

.blog-content-widget .blog-donate .content .donate-link span {
  position: relative;
}

.blog-content-widget .blog-donate .content .donate-link span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 0%;
  transition: 0.6s;
  background-color: rgb(252, 100, 65);
}

.blog-content-widget .blog-donate .content .donate-link:hover {
  color: rgb(252, 100, 65);
}

.blog-content-widget .blog-donate .content .donate-link:hover span::before {
  width: 100%;
}

.hero-style2-warp {
  position: relative;
  padding-bottom: 130px;
  padding-top: 448px;
  z-index: 1;
  background: linear-gradient(90deg, #dee1e6 0%, #e5e6ea 17.57%, #ebecf0 34.86%, #e8e9ed 52.23%, #e7e8ec 65.17%, #d7dadf 97.75%);
}

.hero-style2-warp::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/heros/style2-hero1.png);
}

.hero-style2-warp .hero-item-box {
  max-width: 425px;
  display: flex;
  align-items: center;
  padding: 20px 30px 20px 20px;
  position: absolute;
  right: 0;
  bottom: 100px;
  background-color: var(--white);
}

.hero-style2-warp .hero-item-box .image {
  width: 135px;
  height: 160px;
}

.hero-style2-warp .hero-item-box .content {
  margin-left: 30px;
}

.hero-style2-warp .hero-item-box .content .title {
  line-height: 1;
  color: #7768e5;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 6px;
  display: inline-flex;
  margin-bottom: 8px;
}

.hero-style2-warp .hero-item-box .content h4 {
  font-size: 16px;
  margin-bottom: 12px;
}

.hero-style2-warp .hero-item-box .content h4 a {
  color: #0d0d25;
}

.hero-style2-warp .hero-item-box .content h4 a:hover {
  color: var(--primary);
}

.hero-style2-warp .hero-item-box .content .item-link {
  display: block;
  color: #fc6441;
  font-family: Work Sans;
  font-weight: 600;
  font-size: 14px;
}

.hero-style2-warp .hero-item-box .content .item-link i {
  position: relative;
  left: 2px;
  top: 2px;
  font-size: 20px;
}

.hero-style2-warp .hero-item-box .content .item-link span {
  position: relative;
}

.hero-style2-warp .hero-item-box .content .item-link span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  transition: 0.6s;
  background-color: #fc6441;
}

.hero-style2-warp .big-size-text {
  display: flex;
  align-items: center;
  max-width: 1195px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  left: 58px;
  right: 0;
  opacity: 50%;
  top: -70px;
  z-index: -2;
  justify-content: space-between;
}

.hero-style2-warp .big-size-text span {
  font-weight: 900;
  color: #fff;
  font-family: Work Sans;
  font-size: 300px;
  letter-spacing: 12px;
}

.hero-style2-content {
  max-width: 520px;
}

.hero-style2-content h2 {
  font-family: Alfa Slab One;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 1.6px;
  margin-bottom: 10px;
}

.hero-style2-content h2 span {
  margin-right: 50px;
}

.hero-style2-content p {
  margin-bottom: 20px;
  padding-right: 30px;
}

.about-logo-content {
  display: flex;
  align-items: center;
}

.about-logo-content .logo {
  width: 179px;
  height: 160px;
}

.about-logo-content .content {
  margin-left: 40px;
  max-width: 230px;
}

.about-logo-content .content h3 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 12px;
}

.about-logo-content .content p {
  color: #525271;
  font-weight: 600;
}

.about-content {
  padding-right: 115px;
}

.about-content .about-link {
  display: block;
  color: #353688;
  font-family: Work Sans;
  font-weight: 600;
  margin-top: 20px;
}

.about-content .about-link i {
  position: relative;
  left: 2px;
  top: 4px;
  font-size: 20px;
}

.about-content .about-link span {
  position: relative;
}

.about-content .about-link span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 0%;
  transition: 0.6s;
  background-color: var(--primary);
}

.about-content .about-link:hover {
  color: var(--primary);
}

.about-content .about-link:hover span::before {
  width: 100%;
}

.program-content.style2 {
  padding-left: 0;
  padding-right: 100px;
}

.program-images.style2 {
  padding-left: 35px;
  padding-right: 0;
}

.program-images.style2 .big-image {
  margin-left: 0;
  margin-right: -8px;
}

.program-images.style2 .image {
  margin-right: -5px;
}

.program-images.style2 .logo-content {
  background: #fc6441;
}

.program-images.style2 .logo-content .content h2 {
  color: var(--white);
}

.program-images.style2 .logo-content .content p {
  color: #fff1ee;
}

.find-program-warp {
  position: relative;
}

.find-program-warp.style2 {
  padding-top: 100px;
  z-index: 1;
}

.find-program-warp.style2 .program-shape {
  position: absolute;
  right: 29%;
  top: 0;
  pointer-events: none;
  z-index: -1;
}

.places-warp {
  position: relative;
}

.places-warp .container-fluid {
  max-width: 100%;
  padding: 0 !important;
}

.places-warp .swiper-slide-active .places-widget .content {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.places-warp .swiper-slide-active .places-widget .content h3 a {
  color: var(--white);
}

.places-warp .swiper-slide-active .places-widget .content .icon {
  background: var(--white);
}

.places-widget {
  position: relative;
}

.places-widget .content {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  transition: 0.6s;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px 20px 20px 30px;
}

.places-widget .content .icon {
  width: 40px;
  height: 40px;
  font-size: 24px;
  line-height: 45px;
  text-align: center;
  border-radius: 2px;
  transition: 0.6s;
  color: rgb(119, 104, 229);
}

.places-widget .content h3 {
  font-size: 22px;
  margin-bottom: 0;
}

.places-widget .content h3 a {
  color: #0d0d25;
}

.academic-box.style2 .default-btn {
  width: 100%;
  background: #353688;
}

.news-optional-item {
  background: #faf6f6;
  padding: 40px 25px 22px 25px;
}

.news-optional-item .news-item {
  display: flex;
  align-items: center;
  margin-bottom: 42px;
}

.news-optional-item .news-item:nth-child(3) {
  margin-bottom: 20px;
}

.news-optional-item .news-item .image {
  width: 100px;
  height: 145px;
}

.news-optional-item .news-item .content {
  margin-left: 20px;
}

.news-optional-item .news-item .content .title {
  padding: 5px 6px;
  background: #fff;
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
  color: #7768e5;
  font-family: Work Sans;
  font-size: 12px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 10px;
}

.news-optional-item .news-item .content h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.news-optional-item .news-item .content h3 a {
  color: #0d0d25;
}

.news-optional-item .news-item .content .news-link {
  display: block;
  color: #fc6441;
  font-weight: 600;
  font-family: Work Sans;
}

.news-optional-item .news-item .content .news-link i {
  position: relative;
  left: 2px;
  top: 4px;
  font-size: 20px;
}

.news-optional-item .news-item .content .news-link span {
  position: relative;
}

.news-optional-item .news-item .content .news-link span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  transition: 0.6s;
  background-color: #fc6441;
}

.news-optional-item .default-btn {
  width: 100%;
}

.admission-image {
  padding-right: 35px;
}

.admission-content {
  padding-left: 60px;
}

.admission-content h3 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.28px;
  margin-bottom: 20px;
}

.admission-content p {
  margin-bottom: 40px;
}

.admission-content .admission-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.admission-content .admission-list li {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #f3f3f6;
}

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

.admission-content .admission-list li:first-child {
  padding-top: 20px;
  border-top: solid 1px #f3f3f6;
}

.admission-content .admission-list li a {
  color: #353688;
  font-family: Work Sans;
  font-size: 16px;
  font-weight: 600;
}

.admission-content .admission-list li a i {
  position: relative;
  left: 4px;
  top: 4px;
  font-size: 22px;
}

.apply-warp {
  background: #b7d8ef;
  position: relative;
  z-index: 1;
}

.apply-warp .section-title {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.apply-warp .apply-shape1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  pointer-events: none;
}

.apply-card {
  padding: 55px 52px;
  background: #cde4f4;
  transition: 0.6s;
}

.apply-card .icon {
  margin-bottom: 25px;
}

.apply-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.apply-card p {
  margin-bottom: 20px;
}

.apply-card .apply-link {
  color: #fc6441;
  font-family: Work Sans;
  font-weight: 600;
}

.apply-card .apply-link span {
  position: relative;
}

.apply-card .apply-link span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: #fc6441;
}

.apply-card .apply-link span i {
  position: relative;
  left: 2px;
  font-size: 20px;
  top: 2px;
}

.apply-card .apply-link i {
  position: relative;
  left: 2px;
  font-size: 20px;
  top: 4px;
}

.apply-card:hover {
  background-color: var(--white);
}

.inner-video {
  max-width: 100%;
  height: 475px;
  position: relative;
}

.inner-video.style2 .video-btn {
  top: 40%;
}

.inner-video video {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 475px;
}

.inner-video .video-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-51px);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 110px;
  cursor: pointer;
  line-height: 113px;
  border-radius: 50%;
  text-align: center;
  color: rgb(53, 54, 136);
  font-size: 40px;
  height: 110px;
  background: rgba(255, 255, 255, 0.9);
}

.inner-video h2 {
  color: var(--white);
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.28px;
  position: absolute;
  top: 63%;
  transform: translateY(-63%);
  left: 0;
  right: 0;
  margin-bottom: 0;
  text-align: center;
}

.video-warp {
  background: #b7d8ef;
  position: relative;
  z-index: 1;
}

.video-warp .apply-shape2 {
  position: absolute;
  bottom: 50%;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

.video-warp::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  width: 100%;
  z-index: -1;
  background-color: var(--white);
}

.student-review-slider-warp {
  position: relative;
}

.student-review-slider-warp .swiper-pagination1 {
  margin-top: 45px;
  position: relative !important;
  height: 4px !important;
  background: #e4ecf2 !important;
}

.student-review-slider-warp .swiper-pagination1 .swiper-pagination-progressbar-fill {
  opacity: 1 !important;
  background: #91a8b9 !important;
  height: 4px !important;
  border-radius: 0 !important;
}

.review-widget .star-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 5px;
}

.review-widget .star-list li {
  display: inline-block;
  margin-right: 4px;
  color: rgb(226, 186, 45);
}

.review-widget h4 {
  color: #353688;
  font-size: 18px;
  margin-bottom: 15px;
}

.review-widget p {
  margin-bottom: 20px;
}

.review-widget .review-details {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.review-widget .review-details li {
  display: inline-block;
  font-weight: 400;
  color: #3f3f60;
  padding-right: 20px;
}

.review-widget .review-details li span {
  font-weight: 600;
}

.review-widget .review-details li:first-child {
  padding-right: 12px;
}

.review-widget .review-details li:first-child img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.review-widget .review-details li:nth-child(2) span {
  color: #3f3f60;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
}

.review-widget .review-details li:last-child {
  padding-right: 0;
}

.event-widget {
  padding: 40px 30px 50px 40px;
}

.event-widget.bg-1 {
  background: #ecf3f8;
}

.event-widget.bg-2 {
  background: #eeeef5;
}

.event-widget span {
  color: #7768e5;
  font-family: Work Sans;
  font-size: 12px;
  display: inline-flex;
  line-height: 1;
  padding: 5px 6px;
  font-weight: 500;
  background: var(--white);
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
  margin-bottom: 8px;
}

.event-widget h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.event-widget h3 a {
  color: #0d0d25;
}

.event-widget h3 a:hover {
  color: var(--primary);
}

.event-widget .event-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.event-widget .event-list li {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  padding-right: 40px;
  font-family: Inter;
  font-size: 15px;
}

.event-widget .event-list li i {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 20px;
}

.event-widget .event-list li:last-child {
  padding-right: 0;
}

.event-slider-warp {
  position: relative;
}

.event-slider-warp .swiper-pagination3 {
  line-height: 1;
  margin-top: 40px;
  text-align: center;
}

.event-slider-warp .swiper-pagination3 .swiper-pagination-bullet {
  height: 6px;
  width: 6px;
  opacity: 1;
  background-color: #c5c5d3;
}

.event-slider-warp .swiper-pagination3 .swiper-pagination-bullet-active {
  background-color: #5c5c7e;
}

.question-content .heading {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  margin-bottom: 25px;
  font-weight: 400;
}

.question-content .tabs .nav-tabs {
  margin-bottom: 35px !important;
  border: none;
}

.question-content .accordion-question .accordion .accordion-item {
  border-radius: 0;
  border-right: none;
  border-left: none;
  padding-bottom: 0;
  border-color: #f3f3f6;
}

.question-content .accordion-question .accordion .accordion-item .accordion-button {
  background-color: transparent;
  border: none;
  box-shadow: unset;
  color: #353688;
  font-family: Work Sans;
  font-size: 16px;
  font-weight: 600;
  padding-left: 0;
  padding-right: 0;
  padding-top: 16px;
  padding-bottom: 16px;
}

.question-content .accordion-question .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url(../img/svgs/accordion2.svg);
  transform: unset;
}

.question-content .accordion-question .accordion .accordion-item .accordion-button::after {
  background-size: auto;
  line-height: 1;
  position: relative;
  background-image: url(../img/svgs/accordion1.svg);
  top: 4px;
}

.question-content .accordion-question .accordion .accordion-item .accordion-body {
  padding-left: 0;
  padding-left: 0;
  padding-bottom: 20px;
  padding-top: 20px;
  border-top: solid 1px #f3f3f6;
}

.question-images {
  padding-left: 43px;
}

.inner-hero2-style {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 805px;
  margin: 10px;
  padding-bottom: 20px;
  margin-top: -150px !important;
  background-color: var(--white);
}

.inner-hero2-style.bg-1 {
  background-image: url(../img/heros/style3-hero1.png);
}

.inner-hero2-style.bg-2 {
  background-image: url(../img/heros/style3-hero2.png);
}

.inner-hero2-style.bg-3 {
  background-image: url(../img/heros/style3-hero3.png);
}

.transparent-bg {
  background-color: transparent !important;
}

.transparent-bg .top-header-details .social-list::before {
  background: transparent;
}

.transparent-bg.sticky {
  background-color: var(--white) !important;
}

.transparent-bg.sticky .sticky-logo {
  display: block;
}

.transparent-bg.sticky .style3-logo {
  display: none;
}

.transparent-bg .sticky-logo {
  display: none;
}

.hero-style3-warp {
  position: relative;
}

.hero-style3-warp .tabs .nav-tabs {
  position: absolute;
  width: 808px;
  padding: 0;
  border-radius: 4px;
  display: flex;
  bottom: 40px;
  right: 30px;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: none;
}

.top-header-warp.style3 {
  padding-top: 20px;
}

.top-header-warp.style3 .container-fluid {
  padding-left: 255px;
}

.hero-style3-content {
  max-width: 580px;
  position: relative;
  top: -10px;
}

.hero-style3-content h1 {
  color: #0d0d25;
  font-family: Inter;
  font-size: 60px;
  font-weight: 400;
  letter-spacing: 2.4px;
  margin-bottom: 5px;
}

.about-style2-image {
  position: relative;
  padding-right: 40px;
}

.about-style2-image .image.style2 {
  margin-top: 50px;
}

.about-style2-image .round-shape {
  width: 192.2px;
  height: 192.249px;
  text-align: center;
  position: absolute;
  bottom: -50px;
  left: 33%;
  line-height: 192px;
}

.about-style2-image .round-shape .text-shape {
  position: absolute;
  left: 0;
  top: 0;
  animation: rotateme 9s linear infinite;
}

.about-style2-content {
  padding-left: 15px;
}

.about-style2-content .content {
  
}

.about-style2-content .content h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.28px;
  margin-bottom: 12px;
}

.about-style2-content .content .title {
  color: #525271;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}

.about-style2-content .about-link {
  color: #353688;
  font-family: Work Sans;
  font-size: 16px;
  font-weight: 600;
}

.about-style2-content .about-link i {
  position: relative;
  left: 2px;
  top: 4px;
  font-size: 20px;
}

.about-style2-warp {
  position: relative;
}

.about-style2-warp .about-logo {
  position: absolute;
  top: 85px;
  right: 16%;
  opacity: 50%;
}

.swiper-btn .swiper-button-next,
.swiper-btn .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 45%);
}

.swiper-btn .swiper-button-next::after,
.swiper-btn .swiper-button-prev::after {
  display: none;
}

.swiper-btn .swiper-button-next::before,
.swiper-btn .swiper-button-prev::before {
  position: absolute;
  display: block;
  font-family: "tabler-icons" !important;
  text-align: center;
  border-radius: 50%;
  font-size: 24px;
  transition: 0.6s;
  text-align: center;
  border-radius: 50%;
}

.swiper-btn .swiper-button-next:hover::before,
.swiper-btn .swiper-button-prev:hover::before {
  color: var(--primary);
}

.swiper-btn .swiper-button-next {
  left: auto;
  right: -10px;
}

.swiper-btn .swiper-button-next:before {
  content: "\ea1c";
}

.swiper-btn .swiper-button-prev {
  left: -10px;
  right: auto;
}

.swiper-btn .swiper-button-prev:before {
  content: "\ea1b";
}

.swiper-btn.style2 {
  position: absolute;
  top: -50px;
  right: 0;
}

.swiper-btn.style2 .swiper-button-next::before,
.swiper-btn.style2 .swiper-button-prev::before {
  color: #5d5d72;
}

.swiper-btn.style2 .swiper-button-prev {
  left: -70px;
  right: auto;
}

.swiper-btn.style2 .swiper-button-next {
  left: auto;
  right: 10px;
}

.swiper-btn.style3 .swiper-button-next,
.swiper-btn.style3 .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 96%);
  z-index: 999;
}

.swiper-btn.style3 .swiper-button-next::before,
.swiper-btn.style3 .swiper-button-prev::before {
  background: #14191c;
  color: #5d5d72;
}

.swiper-btn.style3 .swiper-button-next:hover::before,
.swiper-btn.style3 .swiper-button-prev:hover::before {
  color: var(--primary);
}

.swiper-btn.style3 .swiper-button-prev {
  left: 41%;
  right: auto;
}

.swiper-btn.style3 .swiper-button-next {
  left: auto;
  right: 41%;
}

.management-warp {
  overflow: hidden;
}

.management-warp .management-slider-warp {
  position: relative;
}

.management-warp .management-slider-warp .swiper {
  margin-right: -322px;
}

.management-widget .content {
  padding-top: 20px;
}

.management-widget .content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 8px;
}

.management-widget .content ul li {
  display: inline-block;
  padding-left: 35px;
  font-family: Inter;
  font-size: 12px;
  position: relative;
}

.management-widget .content ul li img {
  position: absolute;
  left: 0;
  top: -2px;
}

.management-widget .content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.management-widget .content h3 a {
  color: #0d0d25;
}

.management-widget .content h3 a:hover {
  color: var(--primary);
}

.inner-undergraduate-warp {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.undergraduate-widget h3 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.28px;
  margin-bottom: 30px;
}

.undergraduate-widget .undergraduate-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.undergraduate-widget .undergraduate-list li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 26px;
}

.undergraduate-widget .undergraduate-list li:last-child {
  margin-bottom: 0;
}

.undergraduate-widget .undergraduate-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9d9d9;
}

.undergraduate-widget .undergraduate-list li a {
  color: #353688;
  font-family: Work Sans;
  font-weight: 600;
}

.undergraduate-widget .undergraduate-list li a i {
  position: relative;
  font-size: 25px;
  line-height: 0;
  left: 10px;
  top: 6px;
}

.undergraduate-widget .undergraduate-list li a:hover {
  letter-spacing: 1px;
  color: var(--primary);
}

.undergraduate-widget .default-btn {
  background-color: transparent;
  border: 1px solid #fc6441;
  color: rgb(252, 100, 65);
}

.undergraduate-widget .default-btn:hover {
  color: var(--white);
  border-color: rgb(248, 202, 77);
}

.col-lg-6:nth-child(2) .undergraduate-widget {
  margin-left: 218px;
}

.luva-inner-widget {
  max-width: 825px;
  margin-left: auto;
  margin-right: auto;
}

.luva-inner-widget .blog-donate {
  display: flex;
  padding: 24px 30px;
  align-items: center;
  background: linear-gradient(90deg, #b0c2ff 0%, #f1f1fc 100%);
}

.luva-inner-widget .blog-donate .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  line-height: 64px;
  text-align: center;
  background-color: var(--white);
}

.luva-inner-widget .blog-donate .content {
  padding-left: 35px;
}

.luva-inner-widget .blog-donate .content h6 {
  font-size: 22px;
  margin-bottom: 5px;
}

.luva-inner-widget .blog-donate .content .donate-link {
  display: block;
  color: #353688;
  font-weight: 600;
}

.luva-inner-widget .blog-donate .content .donate-link:nth-child(3) {
  margin-bottom: 0;
}

.luva-inner-widget .blog-donate .content .donate-link i {
  position: relative;
  left: 2px;
  top: 2px;
  font-size: 20px;
}

.luva-inner-widget .blog-donate .content .donate-link span {
  position: relative;
}

.luva-inner-widget .blog-donate .content .donate-link span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 0%;
  transition: 0.6s;
  background-color: rgb(252, 100, 65);
}

.luva-inner-widget .blog-donate .content .donate-link:hover {
  color: rgb(252, 100, 65);
}

.luva-inner-widget .blog-donate .content .donate-link:hover span::before {
  width: 100%;
}

.video-warp-style2 {
  position: relative;
  z-index: 1;
}

.video-warp-style2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  width: 100%;
  z-index: -1;
  background: #eeeef5;
}

.event-plan-widget {
  display: flex;
  align-items: center;
}

.event-plan-widget .image {
  width: 298px;
  height: 248px;
}

.event-plan-widget .content {
  margin-left: 25px;
}

.event-plan-widget .content span {
  color: #7768e5;
  font-family: Work Sans;
  font-size: 12px;
  line-height: 1;
  display: inline-flex;
  padding: 5px 6px;
  font-weight: 500;
  background: var(--white);
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
  margin-bottom: 8px;
}

.event-plan-widget .content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.event-plan-widget .content h3 a {
  color: #0d0d25;
}

.event-plan-widget .content h3 a:hover {
  color: var(--primary);
}

.event-plan-widget .content .event-plan-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.event-plan-widget .content .event-plan-list li {
  position: relative;
  padding-left: 28px;
  font-family: Inter;
  margin-bottom: 12px;
  font-size: 15px;
}

.event-plan-widget .content .event-plan-list li i {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 20px;
}

.event-plan-widget .content .event-plan-list li:last-child {
  margin-bottom: 0;
}

.event-plan-warp {
  overflow: hidden;
}

.event-plan-warp .event-plan-slider-warp {
  position: relative;
}

.event-plan-warp .event-plan-slider-warp .swiper {
  margin-right: -650px;
  position: relative;
  padding-top: 20px;
}

.event-plan-warp .event-plan-slider-warp .swiper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: var(--white);
}

.event-plan-warp .section-warp {
  margin-bottom: 25px;
}

.enquiry-warp {
  position: relative;
  z-index: 1;
}

.enquiry-warp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 45%;
  height: 100%;
  z-index: -1;
  background: #f8ca4d;
}

.enquiry-image {
  padding-right: 30px;
}

.enquiry-image h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.28px;
  margin-bottom: 30px;
}

.enquiry-content {
  position: relative;
}

.enquiry-content p span {
  font-weight: 600;
  color: #494968;
}

.enquiry-content .enquiry-link {
  display: inline-block;
  margin-top: 10px;
  color: #353688;
  font-family: Work Sans;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 65px;
}

.enquiry-content .enquiry-link i {
  position: relative;
  left: 2px;
  top: 4px;
  font-size: 20px;
}

.enquiry-content .enquiry-content-style {
  display: flex;
  align-items: center;
}

.enquiry-content .enquiry-content-style .icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: #fc6441;
  display: inline-block;
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: 22px;
  line-height: 68px;
  box-shadow: 0px 4px 60px rgba(252, 100, 65, 0.15);
}

.enquiry-content .enquiry-content-style .icon:hover {
  color: var(--white);
  background-color: var(--bs-dark);
}

.enquiry-content .enquiry-content-style .content {
  padding-left: 25px;
}

.enquiry-content .enquiry-content-style .content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #fc6441;
  margin-bottom: 8px;
}

.enquiry-content .enquiry-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

.optional-events-warp {
  margin-bottom: 5px;
}

.optional-events-warp .container-fluid {
  max-width: 100%;
}

.optional-event-widget {
  position: relative;
  overflow: hidden;
}

.optional-event-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  width: 0%;
  transition: 0.6s;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.optional-event-widget .optional-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  color: #0d0d25;
  font-family: Work Sans;
  font-size: 22px;
  transition: 0.6s;
  font-weight: 700;
  opacity: 0;
  text-align: center;
  z-index: 999;
}

.optional-event-widget:hover::before {
  height: 100%;
  width: 100%;
}

.optional-event-widget:hover .optional-content {
  opacity: 1;
}

.inner-heros-warp {
  padding-top: 305px;
  padding-bottom: 50px;
  position: relative;
  background: linear-gradient(90deg, #dde6f4 0%, #e6eaf8 17.57%, #d4dcfc 34.86%, #e2e6f6 52.23%, #e0e5f8 65.17%, #eef4fd 97.75%);
  margin-top: -155px;
}

.inner-heros-warp .inner-page-shape1 {
  position: absolute;
  bottom: 0;
  opacity: 22%;
  right: 31%;
}

.inner-hero-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.inner-hero-content h1 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 1.6px;
  margin-bottom: 0;
}

.inner-hero-content .inner-hero-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 5px;
}

.inner-hero-content .inner-hero-list li {
  display: inline-block;
  padding-right: 30px;
  color: #0d0d25;
  font-family: Work Sans;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  position: relative;
  letter-spacing: 1.3px;
}

.inner-hero-content .inner-hero-list li::before {
  content: ">";
  position: absolute;
  right: 8px;
  top: 0;
}

.inner-hero-content .inner-hero-list li:last-child {
  padding-right: 0;
}

.inner-hero-content .inner-hero-list li:last-child::before {
  display: none;
}

.inner-hero-content .inner-hero-list li a {
  color: #0d0d25;
}

.inner-hero-content .inner-hero-list li a:hover {
  color: var(--primary);
}

.inner-hero-content .inner-hero-list li span {
  color: #6c6c7e;
}

.inner-all-pages .about-pages-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  text-align: center;
}

.inner-all-pages .about-pages-list li {
  display: inline-block;
  padding-right: 6px;
}

.inner-all-pages .about-pages-list li:last-child {
  padding-right: 0;
}

.inner-all-pages .about-pages-list li a {
  line-height: 1;
  display: inline-flex;
  padding: 12px 15px;
  color: #7b7b93;
  font-family: Work Sans;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.3px;
  background: #ededf5;
  position: relative;
}

.inner-all-pages .about-pages-list li a:hover {
  color: var(--white);
  background: #7768e5;
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
}

.inner-all-pages .about-pages-list li a.active,
.inner-all-pages .about-pages-list li a.router-link-active {
  color: var(--white);
  background: #7768e5;
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
}

.inner-all-pages .about-pages-list li a.active-check::before {
  opacity: 1;
}

.inner-all-pages .about-pages-list li a::before {
  content: "\ea5e";
  position: absolute;
  top: -42px;
  left: 0;
  width: 32px;
  height: 32px;
  line-height: 31px;
  font-size: 25px;
  border-radius: 50%;
  font-weight: 100;
  font-family: "tabler-icons" !important;
  color: var(--white);
  opacity: 0;
  background-color: #5ca89f;
}

.inner-all-pages .about-pages-list.style2 li a {
  background-color: var(--white);
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
}

.inner-all-pages .about-pages-list.style2 li a:hover {
  color: var(--white);
  background: #7768e5;
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
}

.inner-all-pages .about-pages-list.style2 li a.active,
.inner-all-pages .about-pages-list.style2 li a.router-link-active {
  color: var(--white);
  background: #7768e5;
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
}

.inner-all-pages .about-pages-list.style2 li a.active-check::before {
  opacity: 1;
}

.inner-page-about {
  padding-right: 0;
}

.visiting-content {
  padding-right: 100px;
}

.visiting-content h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 15px;
}

.visiting-content .visiting-content-style {
  margin-top: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.visiting-content .visiting-content-style .icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: #7768e5;
  display: inline-block;
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: 22px;
  line-height: 72px;
  box-shadow: 0px 4px 60px rgba(252, 100, 65, 0.15);
}

.visiting-content .visiting-content-style .icon:hover {
  color: var(--white);
  background-color: var(--bs-dark);
}

.visiting-content .visiting-content-style .content {
  padding-left: 25px;
}

.visiting-content .visiting-content-style .content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #7768e5;
  margin-bottom: 8px;
}

.visiting-content .visiting-content-style .content a {
  color: #7768e5;
}

.visiting-content .default-btn {
  background: #353688;
  padding-left: 104px;
  padding-right: 104px;
}

.about-images-warp {
  padding-top: 60px;
}

.sustainability-content h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: 1.28px;
}

.sustainability-content .sustainability-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 30px;
}

.sustainability-content .sustainability-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  color: #525271;
}

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

.sustainability-content .sustainability-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #fc6441;
  font-size: 22px;
}

.sustainability-content .sustainability-list li span {
  font-weight: 500;
  color: #3a3a5e;
}

.sustainability-image {
  margin-left: 115px;
  margin-right: -160px;
  padding-left: 45px;
}

.sustainability-image .image.style1 {
  padding-right: 5px;
  padding-left: 5px;
  margin-top: 115px;
}

.sustainability-image .image.style2 {
  padding-left: 10px;
}

.sustainability-warp {
  position: relative;
  z-index: 1;
}

.sustainability-warp::before {
  content: "";
  position: absolute;
  right: 0;
  top: 72px;
  height: 395px;
  width: 46.5%;
  z-index: -1;
  background: #b7d8ef;
}

.about-choose-warp::before {
  display: none;
}

.about-choose-warp .choose-card.bg-5 {
  background: #b74f56;
}

.inner-about-style2-image {
  margin-bottom: 60px;
}

.building-hours-title {
  max-width: 300px;
}

.building-hours-title h2 {
  letter-spacing: 1.28px;
  margin-bottom: 0;
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
}

.building-hours-content p span {
  font-weight: 500;
  color: #303050;
}

.building-hours-content .building-hours-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 20px;
}

.building-hours-content .building-hours-list li {
  margin-bottom: 8px;
  font-weight: 600;
  color: #353688;
  font-family: Work Sans;
}

.building-hours-content .building-hours-list li span {
  padding-left: 8px;
  padding-right: 8px;
}

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

.building-hours-content .building-hours-list li:last-child {
  color: #c1272d;
}

.map-content {
  padding: 40px;
  background: #b7d8ef;
  margin-top: -115px;
}

.map-content h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 1.28px;
  padding-right: 100px;
}

.map-content .details-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map-content .details-icon p {
  color: #525271;
  font-size: 15px;
  margin-bottom: 0;
}

.map-content .details-icon p i {
  position: relative;
  padding-right: 5px;
  font-size: 20px;
}

.map-content .details-icon .icon {
  font-size: 30px;
  line-height: 0;
}

.inner-about-style3-image {
  margin-top: 60px;
}

.value-title {
  max-width: 330px;
}

.value-title h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.28px;
  margin-bottom: 0;
}

.value-content .value-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.value-content .value-list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 5px;
}

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

.value-content .value-list li span {
  padding-right: 10px;
  position: absolute;
  left: 0;
}

.duties-accordion .accordion-item {
  border: none;
}

.duties-accordion .accordion-item .accordion-button {
  background-color: transparent;
  border-left: none;
  border-right: none;
  border-bottom: solid 1px #e8e9ed;
  border-top: solid 1px #e8e9ed;
  border-radius: 0;
  padding: 45px 0;
  box-shadow: unset;
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.28px;
}

.duties-accordion .accordion-item .accordion-button::after {
  background-image: url(../img/svgs/about-accordion.svg);
}

.duties-accordion .accordion-body {
  padding-left: 0;
  padding-top: 30px;
}

.about-history-content .big-paragraph {
  font-size: 20px;
  color: #525271;
}

.history-images-warp {
  position: relative;
  overflow: hidden;
}

.history-images-warp .swiper {
  margin-right: -320px;
}

.about-history-title {
  max-width: 330px;
}

.about-history-title h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.28px;
  margin-bottom: 0;
}

.about-history-title.style2 {
  max-width: 420px;
}

.faculty-link-warp {
  padding-top: 60px;
}

.faculty-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.faculty-list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px #e8e9ed;
  color: #0d0d25;
  font-family: Work Sans;
  font-size: 20px;
  font-weight: 600;
  transition: 0.6s;
}

.faculty-list li a {
  color: #0d0d25;
  width: 100%;
  padding: 18px 0;
}

.faculty-list li:first-child {
  border-top: solid 1px #e8e9ed;
}

.faculty-list li:hover {
  background: #e8e9ed;
  padding: 0 20px;
}

.faculty-list li:hover a {
  padding: 18px 0;
}

.faculty-list li .another-link-color {
  color: rgb(252, 100, 65);
}

.faculty-list.style2 {
  margin-bottom: 20px;
}

.facilities-details-widget {
  padding-right: 100px;
}

.facilities-details-widget .content1 {
  margin-bottom: 35px;
}

.facilities-details-widget .content1 h3 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.28px;
  margin-bottom: 18px;
  max-width: 420px;
}

.facilities-details-widget .image {
  margin-bottom: 35px;
}

.facilities-details-widget .content2 {
  margin-bottom: 35px;
}

.facilities-details-widget .content2 h5 {
  color: #0d0d25;
  font-size: 22px;
  margin-bottom: 15px;
}

.facilities-details-widget .accreditation {
  padding: 30px;
  background: #fafafa;
  margin-bottom: 40px;
}

.facilities-details-widget .accreditation h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.facilities-details-widget .accreditation .dges {
  margin-bottom: 25px;
}

.facilities-details-widget .accreditation .dges h6 {
  font-weight: 600;
  font-size: 16px;
  color: #494968;
  font-family: Inter;
  margin-bottom: 5px;
}

.facilities-details-widget .accreditation .a3es {
  max-width: 480px;
}

.facilities-details-widget .accreditation .a3es h6 {
  font-weight: 600;
  font-size: 16px;
  color: #494968;
  font-family: Inter;
  margin-bottom: 5px;
}

.facilities-details-widget .default-btn {
  border: 1px solid #fc6441;
  background: transparent;
  color: #fc6441;
}

.facilities-details-widget .default-btn:hover {
  color: var(--white);
  border-color: rgb(248, 202, 77);
}

.facilities-details-widget .default-btn i {
  left: 0;
  right: 4px;
}

.facilities-small-widget {
  padding: 35px;
  background: #e8e9ed;
  margin-bottom: 15px;
}

.facilities-small-widget h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: solid 1px var(--white);
}

.facilities-small-widget .facilities-item {
  margin-bottom: 25px;
}

.facilities-small-widget .facilities-item span {
  font-weight: 600;
  color: #494968;
  display: block;
  margin-bottom: 8px;
}

.facilities-small-widget .facilities-item p {
  margin-bottom: 4px;
}

.facilities-small-widget .facilities-item p:last-child {
  margin-bottom: 0;
}

.facilities-small-widget .info {
  color: #353688;
  font-size: 13px;
}

.facilities-small {
  background: #353688;
  width: 100%;
}

.facilities-requirements {
  text-align: center;
  text-decoration-line: underline;
  font-weight: 500;
  color: #353688;
  display: block;
  margin-top: 20px;
}

.requirements-small-widget {
  background: #e8e9ed;
  max-width: 420px;
  padding: 5px 0;
}

.requirements-small-widget .requirement-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.requirements-small-widget .requirement-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 18px;
  transition: 0.6s;
  border-bottom: solid 1px var(--white);
}

.requirements-small-widget .requirement-list li:last-child {
  border: none;
}

.requirements-small-widget .requirement-list li a {
  line-height: 1;
  color: #0d0d25;
  padding: 25px;
  width: 100%;
}

.requirements-small-widget .requirement-list li i {
  line-height: 1;
  opacity: 0;
  position: relative;
  left: -50px;
  transition: 0.6s;
}

.requirements-small-widget .requirement-list li:hover i {
  opacity: 1;
  left: 0;
}

.requirement-big-warp h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  letter-spacing: 1.28px;
  font-weight: 400;
  margin-bottom: 25px;
}

.requirement-big-warp p {
  margin-bottom: 20px;
}

.requirement-big-warp span {
  font-weight: 600;
  color: #353688;
  display: block;
  margin-top: 40px;
  margin-bottom: 25px;
}

.requirement-big-warp .default-btn.style1 {
  background: #fc6441;
}

.requirement-big-warp .default-btn.style2 {
  border: 1px solid #7768e5;
  color: #7768e5;
  margin-left: 12px;
  background: transparent;
}

.requirement-big-warp .default-btn.style2:hover {
  border-color: rgb(248, 202, 77);
  color: var(--white);
}

.program-page-image {
  margin-top: 50px;
}

.program-page-image .image {
  position: relative;
  overflow: hidden;
}

.program-page-image .image img {
  transition: 0.6s;
}

.program-page-image .image::before {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  transition: 0.6s;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.program-page-image .image:hover::before {
  animation: shine 0.75s;
}

.program-page-image .image:hover img {
  transform: scale(1.1);
}

.program-page-title h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.28px;
  margin-bottom: 0;
}

.program-page-title h2 span {
  display: inline-block;
  background: #f8ca4d;
  height: 49px;
  padding: 5px;
}

.program-main-title {
  max-width: 430px;
}

.program-main-title h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.28px;
}

.undergraduate-program-content {
  padding-left: 20px;
}

.undergraduate-program-content h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.28px;
  margin-bottom: 20px;
}

.undergraduate-program-content h2 span {
  display: inline-block;
  background: #f8ca4d;
  height: 49px;
  padding: 5px;
}

.inner-graduate-program-image {
  margin-top: 50px;
}

.graduate-program-content h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.28px;
  margin-bottom: 20px;
  padding-right: 200px;
}

.graduate-program-content h2 span {
  display: inline-block;
  background: #f8ca4d;
  height: 49px;
  padding: 5px;
}

.graduate-program-button .default-btn {
  border: 1px solid #7768e5;
  color: #7768e5;
  background: transparent;
}

.graduate-program-button .default-btn:hover {
  border-color: rgb(248, 202, 77);
  color: var(--white);
}

.select-option {
  margin-top: 50px;
  margin-bottom: 50px;
}

.select-option h3 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 400;
}

.select-option .select-option-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.select-option .select-option-list li {
  display: block;
  position: relative;
  margin-bottom: 12px;
}

.select-option .select-option-list li:last-child {
  margin-bottom: 0;
}

.select-option .select-option-list li .form-check-input {
  width: 20px;
  height: 20px;
  border-radius: 0;
  border: 1px solid #9b9bad;
  background-color: #f3f3f6;
}

.select-option .select-option-list li .form-check-input:focus {
  box-shadow: unset;
}

.select-option .select-option-list li .form-check-input:checked[type=radio] {
  background-image: url(../img/svgs/select.svg);
  background-size: 12px 12px;
  background-position: center center;
}

.select-option .select-option-list li .form-check-label {
  font-weight: 500;
  color: #525271;
  font-family: Work Sans;
  margin-left: 15px;
}

.applicant-details h3 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.88px;
  margin-bottom: 20px;
}

.applicant-details .input-box {
  margin-bottom: 20px;
}

.applicant-details .input-box .form-label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}

.applicant-details .input-box .form-label span {
  color: #c1272d;
}

.applicant-details .input-box .form-control {
  height: 60px;
  padding-left: 20px;
  font-family: Work Sans;
  border: none;
  font-size: 13px;
  border-radius: 0;
  background-color: #f3f3f6;
}

.applicant-details .input-box .form-control::-moz-placeholder {
  -moz-transition: 0.6s;
  transition: 0.6s;
}

.applicant-details .input-box .form-control::placeholder {
  transition: 0.6s;
}

.applicant-details .input-box .form-control:focus {
  box-shadow: unset;
}

.applicant-details .input-box .form-control:focus::-moz-placeholder {
  color: transparent;
}

.applicant-details .input-box .form-control:focus::placeholder {
  color: transparent;
}

.applicant-details .input-box .form-select {
  height: 60px;
  padding-left: 20px;
  font-family: Work Sans;
  border: none;
  font-size: 13px;
  border-radius: 0;
  background-color: #f3f3f6;
  background-image: url(../img/svgs/caret-down.svg);
}

.applicant-details .input-box .form-select:focus {
  box-shadow: unset;
}

.applicant-details .input-box .input-with-icon {
  height: 60px;
  position: relative;
}

.applicant-details .input-box .input-with-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 60px;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: #d8d8e7;
}

.applicant-details .input-box .input-with-icon .form-control {
  padding-left: 75px;
  background: #f3f3f6;
}

.applicant-details .input-box .input-with-icon i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.applicant-details .input-box textarea {
  padding-top: 15px;
  height: 194px !important;
}

.applicant-details .form-check {
  margin-bottom: 20px;
}

.applicant-details .form-check .form-check-input {
  width: 20px;
  height: 20px;
  border-radius: 0;
  border: 1px solid #9b9bad;
  background-color: #f3f3f6;
}

.applicant-details .form-check .form-check-input:focus {
  box-shadow: unset;
}

.applicant-details .form-check .form-check-input:checked[type=radio] {
  background-image: url(../img/svgs/select.svg);
  background-size: 12px 12px;
  background-position: center center;
}

.applicant-details .form-check .form-check-label {
  font-weight: 500;
  color: #525271;
  font-family: Work Sans;
  margin-left: 15px;
}

.academic-info-content {
  padding-top: 40px;
  padding-bottom: 50px;
}

.academic-info-content p {
  color: #525271;
  font-family: Work Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}

.academic-info-heading {
  margin-bottom: 15px;
}

.academic-info-heading h5 {
  color: #0d0d25;
  font-size: 16px;
  font-weight: 600;
}

.input-bg {
  background: #f3f3f6;
  margin-bottom: 20px;
  padding: 10px 20px;
}

.input-bg .form-select {
  height: 60px;
  padding-left: 20px;
  font-family: Work Sans;
  border: none;
  font-size: 13px;
  border-radius: 0;
  background-color: var(--white);
  background-image: url(../img/svgs/caret-down.svg);
}

.input-bg .form-select:focus {
  box-shadow: unset;
}

.input-bg .institution p {
  color: #525271;
  font-family: Work Sans;
  font-size: 15px;
  font-weight: 500;
  padding-left: 15px;
}

.input-bg .institution p span {
  color: #c1272d;
}

.next-button .default-btn.style2 {
  background: transparent;
  color: #fc6441;
  border: solid 1px #fc6441;
  margin-right: 10px;
}

.next-button .default-btn.style2 i {
  position: relative;
  left: 0;
  right: 5px;
}

.next-button .default-btn.style2:hover {
  color: var(--white);
  border-color: #f8ca4d;
}

.english-proficiency-content {
  padding-top: 40px;
}

.english-proficiency-content p {
  color: #0d0d25;
  font-family: Work Sans;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
}

.english-proficiency-content .english-proficiency-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.english-proficiency-content .english-proficiency-list li {
  display: block;
  position: relative;
  margin-bottom: 14px;
}

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

.english-proficiency-content .english-proficiency-list li .form-check-input {
  width: 20px;
  height: 20px;
  border-radius: 0;
  border: 1px solid #9b9bad;
  background-color: #f3f3f6;
}

.english-proficiency-content .english-proficiency-list li .form-check-input:focus {
  box-shadow: unset;
}

.english-proficiency-content .english-proficiency-list li .form-check-input:checked[type=radio] {
  background-image: url(../img/svgs/select.svg);
  background-size: 12px 12px;
  background-position: center center;
}

.english-proficiency-content .english-proficiency-list li .form-check-label {
  font-weight: 500;
  color: #525271;
  font-family: Work Sans;
  margin-left: 15px;
}

.program-choose-content {
  padding-top: 50px;
  margin-bottom: 45px;
}

.program-choose-content h4 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 15px;
}

.program-choose-content p {
  margin-bottom: 0;
  padding-right: 100px;
}

.image-input-box {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  background: #f3f3f6;
  z-index: 1;
  padding: 35px 35px 45px 35px;
}

.image-input-box::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  z-index: -1;
  background-image: repeating-linear-gradient(-37deg, #bfbbbb, #bfbbbb 5px, transparent 5px, transparent 16px, #bfbbbb 16px), repeating-linear-gradient(53deg, #bfbbbb, #bfbbbb 5px, transparent 5px, transparent 16px, #bfbbbb 16px), repeating-linear-gradient(143deg, #bfbbbb, #bfbbbb 5px, transparent 5px, transparent 16px, #bfbbbb 16px), repeating-linear-gradient(233deg, #bfbbbb, #bfbbbb 5px, transparent 5px, transparent 16px, #bfbbbb 16px);
  background-size: 1px 100%, 100% 1px, 1px 100%, 100% 1px;
  background-position: 0 0, 0 0, 100% 0, 0 100%;
  background-repeat: no-repeat;
}

.image-input-box span {
  display: block;
  color: #525271;
  text-align: center;
  font-family: Work Sans;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.image-input-box .browse-files {
  margin-bottom: 15px;
  cursor: default;
}

.image-input-box .default-file-input {
  opacity: 0;
  display: none;
}

.image-input-box .remove-file-icon {
  cursor: pointer;
}

.document-content {
  padding-top: 50px;
  margin-bottom: 40px;
}

.document-content h4 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.88px;
  margin-bottom: 15px;
}

.personal-info {
  border-top: 2px solid #7768e5;
  background: #f3f3f6;
  padding: 5px;
}

.personal-info .info-content-icon {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.personal-info .info-content-icon h5 {
  color: #0d0d25;
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 600;
}

.personal-info .info-content-icon a {
  color: rgb(82, 82, 113);
  font-family: Inter;
  font-size: 14px;
}

.personal-info .information-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.personal-info .information-list li {
  position: relative;
  display: flex;
  padding: 10px 15px;
}

.personal-info .information-list li p {
  width: 215px;
  font-size: 14px;
  color: #525271;
  font-weight: 600;
  margin-bottom: 0;
}

.personal-info .information-list li span {
  font-size: 14px;
  width: 390px;
}

.personal-info .information-list li:nth-child(1) {
  background-color: var(--white);
}

.personal-info .information-list li:nth-child(3) {
  background-color: var(--white);
}

.personal-info .information-list li:nth-child(5) {
  background-color: var(--white);
}

.personal-info .information-list li:nth-child(7) {
  background-color: var(--white);
}

.personal-info .information-list li:nth-child(9) {
  background-color: var(--white);
}

.personal-info.academic-info .information-list li {
  padding: 13px;
}

.personal-info.academic-info .information-list li span {
  line-height: 1.9;
}

.submission-content {
  margin-bottom: 30px;
  margin-top: 50px;
}

.submission-content h3 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.88px;
  margin-bottom: 20px;
}

.submission-check {
  margin-top: 30px;
}

.submission-check .form-check-input {
  width: 20px;
  height: 20px;
  border-radius: 0;
  border: 1px solid #9b9bad;
  background-color: #f3f3f6;
}

.submission-check .form-check-input:focus {
  box-shadow: unset;
}

.submission-check .form-check-input:checked[type=radio] {
  background-image: url(../img/svgs/select.svg);
  background-size: 12px 12px;
  background-position: center center;
}

.submission-check .form-check-label {
  font-weight: 500;
  color: #525271;
  font-family: Work Sans;
  margin-left: 15px;
}

.administration-small-widget {
  padding: 35px;
  background: #e8e9ed;
  margin-bottom: 15px;
}

.administration-small-widget h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: solid 1px var(--white);
}

.administration-small-widget .administration-item {
  margin-bottom: 25px;
}

.administration-small-widget .administration-item:last-child {
  margin-bottom: 0;
}

.administration-small-widget .administration-item span {
  font-weight: 600;
  color: #494968;
  display: block;
  margin-bottom: 8px;
}

.administration-small-widget .administration-item p {
  margin-bottom: 4px;
}

.administration-small-widget .administration-item p:last-child {
  margin-bottom: 0;
}

.administration-small-widget .info {
  color: #353688;
  font-size: 13px;
}

.administration-small {
  background: #353688;
  width: 100%;
}

.administration-requirements {
  text-align: center;
  text-decoration-line: underline;
  font-weight: 500;
  color: #353688;
  display: block;
  margin-top: 20px;
}

.administration-requirements:hover {
  color: var(--primary);
  letter-spacing: 1px;
}

.administration-content {
  padding-right: 30px;
}

.administration-content .content-one {
  margin-bottom: 40px;
}

.administration-content .content-one h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  padding-left: 30px;
  position: relative;
  margin-bottom: 30px;
  border-left: solid 4px #b0c2ff;
}

.administration-content .content-two {
  margin-bottom: 40px;
}

.administration-content .content-two h4 {
  color: #0d0d25;
  font-family: Work Sans;
  font-size: 22px;
  margin-bottom: 15px;
}

.administration-content .content-with-list {
  position: relative;
  padding-right: 120px;
}

.administration-content .content-with-list h4 {
  color: #0d0d25;
  font-family: Work Sans;
  font-size: 22px;
  margin-bottom: 15px;
}

.administration-content .content-with-list p {
  margin-bottom: 20px;
}

.administration-content .content-with-list .content-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.administration-content .content-with-list .content-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #0d0d25;
}

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

.administration-content .content-with-list .content-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d9d9d9;
}

.administration-content .content-with-list .administration-shape {
  position: absolute;
  right: -20px;
  top: 0;
}

.administration-accordion .accordion-item {
  border: 1px solid #7b7b93;
  border-radius: 0;
  margin-bottom: 20px;
}

.administration-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.administration-accordion .accordion-item .accordion-button {
  border: none;
  color: #0d0d25;
  font-family: Work Sans;
  font-size: 22px;
  font-weight: 600;
  background: #f4f4fc;
  box-shadow: unset;
}

.administration-accordion .accordion-item .accordion-button::after {
  background-image: url(../img/svgs/caret-down.svg);
}

.administration-accordion .accordion-item .accordion-body {
  padding: 0;
  background: #f4f4fc;
}

.administration-accordion .accordion-item .semester-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.administration-accordion .accordion-item .semester-list li {
  display: flex;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 30px;
  padding-right: 50px;
}

.administration-accordion .accordion-item .semester-list li:first-child {
  padding-top: 14px;
  padding-bottom: 14px;
  background: #7b7b93;
}

.administration-accordion .accordion-item .semester-list li:first-child p,
.administration-accordion .accordion-item .semester-list li:first-child h6,
.administration-accordion .accordion-item .semester-list li:first-child span {
  color: #fff;
  font-family: Work Sans;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-decoration: none;
}

.administration-accordion .accordion-item .semester-list li:nth-child(3) {
  background-color: var(--white);
}

.administration-accordion .accordion-item .semester-list li:nth-child(5) {
  background-color: var(--white);
}

.administration-accordion .accordion-item .semester-list li:nth-child(7) {
  background-color: var(--white);
}

.administration-accordion .accordion-item .semester-list li h6 {
  margin-bottom: 0;
  width: 262px;
  line-height: 1;
  color: #353688;
  font-family: Work Sans;
  font-size: 16px;
  font-weight: 500;
  text-decoration-line: underline;
}

.administration-accordion .accordion-item .semester-list li span {
  display: inline-block;
  line-height: 1;
  color: #0d0d25;
  font-family: Work Sans;
}

.administration-accordion .accordion-item .semester-list li p {
  margin-bottom: 0;
  width: 425px;
  color: #0d0d25;
  font-family: Work Sans;
  line-height: 1;
}

.administration-requirement-content {
  margin-bottom: 40px;
}

.administration-requirement-content h4 {
  color: #0d0d25;
  font-family: Work Sans;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.administration-requirement-content .administration-requirement-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.administration-requirement-content .administration-requirement-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 12px;
  color: #0d0d25;
}

.administration-requirement-content .administration-requirement-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  height: 10px;
  width: 10px;
  background-color: #d9d9d9;
  border-radius: 50%;
}

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

.requirement-language p a {
  color: #353688;
  font-weight: 500;
  text-decoration-line: underline;
}

.requirement-language p a:hover {
  color: var(--primary);
  letter-spacing: 1px;
}

.administration-finance-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-top: 30px;
  padding-left: 34px;
  padding-right: 34px;
  padding-bottom: 30px;
  border-top: 3px solid #353688;
  background: #f4f4fc;
}

.administration-finance-item:nth-child(3) {
  margin-bottom: 60px;
}

.administration-finance-item h3 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.88px;
  margin-bottom: 0;
  max-width: 300px;
}

.administration-finance-item h1 {
  color: #353688;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.28px;
}

.administration-finance-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.administration-finance-content .administration-finance-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 35px;
}

.administration-finance-content .administration-finance-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 40px;
  margin-top: 10px;
  color: #353688;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
}

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

.administration-finance-content .administration-finance-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #d9d9d9;
}

.administration-availability-content {
  border: 1px solid #7b7b93;
  background: #f4f4fc;
}

.administration-availability-content .title h4 {
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 0;
  padding: 25px 30px;
}

.administration-availability-content .availability-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.administration-availability-content .availability-list li {
  display: flex;
  align-items: center;
  padding-left: 30px;
  padding-right: 50px;
  padding-top: 25px;
  padding-bottom: 25px;
}

.administration-availability-content .availability-list li:first-child {
  padding-top: 14px;
  padding-bottom: 14px;
  background: #7b7b93;
}

.administration-availability-content .availability-list li:first-child p,
.administration-availability-content .availability-list li:first-child h6,
.administration-availability-content .availability-list li:first-child span {
  color: #fff;
  font-family: Work Sans;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-decoration: none;
}

.administration-availability-content .availability-list li:nth-child(3) {
  background-color: var(--white);
}

.administration-availability-content .availability-list li:nth-child(5) {
  background-color: var(--white);
}

.administration-availability-content .availability-list li:nth-child(7) {
  background-color: var(--white);
}

.administration-availability-content .availability-list li .content1 {
  width: 165px;
}

.administration-availability-content .availability-list li .content2 {
  width: 315px;
}

.administration-availability-content .availability-list li .content3 {
  width: 175px;
}

.administration-availability-content .availability-list li .content4 {
  color: #2b7258;
}

.administration-availability-content .availability-list li .content4.style1 {
  color: #c1272d;
}

.administration-availability-content .availability-list li h6 {
  margin-bottom: 0;
  line-height: 1;
  color: #353688;
  font-size: 16px;
  font-weight: 500;
}

.administration-availability-content .availability-list li p {
  line-height: 1;
  margin-bottom: 0;
  color: #0d0d25;
  font-family: Work Sans;
}

.administration-availability-content .availability-list li span {
  line-height: 1;
  font-family: Work Sans;
  color: #0d0d25;
}

.laptop-content {
  color: #494968;
  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 15px;
}

.laptop-content i {
  position: relative;
  padding-right: 10px;
  font-size: 24px;
  top: 3px;
}

.main-blog-card .content {
  padding-top: 15px;
}

.main-blog-card .content span {
  line-height: 1;
  display: inline-flex;
  padding: 5px 6px;
  color: #7768e5;
  font-family: Work Sans;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  background: var(--white);
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
}

.main-blog-card .content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.main-blog-card .content h3 a {
  color: #0d0d25;
}

.main-blog-card .content .blog-list {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.main-blog-card .content .blog-list li {
  display: inline-block;
  padding-right: 36px;
  color: #525271;
  position: relative;
}

.main-blog-card .content .blog-list li::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 7px;
  bottom: 0;
  height: 16px;
  width: 1px;
  background: #e8e8f4;
}

.main-blog-card .content .blog-list li:last-child {
  padding-right: 0;
}

.main-blog-card .content .blog-list li:last-child::before {
  display: none;
}

.main-blog-card .image {
  position: relative;
  overflow: hidden;
}

.main-blog-card .image img {
  transition: 0.6s;
}

.main-blog-card .image::before {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  transition: 0.6s;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.main-blog-card:hover .image::before {
  animation: shine 0.75s;
}

.main-blog-card:hover .image img {
  transform: scale(1.1);
}

.blog-title {
  margin-bottom: 40px;
}

.blog-title h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  padding-left: 30px;
  position: relative;
  margin-bottom: 30px;
  border-left: solid 4px #b0c2ff;
}

.search-widget {
  margin-bottom: 1px;
}

.search-widget .blog-input {
  height: 70px;
  position: relative;
  margin-bottom: 15px;
}

.search-widget .blog-input .form-control {
  height: 70px;
  background: var(--white);
  padding-left: 60px;
  border-radius: 0;
  font-size: 14px;
  border: transparent;
}

.search-widget .blog-input .form-control:focus {
  box-shadow: unset;
}

.search-widget .blog-input .form-control:focus::-moz-placeholder {
  color: transparent;
}

.search-widget .blog-input .form-control:focus::placeholder {
  color: transparent;
}

.search-widget .blog-input .form-control::-moz-placeholder {
  -moz-transition: 0.6s;
  transition: 0.6s;
  color: #89899f;
}

.search-widget .blog-input .form-control::placeholder {
  transition: 0.6s;
  color: #89899f;
}

.search-widget .blog-input .search-btn {
  position: absolute;
  background: transparent;
  border: none;
  padding: 0;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.search-widget .program-list {
  list-style: none;
  padding-left: 0;
  margin-left: -5px;
  margin-bottom: 0;
}

.search-widget .program-list span {
  width: 100%;
  display: inline-block;
}

.search-widget .program-list li {
  padding-right: 5px;
  display: inline-block;
}

.search-widget .program-list li a {
  font-size: 14px;
  color: #525271;
  text-decoration: underline;
}

.search-widget .program-list li a:hover {
  color: var(--primary);
}

.search-widget .search-list {
  font-size: 14px;
  color: #89899f;
  font-weight: 500;
  margin-right: -10px;
  display: block;
}

.blog-small-widget .all-box {
  background: #e8e9ed;
  padding: 30px 30px 40px 30px;
}

.blog-small-widget .all-box h4 {
  color: #0d0d25;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}

.categories-widget {
  margin-bottom: 1px;
}

.categories-widget .categories-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.categories-widget .categories-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 8px;
  font-family: Work Sans;
  font-weight: 500;
}

.categories-widget .categories-list li a {
  color: #525271;
}

.categories-widget .categories-list li:last-child {
  margin-bottom: 0;
}

.categories-widget .categories-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  height: 20px;
  width: 20px;
  transition: 0.6s;
  border: 1px solid #9b9bad;
  background: #f3f3f6;
}

.categories-widget .categories-list li:hover a {
  color: var(--primary);
}

.categories-widget .categories-list li:hover::before {
  background-color: var(--primary);
  border-color: var(--primary);
}

.articles-widget {
  margin-bottom: 1px;
}

.articles-widget .blog-article-item {
  margin-bottom: 20px;
}

.articles-widget .blog-article-item:last-child {
  margin-bottom: 0;
}

.articles-widget .blog-article-item span {
  line-height: 1;
  display: inline-flex;
  padding: 5px 6px;
  color: #7768e5;
  font-family: Work Sans;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  background: var(--white);
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
}

.articles-widget .blog-article-item h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.articles-widget .blog-article-item h3 a {
  color: #0d0d25;
}

.articles-widget .blog-article-item h3 a:hover {
  color: var(--primary);
}

.articles-widget .blog-article-item .article-list {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.articles-widget .blog-article-item .article-list li {
  display: inline-block;
  padding-right: 36px;
  color: #525271;
  position: relative;
}

.articles-widget .blog-article-item .article-list li::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 7px;
  bottom: 0;
  height: 16px;
  width: 1px;
  background: #e8e8f4;
}

.articles-widget .blog-article-item .article-list li:last-child {
  padding-right: 0;
}

.articles-widget .blog-article-item .article-list li:last-child::before {
  display: none;
}

.tag-widget .tag-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  padding-right: 30px;
}

.tag-widget .tag-list li {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 8px;
}

.tag-widget .tag-list li a {
  line-height: 1;
  display: inline-flex;
  padding: 5px 6px;
  color: #7768e5;
  font-family: Work Sans;
  font-size: 12px;
  font-weight: 500;
  background: var(--white);
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
}

.tag-widget .tag-list li a:hover {
  color: var(--white);
  background-color: var(--bs-dark);
}

.blog-big-widget {
  padding-right: 15px;
}

.inner-pages-pagination {
  margin-top: 60px;
}

.inner-pages-pagination .pagination {
  justify-content: center;
}

.inner-pages-pagination .pagination .page-item {
  margin-right: 10px;
}

.inner-pages-pagination .pagination .page-item:last-child {
  margin-right: 0;
}

.inner-pages-pagination .pagination .page-item:last-child .page-link {
  background: transparent;
  font-size: 35px;
  font-weight: 300;
  line-height: 45px;
}

.inner-pages-pagination .pagination .page-item:first-child .page-link {
  background: transparent;
  opacity: 30%;
  font-size: 35px;
  font-weight: 300;
  line-height: 45px;
}

.inner-pages-pagination .pagination .page-item .page-link {
  border-radius: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  line-height: 42px;
  border: none;
  background: #e8e8f2;
  color: #0d0d25;
  text-align: center;
  font-family: Work Sans;
  font-size: 15px;
  font-weight: 500;
  transition: 0.6s;
  letter-spacing: 0.3px;
}

.inner-pages-pagination .pagination .page-item .page-link.active {
  background: #fc6441;
  color: var(--white);
}

.inner-pages-pagination .pagination .page-item .page-link:hover {
  background: #fc6441;
  opacity: 1;
  color: var(--white);
}

.blog-details-big-widget .blog-title {
  padding-right: 100px;
}

.blog-image-with-content {
  margin-bottom: 40px;
}

.blog-image-with-content .blog-list {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0;
}

.blog-image-with-content .blog-list li {
  display: inline-block;
  padding-right: 36px;
  color: #525271;
  position: relative;
}

.blog-image-with-content .blog-list li span {
  line-height: 1;
  display: inline-flex;
  padding: 5px 6px;
  color: #7768e5;
  font-family: Work Sans;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  background: var(--white);
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
}

.blog-image-with-content .blog-list li::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 7px;
  bottom: 0;
  height: 16px;
  width: 1px;
  background: #e8e8f4;
}

.blog-image-with-content .blog-list li:last-child {
  padding-right: 0;
}

.blog-image-with-content .blog-list li:last-child::before {
  display: none;
}

.blog-image-with-content .image {
  margin-bottom: 30px;
}

.blog-content-one {
  margin-bottom: 50px;
}

.blog-content-one h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

.blog-style-content {
  border-top: 3px solid #353688;
  background: #f4f4fc;
  padding: 30px;
  position: relative;
  margin-bottom: 50px;
}

.blog-style-content p {
  font-size: 18px;
  padding-left: 70px;
}

.blog-style-content .icon {
  position: absolute;
}

.blog-content-two {
  margin-bottom: 60px;
}

.blog-content-two h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

.blog-content-two .image {
  margin-top: 20px;
  margin-bottom: 40px;
}

.slider-article-details {
  padding-bottom: 50px;
  margin-bottom: 100px;
  border-bottom: solid 1px #e8e9ed;
}

.slider-article-details .blog-article-item span {
  line-height: 1;
  display: inline-flex;
  padding: 5px 6px;
  color: #7768e5;
  font-family: Work Sans;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  background: var(--white);
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
}

.slider-article-details .blog-article-item h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.slider-article-details .blog-article-item h3 a {
  color: #0d0d25;
}

.slider-article-details .blog-article-item h3 a:hover {
  color: var(--primary);
}

.slider-article-details .blog-article-item .article-list {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.slider-article-details .blog-article-item .article-list li {
  display: inline-block;
  padding-right: 36px;
  color: #525271;
  position: relative;
}

.slider-article-details .blog-article-item .article-list li::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 7px;
  bottom: 0;
  height: 16px;
  width: 1px;
  background: #e8e8f4;
}

.slider-article-details .blog-article-item .article-list li:last-child {
  padding-right: 0;
}

.slider-article-details .blog-article-item .article-list li:last-child::before {
  display: none;
}

.tags-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: solid 1px #e8e9ed;
  border-top: solid 1px #e8e9ed;
  margin-bottom: 50px;
}

.tags-share .tags-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.tags-share .tags-list li {
  display: inline-block;
  padding-right: 10px;
}

.tags-share .tags-list li:last-child {
  padding-right: 0;
}

.tags-share .tags-list li h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

.tags-share .tags-list li a {
  line-height: 1;
  display: inline-flex;
  padding: 5px 6px;
  color: #7768e5;
  font-family: Work Sans;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  background: var(--white);
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
}

.tags-share .tags-list li a:hover {
  color: var(--white);
  background-color: var(--bs-dark);
}

.tags-share .share-list {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.tags-share .share-list li {
  padding-right: 15px;
  display: inline-block;
}

.tags-share .share-list li:last-child {
  padding-right: 0;
}

.tags-share .share-list li h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

.tags-share .share-list li .icon img {
  filter: brightness(0) saturate(100%) invert(6%) sepia(23%) saturate(3988%) hue-rotate(219deg) brightness(89%) contrast(100%);
}

.tags-share .share-list li .icon:hover img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(95%) saturate(2641%) hue-rotate(335deg) brightness(100%) contrast(98%);
}

.previous-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.previous-next button {
  background: transparent;
  border: none;
  color: #525271;
  font-family: Work Sans;
  font-size: 16px;
  font-weight: 600;
}

.previous-next button i {
  font-size: 25px;
  line-height: 1;
  position: relative;
  top: 6px;
}

.previous-next button:focus {
  box-shadow: unset;
}

.previous-next button.active {
  color: #fc6441;
}

.previous-next button.previous-btn i {
  padding-right: 5px;
}

.previous-next button.next-btn i {
  padding-left: 5px;
}

.comments-widget {
  padding-bottom: 100px;
}

.comments-widget h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1.28px;
  margin-bottom: 5px;
}

.comments-widget p {
  color: #525271;
}

.reply-widget h3 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1.28px;
  margin-bottom: 12px;
}

.reply-widget .input-box {
  margin-bottom: 20px;
}

.reply-widget .input-box .form-label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}

.reply-widget .input-box .form-label span {
  color: #c1272d;
}

.reply-widget .input-box .form-control {
  height: 60px;
  padding-left: 20px;
  font-family: Work Sans;
  border: none;
  font-size: 13px;
  border-radius: 0;
  background-color: #f3f3f6;
}

.reply-widget .input-box .form-control::-moz-placeholder {
  -moz-transition: 0.6s;
  transition: 0.6s;
}

.reply-widget .input-box .form-control::placeholder {
  transition: 0.6s;
}

.reply-widget .input-box .form-control:focus {
  box-shadow: unset;
}

.reply-widget .input-box .form-control:focus::-moz-placeholder {
  color: transparent;
}

.reply-widget .input-box .form-control:focus::placeholder {
  color: transparent;
}

.reply-widget .input-box .input-with-icon {
  height: 60px;
  position: relative;
}

.reply-widget .input-box .input-with-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 60px;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: #d8d8e7;
}

.reply-widget .input-box .input-with-icon .form-control {
  padding-left: 75px;
  background: #f3f3f6;
}

.reply-widget .input-box .input-with-icon i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.reply-widget .input-box textarea {
  padding-top: 15px;
  height: 194px !important;
}

.reply-widget .form-check {
  margin-bottom: 20px;
}

.reply-widget .form-check .form-check-input {
  width: 20px;
  height: 20px;
  border-radius: 0;
  border: 1px solid #9b9bad;
  background-color: #f3f3f6;
}

.reply-widget .form-check .form-check-input:focus {
  box-shadow: unset;
}

.reply-widget .form-check .form-check-input:checked[type=radio] {
  background-image: url(../img/svgs/select.svg);
  background-size: 12px 12px;
  background-position: center center;
}

.reply-widget .form-check .form-check-label {
  font-weight: 500;
  color: #525271;
  font-family: Work Sans;
  margin-left: 15px;
}

.event-title-select {
  margin-bottom: 30px;
}

.event-title-select .event-title h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  padding-left: 30px;
  position: relative;
  margin-bottom: 0;
  border-left: solid 4px #b0c2ff;
}

.event-title-select .event-select {
  max-width: 356px;
  margin-left: auto;
}

.event-title-select .event-select .form-select {
  height: 60px;
  color: #0d0d25;
  border-radius: 0;
  font-family: Work Sans;
  font-size: 14px;
  font-weight: 500;
  padding-left: 25px;
  background-image: url(../img/svgs/caret-down.svg);
}

.event-title-select .event-select .form-select:focus {
  box-shadow: unset;
}

.event-small-widget .facilities-item:last-child {
  margin-bottom: 0;
}

.event-big-warp .blog-title h2 {
  padding-right: 100px;
}

.event-details-content {
  margin-bottom: 50px;
}

.event-details-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.event-speaker-widget h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
}

.event-details-content2 {
  margin-top: 50px;
}

.event-details-content2 h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.main-contact-content .input-box {
  margin-bottom: 20px;
}

.main-contact-content .input-box .form-label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}

.main-contact-content .input-box .form-label span {
  color: #c1272d;
}

.main-contact-content .input-box .form-control {
  height: 60px;
  padding-left: 20px;
  font-family: Work Sans;
  border: none;
  font-size: 13px;
  border-radius: 0;
  background-color: #f3f3f6;
}

.main-contact-content .input-box .form-control::-moz-placeholder {
  -moz-transition: 0.6s;
  transition: 0.6s;
}

.main-contact-content .input-box .form-control::placeholder {
  transition: 0.6s;
}

.main-contact-content .input-box .form-control:focus {
  box-shadow: unset;
}

.main-contact-content .input-box .form-control:focus::-moz-placeholder {
  color: transparent;
}

.main-contact-content .input-box .form-control:focus::placeholder {
  color: transparent;
}

.main-contact-content .input-box .input-with-icon {
  height: 60px;
  position: relative;
}

.main-contact-content .input-box .input-with-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 60px;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: #d8d8e7;
}

.main-contact-content .input-box .input-with-icon .form-control {
  padding-left: 75px;
  background: #f3f3f6;
}

.main-contact-content .input-box .input-with-icon i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.main-contact-content .input-box textarea {
  padding-top: 15px;
  height: 194px !important;
}

.main-contact-content .form-check {
  margin-bottom: 20px;
}

.main-contact-content .form-check .form-check-input {
  width: 20px;
  height: 20px;
  border-radius: 0;
  border: 1px solid #9b9bad;
}

.main-contact-content .form-check .form-check-input:focus {
  box-shadow: unset;
}

.main-contact-content .form-check .form-check-input:checked[type=radio] {
  background-image: url(../img/svgs/select.svg);
  background-size: 12px 12px;
  background-position: center center;
}

.main-contact-content .form-check .form-check-label {
  font-weight: 500;
  color: #525271;
  font-family: Work Sans;
  margin-left: 15px;
}

.contact-small-widget {
  padding: 35px;
  background: #e8e9ed;
  margin-bottom: 15px;
}

.contact-small-widget h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: solid 1px var(--white);
}

.contact-small-widget .contact-item {
  margin-bottom: 25px;
}

.contact-small-widget .contact-item:last-child {
  margin-bottom: 0;
}

.contact-small-widget .contact-item span {
  font-weight: 600;
  color: #494968;
  display: block;
  margin-bottom: 5px;
}

.contact-small-widget .contact-item p {
  margin-bottom: 4px;
}

.contact-small-widget .contact-item p:last-child {
  margin-bottom: 0;
}

.contact-small-widget .contact-item a {
  display: block;
  color: #525271;
}

.contact-small-widget .contact-item a:hover {
  color: var(--primary);
}

.contact-small-widget .contact-item .social-list {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.contact-small-widget .contact-item .social-list li {
  padding-right: 15px;
  display: inline-block;
}

.contact-small-widget .contact-item .social-list li:last-child {
  padding-right: 0;
}

.contact-small-widget .contact-item .social-list li .icon img {
  filter: brightness(0) saturate(100%) invert(6%) sepia(23%) saturate(3988%) hue-rotate(219deg) brightness(89%) contrast(100%);
}

.contact-small-widget .contact-item .social-list li .icon:hover img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(95%) saturate(2641%) hue-rotate(335deg) brightness(100%) contrast(98%);
}

.academic-item-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ecf3f8;
  margin-bottom: 20px;
  padding-left: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
}

.academic-item-date:last-child {
  margin-bottom: 0;
}

.academic-item-date .academic-event-content {
  max-width: 565px;
}

.academic-item-date .academic-event-content span {
  color: #7768e5;
  font-family: Work Sans;
  font-size: 12px;
  display: inline-flex;
  line-height: 1;
  padding: 5px 6px;
  font-weight: 500;
  background: var(--white);
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
  margin-bottom: 8px;
}

.academic-item-date .academic-event-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.academic-item-date .academic-event-content h3 a {
  color: #0d0d25;
}

.academic-item-date .academic-event-content h3 a:hover {
  color: var(--primary);
}

.academic-item-date .academic-event-content .academic-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.academic-item-date .academic-event-content .academic-list li {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  padding-right: 40px;
  font-family: Inter;
  font-size: 15px;
}

.academic-item-date .academic-event-content .academic-list li i {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 20px;
}

.academic-item-date .academic-event-content .academic-list li:last-child {
  padding-right: 0;
}

.academic-item-date .academic-event-content .academic-list li:first-child {
  color: #353688;
}

.academic-item-date .academic-event-content .academic-list li:first-child a {
  color: #353688;
}

.academic-item-date .date-box {
  padding: 40px 30px 28px 30px;
  width: 270px;
  text-align: center;
  background-color: var(--white);
  position: relative;
}

.academic-item-date .date-box .dot {
  position: relative;
}

.academic-item-date .date-box .dot::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 25px;
  right: 0;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: #d7d7e5;
}

.academic-item-date .date-box .dot::after {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  right: 25px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: #d7d7e5;
}

.academic-item-date .date-box p {
  color: #525271;
  font-size: 15px;
  margin-bottom: 4px;
}

.academic-item-date .date-box h4 {
  color: #353688;
  text-align: center;
  font-family: Alfa Slab One;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 1px;
}

.academic-item-date .date-box span {
  font-size: 15px;
  color: #525271;
}

.academic-item-date .date-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -32px;
  height: 100%;
  width: 1px;
  background-color: var(--white);
}

.inner-account-warp {
  max-width: 835px;
}

.inner-account-warp .input-box {
  margin-bottom: 20px;
}

.inner-account-warp .input-box .form-label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}

.inner-account-warp .input-box .form-label span {
  color: #c1272d;
}

.inner-account-warp .input-box .form-control {
  height: 60px;
  padding-left: 20px;
  font-family: Work Sans;
  border: none;
  font-size: 13px;
  border-radius: 0;
  background-color: #f3f3f6;
}

.inner-account-warp .input-box .form-control::-moz-placeholder {
  -moz-transition: 0.6s;
  transition: 0.6s;
}

.inner-account-warp .input-box .form-control::placeholder {
  transition: 0.6s;
}

.inner-account-warp .input-box .form-control:focus {
  box-shadow: unset;
}

.inner-account-warp .input-box .form-control:focus::-moz-placeholder {
  color: transparent;
}

.inner-account-warp .input-box .form-control:focus::placeholder {
  color: transparent;
}

.inner-account-warp .input-box .input-with-icon {
  height: 60px;
  position: relative;
}

.inner-account-warp .input-box .input-with-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 60px;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: #d8d8e7;
}

.inner-account-warp .input-box .input-with-icon .form-control {
  padding-left: 75px;
  background: #f3f3f6;
}

.inner-account-warp .input-box .input-with-icon i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.inner-account-warp .input-box textarea {
  padding-top: 15px;
  height: 194px !important;
}

.inner-account-warp .form-check {
  margin-bottom: 20px;
}

.inner-account-warp .form-check .form-check-input {
  width: 20px;
  height: 20px;
  border-radius: 0;
  border: 1px solid #9b9bad;
  background-color: #f3f3f6;
}

.inner-account-warp .form-check .form-check-input:focus {
  box-shadow: unset;
}

.inner-account-warp .form-check .form-check-input:checked[type=radio] {
  background-image: url(../img/svgs/select.svg);
  background-size: 12px 12px;
  background-position: center center;
}

.inner-account-warp .form-check .form-check-label {
  font-weight: 500;
  color: #525271;
  font-family: Work Sans;
  margin-left: 15px;
}

.inner-account-warp p {
  margin-top: 20px;
}

.inner-account-warp p a {
  color: #353688;
  font-weight: 600;
  text-decoration-line: underline;
}

.inner-login-widget {
  max-width: 410px;
}

.article-item {
  display: flex;
  align-items: center;
  margin-bottom: 42px;
}

.article-item:nth-child(3) {
  margin-bottom: 20px;
}

.article-item .image {
  width: 100px;
  height: 145px;
}

.article-item .content {
  margin-left: 20px;
}

.article-item .content .title {
  padding: 5px 6px;
  background: #fff;
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
  color: #7768e5;
  font-family: Work Sans;
  font-size: 12px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 10px;
}

.article-item .content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  padding-right: 30px;
}

.article-item .content h3 a {
  color: #0d0d25;
}

.article-item .content .news-link {
  display: block;
  color: #fc6441;
  font-weight: 600;
  font-family: Work Sans;
}

.article-item .content .news-link i {
  position: relative;
  left: 2px;
  top: 4px;
  font-size: 20px;
}

.article-item .content .news-link span {
  position: relative;
}

.article-item .content .news-link span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  transition: 0.6s;
  background-color: #fc6441;
}

.article-item.style2 {
  margin-left: 20px;
}

.article-item:nth-child(2) {
  margin-bottom: 0;
}

.article-item:nth-child(5) {
  margin-bottom: 0;
}

.article-card .content {
  padding-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 25px;
  background-color: var(--white);
}

.article-card .content .title {
  padding: 5px 6px;
  background: #fff;
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
  color: #7768e5;
  font-family: Work Sans;
  font-size: 12px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 10px;
}

.article-card .content h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.article-card .content h3 a {
  color: #0d0d25;
}

.article-card .image {
  overflow: hidden;
}

.article-card .image img {
  transition: 0.6s;
}

.article-card:hover .image img {
  transform: scale(1.1);
}

.international-list-widget {
  background: #e8e9ed;
  padding: 5px 0;
}

.international-list-widget .international-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.international-list-widget .international-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  font-weight: 600;
  font-size: 18px;
  transition: 0.6s;
  border-bottom: solid 1px var(--white);
}

.international-list-widget .international-list li:last-child {
  border: none;
}

.international-list-widget .international-list li a {
  line-height: 1;
  color: #0d0d25;
}

.international-list-widget .international-list li i {
  line-height: 1;
  position: relative;
  left: 0;
  transition: 0.6s;
}

.international-list-widget .international-list li:hover i {
  opacity: 1;
  left: 0;
}

.international-list-widget .international-list li:hover a {
  letter-spacing: 1px;
  color: var(--primary);
}

.international-content {
  padding-right: 40px;
}

.international-content .survey-result h4 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
}

.international-content .survey-result a {
  color: #fc6441;
  font-family: Work Sans;
  font-size: 16px;
  font-weight: 600;
}

.international-content .survey-result a i {
  position: relative;
  left: 5px;
  top: 4px;
  font-size: 22px;
}

.international-support-image {
  padding-right: 172px;
  position: relative;
}

.international-support-image .small-image {
  position: absolute;
  bottom: 100px;
  right: 38px;
  width: 236px;
  height: 156px;
}

.international-support-image .small-image .information {
  width: 204px;
  height: 204px;
}

.international-support-image .round-shape {
  width: 192.2px;
  height: 192.249px;
  text-align: center;
  position: absolute;
  top: 50px;
  right: 69px;
  line-height: 192px;
}

.international-support-image .round-shape .text-shape {
  position: absolute;
  left: 0;
  top: 0;
  animation: rotateme 9s linear infinite;
}

.international-support-content h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.28px;
}

.international-support-content .info-button {
  margin-bottom: 25px;
}

.international-support-content .info-button .style2 {
  background: #7768e5;
  margin-left: 15px;
}

.international-support-content .international-info {
  margin-top: 30px;
}

.international-support-content .international-info .item-one h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.international-support-content .international-info .item-one p {
  font-weight: 600;
  color: #353688;
  font-family: Work Sans;
  font-size: 18px;
  margin-bottom: 10px;
}

.international-support-content .international-info .item-one p a {
  font-weight: 700;
  color: #353688;
}

.international-support-content .international-info .item-one span {
  display: block;
}

.international-support-content .international-info .item-two h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.student-accessibility-content .blog-title h2 {
  padding-right: 100px;
}

.student-accessibility-content .accessibility-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.student-accessibility-content .accessibility-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 5px;
}

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

.student-accessibility-content .accessibility-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 16px;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: #171717;
}

.accessibility-content2 h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.accessibility-content2 p span {
  color: #525271;
  font-weight: 600;
}

.accessibility-content2 .accessibility-contact-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 20px;
}

.accessibility-content2 .accessibility-contact-list li {
  position: relative;
  color: #525271;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.accessibility-content2 .accessibility-contact-list li:last-child {
  margin-bottom: 0;
}

.accessibility-content2 .accessibility-contact-list li a {
  font-weight: 400;
  color: #525271;
}

.accessibility-content2 .accessibility-contact-list li span {
  font-weight: 400;
}

.accessibility-accordion-warp {
  margin-top: 45px;
}

.accessibility-accordion-warp h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.accessibility-accordion-warp .accessibility-accordion .accordion-item {
  border-left: none;
  border-right: none;
  border-radius: 0;
  padding: 0;
}

.accessibility-accordion-warp .accessibility-accordion .accordion-item .accordion-button {
  background-color: transparent;
  box-shadow: unset;
  border: none;
  color: #525271;
  font-family: Work Sans;
  font-size: 16px;
  padding: 20px 0;
  font-weight: 500;
}

.accessibility-accordion-warp .accessibility-accordion .accordion-item .accordion-button::after {
  content: "שּׁ";
  font-family: "tabler-icons" !important;
  background-image: none;
  font-size: 22px;
}

.accessibility-accordion-warp .accessibility-accordion .accordion-item .accordion-body {
  border-top: solid 1px #e8e9ed;
  margin-top: 0;
  padding-left: 0;
  padding-bottom: 20px;
  padding-top: 15px;
}

.accessibility-accordion-warp .accessibility-accordion .accordion-item .accordion-body p {
  color: #525271;
  font-family: Inter;
  font-size: 16px;
}

.accessibility-accordion-warp .accessibility-accordion .accordion-item .accordion-body p a {
  color: #525271;
  font-weight: 700;
  text-decoration: underline;
}

.accessibility-accordion-warp .accessibility-accordion .accordion-item .accordion-body p a:hover {
  color: var(--primary);
}

.accessibility-link-widget {
  background: #e8e9ed;
  padding: 5px 0;
}

.accessibility-link-widget .accessibility-link-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.accessibility-link-widget .accessibility-link-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px var(--white);
}

.accessibility-link-widget .accessibility-link-list li a {
  color: #0d0d25;
  font-family: Work Sans;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  padding: 24px 25px;
  width: 100%;
}

.accessibility-link-widget .accessibility-link-list li a.active,
.accessibility-link-widget .accessibility-link-list li a.router-link-active {
  color: #353688;
}

.accessibility-link-widget .accessibility-link-list li .icon {
  font-size: 20px;
  line-height: 1;
  position: relative;
  right: 20px;
}

.accessibility-link-widget .accessibility-link-list li .icon i {
  line-height: 1;
}

.accessibility-link-widget .accessibility-link-list li:last-child {
  border: none;
}

.accessibility-link-widget .accessibility-link-list li:hover a {
  color: #353688;
  letter-spacing: 1px;
}

.accessibility-link-widget h5 {
  padding: 25px;
  color: #0d0d25;
  font-size: 18px;
  margin-bottom: 0;
  border-bottom: solid 1px var(--white);
}

.book-store-content .blog-title h2 {
  max-width: 680px;
}

.book-store-content .online-list-widget h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.book-store-content .online-list-widget .online-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.book-store-content .online-list-widget .online-list li {
  position: relative;
  margin-bottom: 10px;
  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
}

.book-store-content .online-list-widget .online-list li:last-child {
  margin-bottom: 0;
}

.book-store-content .online-list-widget .online-list li a {
  color: #353688;
}

.book-store-content .online-list-widget .online-list li a:hover {
  color: var(--primary);
}

.information-teach-content-widget h4 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.88px;
  margin-bottom: 20px;
}

.information-teach-content-widget .content1 {
  margin-bottom: 45px;
}

.information-teach-content-widget .content1 h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.information-teach-content-widget .content2 h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.information-teach-content-widget .content2 .accessibility-contact-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 20px;
}

.information-teach-content-widget .content2 .accessibility-contact-list li {
  position: relative;
  color: #525271;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.information-teach-content-widget .content2 .accessibility-contact-list li:last-child {
  margin-bottom: 0;
}

.information-teach-content-widget .content2 .accessibility-contact-list li a {
  font-weight: 400;
  color: #525271;
}

.information-teach-content-widget .content2 .accessibility-contact-list li span {
  font-weight: 400;
}

.parking-locker-content .blog-title {
  margin-bottom: 85px;
}

.parking-locker-content .parking-location-widget h4 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.88px;
  margin-bottom: 30px;
}

.parking-locker-content .parking-location-widget .parking-item {
  margin-bottom: 30px;
}

.parking-locker-content .parking-location-widget .parking-item h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.parking-locker-content .parking-location-widget .parking-item .parking-item-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.parking-locker-content .parking-location-widget .parking-item .parking-item-list li {
  position: relative;
  margin-bottom: 2px;
}

.parking-locker-content .parking-location-widget .parking-item .parking-item-list li:last-child {
  margin-bottom: 0;
}

.parking-locker-content .parking-location-widget .parking-item .parking-item-list li a {
  font-weight: 500;
  color: #353688;
}

.parking-locker-content .parking-notice {
  margin-top: 55px;
}

.parking-locker-content .parking-notice h4 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.88px;
  margin-bottom: 20px;
}

.parking-locker-content .parking-notice .parking-notice-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.parking-locker-content .parking-notice .parking-notice-list li {
  margin-bottom: 15px;
}

.parking-locker-content .parking-notice .parking-notice-list li:last-child {
  margin-bottom: 0;
}

.parking-locker-content .parking-notice .parking-notice-list li span {
  color: #525271;
  font-weight: 700;
}

.residence-content-widget {
  padding-right: 35px;
}

.residence-content-widget .image {
  margin-bottom: 35px;
}

.residence-content-widget .residence-button {
  margin-top: 30px;
  display: flex;
  align-items: center;
}

.residence-content-widget .residence-button .default-btn {
  background: #353688;
  padding-left: 105px;
  padding-right: 105px;
}

.residence-content-widget .residence-button .residence-link {
  margin-left: 40px;
  color: #353688;
  font-family: Work Sans;
  font-weight: 500;
  text-decoration: underline;
}

.career-service-content {
  padding-right: 35px;
}

.career-service-content .blog-title .image {
  margin-top: 25px;
}

.career-service-content .career-service-support h3 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.88px;
  margin-bottom: 25px;
}

.career-service-content .career-service-support .career-service-item {
  margin-bottom: 45px;
}

.career-service-content .career-service-support .career-service-item h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.career-service-content .career-service-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.career-service-content .career-service-content .accessibility-contact-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.career-service-content .career-service-content .accessibility-contact-list li {
  position: relative;
  color: #525271;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.career-service-content .career-service-content .accessibility-contact-list li:last-child {
  margin-bottom: 0;
}

.career-service-content .career-service-content .accessibility-contact-list li a {
  font-weight: 400;
  color: #525271;
}

.career-service-content .career-service-content .accessibility-contact-list li span {
  font-weight: 400;
}

.health-service-content {
  padding-right: 30px;
}

.health-service-content .health-service-location-widget h4 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.88px;
  margin-bottom: 30px;
}

.health-service-content .health-service-location-widget .health-service-item {
  margin-bottom: 45px;
}

.health-service-content .health-service-location-widget .health-service-item h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.health-service-content .health-service-location-widget .health-service-item .parking-item-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.health-service-content .health-service-location-widget .health-service-item .parking-item-list li {
  position: relative;
  margin-bottom: 2px;
}

.health-service-content .health-service-location-widget .health-service-item .parking-item-list li:last-child {
  margin-bottom: 0;
}

.health-service-content .health-service-location-widget .health-service-item .parking-item-list li a {
  font-weight: 500;
  color: #353688;
}

.health-service-appointment {
  margin-bottom: 45px;
}

.health-service-appointment h4 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.88px;
  margin-bottom: 20px;
}

.health-service-contact h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.health-service-contact p span {
  color: #525271;
  font-weight: 600;
}

.health-service-contact .health-service-contact-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 20px;
}

.health-service-contact .health-service-contact-list li {
  position: relative;
  color: #525271;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.health-service-contact .health-service-contact-list li:last-child {
  margin-bottom: 0;
}

.health-service-contact .health-service-contact-list li a {
  font-weight: 400;
  color: #525271;
}

.health-service-contact .health-service-contact-list li a:hover {
  color: var(--primary);
}

.health-service-contact .health-service-contact-list li span {
  font-weight: 400;
}

.tutoring-center-content {
  padding-right: 30px;
}

.tutoring-center-content .blog-title {
  margin-bottom: 50px;
}

.tutoring-problems-content h4 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.88px;
  margin-bottom: 20px;
}

.tutoring-problems-content .tutoring-item {
  margin-bottom: 45px;
}

.tutoring-problems-content .tutoring-item:last-child {
  margin-bottom: 0;
}

.tutoring-problems-content .tutoring-item h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.experimental-learning-content {
  padding-right: 35px;
}

.experimental-learning-content .blog-title h2 {
  max-width: 660px;
}

.experimental-learning-content .image {
  margin-top: 25px;
}

.experimental-learning-content .experimental-question {
  padding-bottom: 45px;
}

.experimental-learning-content .experimental-question h4 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.88px;
  margin-bottom: 20px;
}

.experimental-learning-content .experimental-example {
  padding-bottom: 45px;
}

.experimental-learning-content .experimental-example h4 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.88px;
  margin-bottom: 25px;
}

.experimental-learning-content .experimental-example .examples-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.experimental-learning-content .experimental-example .examples-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 5px;
}

.experimental-learning-content .experimental-example .examples-list li:last-child {
  margin-bottom: 0;
}

.experimental-learning-content .experimental-example .examples-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 16px;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: #171717;
}

.experimental-learning-content .experimental-answer h4 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.88px;
  margin-bottom: 25px;
}

.experimental-learning-content .experimental-answer .answer-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.experimental-learning-content .experimental-answer .answer-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 5px;
}

.experimental-learning-content .experimental-answer .answer-list li:last-child {
  margin-bottom: 0;
}

.experimental-learning-content .experimental-answer .answer-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 16px;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: #171717;
}

.inner-athletic-warp {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.inner-athletic-warp .athletic-image {
  margin-bottom: 30px;
}

.positive-section {
  margin-bottom: 50px;
}

.positive-section .blog-title {
  margin-bottom: 0;
}

.positive-section .blog-title h2 {
  margin-bottom: 0;
  padding-right: 110px;
}

.positive-image {
  margin-right: -180px;
  position: relative;
  z-index: 2;
}

.positive-image-style2 {
  margin-left: -45px;
  position: relative;
  z-index: 1;
}

.positive-image-style2 .jobs-logo {
  margin-left: 252px;
  margin-bottom: 30px;
  position: relative;
  top: -16px;
  opacity: 30%;
}

.open-role-card {
  padding-bottom: 30px;
}

.open-role-card .event-list {
  margin-bottom: 20px;
}

.open-role-card .default-btn {
  background: #353688;
}

.open-roles-jobs-warp .inner-pages-pagination {
  margin-top: 40px;
}

.inner-job-widget {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.inner-job-details {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  background: #ecf3f8;
  padding-top: 60px;
  padding-bottom: 75px;
}

.job-details-button-content {
  margin-top: 50px;
}

.job-details-button-content p {
  margin-bottom: 35px;
}

.job-details-button-content .default-btn {
  background: #353688;
}

.job-benefits h3 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.88px;
  margin-bottom: 15px;
}

.job-benefits .benefits-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.job-benefits .benefits-list li {
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-left: 40px;
  padding-right: 30px;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: var(--white);
}

.job-benefits .benefits-list li i {
  position: absolute;
  left: 12px;
  font-size: 24px;
  color: #5754ff;
}

.job-benefits .benefits-list li:last-child {
  margin-bottom: 0;
}

.job-description {
  margin-bottom: 60px;
}

.job-description .description-list {
  list-style: none;
  margin-bottom: 40px;
  padding-left: 0;
}

.job-description .description-list li {
  display: inline-block;
  margin-right: 8px;
  padding: 5px 6px;
  background: #fff;
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
  color: #7768e5;
  font-family: Work Sans;
  font-size: 12px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 10px;
}

.job-description .description-list li:last-child {
  margin-right: 0;
}

.job-description .description-list li .bold {
  font-size: 12px;
  font-weight: 700;
}

.job-description h3 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.28px;
  margin-bottom: 20px;
}

.job-responsibilities {
  margin-bottom: 50px;
}

.job-responsibilities h3 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.88px;
  padding-bottom: 15px;
}

.job-responsibilities .responsibilities-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.job-responsibilities .responsibilities-list.style2 li i {
  color: #ec764b;
}

.job-responsibilities .responsibilities-list li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 10px;
}

.job-responsibilities .responsibilities-list li:last-child {
  margin-bottom: 0;
}

.job-responsibilities .responsibilities-list li i {
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 30px;
  color: #7768e5;
}

.transfer-credit-card .content {
  padding-top: 20px;
}

.transfer-credit-card .content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.transfer-credit-card .content h3 a {
  color: #0d0d25;
}

.transfer-credit-card .content h3 a:hover {
  color: var(--primary);
}

.transfer-credit-card .content p {
  margin-bottom: 20px;
}

.transfer-credit-card .content .apply-link {
  color: #fc6441;
  font-family: Work Sans;
  font-size: 16px;
  font-weight: 600;
}

.transfer-credit-card .content .apply-link i {
  position: relative;
  left: 4px;
  line-height: 1;
  font-size: 18px;
  top: 3px;
}

.transfer-credit-card .content .apply-link span {
  text-decoration-line: underline;
}

.transfer-credit-card .image {
  position: relative;
  overflow: hidden;
}

.transfer-credit-card .image img {
  transition: 0.6s;
}

.transfer-credit-card .image::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  transition: 0.6s;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.transfer-credit-card:hover .image::before {
  animation: shine 0.75s;
}

.transfer-credit-card:hover .image img {
  transform: scale(1.1);
}

.tuition-content-widget {
  padding-right: 35px;
}

.tuition-content-widget .full-time-tuition {
  padding-top: 50px;
  border-top: solid 1px #e8e9ed;
  margin-bottom: 50px;
}

.tuition-content-widget .full-time-tuition h4 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.88px;
  margin-bottom: 15px;
}

.tuition-content-widget .full-time-tuition .tuition-fees {
  margin-top: 50px;
}

.tuition-content-widget .full-time-tuition .tuition-fees .tuition-fees-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.tuition-content-widget .full-time-tuition .tuition-fees .tuition-fees-list li {
  position: relative;
  margin-bottom: 12px;
}

.tuition-content-widget .full-time-tuition .tuition-fees .tuition-fees-list li span {
  font-weight: 600;
  color: #525271;
}

.tuition-content-widget .full-time-tuition .tuition-fees .tuition-fees-list li:last-child {
  margin-bottom: 0;
}

.tuition-content-widget .international-students {
  padding-bottom: 50px;
  border-bottom: solid 1px #e8e9ed;
  margin-bottom: 50px;
}

.tuition-content-widget .international-students h4 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.88px;
  margin-bottom: 15px;
}

.tuition-content-widget .tuition-awards {
  margin-bottom: 50px;
}

.tuition-content-widget .tuition-awards:last-child {
  margin-bottom: 0;
}

.tuition-content-widget .tuition-awards h4 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.88px;
  margin-bottom: 15px;
}

.privacy-policy-content h3 {
  font-size: 40px;
  margin-bottom: 12px;
}

.privacy-policy-content .main-content {
  margin-bottom: 40px;
  margin-top: 40px;
}

.privacy-policy-content .content {
  margin-bottom: 40px;
}

.privacy-policy-content h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.privacy-policy-content h5 span {
  color: var(--primary);
}

.privacy-policy-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.privacy-policy-content .privacy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.privacy-policy-content .privacy-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

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

.privacy-policy-content .privacy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 50%;
}

.join-luva-box {
  background-image: url(../img/enquirys/enquiry10.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 30px;
  margin-bottom: 50px;
}

.join-luva-box .default-btn {
  margin-top: 190px;
}

.join-luva-box p {
  width: 170px;
}

.latest-side-news h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.latest-side-news .blog-article-item {
  padding: 15px 30px 42px 25px;
  background: #e8e9ed;
}

.latest-side-news .blog-article-item span {
  line-height: 1;
  display: inline-flex;
  padding: 5px 6px;
  color: #7768e5;
  font-family: Work Sans;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  background: var(--white);
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
}

.latest-side-news .blog-article-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.latest-side-news .blog-article-item h3 a {
  color: #0d0d25;
}

.latest-side-news .blog-article-item h3 a:hover {
  color: var(--primary);
}

.latest-side-news .blog-article-item .article-list {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.latest-side-news .blog-article-item .article-list li {
  display: inline-block;
  padding-right: 28px;
  color: #525271;
  font-size: 14px;
}

.latest-side-news .blog-article-item .article-list li::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 7px;
  bottom: 0;
  height: 16px;
  width: 1px;
  background: #e8e8f4;
}

.latest-side-news .blog-article-item .article-list li:last-child {
  padding-right: 0;
}

.latest-side-news .blog-article-item .article-list li:last-child::before {
  display: none;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.reveal2 {
  position: relative;
  transform: translateY(0);
  transition: all 0.6s ease;
  overflow: hidden;
}

.reveal2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  background: var(--white);
  transition: 0.9s;
  border-radius: 0;
}

.reveal2.active {
  transform: translateY(0);
  opacity: 1;
}

.reveal2.active::after {
  width: 0;
}

.reveal3 {
  position: relative;
  transform: translateY(0);
  transition: all 0.9s ease;
  overflow: hidden;
}

.reveal3::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  background: var(--white);
  transition: 0.9s;
  border-radius: 0;
}

.reveal3.active {
  transform: translateY(0);
  opacity: 1;
}

.reveal3.active::after {
  width: 0;
}

@keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes simple-square-to-circle {
  100% {
    border-radius: 50%;
  }
}

@keyframes simple-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes simple-scale {
  100% {
    transform: scale(1.5);
  }
}

@keyframes simple-move {
  100% {
    transform: translate(50px, 0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

@keyframes movebounce {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(50px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes moveleftbounce {
  0% {
    transform: translateX(100px);
  }

  50% {
    transform: translateX(300px);
  }

  100% {
    transform: translateX(100px);
  }
}

@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate3d {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
  }

  75% {
    transform: scale(1.5);
    opacity: 0.6;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.rotateme {
  animation-name: rotateme;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.top-header-details .header-contact li i {
  color: #fff;
}

.hero-btn a.default-btn {
  background: #862E84 !important;
}

.information-content .info-button .style2 {
  background-color: #A13E99;
}

.secodary-btn {
  background-color: #F1A63E;
}

.third-btn {
  background-color: #3D2C5E;
}

.inner-all-pages .about-pages-list li a {
  background: #7969A5;
  color: #fff;
}

.submit-btn {
  background: #BC52B4;
  color: #fff;
}

#backtotop {
  background: #B5771D;
}

.fun-fact-warp {
  background: #F1F5F9;
}

.small-s {
  font-size: 0.8em;
  
  vertical-align: baseline;
}

.feedback-btn {
  position: fixed;
  right: 5px;
  bottom: 6rem;
  background: #A13E99;
  color: #fff;
  border: none;
  padding: .75rem 1rem;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
  cursor: pointer;
  z-index: 999;
  font-weight: 500;
  transition: background 0.3s ease;
}

.feedback-btn i {
  font-size: 24px;
}

.feedback-btn:hover {
  background: #74326e;
}

.search-dropdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  padding-top: 100px;
}

.search-dropdown-container {
  background-color: #fff;
  width: 90%;
  max-width: 600px;
  height: fit-content;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  background-color: #fff;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  color: #333;
  padding: 8px;
}

.search-input::placeholder {
  color: #999;
}

.search-results {
  overflow-y: auto;
  max-height: calc(80vh - 80px);
}

.results-list {
  padding: 10px 0;
}

.result-item {
  display: flex;
  align-items: flex-start;
  padding: 16px 20px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.result-item:hover {
  background-color: #f5f5f5;
}

.result-icon {
  margin-right: 12px;
  color: #3D2C5E;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.result-content {
  flex: 1;
}

.result-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.result-description {
  font-size: 14px;
  color: #666;
}

.no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #999;
}

.no-results svg {
  margin-bottom: 16px;
}

.no-results p {
  font-size: 16px;
  margin: 0;
}

.search-suggestions {
  padding: 20px;
}

.search-suggestions h3 {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.suggestions-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.suggestion-item {
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.2s;
  color: #333;
  font-size: 15px;
}

.suggestion-item:hover {
  background-color: #f5f5f5;
}

.apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.apply-now-btn {
  background: #A13E99;
  color: #fff !important;
  padding: 10px 25px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  font-size: 14px !important;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(241, 166, 62, 0.3);
  transition: all 0.3s ease-in-out !important;
  display: inline-block;
  line-height: normal !important;
}

.apply-now-btn:hover {
  background: #872980;
}

.text-gray {
  color: #4D4D4D;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
}

.card-feature {
  background-color: #F8F4FB;
  border: 1px solid #DDA1FF;
  border-radius: 10px;
  padding: 10px;
  line-height: 18px;
  align-items: center;
}

.text-muted-small {
  font-size: 12px !important;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #facc15;
  border-radius: 50%;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 16px 0 32px;
}

.btn-primary {
  background: #A13E99 !important;
  border: none;
  font-weight: 600;
  width: 250px
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 61, 255, 0.4);
}

.btn-light:hover {
  transform: translateY(-2px);
}

.card-title {
  color: #111827;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  
  letter-spacing: -0.96px;
}

.text-gradient {
  color: #862E84;
  font-weight: 800;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: #fce8b4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
}

.feature-icon img {
  width: 24px;
  height: 24px;
}

.btn-gradient {
  background: #A13E99;
  color: white;
  border: none;
  font-weight: 600;
  padding: 16px;
  border-radius: 12px;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
  color: white;
}

.profile-img {
  width: 100%;
  max-width: 280px;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
}

.badge-check {
  width: 28px;
  height: 28px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    
    color: #FFAF3D;
  }
}

.information-warp {
  position: relative;
  padding-top: 180px;
}

.pb-50 {
  padding-bottom: 50px;
}

.panelBox {
  display: flex;
  flex-direction: column;
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
  position: absolute;
  top: -30px;
  transform: translateX(-50%);
  left: 50%;
  z-index: 100;
  width: 95%;
  max-width: 1240px;
  overflow: hidden;
}

.title-strip {
  background: linear-gradient(135deg, #38003C 0%, #6B1B75 100%);
  padding: 15px 30px;
  text-align: center;
}

.title-strip h3 {
  color: white !important;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  
  letter-spacing: 0.5px;
}

.boxes-container {
  display: flex;
  padding: 30px;
  padding-left: 60px;
  gap: 30px;
  line-height: 15px;
}

.panelBox .box {
  flex: 1;
  width: 150px;
  display: flex;
  flex-direction: column;
}

.panelBox .box .logo {
  width: 100px;
}

.panelBox .box .icon {
  width: 25px;
  height: 25px;
}

.panelBox .box p {
  font-size: 22px;
  font-weight: bold;
  color: #38003C;
  margin-bottom: 0;
  line-height: 32px;
}

.panelBox .box span {
  font-size: 11px;
}

.video-box-wrapper {
  position: relative;
  padding: 30px;
  z-index: 1;
}

.video-section {
  position: relative;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-section:hover {
  transform: translateY(-5px);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  
  background: #0b0b1a;
  
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  
  z-index: 1;
}

.video-poster-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  
  background: transparent;
  z-index: 3;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-section:hover .video-poster-img {
  transform: scale(1.05);
}

.play-text {
  color: white;
  margin-top: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-badge-new {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 12px 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 5;
  transition: all 0.3s ease;
}

.video-badge-new:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.video-badge-new img {
  width: 50px;
  height: auto;
}

.badge-content {
  display: flex;
  flex-direction: column;
}

.badge-tag {
  font-size: 10px;
  color: #FFC065;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-title {
  font-size: 16px;
  color: white;
  font-weight: 600;
}

.decor-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

input[type="checkbox"] {
  display: none;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-direction: column;
}

.title-box {
  flex: 0 0 35%;
}

.title-box h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.2;
}

.highlight {
  color: #F1A63E;
}

.criteria-container {
  flex: 1;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
}

.criteria-item {
  display: flex;
  align-items: center;
  
  gap: 15px;
}

.icon-box {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #22c55e;
  
  border-radius: 50%;
}

.icon-box i {
  color: white;
  
  font-size: 24px;
  line-height: 1;
}

.criteria-item span {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  padding-top: 2px;
}

.map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
  z-index: 1;
}

.airplane-bg {
  position: absolute;
  top: 33%;
  left: 33%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
  color: #fff;
  overflow: hidden;
}

.airplane-bg svg {
  width: 100%;
  height: 100%;
  transform: rotate(45deg);
}

.info-group label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
  letter-spacing: 1px;
}

.info-group span {
  font-size: 16px;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.dark-text {
  color: #000;
  font-size: 15px !important;
}

.barcode {
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  overflow: hidden;
}

.barcode .bar {
  background-color: #000;
  height: 100%;
}

.status-link {
  color: #fff;
  font-weight: 700;
}

.gcc-school-section {
  padding: 80px 0;
  
  background-color: #f9fafb;
  overflow: hidden;
}

.section-header .title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: #0d0d25;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .highlight {
  color: #F1A63E;
  position: relative;
  display: inline-block;
}

/* .section-header .highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(241, 166, 62, 0.2);
  border-radius: 2px;
} */

.section-header .subtitle {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  color: #4b5563;
  line-height: 1.6;
}

.max-800 {
  max-width: 800px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.gcc-school-content {
  margin-top: 50px;
}

.gcc-image-box {
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.gcc-image-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.gcc-image-box img {
  border-radius: 10px;
}

.section-tag .badge {
  background: rgba(248, 202, 77, 0.1);
  color: #c49a1d;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(248, 202, 77, 0.2);
}

.title {
  font-size: 32px;
  font-weight: 700;
  color: #0d0d25;
  line-height: 1.2;
  text-transform: uppercase;
}

.highlight {
  color: #F1A63E;
}

.message-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #595970;
  margin-bottom: 20px;
}

.video-box-wrapper {
  position: relative;
  padding: 15px;
}

.cta-box .default-btn {
  background-color: #A13E99;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
  z-index: 0;
}

.bg-shape.shape-1 {
  width: 400px;
  height: 400px;
  background: #862E84;
  top: -100px;
  right: -100px;
}

.bg-shape.shape-2 {
  width: 300px;
  height: 300px;
  background: #F1A63E;
  bottom: -80px;
  left: -80px;
}

.bg-shape.shape-3 {
  width: 250px;
  height: 250px;
  background: #463772;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #0d0d25;
  margin-bottom: 15px;
  line-height: 1.3;
  text-transform: uppercase;
}

.highlight {
  color: #F1A63E;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #463772;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  background: rgba(252, 100, 65, 0.1);
  color: #fc6441;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(252, 100, 65, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.title {
  font-size: 32px;
  font-weight: 700;
  color: #0d0d25;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.highlight {
  background: linear-gradient(135deg, #F1A63E 0%, #F1A63E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.image-box {
  /* background: rgba(255, 255, 255, 0.7); */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 30px;
  /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05); */
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 100%;
}


.trend-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.floating-shape {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: #fc6441;
  top: -50px;
  right: -50px;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: #ffa089;
  bottom: -30px;
  left: -40px;
  animation: float 8s ease-in-out infinite alternate;
}

.bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#fc6441 0.5px, transparent 0.5px);
  background-size: 30px 30px;
  opacity: 0.1;
  z-index: 1;
}

.image-box-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.image-box-inner img {
  max-width: 100%;
  height: auto;
  flex: 1;
  min-width: 280px;
  
  object-fit: contain;
  border-radius: 10px;
}

.section-header {
  position: relative;
}

.badge {
  display: inline-block;
  background: rgba(252, 100, 65, 0.1);
  color: #fc6441;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(252, 100, 65, 0.2);
}

.title {
  font-size: 32px;
  font-weight: 800;
  color: #0d0d25;
  margin-bottom: 0;
  line-height: 1.2;
}

.highlight {
  background: linear-gradient(135deg, #F1A63E 0%, #F1A63E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  width: 60px;
  height: 4px;
  background: #fc6441;
  margin: 20px auto 0;
  border-radius: 10px;
}

.image-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  background: #ffffff;
  border-radius: 30px;
  padding: 10px;
  transition: transform 0.3s ease;
}

.mobileImageGraphImag {
  display: none;
}

.glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(252, 100, 65, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.comparison-warp {
  background-color: #EEECF4;
}

.table-responsive {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  overflow: hidden;
}

.title {
  font-size: 32px;
  font-weight: 700;
  color: #0d0d25;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.highlight {
  background: linear-gradient(135deg, #F1A63E 0%, #F1A63E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #F1A63E;
}

.feature-col-header {
  background-color: #38003c !important;
  color: #fff !important;
  width: 40% !important;
  text-align: left !important;
  border-top-left-radius: 8px !important;
}

.traditional-header {
  background-color: #474747 !important;
  color: #fff !important;
  width: 30% !important;
}

.gcc-header {
  background-color: #c89216 !important;
  color: #fff !important;
  width: 30% !important;
  border-top-right-radius: 8px !important;
  border: 1.784px solid var(--color-yellow-52, #D4AF37) !important;
  border-bottom: none !important;
}

.even-row {
  background-color: #EEECF4 !important;
}

.odd-row {
  background-color: #ffffff !important;
}

.feature-name {
  text-align: left !important;
  color: #333 !important;
}

.feature-name strong {
  font-weight: 700 !important;
  color: #000 !important;
}

.icon-check-green i {
  color: #28a745 !important;
  font-size: 24px !important;
}

.icon-cross-red i {
  color: #cf4f36 !important;
  font-size: 24px !important;
}

.icon-check-gold i {
  color: #c89216 !important;
  font-size: 24px !important;
}

.gcc-cell {
  background-color: rgba(200, 146, 22, 0.05) !important;
  border: 2px solid #D4AF37 !important;
}

.even-row .gcc-cell {
  background-color: rgba(200, 146, 22, 0.08) !important;
}

.odd-row .gcc-cell {
  background-color: rgba(255, 255, 255, 1) !important;
}

tr:last-child .gcc-cell {
  border-bottom: 2px solid #D4AF37 !important;
}

.traditional-cell {
  background-color: #f2f2f2 !important;
  border-right: 1px solid #d6d6d6 !important;
}

.even-row .traditional-cell {
  background-color: #e6e6e6 !important;
}

.section-title {
  margin-bottom: 50px;
}

.title {
  font-size: 32px;
  font-weight: 700;
  color: #0d0d25;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

/* .title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #F1A63E;
  margin: 15px auto 0;
  border-radius: 10px;
} */

.highlight {
  color: #F1A63E;
}

.section-title p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
}

.max-600 {
  max-width: 600px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.image-box {
  padding: 10px;
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-box img {
  max-width: 100%;
  height: auto;
  
  transition: all 0.3s ease;
}

.image-box:hover {
  transform: scale(1.05);
}

.image-box:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.section-title {
  margin-bottom: 50px;
}

.title {
  font-size: 32px;
  font-weight: 700;
  color: #0d0d25;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* .title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #F1A63E;
  margin: 15px auto 0;
  border-radius: 10px;
} */

.highlight {
  color: #F1A63E;
}

.section-title p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
}

.max-600 {
  max-width: 600px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.image-box {
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-box img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.section-title {
  margin-bottom: 50px;
}

.title {
  font-size: 32px;
  font-weight: 700;
  color: #0d0d25;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* .title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #F1A63E;
  margin: 15px auto 0;
  border-radius: 10px;
} */

.highlight {
  color: #F1A63E;
}

.section-title p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
}

.max-600 {
  max-width: 600px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.image-box {
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-box img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.fun-fact-warp {
  background-color: #fff;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 23px;
  line-height: 1.1;
}

.section-title .highlight {
  color: #d97706;
}

.section-title p {
  color: #475569;
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 500;
}

.section-title .sub-highlight {
  color: #7c3aed;
  
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}

.max-600 {
  max-width: 850px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.fun-fact-item {
  flex: 0 0 auto;
}

.fun-fact-card {
    width: 189px;
    height: 116px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.fun-fact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #e2e8f0;
}

.fun-fact-card .icon {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fun-fact-card .icon img {
  max-width: 140px;
  max-height: 65px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.scroll-right {
  animation: scrollRight 40s linear infinite;
}

.scroll-left {
  animation: scrollLeft 40s linear infinite;
}

.section-header {
  margin-bottom: 50px;
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  color: #0d0d25;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

/* .section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #F1A63E, #A13E99);
  margin: 16px auto 0;
  border-radius: 10px;
} */

.highlight {
  color: #F1A63E;
}

:deep(.swiper-slide) {
  height: auto;
}

.news-image {
  position: relative;
  overflow: hidden;
  height: 210px;
  flex-shrink: 0;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}

.meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(161, 62, 153, 0.1);
  border-radius: 50%;
  transition: background 0.3s ease;
  font-size: 13px;
}

.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
}

:deep(.news-pagination .swiper-pagination-bullet) {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

:deep(.news-pagination .swiper-pagination-bullet-active) {
  background: linear-gradient(135deg, #A13E99, #F1A63E);
  width: 28px;
  border-radius: 6px;
}

.trust-ecosystem-section {
  padding: 50px 0;
  background-color: #ffffff;
}

.header-v2 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.title {
  font-size: 32px;
  font-weight: 700;
  color: #0d0d25;
  margin-bottom: 5px;
  letter-spacing: -0.1px;
  text-transform: uppercase;
}

.highlight {
  color: #F1A63E;
}

.header-line {
  width: 220px;
  height: 5px;
  background-color: #f8ca4d;
  border-radius: 0;
}

.header-logo {
  height: 45px;
  width: auto;
}

.card-content {
  color: #ffffff;
}

.number {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #ffffff !important;
}

.label {
  font-size: 13px;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.2;
}

.sub-label {
  font-size: 11px;
  margin-bottom: 0;
  opacity: 0.9;
  font-weight: 400;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin-top: 8px;
}

.tags span {
  font-size: 9px;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.color-1 {
  background-color: #2b2b62;
}

.color-2 {
  background-color: #510060;
}

.color-3 {
  background-color: #5a3ba3;
}

.color-4 {
  background-color: #a33c8c;
}

.color-5 {
  background-color: #1e1e4a;
}

.color-6 {
  background-color: #5a006b;
}

.color-7 {
  background-color: #4b2d8c;
}

.color-8 {
  background-color: #9c2e78;
}

.color-9 {
  background-color: #1a1a40;
}

.color-10 {
  background-color: #4b0059;
}

.color-11 {
  background-color: #3e1b7a;
}

.color-12 {
  background-color: #8a3485;
}

.color-13 {
  background-color: #1a1a45;
}

.color-14 {
  background-color: #3a0050;
}

.color-15 {
  background-color: #311c5d;
}

.color-16 {
  background-color: #9e368c;
}

.highlight {
  color: #F1A63E;
}

.apply-now-li {
  display: flex;
  align-items: center;
}

.address-item h6 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #f8ca4d !important;
}

.address-item p {
  font-size: 13px;
  line-height: 1.6;
  color: #c5c5cf;
  margin-bottom: 0;
}

.social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  gap: 12px;
}

.social-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-list li a img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  
  transition: all 0.3s ease;
}

.social-list li a:hover {
  background: var(--primary, #f8ca4d);
  transform: translateY(-3px);
  border-color: var(--primary, #f8ca4d);
}

.social-list li a:hover img {
  filter: brightness(0);
}

.text-sm-muted {
  font-size: 0.82rem !important;
  color: #888 !important;
}

.text-purple {
  color: #8A2BE2;
}

.text-purple {
  color: #8A2BE2;
}


@media only screen and (min-width: 1400px) and (max-width: 1899px) {
  .container-fluid {
    max-width: 1320px;
  }

  .inner-hero2-style {
    margin: 0;
        margin-top: 0 !important;
        z-index: 1;
        background-size: cover;
  }

  .inner-hero2-style.bg-1 {
    background-image: url(../img/heros/style3-hero1-responsive.png);
  }

  .inner-hero2-style.bg-2 {
    background-image: url(../img/heros/style3-hero2-responsive.jpg);
  }

  .inner-hero2-style.bg-3 {
    background-image: url(../img/heros/style3-hero3-responsive.jpg);
  }

  .transparent-bg.sticky .sticky-logo {
    display: block;
  }

  .transparent-bg .sticky-logo {
    display: block;
  }

  .transparent-bg .style3-logo {
    display: none;
  }

  .transparent-bg .header-contact {
    padding-left: 0;
  }

  .top-header-warp.style3 .container-fluid {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }

  .inner-hero2-style {
    background-size: cover;
        padding-top: 405px;
        margin: 0;
        padding-bottom: 20px;
        margin-top: 0 !important;
  }

  .inner-hero2-style::before {
    content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        height: 48%;
        width: 48%;
        border-radius: 0 20px 0 0;
        background-color: #ffffff;
  }

  .hero-style3-warp .tabs .nav-tabs {
    width: 450px;
  }

  .choose-card {
    padding: 35px 20px;
  }

  .choose-card p {
    font-size: 15px;
  }

  .hero-style2-warp {
    padding-bottom: 120px;
        padding-top: 235px;
  }

  .sustainability-image {
    margin-left: 60px;
        margin-right: 0;
        padding-left: 45px;
  }

}

@media (max-width: 1200px) {
  .title-strip h3 {
    font-size: 16px;
  }

  .boxes-container {
    padding-left: 30px;
        gap: 15px;
        padding-bottom: 20px;
  }

  .panelBox .box p {
    font-size: 18px;
        line-height: 24px;
  }

  .title-box h2 {
    font-size: 28px;
  }

  .title {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .title {
    font-size: 28px;
  }

  .title {
    font-size: 28px;
  }

  .title {
    font-size: 28px;
  }

}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .container-fluid {
    max-width: 1140px;
  }

  .top-header-warp .container-fluid {
    max-width: 100% !important;
  }

  .culture-warp .container-fluid {
    max-width: 1140px;
        padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
        padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  }

  .choose-warp .container-fluid {
    max-width: 1140px;
  }

  .places-warp .container-fluid {
    max-width: 1140px;
        padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
        padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  }

  .top-header-warp.style3 .container-fluid {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }

  .inner-hero2-style {
    margin: 0;
        margin-top: 0 !important;
        z-index: 1;
        background-size: cover;
  }

  .inner-hero2-style.bg-1 {
    background-image: url(../img/heros/style3-hero1-responsive.png);
  }

  .inner-hero2-style.bg-2 {
    background-image: url(../img/heros/style3-hero2-responsive.jpg);
  }

  .inner-hero2-style.bg-3 {
    background-image: url(../img/heros/style3-hero3-responsive.jpg);
  }

  .transparent-bg.sticky .sticky-logo {
    display: block;
  }

  .transparent-bg .sticky-logo {
    display: block;
  }

  .transparent-bg .style3-logo {
    display: none;
  }

  .transparent-bg .header-contact {
    padding-left: 0;
  }

  .inner-hero2-style {
    background-size: cover;
        padding-top: 305px;
        margin: 0;
        padding-bottom: 20px;
        margin-top: 0 !important;
  }

  .inner-hero2-style::before {
    content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        height: 48%;
        width: 48%;
        border-radius: 0 20px 0 0;
        background-color: #ffffff;
  }

  .hero-style3-warp .tabs .nav-tabs {
    width: 450px;
  }

  .hero-style3-content {
    max-width: 502px;
        position: relative;
        top: 0;
  }

  .hero-style3-content h1 {
    font-size: 45px;
        letter-spacing: 2.4px;
        margin-bottom: 5px;
  }

  .about-style2-warp .about-logo {
    right: 2%;
  }

  .fun-fact-card p {
    padding-right: 0;
  }

  .col-lg-3:nth-child(2) .fun-fact-card {
    margin-left: 0;
  }

  .col-lg-3:nth-child(3) .fun-fact-card {
    margin-left: 30px;
  }

  .col-lg-3:nth-child(4) .fun-fact-card {
    margin-left: 30px;
  }

  .choose-card {
    padding: 30px 20px;
  }

  .choose-card p {
    margin-bottom: 12px;
        font-size: 15px;
  }

  .choose-card .choose-link span {
    font-size: 14px;
  }

  .sustainability-image {
    margin-left: 0;
        margin-right: 0;
        padding-left: 0;
  }

  .program-content .search-list {
    display: block;
        margin-right: -25px;
  }

  .program-content .program-list {
    margin-left: 0;
  }

  .information li {
    width: 300px;
  }

  .apply-card {
    padding: 35px 25px;
  }

  .event-widget h3 {
    font-size: 18px;
        margin-bottom: 15px;
  }

  .hero-style2-warp {
    padding-bottom: 130px;
        padding-top: 130px;
  }

}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .container-fluid {
    max-width: 960px;
  }

  .culture-warp .container-fluid {
    max-width: 960px;
        padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
        padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  }

  .choose-warp .container-fluid {
    max-width: 960px;
  }

  .places-warp .container-fluid {
    max-width: 960px;
        padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
        padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  }

  .default-btn {
    font-size: 15px;
        padding: 20px;
  }

  .top-header-link-details .header-account {
    padding-left: 15px;
  }

  .top-header-link-details .header-account li {
    padding-right: 15px;
  }

  .top-header-link-details .header-account li:last-child {
    padding-left: 18px;
        padding-right: 0;
  }

  .top-header-link-details .header-link {
    padding-right: 18px;
  }

  .top-header-link-details .header-link li {
    padding-right: 15px;
  }

  .top-header-details .header-contact {
    padding-left: 15px;
  }

  .top-header-details .header-contact li {
    font-size: 12px;
        font-weight: 500;
        padding-left: 18px;
        padding-right: 20px;
  }

  .top-header-details .header-contact li i {
    top: 2px;
  }

  .top-header-details .social-list {
    padding-right: 25px;
  }

  .information li {
    width: 270px;
        padding: 20px;
  }

  .program-images .big-image {
    padding-right: 0;
  }

  .program-images .logo-content .logo {
    width: 70px;
        height: 65px;
  }

  .program-content {
    padding-left: 15px;
        padding-right: 0;
  }

  .program-content .program-list {
    margin-left: 10px;
  }

  .program-content .search-list {
    font-size: 14px;
        display: block;
        margin-right: -90px;
  }

  .mission-warp .mission-image {
    padding-left: 0;
        padding-right: 0;
  }

  .mission-tab {
    padding-right: 15px;
  }

  .mission-content {
    padding-left: 0;
  }

  .mission-content h3 {
    margin-bottom: 20px;
  }

  .mission-content .mission-box .mission-link {
    margin-bottom: 40px;
  }

  .fun-fact-card .icon .style {
    margin-right: 12px;
        width: 40px;
  }

  .fun-fact-card h2 {
    font-size: 30px;
  }

  .fun-fact-card p {
    font-size: 14px;
        letter-spacing: 1px;
        margin-top: 15px;
        padding-right: 0;
  }

  .col-lg-3:nth-child(2) .fun-fact-card {
    margin-left: 0;
  }

  .col-lg-3:nth-child(3) .fun-fact-card {
    margin-left: 0;
  }

  .col-lg-3:nth-child(4) .fun-fact-card {
    margin-left: 0;
  }

  .features-item .content h3 {
    font-size: 16px;
        margin-bottom: 15px;
        font-weight: 600;
  }

  .information-image {
    padding-left: 145px;
        position: relative;
  }

  .information-image .small-image {
    bottom: 20px;
  }

  .information-content .info-link-chat .chat-list {
    display: flex;
  }

  .culture-box .content {
    padding: 15px 22px;
        max-width: 380px;
  }

  .culture-box .content h3 {
    font-size: 18px;
        margin-bottom: 10px;
  }

  .culture-box .content p {
    font-size: 14px;
        margin-bottom: 10px;
  }

  .culture-box .content .culture-link {
    font-size: 14px;
  }

  .academic-item {
    padding: 25px 15px 25px 15px;
  }

  .academic-item .academic-card h3 {
    font-size: 18px;
        margin-bottom: 20px;
  }

  .academic-item .academic-card .default-btn {
    font-size: 15px;
        padding: 16px;
  }

  .academic-box h3 {
    font-size: 20px;
        margin-bottom: 10px;
  }

  .academic-slider-warp {
    padding: 20px 15px 20px 15px;
  }

  .academic-option .content {
    padding-bottom: 20px;
        margin-bottom: 20px;
  }

  .academic-option .content h3 {
    font-size: 18px;
        margin-bottom: 16px;
  }

  .academic-option .content .academic-link {
    font-size: 14px;
        margin-bottom: 6px;
  }

  .academic-option .academic-date .date-link {
    font-size: 14px;
  }

  .recognized-content {
    padding-left: 30px;
  }

  .recognized-content h2 {
    font-size: 28px;
        margin-bottom: 15px;
  }

  .recognized-content p {
    margin-bottom: 15px;
  }

  .choose-card {
    padding: 20px 15px;
  }

  .choose-card h3 {
    font-size: 20px;
        margin-bottom: 12px;
  }

  .choose-card p {
    margin-bottom: 15px;
        font-size: 13px;
  }

  .choose-card .choose-link {
    font-size: 12px;
  }

  .service-image {
    padding-left: 0;
        position: relative;
  }

  .service-image .service-counter {
    left: -90px;
  }

  .service-content {
    padding-right: 30px;
  }

  .service-content h2 {
    font-size: 30px;
        letter-spacing: normal;
  }

  .image-blog-card .content h3 {
    font-size: 18px;
        margin-bottom: 0;
  }

  .blog-content-widget {
    padding-left: 0;
  }

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

  .content-blog-card .default-btn {
    padding: 15px 20px;
  }

  .top-header-warp.style3 .container-fluid {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }

  .inner-hero2-style {
    margin: 0;
        margin-top: 0 !important;
        z-index: 1;
        background-size: cover;
  }

  .inner-hero2-style.bg-1 {
    background-image: url(../img/heros/style3-hero1-responsive.png);
  }

  .inner-hero2-style.bg-2 {
    background-image: url(../img/heros/style3-hero2-responsive.jpg);
  }

  .inner-hero2-style.bg-3 {
    background-image: url(../img/heros/style3-hero3-responsive.jpg);
  }

  .transparent-bg.sticky .sticky-logo {
    display: block;
  }

  .transparent-bg .sticky-logo {
    display: block;
  }

  .transparent-bg .style3-logo {
    display: none;
  }

  .inner-hero2-style {
    background-size: cover;
        padding-top: 305px;
        margin: 0;
        padding-bottom: 20px;
        margin-top: 0 !important;
  }

  .inner-hero2-style::before {
    content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 48%;
        width: 48%;
        border-radius: 0 20px 0 0;
        background-color: #ffffff;
  }

  .hero-style3-warp .tabs .nav-tabs {
    width: 450px;
  }

  .hero-style3-content {
    max-width: 445px;
        position: relative;
        top: 0;
  }

  .hero-style3-content h1 {
    font-size: 30px;
        letter-spacing: 1.4px;
        margin-bottom: 5px;
  }

  .hero-style3-content p {
    font-size: 14px;
  }

  .only-992-device-none {
    display: none;
  }

  .only-992-device {
    display: block;
  }

  .about-style2-warp .about-logo {
    right: 2%;
  }

  .about-style2-content {
    padding-left: 0;
  }

  .program-content.style2 {
    padding-left: 0;
        padding-right: 0;
  }

  .management-warp .management-slider-warp .swiper {
    margin-right: 0;
  }

  .col-lg-6:nth-child(2) .undergraduate-widget {
    margin-left: 110px;
  }

  .news-optional-item {
    padding: 25px 15px 20px 15px;
  }

  .news-optional-item .news-item .image {
    width: 70px;
        height: 70px;
  }

  .news-optional-item .news-item .content {
    margin-left: 12px;
  }

  .news-optional-item .news-item .content h3 {
    font-size: 16px;
        margin-bottom: 12px;
  }

  .news-optional-item .news-item .content .news-link {
    font-size: 12px;
  }

  .event-plan-widget .image {
    width: 210px;
        height: 170px;
  }

  .enquiry-content .enquiry-link {
    font-size: 15px;
        margin-bottom: 40px;
  }

  .enquiry-content .enquiry-shape {
    width: 100px;
  }

  .enquiry-content h4 {
    font-size: 16px;
        margin-bottom: 5px;
  }

  .enquiry-content .content {
    padding-left: 15px;
  }

  .sustainability-image {
    margin-left: 0;
        margin-right: 0;
        padding-left: 0;
  }

  .map-content h2 {
    font-size: 24px;
        padding-right: 50px;
  }

  .admission-content {
    padding-left: 0;
  }

  .hero-style2-warp {
    padding-bottom: 130px;
        padding-top: 200px;
  }

  .hero-style2-warp::after {
    content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        z-index: -1;
        opacity: 50%;
        background: linear-gradient(90deg, #dee1e6 0%, #e5e6ea 17.57%, #ebecf0 34.86%, #e8e9ed 52.23%, #e7e8ec 65.17%, #d7dadf 97.75%);
  }

  .about-content {
    padding-right: 0;
  }

  .apply-card {
    padding: 30px;
  }

  .apply-card h3 {
    padding-right: 30px;
  }

  .apply-card .icon {
    width: 40px;
        margin-bottom: 18px;
  }

  .apply-card p {
    font-size: 14px;
  }

  .facilities-details-widget {
    padding-right: 40px;
  }

  .inner-hero-content h1 {
    font-size: 25px;
        letter-spacing: 1px;
        margin-bottom: 0;
  }

  .inner-all-pages .about-pages-list li {
    padding-right: 0;
        margin: 4px;
  }

  .inner-all-pages .about-pages-list li a::before {
    top: -7px;
        width: 15px;
        height: 15px;
        line-height: 24px;
        font-size: 10px;
        color: #5ca89f;
  }

  .article-item .image {
    width: 70px;
        height: auto;
  }

  .article-item .content {
    margin-left: 12px;
  }

  .article-item .content h3 {
    font-size: 15px;
        margin-bottom: 12px;
        padding-right: 0;
  }

  .article-item .content .news-link {
    font-size: 12px;
  }

  .article-item.style2 {
    margin-left: 0;
  }

  .international-support-image .round-shape {
    top: -35px;
        right: 69px;
  }

  .international-support-image .small-image {
    bottom: 25px;
  }

  .international-support-content .international-info .item-two h4 {
    font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
  }

  .international-support-content .international-info .item-one h4 {
    font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
  }

  .faculty-list li {
    font-size: 16px;
  }

}

@media (max-width: 991px) {
  .apply-now-btn {
    text-align: center;
        width: fit-content;
  }

  .panelBox {
    position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: -100px auto 40px;
        width: 100%;
  }

  .title-strip {
    padding: 12px 20px;
  }

  .title-strip h3 {
    font-size: 14px;
  }

  .boxes-container {
    display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 20px;
  }

  .video-section {
    border-radius: 20px;
  }

  .video-badge-new {
    bottom: 20px;
        left: 20px;
        padding: 10px 15px;
  }

  .video-badge-new img {
    width: 40px;
  }

  .title-box h2 {
    font-size: 26px;
  }

  .content-wrapper {
    flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
  }

  .title-box {
    width: 100%;
        text-align: center;
  }

  .criteria-container {
    width: 100%;
  }

  .criteria-grid {
    gap: 20px;
  }

  .criteria-item {
    justify-content: flex-start;
  }

  .gcc-school-section {
    padding: 60px 0;
  }

  .gcc-school-content {
    margin-top: 40px;
  }

  .title {
    font-size: 24px;
  }

  .message-text p {
    font-size: 16px;
  }

  .title {
    text-align: center;
  }

  .section-title {
    font-size: 24px;
  }

  .title {
    font-size: 24px;
  }

  .image-box {
    padding: 30px;
  }

  .title {
    font-size: 24px;
  }

  .title {
    font-size: 24px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .title {
    text-align: center;
  }

  .trust-ecosystem-section {
    padding: 30px 0;
  }

  .apply-now-li {
    grid-column: 2;
  }

  .address-item {
    margin-bottom: 30px;
  }

}

@media only screen and (max-width: 991px) {
  .container-fluid {
    max-width: 540px;
  }

  .culture-warp .container-fluid {
    max-width: 540px;
        padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
        padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  }

  .choose-warp .container-fluid {
    max-width: 540px;
  }

  .places-warp .container-fluid {
    max-width: 540px;
        padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
        padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  }

  .style3-video-warp .container-fluid {
    max-width: 540px;
  }

  body {
    font-size: 14px;
  }

  p {
    font-size: 14px;
  }

  .default-btn {
    font-size: 14px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 14px;
        padding-bottom: 14px;
  }

  .default-btn i {
    top: 4px;
        margin-left: 5px;
        left: -1px;
        font-size: 18px;
  }

  .pt-130 {
    padding-top: 60px;
  }

  .pt-100 {
    padding-top: 60px;
  }

  .pb-130 {
    padding-bottom: 60px;
  }

  .pt-80 {
    padding-top: 60px;
  }

  .ptb-100 {
    padding-top: 50px;
        padding-bottom: 50px;
  }

  .ptb-80 {
    padding-top: 50px;
        padding-bottom: 50px;
  }

  .pb-100 {
    padding-bottom: 60px;
  }

  .pb-80 {
    padding-bottom: 60px;
  }

  .g-5,
    .gx-5 {
    --bs-gutter-x: 1.5rem !important;
  }

  .section-warp {
    margin-bottom: 20px;
  }

  .section-warp .heading-content {
    margin-bottom: 15px;
  }

  .section-warp .heading-content h2 {
    font-size: 22px;
        margin-bottom: 0;
  }

  .section-warp .paragraph-content {
    margin-left: 0;
  }

  .section-title {
    margin-bottom: 35px;
  }

  .section-title h2 {
    font-size: 22px;
        margin-bottom: 0;
  }

  .all-shapes {
    display: none;
  }

  .top-header-details {
    display: block;
  }

  .top-header-details .social-list {
    padding-right: 0;
        margin-bottom: 5px;
  }

  .top-header-details .social-list::before {
    display: none;
  }

  .top-header-details .social-list li .icon {
    filter: brightness(0) saturate(100%) invert(26%) sepia(24%) saturate(1750%) hue-rotate(199deg) brightness(92%) contrast(99%);
  }

  .top-header-details .header-contact {
    padding-left: 0;
        margin-bottom: 5px;
  }

  .top-header-link-details {
    display: block;
  }

  .top-header-link-details .header-link {
    padding-right: 0;
        position: relative;
        margin-bottom: 5px;
  }

  .top-header-link-details .header-link li {
    padding-right: 20px;
  }

  .top-header-link-details .header-link::before {
    display: none;
  }

  .top-header-link-details .header-account {
    padding-left: 0;
  }

  .top-header-link-details .header-account li:last-child i {
    top: 5px;
  }

  .update-link {
    position: relative;
        right: 0;
        bottom: 0;
  }

  .information {
    list-style: none;
        padding-left: 0;
        margin-bottom: 20px;
        display: block;
        position: relative;
  }

  .information li {
    display: inline-block;
        width: 100%;
        text-align: center;
        padding: 15px;
        margin-bottom: 10px;
  }

  .information li:last-child {
    margin-bottom: 0;
  }

  .program-images .logo-content {
    margin-right: 0;
        margin-top: 25px;
        padding: 15px;
  }

  .program-images .big-image {
    padding-right: 0;
  }

  .program-content {
    padding-left: 0;
        padding-right: 0;
  }

  .program-content h2 {
    font-size: 22px;
        margin-bottom: 10px;
  }

  .program-content .program-list {
    padding-left: 0;
        margin-left: 0;
        margin-bottom: 0;
  }

  .program-content .program-item {
    margin-top: 20px;
        padding: 20px;
        display: block !important;
  }

  .program-content .program-item .content {
    padding-left: 0;
        margin-top: 10px;
  }

  .program-content .program-item .icon {
    right: 40px;
        top: 40px;
  }

  .mission-tab {
    display: block;
        padding-right: 0;
  }

  .mission-tab .tablinks {
    margin-bottom: 14px;
        padding: 5px 5px 5px 20px;
  }

  .mission-tab .tablinks .mission-tab-btn .icon {
    width: 30px;
        height: 30px;
        line-height: 34px;
  }

  .mission-warp .mission-image {
    padding-left: 0;
        padding-right: 0;
        margin-bottom: 25px;
  }

  .mission-content {
    padding-left: 0;
  }

  .mission-content h3 {
    font-size: 20px;
        margin-bottom: 15px;
  }

  .mission-content .mission-box .icon {
    margin-bottom: 10px;
  }

  .mission-content .mission-box h5 {
    font-size: 18px;
        margin-bottom: 8px;
  }

  .mission-content .mission-box p {
    margin-bottom: 10px;
  }

  .mission-content .mission-box .mission-link {
    margin-bottom: 25px;
  }

  .fun-fact-card .icon.style {
    margin-right: 12px;
  }

  .fun-fact-card .icon.style img {
    height: 40px;
  }

  .fun-fact-card h2 {
    font-size: 26px;
  }

  .fun-fact-card p {
    font-size: 14px;
        margin-top: 12px;
        padding-right: 0;
  }

  .col-lg-3:nth-child(2) .fun-fact-card {
    margin-left: 0;
  }

  .col-lg-3:nth-child(3) .fun-fact-card {
    margin-left: 0;
  }

  .col-lg-3:nth-child(3) .fun-fact-card {
    margin-left: 0;
  }

  .col-lg-3:nth-child(4) .fun-fact-card {
    margin-left: 0;
  }

  .features-box {
    margin-bottom: 30px;
  }

  .features-box .content h3 {
    font-size: 18px;
        margin-bottom: 12px;
        padding-right: 0;
  }

  .features-box .content .features-link {
    font-size: 14px;
  }

  .features-box video {
    height: 100%;
  }

  .features-item {
    padding-left: 0;
        margin-bottom: 25px;
        display: block !important;
  }

  .features-item .image {
    width: 100%;
        height: auto;
  }

  .features-item .content {
    margin-left: 0;
        margin-top: 20px;
  }

  .features-item .content h3 {
    font-size: 18px;
        margin-bottom: 8px;
  }

  .features-item .content .features-link {
    font-size: 14px;
  }

  .features-item-link {
    display: flex;
        margin-left: 0;
        padding: 20px;
  }

  .features-item-link .icon {
    width: 35px;
        height: 35px;
  }

  .features-item-link .content {
    padding-left: 20px;
  }

  .features-item-link .content p {
    font-size: 14px;
        margin-bottom: 5px;
  }

  .features-item-link .content .features-link {
    font-size: 14px;
  }

  .information-content h2 {
    font-size: 22px;
        letter-spacing: 1px;
        margin-bottom: 10px;
  }

  .information-content .information-list {
    margin-bottom: 20px;
        margin-top: 15px;
  }

  .information-content .information-list li {
    padding-left: 22px;
        margin-bottom: 5px;
  }

  .information-content .information-list li i {
    top: 4px;
        font-size: 16px;
  }

  .information-content .info-button .style2 {
    margin-bottom: 15px;
  }

  .information-content .info-link-chat {
    display: block;
  }

  .information-content .info-link-chat .content {
    margin-left: 0;
        margin-top: 12px;
  }

  .information-content .info-link-chat .content .chat-link {
    font-size: 14px;
  }

  .information-image {
    padding-left: 0;
  }

  .information-image .small-image {
    position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin-top: 20px;
  }

  .information-image .small-image .information {
    width: 100%;
        height: 100%;
        margin-bottom: 0;
  }

  .information-image .round-shape {
    display: none;
  }

  .culture-box {
    margin-bottom: 20px;
  }

  .culture-box .content {
    position: relative;
        bottom: 0;
        left: 0;
        max-width: 100%;
        padding: 15px 20px;
        background: #000000;
        opacity: 1;
  }

  .culture-box .content h3 {
    font-size: 18px;
        margin-bottom: 10px;
  }

  .col-lg-6:nth-child(2) .culture-box {
    margin-bottom: 0;
  }

  .academic-item {
    padding: 25px 20px 25px 20px;
  }

  .academic-item .academic-card h3 {
    font-size: 18px;
        margin-bottom: 16px;
  }

  .academic-box h3 {
    font-size: 18px;
        margin-bottom: 8px;
  }

  .academic-box p {
    padding-bottom: 0;
  }

  .academic-slider-warp {
    padding: 20px 20px 20px 15px;
  }

  .academic-option .content {
    padding-bottom: 20px;
        margin-bottom: 20px;
  }

  .academic-option .content h3 {
    font-size: 18px;
        margin-bottom: 12px;
  }

  .academic-option .academic-date .date-link {
    font-size: 13px;
  }

  .recognized-image {
    margin-bottom: 20px;
  }

  .recognized-content {
    padding-left: 0;
        margin-bottom: 25px;
  }

  .recognized-content h2 {
    letter-spacing: 1px;
        font-size: 22px;
        margin-bottom: 12px;
  }

  .recognized-content p {
    margin-bottom: 12px;
  }

  .choose-card {
    padding: 25px;
  }

  .choose-card h3 {
    font-size: 18px;
        margin-bottom: 10px;
  }

  .choose-card p {
    margin-bottom: 12px;
  }

  .service-content {
    padding-right: 0;
  }

  .service-content h2 {
    font-size: 22px;
        margin-bottom: 15px;
        letter-spacing: normal;
  }

  .service-content .service-list {
    margin-top: 20px;
  }

  .service-image {
    padding-left: 0;
  }

  .service-image .image.style2 {
    margin-top: 30px;
  }

  .service-image .service-counter {
    padding: 30px;
        max-width: 100%;
        position: relative;
        bottom: 0;
        left: 0;
  }

  .image-blog-card .content {
    bottom: 20px;
        left: 20px;
        right: 20px;
  }

  .image-blog-card .content h3 {
    font-size: 18px;
        margin-bottom: 0;
  }

  .blog-content-widget {
    padding-left: 0;
  }

  .content-blog-card h3 {
    font-size: 18px;
        margin-bottom: 12px;
  }

  .blog-content-widget .blog-donate {
    padding: 20px;
  }

  .blog-content-widget .blog-donate .icon {
    width: 50px;
        height: 50px;
        line-height: 50px;
  }

  .blog-content-widget .blog-donate .content {
    padding-left: 18px;
  }

  .blog-content-widget .blog-donate .content h6 {
    font-size: 14px;
        margin-bottom: 5px;
  }

  .blog-content-widget .blog-donate .content .donate-link i {
    top: 4px;
  }

  .hero-style2-warp {
    padding-bottom: 60px;
        padding-top: 60px;
  }

  .hero-style2-warp .hero-item-box {
    padding: 20px;
        position: relative;
        right: 0;
        bottom: 0;
  }

  .hero-style2-warp .hero-item-box .image {
    width: 80px;
        height: 100px;
  }

  .hero-style2-warp .hero-item-box .content {
    margin-left: 15px;
  }

  .hero-style2-warp .hero-item-box .content h4 {
    font-size: 14px;
        margin-bottom: 8px;
  }

  .hero-style2-warp::before {
    opacity: 25%;
  }

  .hero-style2-warp .big-size-text {
    display: none;
  }

  .hero-style2-content {
    margin-bottom: 20px;
  }

  .hero-style2-content h2 {
    font-size: 22px;
        margin-bottom: 10px;
  }

  .hero-style2-content h2 span {
    margin-right: 0;
  }

  .hero-style2-content p {
    margin-bottom: 15px;
        padding-right: 0;
  }

  .about-logo-content {
    display: block;
  }

  .about-logo-content .logo {
    margin-bottom: 20px;
  }

  .about-logo-content .content {
    margin-left: 0;
        max-width: 100%;
  }

  .about-logo-content .content h3 {
    font-size: 22px;
        margin-bottom: 8px;
  }

  .about-content {
    padding-right: 0;
  }

  .find-program-warp {
    padding-top: 60px;
  }

  .find-program-warp.style2 {
    padding-top: 60px;
  }

  .program-content.style2 {
    padding-left: 0;
        padding-right: 0;
  }

  .program-images.style2 {
    padding-left: 0;
  }

  .news-optional-item {
    padding: 20px;
  }

  .news-optional-item .news-item {
    margin-bottom: 20px;
  }

  .news-optional-item .news-item .image {
    width: 90%;
        height: 100%;
  }

  .news-optional-item .news-item .content {
    margin-left: 8px;
  }

  .news-optional-item .news-item .content h3 {
    font-size: 16px;
  }

  .news-optional-item .news-item .content .news-link {
    font-size: 12px;
  }

  .news-optional-item .news-item .content .news-link i {
    left: 0;
        font-size: 14px;
  }

  .admission-content {
    padding-left: 0;
  }

  .admission-content h3 {
    font-size: 22px;
        letter-spacing: normal;
        margin-bottom: 5px;
  }

  .admission-content p {
    margin-bottom: 20px;
  }

  .admission-content .admission-list li {
    padding-bottom: 8px;
        margin-bottom: 8px;
  }

  .admission-content .admission-list li:first-child {
    padding-top: 8px;
  }

  .admission-image {
    padding-right: 0;
  }

  .apply-card {
    padding: 25px;
  }

  .apply-card .icon {
    margin-bottom: 15px;
        height: 40px;
        width: 40px;
  }

  .apply-card h3 {
    font-size: 18px;
        margin-bottom: 10px;
  }

  .apply-card p {
    margin-bottom: 15px;
  }

  .inner-video {
    height: 100%;
  }

  .inner-video video {
    width: 100%;
        height: 100%;
  }

  .inner-video .video-btn {
    display: none;
  }

  .student-review-warp .section-warp h2 {
    font-size: 16px;
        margin-bottom: 0;
  }

  .student-review-slider-warp .swiper-pagination1 {
    margin-top: 30px;
  }

  .event-widget {
    padding: 20px;
  }

  .event-widget h3 {
    font-size: 18px;
        margin-bottom: 12px;
  }

  .event-slider-warp .swiper-pagination3 {
    margin-top: 25px;
  }

  .question-content {
    margin-bottom: 25px;
  }

  .question-content h2 {
    font-size: 22px;
        margin-bottom: 20px;
  }

  .question-content .tabs .nav-tabs {
    margin-bottom: 25px !important;
  }

  .question-content .accordion-question .accordion-item .accordion-button {
    font-size: 14px;
        padding-top: 10px;
        padding-bottom: 12px;
  }

  .question-images {
    padding-left: 0;
  }

  .luva-inner-widget .blog-donate {
    padding: 20px;
  }

  .luva-inner-widget .blog-donate .icon {
    width: 50px;
        height: 50px;
        line-height: 50px;
  }

  .luva-inner-widget .blog-donate .content {
    padding-left: 18px;
  }

  .luva-inner-widget .blog-donate .content h6 {
    font-size: 14px;
        margin-bottom: 5px;
  }

  .luva-inner-widget .blog-donate .content .donate-link i {
    top: 4px;
  }

  .top-header-warp.style3 .container-fluid {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }

  .transparent-bg.sticky .sticky-logo {
    display: block;
  }

  .transparent-bg .sticky-logo {
    display: block;
  }

  .transparent-bg .style3-logo {
    display: none;
  }

  .inner-hero2-style {
    padding-top: 60px;
        margin: 0;
        padding-bottom: 20px;
        margin-top: 0 !important;
        z-index: 1;
        background-size: cover;
  }

  .inner-hero2-style::before {
    content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 80%;
        background-color: #fff;
  }

  .inner-hero2-style.bg-1 {
    background-image: url(../img/heros/style3-hero1-responsive.png);
  }

  .inner-hero2-style.bg-2 {
    background-image: url(../img/heros/style3-hero2-responsive.jpg);
  }

  .inner-hero2-style.bg-3 {
    background-image: url(../img/heros/style3-hero3-responsive.jpg);
  }

  .hero-style3-content h1 {
    font-size: 25px;
        letter-spacing: 1px;
        margin-bottom: 5px;
  }

  .hero-style3-warp .tabs .nav-tabs {
    position: relative;
        width: 100%;
        padding: 0;
        bottom: 0;
        z-index: 99;
        right: 0;
        background: rgba(221, 221, 221, 0.6);
  }

  .about-style2-image {
    position: relative;
        padding-right: 0;
  }

  .about-style2-image .image.style2 {
    margin-top: 25px;
  }

  .about-style2-image .round-shape {
    display: none;
  }

  .about-style2-content {
    padding-left: 0;
        padding-top: 20px;
  }

  .about-style2-content .content {
    max-width: 100%;
  }

  .about-style2-content .content h2 {
    font-size: 22px;
        letter-spacing: 0;
        margin-bottom: 8px;
  }

  .about-style2-content .content .title {
    margin-bottom: 10px;
  }

  .about-style2-content .about-link {
    font-size: 14px;
  }

  .management-warp .management-slider-warp .swiper {
    margin-right: 0;
  }

  .management-warp .section-warp {
    padding-right: 80px;
  }

  .management-warp .section-warp h2 {
    font-size: 20px;
        letter-spacing: normal;
  }

  .management-widget .content {
    padding-top: 15px;
  }

  .management-widget .content h3 {
    font-size: 18px;
        margin-bottom: 12px;
  }

  .col-lg-6:nth-child(2) .undergraduate-widget {
    margin-left: 0;
  }

  .undergraduate-widget h3 {
    font-size: 20px;
        letter-spacing: 0;
        margin-bottom: 12px;
  }

  .undergraduate-widget .undergraduate-list li {
    padding-left: 30px;
        margin-bottom: 12px;
  }

  .event-plan-warp .section-warp {
    margin-bottom: 25px;
        padding-right: 80px;
  }

  .event-plan-warp .section-warp h2 {
    font-size: 20px;
        letter-spacing: normal;
  }

  .event-plan-warp .swiper-btn.style2 {
    top: -35px;
  }

  .event-plan-warp .event-plan-slider-warp .swiper {
    margin-right: 0;
        padding-top: 20px;
  }

  .event-plan-widget {
    display: block;
        align-items: center;
  }

  .event-plan-widget .content {
    margin-left: 0;
        margin-top: 20px;
  }

  .event-plan-widget .content h3 {
    font-size: 18px;
        margin-bottom: 12px;
  }

  .event-plan-widget .content .event-plan-list li {
    font-size: 14px;
  }

  .enquiry-warp::before {
    width: 100%;
  }

  .enquiry-image {
    padding-right: 0;
  }

  .enquiry-image h2 {
    font-size: 22px;
        letter-spacing: 0;
        margin-bottom: 18px;
  }

  .enquiry-image .image {
    margin-bottom: 25px;
  }

  .enquiry-content .enquiry-link {
    margin-top: 0;
        font-size: 14px;
        margin-bottom: 20px;
  }

  .enquiry-content .enquiry-content .icon {
    width: 50px;
        height: 50px;
        font-size: 20px;
        line-height: 55px;
  }

  .enquiry-content .enquiry-content .content {
    padding-left: 20px;
  }

  .enquiry-content .enquiry-content .content h4 {
    font-size: 18px;
        margin-bottom: 5px;
  }

  .inner-hero-content {
    display: block;
  }

  .sustainability-image {
    margin-left: 0;
        margin-right: 0;
        padding-left: 0;
  }

  .inner-heros-warp {
    padding-top: 200px;
        padding-bottom: 65px;
  }

  .inner-hero-content h1 {
    font-size: 25px;
        letter-spacing: 1.6px;
        margin-bottom: 12px;
  }

  .inner-all-pages .about-pages-list li {
    padding-right: 0;
        margin: 4px;
  }

  .inner-all-pages .about-pages-list li a {
    line-height: 1;
        padding: 8px 6px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0;
  }

  .visiting-content {
    padding-right: 0;
  }

  .visiting-content h2 {
    font-size: 22px;
        margin-bottom: 10px;
  }

  .visiting-content .visiting-content-style .icon {
    width: 50px;
        height: 50px;
        font-size: 22px;
        line-height: 55px;
  }

  .visiting-content .content {
    padding-left: 15px;
  }

  .visiting-content .content h4 {
    font-size: 16px;
        margin-bottom: 5px;
  }

  .visiting-content .default-btn {
    padding-left: 30px;
        padding-right: 30px;
  }

  .sustainability-warp::before {
    width: 0;
  }

  .sustainability-image .image.style2 {
    padding-left: 0;
        margin-top: 30px;
  }

  .sustainability-image .image.style1 {
    padding-right: 0;
        padding-left: 0;
        margin-top: 30px;
  }

  .sustainability-content h2 {
    font-size: 25px;
        margin-bottom: 10px;
  }

  .requirements-small-widget {
    margin-bottom: 20px;
  }

  .requirements-small-widget .requirement-list li {
    padding: 18px;
        font-size: 15px;
  }

  .requirement-big-warp h2 {
    font-size: 22px;
        margin-bottom: 15px;
  }

  .requirement-big-warp .default-btn.style2 {
    margin-left: 0;
        margin-top: 15px;
  }

  .positive-section .blog-title h2 {
    margin-bottom: 0;
        padding-right: 0;
  }

  .positive-image {
    margin-right: 0;
  }

  .positive-image-style2 {
    margin-left: 0;
        margin-top: 20px;
  }

  .positive-image-style2 .jobs-logo {
    display: none;
  }

  .blog-title h2 {
    font-size: 18px;
        padding-left: 15px;
        margin-bottom: 20px !important;
  }

  .job-description .description-list {
    margin-bottom: 20px;
        padding-left: 0;
  }

  .job-description h3 {
    font-size: 22px;
        margin-bottom: 15px;
  }

  .inner-job-details {
    background: transparent;
        padding-top: 0;
        padding-bottom: 0;
  }

  .blog-details-big-widget .blog-title {
    padding-right: 0;
  }

  .blog-title {
    margin-bottom: 25px;
  }

  .blog-style-content {
    padding: 20px;
  }

  .blog-style-content .icon {
    position: relative;
  }

  .blog-style-content p {
    font-size: 16px;
        padding-left: 0;
  }

  .tags-share {
    display: block;
        padding-top: 15px;
        padding-bottom: 15px;
        margin-bottom: 50px;
  }

  .tags-share .tags-share {
    margin-bottom: 10px;
  }

  .previous-next button {
    font-size: 14px;
  }

  .previous-next button i {
    font-size: 20px;
        top: 4px;
  }

  .slider-article-details {
    padding-bottom: 50px;
        margin-bottom: 50px;
  }

  .comments-widget {
    padding-bottom: 60px;
  }

  .event-title-select .event-title h2 {
    font-size: 22px;
        padding-left: 20px;
        margin-bottom: 20px;
  }

  .event-big-warp .blog-title h2 {
    padding-right: 0;
  }

  .facilities-small-widget {
    padding: 20px;
  }

  .international-content {
    padding-right: 0;
  }

  .international-list-widget .international-list li {
    padding: 16px;
        font-size: 16px;
  }

  .section-warp {
    display: block;
  }

  .section-warp h2 {
    font-size: 22px;
        margin-bottom: 12px;
  }

  .article-item .image {
    width: 90%;
        height: auto;
  }

  .article-item .content {
    margin-left: 8px;
  }

  .article-item .content h3 {
    font-size: 14px;
        padding-right: 20px;
  }

  .article-item .content .news-link {
    font-size: 12px;
  }

  .article-item .content .news-link i {
    font-size: 15px;
  }

  .international-support-image {
    padding-right: 0;
  }

  .international-support-image .small-image {
    position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        margin-top: 30px;
  }

  .international-support-content h2 {
    font-size: 20px;
  }

  .international-support-content .info-button .style2 {
    margin-left: 0;
        margin-top: 10px;
  }

  .international-info .item-one {
    margin-bottom: 30px;
  }

  .academic-item-date {
    margin-bottom: 20px;
        padding-left: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-right: 10px;
        display: block;
  }

  .academic-item-date .date-box {
    margin-top: 20px;
        width: 100%;
  }

  .fun-fact-warp {
    overflow: hidden;
  }

  .features-warp {
    overflow: hidden;
  }

  .mission-tab .tablinks.active {
    width: 100%;
  }

  .map-content {
    padding: 25px;
        background: #b7d8ef;
        margin-top: 0;
        margin-bottom: 60px;
  }

  .map-content h2 {
    font-size: 20px;
        margin-bottom: 20px;
        padding-right: 0;
  }

  .value-title h2 {
    font-size: 20px;
        margin-bottom: 15px;
  }

  .duties-accordion .accordion-item .accordion-button h2 {
    font-size: 20px;
  }

  .history-images-warp .swiper {
    margin-right: 0;
  }

  .about-history-content .big-paragraph {
    font-size: 16px;
        color: #525271;
  }

  .about-history-title h2 {
    font-size: 22px;
        letter-spacing: 1.28px;
        margin-bottom: 0;
  }

  .inner-video h2 {
    font-size: 16px;
  }

  .building-hours-title {
    max-width: 100%;
  }

  .building-hours-title h2 {
    margin-bottom: 20px;
        font-size: 18px;
  }

  .facilities-details-widget {
    padding-right: 0;
  }

  .facilities-details-widget .content1 h3 {
    font-size: 20px;
        font-weight: 400;
        letter-spacing: normal;
        margin-bottom: 18px;
  }

  .facilities-details-widget {
    padding-right: 0;
        margin-bottom: 60px;
  }

  .inner-all-pages .about-pages-list li a::before {
    top: -7px;
        width: 15px;
        height: 15px;
        line-height: 24px;
        font-size: 10px;
        color: #5ca89f;
  }

  .input-bg {
    padding: 10px;
  }

  .program-choose-content p {
    margin-bottom: 0;
        padding-right: 0;
  }

  .personal-info .information-list li p {
    width: 180px;
        font-size: 12px;
  }

  .personal-info .information-list li span {
    font-size: 12px;
        width: 212px;
  }

  .academic-info {
    margin-top: 20px;
  }

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

  .blog-small-widget {
    margin-top: 60px;
  }

  .blog-small-widget .all-box {
    padding: 20px;
  }

  .program-page-title h2 {
    font-size: 20px;
        margin-bottom: 20px;
  }

  .program-page-title h2 span {
    height: 35px;
        padding: 5px;
  }

  .program-main-title h2 {
    font-size: 22px;
  }

  .undergraduate-program-content {
    padding-left: 0;
  }

  .undergraduate-program-content h2 {
    font-size: 22px;
        margin-bottom: 20px;
  }

  .undergraduate-program-content h2 span {
    height: 38px;
  }

  .graduate-program-content h2 {
    font-size: 22px;
        margin-bottom: 20px;
        padding-right: 0;
  }

  .graduate-program-content h2 span {
    height: 38px;
  }

  .graduate-program-button {
    text-align: start !important;
        margin-top: 20px;
  }

  .administration-content {
    padding-right: 0;
  }

  .administration-content .content-one h2 {
    font-size: 22px;
        padding-left: 20px;
        margin-bottom: 20px;
  }

  .administration-content .content-with-list {
    padding-right: 0;
        margin-bottom: 30px;
  }

  .administration-small-widget {
    padding: 25px;
        margin-bottom: 15px;
  }

  .administration-accordion {
    margin-bottom: 30px;
  }

  .administration-accordion .accordion-item .semester-list li {
    padding-left: 12px;
        padding-right: 40px;
  }

  .requirement-language {
    margin-bottom: 30px;
  }

  .administration-finance-item {
    display: block;
        margin-bottom: 20px;
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
  }

  .administration-finance-item h1 {
    font-size: 22px;
        font-weight: 400;
  }

  .administration-finance-item h3 {
    font-size: 18px;
        margin-bottom: 12px;
  }

  .administration-finance-content {
    margin-bottom: 30px;
  }

  .administration-finance-content .administration-finance-list li {
    margin-bottom: 12px;
        padding-left: 20px;
        margin-top: 10px;
        font-size: 16px;
  }

  .administration-availability-content .availability-list li {
    display: block;
  }

  .administration-availability-content .availability-list li h6 {
    margin-bottom: 12px;
  }

  .administration-availability-content .availability-list li p {
    margin-bottom: 5px;
  }

  .administration-availability-content .availability-list li .content2 {
    width: 100%;
  }

  .administration-availability-content .availability-list li .content3 {
    width: 100%;
  }

  .administration-availability-content .availability-list li .content4 {
    width: 100%;
  }

  .laptop-content {
    margin-bottom: 30px;
  }

  .transfer-credit-card .content p {
    margin-bottom: 10px;
  }

  .transfer-credit-card .content h3 {
    font-size: 20px;
        margin-bottom: 12px;
  }

  .tuition-content-widget {
    padding-right: 0;
  }

  .tuition-content-widget .tuition-awards:last-child {
    margin-bottom: 30px;
  }

  .student-accessibility-content .blog-title h2 {
    padding-right: 0;
  }

  .accessibility-content2 {
    margin-bottom: 30px;
  }

  .online-list-widget {
    margin-bottom: 30px;
  }

  .information-teach-content-widget .content2 .accessibility-contact-list {
    margin-bottom: 20px;
  }

  .parking-locker-content .blog-title {
    margin-bottom: 40px;
  }

  .parking-locker-content .parking-notice {
    margin-bottom: 35px;
  }

  .residence-content-widget {
    padding-right: 0;
  }

  .residence-content-widget {
    margin-bottom: 35px;
  }

  .residence-content-widget .residence-button {
    display: block;
        align-items: center;
  }

  .residence-content-widget .residence-button .default-btn {
    padding-left: 40px;
        padding-right: 40px;
        margin-bottom: 15px;
  }

  .career-service-content {
    padding-right: 0;
        margin-bottom: 30px;
  }

  .health-service-content {
    padding-right: 0;
        margin-bottom: 30px;
  }

  .experimental-learning-content {
    padding-right: 0;
        margin-bottom: 30px;
  }

  .tutoring-center-content {
    padding-right: 0;
        margin-bottom: 35px;
  }

  .join-luva-box .default-btn {
    margin-top: 30px;
  }

}

@media (max-width: 768px) {
  .section-title {
    margin-bottom: 30px;
  }

  .title {
    font-size: 20px;
        letter-spacing: 1px;
  }

  .title::after {
    width: 50px;
        height: 3px;
        margin-top: 10px;
  }

  .image-box {
    padding: 10px;
  }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container-fluid {
    max-width: 720px;
  }

  .culture-warp .container-fluid {
    max-width: 720px;
        padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
        padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  }

  .choose-warp .container-fluid {
    max-width: 720px;
  }

  .places-warp .container-fluid {
    max-width: 720px;
        padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
        padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  }

  .top-header-link-details {
    display: flex;
        justify-content: space-between;
  }

  .top-header-link-details .header-link {
    margin-bottom: 0;
  }

  .top-header-details {
    display: flex;
        justify-content: space-between;
        margin-bottom: 12px;
  }

  .top-header-details .social-list {
    padding-right: 0;
        margin-bottom: 0;
  }

  .top-header-details .header-contact {
    padding-left: 0;
        margin-bottom: 0;
  }

  .information {
    display: flex;
  }

  .information li {
    display: inline-block;
        width: 100%;
        text-align: center;
        padding: 15px 5px;
        margin-bottom: 0;
  }

  .information li a {
    font-size: 12px;
        font-weight: 500;
        font-family: "Inter";
  }

  .information li i {
    font-size: 16px;
        top: 2px;
  }

  .program-content .program-item {
    padding: 5px;
        display: flex !important;
  }

  .program-content .program-item .content {
    padding-left: 20px;
        margin-top: 0;
        padding-right: 50px;
  }

  .program-content .program-item .icon {
    right: 10px;
        top: auto;
  }

  .mission-warp::before {
    height: 50%;
  }

  .col-lg-3:nth-child(3) .fun-fact-card p {
    padding-right: 40px;
  }

  .features-item {
    display: flex !important;
        align-items: center;
  }

  .features-item .content {
    margin-left: 20px;
        margin-top: 0;
  }

  .features-item .image {
    width: 150px;
        height: 134px;
  }

  .find-program-warp {
    padding-top: 80px;
  }

  .mission-tab .tablinks {
    padding: 10px 10px 10px 30px;
  }

  .information-content h2 {
    font-size: 30px;
  }

  .information-image {
    padding-left: 220px;
  }

  .information-image .small-image {
    position: absolute;
        bottom: 78px;
        left: 38px;
        width: 204px;
        height: 204px;
  }

  .information-image .round-shape {
    top: 50px;
        display: block;
  }

  .section-title h2 {
    font-size: 30px;
        margin-bottom: 0;
  }

  .academic-item .academic-card h3 {
    font-size: 22px;
        margin-bottom: 16px;
  }

  .service-image .service-counter {
    padding: 30px;
        text-align: center;
        max-width: 250px;
        position: absolute;
        background-color: var(--bs-white);
        bottom: 0;
        left: 140px;
  }

  .news-optional-item .news-item .image {
    width: 190px;
        height: auto;
  }

  .news-optional-item .news-item .content {
    margin-left: 20px;
  }

  .news-optional-item .news-item .content h3 {
    font-size: 18px;
  }

  .news-optional-item .news-item .content .news-link {
    font-size: 14px;
  }

  .hero-style3-warp .tabs .nav-tabs {
    position: absolute;
        width: 50%;
  }

  .inner-hero2-style {
    padding-top: 80px;
        padding-bottom: 70px;
  }

  .luva-inner-widget .blog-donate .content h6 {
    font-size: 20px;
        margin-bottom: 5px;
  }

  .program-images .logo-content .logo {
    width: 100px;
        height: 89px;
  }

  .building-hours-title h2 {
    font-size: 30px;
  }

  .requirement-big-warp .default-btn.style2 {
    margin-left: 15px;
        margin-top: 0;
  }

  .personal-info .information-list li p {
    font-size: 15px;
  }

  .personal-info .information-list li span {
    font-size: 15px;
  }

  .article-item .content h3 {
    font-size: 23px;
        padding-right: 20px;
  }

  .international-support-image {
    padding-right: 172px;
        position: relative;
  }

  .international-support-image .small-image {
    position: absolute;
        bottom: 100px;
        right: 38px;
        width: 236px;
        height: 156px;
  }

  .academic-item-date {
    display: flex;
  }

  .academic-item-date .date-box {
    margin-top: 0;
        width: 270px;
  }

  .academic-item-date .academic-event-content {
    max-width: 290px;
  }

}

@media (max-width: 767px) {
  .hero-description {
    font-size: 14px;
        margin-bottom: 24px;
  }

  .card-title {
    font-size: 20px;
        line-height: 30px;
  }

  .btn-primary {
    padding: 10px 20px !important;
        font-size: 14px;
  }

  .title-strip h3 {
    font-size: 12px;
  }

  .boxes-container {
    grid-template-columns: repeat(2, 1fr);
        padding: 15px;
  }

  .video-box-wrapper {
    padding: 15px;
  }

  .play-text {
    font-size: 12px;
  }

  .badge-title {
    font-size: 14px;
  }

  .title-box h2 {
    font-size: 24px;
        margin-bottom: 20px;
  }

  .content-wrapper {
    gap: 20px;
  }

  .criteria-grid {
    grid-template-columns: 1fr;
        gap: 15px;
        justify-items: center;
  }

  .criteria-item {
    text-align: left;
        
        width: 100%;
        max-width: 350px;
  }

  .gcc-school-section {
    padding: 50px 0;
  }

  .section-header .title {
    font-size: 26px;
  }

  .gcc-image-box {
    max-width: 400px;
        margin: 0 auto;
  }

  .title {
    font-size: 26px;
  }

  .image-box {
    padding: 20px;
        border-radius: 20px;
  }

  .badge {
    font-size: 12px;
        padding: 6px 14px;
  }

  .title {
    font-size: 26px;
  }

  .WebImageGraphImag {
    display: none;
  }

  .mobileImageGraphImag {
    display: block;
  }

  .section-title {
    font-size: 22px;
  }

  .news-image {
    height: 190px;
  }

}

@media (max-width: 580px) {
  .btn-primary {
    width: 100%;
  }

}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .g-5,
    .gx-5 {
    --bs-gutter-x: 3rem !important;
  }

  .top-header-link-details {
    display: flex;
        justify-content: space-between;
  }

  .top-header-link-details .header-link {
    margin-bottom: 0;
  }

  .top-header-details {
    display: flex;
        justify-content: space-between;
        margin-bottom: 12px;
  }

  .top-header-details .social-list {
    padding-right: 0;
        margin-bottom: 0;
  }

  .top-header-details .header-contact {
    padding-left: 0;
        margin-bottom: 0;
  }

  .information {
    display: flex;
  }

  .information li {
    display: inline-block;
        width: 100%;
        text-align: center;
        padding: 15px 5px;
        margin-bottom: 0;
  }

  .information li a {
    font-size: 12px;
        font-weight: 500;
        font-family: "Inter";
  }

  .information li i {
    font-size: 16px;
        top: 2px;
  }

  .program-content .program-item {
    padding: 5px;
        display: flex !important;
  }

  .program-content .program-item .content {
    padding-left: 20px;
        margin-top: 0;
        padding-right: 50px;
  }

  .program-content .program-item .icon {
    right: 10px;
        top: auto;
  }

  .mission-warp::before {
    height: 50%;
  }

  .col-lg-3:nth-child(3) .fun-fact-card p {
    padding-right: 40px;
  }

  .features-item {
    display: flex !important;
        align-items: center;
  }

  .features-item .content {
    margin-left: 20px;
        margin-top: 0;
  }

  .features-item .image {
    width: 150px;
        height: 134px;
  }

  .news-optional-item .news-item .image {
    width: 190px;
        height: auto;
  }

  .news-optional-item .news-item .content {
    margin-left: 20px;
  }

  .news-optional-item .news-item .content h3 {
    font-size: 18px;
  }

  .news-optional-item .news-item .content .news-link {
    font-size: 14px;
  }

  .article-item .content h3 {
    font-size: 23px;
        padding-right: 20px;
  }

}

@media (max-width: 575px) {
  .section-title {
    font-size: 20px;
  }

}

@media (max-width: 565px) {
  .information-warp {
    padding-top: 20px;
  }

  .panelBox {
    transform: none;
        position: inherit;
        margin-bottom: 20px;
        margin-top: 10px;
  }

  .title-strip {
    padding: 10px 15px;
  }

  .title-strip h3 {
    font-size: 11px;
        letter-spacing: 0.3px;
  }

  .boxes-container {
    display: grid;
        padding: 20px;
        gap: 15px;
        grid-template-columns: 1fr 1fr;
  }

  .panelBox .box {
    padding: 10px;
  }

  .pb-50 {
    padding-bottom: 20px;
  }

  .info-group {
    margin-top: 10px !important;
  }

}

@media (max-width: 480px) {
  .title {
    font-size: 18px;
  }

}

@media (max-width : 768px) {
  .feature-col-header {
    width: auto;
        
        min-width: 40%;
  }

  .traditional-header,
    .gcc-header {
    width: auto;
        min-width: 25%;
  }

  .title {
    font-size: 26px;
  }

}

@media (max-width : 425px) {
  .gcc-header img {
    width: 500px;
  }

}




.navbar {
  left: 0;
  right: 0;
  height: auto;
  z-index: 1030;
  padding-left: 0;
  padding-right: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
  z-index: 999;
  background-color: #000;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.05);
}

.navbar.sticky {
  top: -1px;
  left: 0;
  width: 100%;
  border-radius: 0;
  z-index: 1030;
  background-color: #000;
  position: sticky;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  border-color: transparent;
}

.navbar.sticky .navbar-logo {
  position: relative;
  margin-top: 0;
}

.navbar.sticky .inner-navbar-warp {
  margin-top: 0;
}

.navbar.sticky .navbar-toggler {
  color: var(--paragraph);
  font-size: inherit;
  box-shadow: unset;
  border: none;
  padding: 0;
}

.navbar.sticky .navbar-toggler .burger-menu {
  cursor: pointer;
}

.navbar.sticky .navbar-toggler .burger-menu span {
  height: 3px;
  width: 30px;
  margin: 5px 0;
  display: block;
  background: var(--paragraph);
}

.navbar.sticky .inner-navbar-widget {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  border: none !important;
}

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

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

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

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

.navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}

.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  color: #fff;
  font-family: Work Sans;
  font-size: 16px;
  font-weight: 500;
  padding-left: 0;
  padding-right: 0;
  padding-top: 25px;
  padding-bottom: 25px;
}

.navbar .navbar-nav .nav-item .nav-link::after {
  display: none;
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link.router-link-active {
  color: #F1A63E;
}

.navbar .navbar-nav .nav-item .nav-link.with-image {
  position: relative;
}

.navbar .navbar-nav .nav-item .nav-link.with-image .navbar-image {
  position: absolute;
  bottom: -12px;
  text-align: center;
  left: 50%;
  opacity: 0;
  transform: translateX(-11px);
}

.navbar .navbar-nav .nav-item .dropdown-toggle {
  padding-right: 18px;
}

.navbar .navbar-nav .nav-item .dropdown-toggle::after {
  left: -5px;
}

.navbar .navbar-nav .nav-item .dropdown-toggle::before {
  position: absolute;
  content: "שׁ";
  line-height: 1;
  right: -2px;
  top: 50%;
  color: rgb(166, 167, 198);
  transform: translateY(-50%);
  font-family: "tabler-icons" !important;
  font-size: 16px;
}

.navbar .navbar-nav .nav-item .dropdown-toggle:hover,
.navbar .navbar-nav .nav-item .dropdown-toggle.active {
  color: var(--primary);
}

.navbar .navbar-nav .nav-item .dropdown-toggle:hover::before,
.navbar .navbar-nav .nav-item .dropdown-toggle.active::before {
  color: var(--primary);
}

.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,
.navbar .navbar-nav .nav-item.active {
  color: var(--primary);
  font-weight: 600;
}

.navbar .navbar-nav .nav-item:hover .nav-link,
.navbar .navbar-nav .nav-item.active .nav-link {
  color: var(--primary);
}

.navbar .navbar-nav .nav-item .dropdown-menu {
  left: 0;
  top: 85px;
  opacity: 0;
  z-index: 99;
  border: none;
  width: 280px;
  margin-top: 0;
  display: block;
  padding: 0;
  border-radius: 0;
  position: absolute;
  visibility: hidden;
  background: var(--white);
  transition: all 0.2s ease-in-out;
  transform: translate3d(0, 18px, 0);
  box-shadow: rgba(4, 4, 5, 0.2) 0px 7px 36px -8px;
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item {
  margin: 0;
  border-bottom: solid 1px #e8e9ed;
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item:last-child {
  border: none;
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
  display: block;
  padding: 10px 20px;
  transition: 0.6s;
  position: relative;
  color: var(--dark);
  font-family: var(--bodyFont);
  font-size: 15px;
  font-weight: 400;
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link::after {
  display: none;
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.router-link-active,
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--white);
  background-color: #14191c;
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.router-link-active::before,
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover::before {
  opacity: 1;
  color: var(--white);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.dropdown-toggle::before {
  content: "שּׁ";
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

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

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.router-link-active,
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--white);
}

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

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.router-link-active,
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--primary);
}

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

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.router-link-active,
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--primary);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--primary);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--primary);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--primary);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--primary);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  margin-top: 0;
  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 {
  position: relative;
  margin-top: -5px;
}

.navbar .others-option .option-item {
  padding-right: 40px;
}

.navbar .others-option .option-item:last-child {
  padding-right: 0;
}

.navbar .others-option .option-item .search-bar .search-btn {
  position: relative;
}

.navbar .others-option .option-item .side-bar-btn {
  padding: 0;
  border: none;
}

.navbar .others-option .option-item .side-bar-btn:focus {
  box-shadow: unset;
  outline: 0;
}

.navbar .others-option .option-item .side-bar-btn.active {
  box-shadow: unset;
  outline: 0;
  border: none;
}

.navbar.second-navbar {
  box-shadow: unset;
  padding-top: 25px;
  background: linear-gradient(90deg, #dee1e6 0%, #e5e6ea 17.57%, #ebecf0 34.86%, #e8e9ed 52.23%, #e7e8ec 65.17%, #d7dadf 97.75%);
}

.navbar.second-navbar .navbar-style2 {
  margin-left: 35px;
}

.navbar.second-navbar.sticky {
  padding-top: 12px;
}

.navbar.second-navbar .navbar-nav .nav-item .dropdown-menu {
  top: 70px;
}

.navbar.inner-navbar {
  box-shadow: unset;
  padding-top: 20px;
  background: transparent;
  padding-bottom: 20px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.4);
}

.navbar.inner-navbar .navbar-style2 {
  margin-left: 35px;
}

.navbar.inner-navbar.sticky {
  background: linear-gradient(90deg, #dde6f4 0%, #e6eaf8 17.57%, #d4dcfc 34.86%, #e2e6f6 52.23%, #e0e5f8 65.17%, #eef4fd 97.75%);
}

.navbar .social-list {
  padding-left: 142px;
  position: relative;
}

.navbar .social-list li {
  padding-right: 15px;
  display: inline-block;
}

.navbar .social-list li:last-child {
  padding-right: 0;
}

.navbar .social-list li .icon {
  filter: brightness(0) saturate(100%) invert(7%) sepia(7%) saturate(7253%) hue-rotate(209deg) brightness(99%) contrast(103%);
}

.navbar .navbar-style2 .nav-item:nth-child(1) .dropdown-menu .nav-item .dropdown-menu {
  left: 100%;
}

.navbar .navbar-style2 .nav-item:nth-child(2) .dropdown-menu .nav-item .dropdown-menu {
  left: 100%;
}

.responsive-navbar {
  border: 0 !important;
}

.responsive-navbar .offcanvas-header {
  padding: 15px;
  border-bottom: 1px solid #eeeeee;
  justify-content: space-between;
}

.responsive-navbar .offcanvas-header .close-btn {
  background-color: transparent;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  border: 0;
  color: var(--bs-dark);
}

.responsive-navbar .offcanvas-body {
  padding: 30px 15px 15px;
}

.responsive-navbar .offcanvas-body .accordion .accordion-item {
  border: 0;
  padding: 0;
  border-radius: 0;
  margin-bottom: 25px;
  background-color: transparent;
}

.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-link {
  color: var(--paragraph);
}

.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-link:hover,
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-link.active,
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-link.router-link-active {
  color: var(--primary) !important;
}

.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-button {
  width: 100%;
  display: block;
  box-shadow: unset;
  position: relative;
  padding: 0 18px 0 0;
  color: var(--paragraph);
  background-color: transparent;
  font-size: 15px;
}

.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-button::after {
  display: none;
}

.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-button:hover,
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-button.active {
  color: var(--primary);
}

.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-button::before {
  position: absolute;
  content: "שׁ";
  line-height: 1;
  right: -2px;
  top: 50%;
  color: rgb(166, 167, 198);
  transform: translateY(-50%);
  font-family: "tabler-icons" !important;
  font-size: 16px;
}

.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-button.without-icon::before {
  display: none;
}

.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 20px;
  margin-top: 12px;
  background-color: #f5f5f5;
}

.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item {
  margin-bottom: 15px;
  border-bottom: none;
  padding-bottom: 0;
}

.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-link {
  width: 100%;
  display: block;
  color: var(--paragraph);
  background-color: transparent;
  font-size: 15px;
  font-weight: 400;
}

.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-link:hover,
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-link.active {
  color: var(--primary);
}

.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-button {
  width: 100%;
  display: block;
  box-shadow: unset;
  position: relative;
  padding: 0 18px 0 0;
  color: var(--paragraph);
  background-color: transparent;
  font-size: 15px;
  font-weight: 500;
}

.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-button::after {
  display: none;
}

.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-button::before {
  position: absolute;
  content: "שׁ";
  line-height: 1;
  right: -2px;
  top: 50%;
  color: rgb(166, 167, 198);
  transform: translateY(-50%);
  font-family: "tabler-icons" !important;
  font-size: 16px;
}

.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-button:hover,
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-button.active {
  color: var(--primary);
}

.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-collapse .accordion-body {
  background-color: #dfdfdf;
}

.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-collapse .accordion-body {
  background-color: transparent;
}

.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item:last-child {
  margin-bottom: 0;
}

.responsive-navbar .offcanvas-body .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.responsive-navbar .others-option {
  position: relative;
}

.responsive-navbar .others-option .option-item {
  padding-right: 30px;
}

.responsive-navbar .others-option .option-item:last-child {
  padding-right: 0;
}

.responsive-navbar .others-option .option-item .search-bar .search-btn {
  position: relative;
}

.responsive-navbar .others-option .option-item .side-bar-btn {
  padding: 0;
}

.search-popup {
  position: fixed;
  width: 0;
  height: 0;
  top: auto;
  left: auto;
  z-index: -999;
  opacity: 0;
  transition: 0.6s;
}

.search-popup.active {
  z-index: 9999;
  opacity: 1;
}

.search-popup.active .search-popup-overlay {
  top: auto;
  z-index: 6;
  display: block;
  bottom: calc(90px - 112vw);
  -khtml-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.8;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0, 1);
}

.search-popup.active .search-popup-content {
  width: 100%;
  opacity: 1;
  z-index: 999;
  transition: var(--transition);
}

.search-popup .search-popup-overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  z-index: 3;
  opacity: 0;
  display: none;
  background-color: #000;
  cursor: url(../img/shapes/cross-btn.png), auto;
}

.search-popup .search-popup-content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 0;
  right: 0;
  top: 45%;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  z-index: 3;
}

.search-popup .search-popup-content .search-popup-form {
  position: relative;
}

.search-popup .search-popup-content .search-popup-form .form-control {
  width: 100%;
  background-color: #ffffff;
  font-size: 15px;
  color: #717175;
  border: none;
  outline: none;
  height: 66px;
  padding-top: 5px;
  border-radius: 0;
  padding-left: 30px;
}

.search-popup .search-popup-content .search-popup-form .form-control:focus {
  box-shadow: unset;
}

.search-popup .search-popup-content .search-popup-form .form-control:focus::-moz-placeholder {
  color: transparent;
}

.search-popup .search-popup-content .search-popup-form .form-control:focus::placeholder {
  color: transparent;
}

.search-popup .search-popup-content .search-popup-form .form-control::-moz-placeholder {
  color: var(--paragraph);
  -moz-transition: 0.6s;
  transition: 0.6s;
}

.search-popup .search-popup-content .search-popup-form .form-control::placeholder {
  color: var(--paragraph);
  transition: 0.6s;
}

.search-popup .search-popup-form .default-btn {
  padding: 20px 0;
  width: 66px;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: var(--primary);
  color: var(--white);
  right: -1px;
  border: none;
  border-radius: 0;
  transition: 0.6s;
  font-size: 22px;
}

.search-popup .search-popup-form .default-btn:focus {
  box-shadow: unset;
}

.search-popup .search-popup-form .default-btn:hover {
  background-color: var(--bs-dark);
}

.question-content .tabs .nav-tabs .nav-item {
  padding-right: 10px;
}

.question-content .tabs .nav-tabs .nav-item:last-child {
  padding-right: 0;
}

.question-content .tabs .nav-tabs .nav-item .nav-link {
  font-size: 13px;
  letter-spacing: 1.3px;
  color: #7b7b93;
  line-height: 1;
  font-weight: 600;
  padding: 12px 15px;
  font-family: Work Sans;
  background: var(--white);
  box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
  border-radius: 2px;
  border: none;
}

.question-content .tabs .nav-tabs .nav-item .nav-link.active,
.question-content .tabs .nav-tabs .nav-item .nav-link:hover {
  color: #7768e5;
  border: none;
}

.transparent-bg.navbar {
  padding-top: 6px;
  padding-bottom: 18px;
}

.hero-style3-warp .tabs .nav-tabs .nav-item .nav-link {
  background-color: transparent;
  color: #0d0d25;
  font-weight: 600;
  font-family: Work Sans;
  font-size: 18px;
  padding: 30px;
  line-height: 1;
  margin: auto;
  width: 268px;
  text-align: center;
  position: relative;
  border: none;
}

.hero-style3-warp .tabs .nav-tabs .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  width: 0%;
  transition: 0.6s;
  border-radius: 4px;
  background: #0d0d25;
}

.hero-style3-warp .tabs .nav-tabs .nav-item .nav-link:hover {
  border: none;
}

.hero-style3-warp .tabs .nav-tabs .nav-item .nav-link.active::before {
  width: 100%;
}

.slide-bar-offcanvas {
  width: 100% !important;
  background-color: rgba(0, 0, 0, 0.6588235294);
}

.slide-bar-offcanvas .offcanvas-body {
  width: 460px;
  padding: 60px 40px 40px 40px;
  margin-right: 0;
  margin-left: auto;
  background-color: #ffffff;
}

.slide-bar-offcanvas .btn-close {
  position: absolute;
  top: 20px;
  color: #000000;
  opacity: 1;
  right: 40px;
}

.slide-bar-offcanvas .btn-close:focus {
  outline: 0;
  box-shadow: unset;
}

#navbarOffcanvas.offcanvas {
  background-color: #321438 !important;
  transition: transform 0.3s ease-in-out !important;
  visibility: hidden;
}

#navbarOffcanvas.offcanvas.show {
  z-index: 9999999;
  transform: none !important;
  visibility: visible !important;
}

#navbarOffcanvas.offcanvas.closing {
  z-index: 9999999;
  transform: translateX(100%) !important;
  visibility: visible !important;
}

#navbarOffcanvas .offcanvas-header {
  background: #321438;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 16px 16px;
  border-bottom: none;
  border-bottom: 1px solid #FFFFFF1A;
}

#navbarOffcanvas .close-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  order: -1;
}

#navbarOffcanvas .close-btn i {
  color: #ffffff;
  font-size: 24px;
}

#navbarOffcanvas .header-logo {
  width: 160px;
  height: auto;
}

#navbarOffcanvas .offcanvas-body {
  background-color: #321438;
  padding: 10px 20px;
  flex: 1;
  overflow-y: auto;
}

#navbarOffcanvas .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#navbarOffcanvas .nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
}

#navbarOffcanvas .apply-now-btn {
  background: #A13E99;
  border: none;
  border-radius: 7px !important;
  cursor: pointer;
  width: calc(100% - 40px);
  font-size: 16px;
  text-align: center;
  justify-content: center;
  padding: 18px 0 !important;
  margin: 20px auto;
  display: flex;
}

#navbarOffcanvas .nav-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

#navbarOffcanvas .nav-item.active,
#navbarOffcanvas .nav-item.router-link-exact-active {
  background: #AB7E1A;
  color: #ffffff;
  font-weight: 600;
}

#navbarOffcanvas .nav-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

#navbarOffcanvas #navbarOffcanvas .nav-icon-ti {
  width: 22px;
  height: 22px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
}

#navbarOffcanvas .offcanvas-footer {
  background-color: #321438;
  padding: 16px 20px 24px;
  margin-top: auto;
}

#navbarOffcanvas .chat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: #ffffff;
  color: #321438;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

#navbarOffcanvas .chat-btn:hover {
  background: #f0f0f0;
  color: #321438;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#navbarOffcanvas .chat-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.top-navbar .container-fluid {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-navbar .top-navbar-brand {
  margin-right: auto;
}

.top-navbar .joint-brand-link {
  margin-left: auto;
}

.top-navbar {
  background-color: #020103;
  min-height: 90px;
}

.top-navbar .gcc-logo {
  height: 75px;
  width: auto;
}

.top-navbar .brand-logo {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.top-navbar .logo-navigation-area {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin: 0 !important;
}

.top-navbar .joint-brand-link {
  display: flex;
  align-items: center;
}

.top-navbar .top-navbar-nav .nav-item .nav-link {
  color: #fff;
}

.top-navbar.sticky {
  background-color: #020103;
}

.search-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: color 0.2s;
}

.search-close-btn:hover {
  color: #333;
}


@media only screen and (min-width: 1400px) and (max-width: 1899px) {
  .transparent-bg.navbar {
    padding-top: 12px;
        padding-bottom: 12px;
  }

  .transparent-bg.navbar .navbar-nav {
    margin-right: 20px;
  }

  .transparent-bg.navbar .navbar-nav .nav-item {
    margin-left: 10px;
        margin-right: 10px;
  }

  .transparent-bg.navbar .navbar-nav .nav-item .nav-link {
    font-size: 14px;
  }

  .navbar .social-list {
    padding-left: 20px;
  }

  .hero-style3-warp .tabs .nav-tabs .nav-item .nav-link {
    font-size: 16px;
        padding: 20px;
        width: auto;
  }

}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .transparent-bg.navbar {
    padding-top: 12px;
        padding-bottom: 12px;
  }

  .transparent-bg.navbar .navbar-nav {
    margin-right: 20px;
  }

  .transparent-bg.navbar .navbar-nav .nav-item {
    margin-left: 10px;
        margin-right: 10px;
  }

  .transparent-bg.navbar .navbar-nav .nav-item .nav-link {
    font-size: 14px;
  }

  .navbar .social-list {
    padding-left: 20px;
  }

  .navbar.first-navbar .navbar-nav {
    margin-right: 15px !important;
  }

  .navbar.first-navbar .navbar-nav .nav-item {
    margin-left: 18px !important;
        margin-right: 18px !important;
  }

  .navbar.first-navbar .navbar-nav .nav-item .nav-link {
    font-size: 15px;
  }

  .navbar.first-navbar .others-option .option-item {
    padding-right: 32px !important;
  }

  .hero-style3-warp .tabs .nav-tabs .nav-item .nav-link {
    font-size: 16px;
        padding: 20px;
        width: auto;
  }

  .question-content .tabs .nav-tabs .nav-item .nav-link {
    font-size: 12px;
        letter-spacing: 0.3px;
  }

}

@media (min-width: 992px) and (max-width: 1200px) {
  .top-navbar .top-navbar-nav .nav-item .nav-link {
    padding-left: 10px;
        padding-right: 10px;
        font-size: 14px;
  }

}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar .navbar-nav {
    margin-right: 30px;
  }

  .navbar .navbar-nav .nav-item {
    margin-left: 12px;
        margin-right: 12px;
  }

  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 12px;
  }

  .transparent-bg.navbar {
    padding-top: 12px;
        padding-bottom: 12px;
  }

  .transparent-bg.navbar .navbar-nav {
    margin-right: 20px;
  }

  .transparent-bg.navbar .navbar-nav .nav-item {
    margin-left: 10px;
        margin-right: 10px;
  }

  .transparent-bg.navbar .navbar-nav .nav-item .nav-link {
    font-size: 14px;
  }

  .navbar .social-list {
    display: none;
  }

  .hero-style3-warp .tabs .nav-tabs .nav-item .nav-link {
    font-size: 16px;
        padding: 20px;
        width: auto;
  }

  .question-content .tabs .nav-tabs .nav-item .nav-link {
    font-size: 12px;
        letter-spacing: 0;
        line-height: 1;
        padding: 12px 10px;
  }

}

@media (max-width: 991px) {
  .nav-item.apply-btn {
    text-align: center;
  }

}

@media only screen and (max-width: 991px) {
  .navbar.second-navbar {
    box-shadow: unset;
        padding-top: 12px;
  }

  .question-content .tabs .nav-tabs .nav-item {
    padding-right: 10px;
        margin-bottom: 8px;
  }

  .transparent-bg.navbar {
    padding-top: 12px;
        padding-bottom: 12px;
  }

  .hero-style3-warp .tabs .nav-tabs .nav-item .nav-link {
    font-size: 14px;
        padding: 18px 12px;
        width: auto;
  }

  .navbar.inner-navbar {
    padding-top: 12px;
        padding-bottom: 12px;
  }

  .slide-bar-offcanvas .offcanvas-body {
    width: 100%;
        padding: 60px 20px 30px 20px;
  }

}

@media (max-width: 768px) {
  .top-navbar .gcc-logo {
    height: 50px;
  }

  .top-navbar .brand-logo {
    height: 40px;
  }

  .top-navbar {
    min-height: 70px;
  }

}




.hero-slider-warp {
  background-position: center center;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 320px;
  padding-bottom: 296px;
  z-index: 1;
  animation-duration: 110ms;
}

.hero-slider-warp.bg1 {
  background-image: url(../img/heros/hero1.jpg);
}

.hero-slider-warp.bg2 {
  background-image: url(../img/heros/hero2.jpg);
}

.hero-slider-warp .content {
  max-width: 655px;
}

.hero-slider-warp .content h1 {
  font-size: 60px;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  letter-spacing: -0.1px;
  font-weight: 700;
  margin-bottom: 26px;
  line-height: 75px;
}

.hero-slider-warp .content .default-btn.style2 {
  background-color: transparent;
  border: 1px solid #f8ca4d;
  color: #f8ca4d;
  margin-left: 10px;
}

.hero-slider-warp .content .default-btn.style2:hover {
  color: var(--white);
}

.hero-warp {
  position: relative;
  margin-top: -150px;
}

.hero-warp .pagination-bullet-btn {
  position: absolute;
  left: 100px;
  bottom: 100px;
  z-index: 999;
}

.hero-warp .pagination-bullet-btn .swiper-pagination-bullet {
  height: 6px;
  transition: 0.6s;
  opacity: 1;
  width: 6px;
  margin-right: 12px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-warp .pagination-bullet-btn .swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background-color: rgb(255, 255, 255);
}

.hero-warp .pagination-bullet-btn .swiper-pagination2 {
  display: flex;
  align-items: center;
}

.hero-slider-warp .content .default-btn.style2 {
  background-color: #fff;
  border: 1px solid #862E84;
  color: #862E84;
  margin-left: 10px;
}

.rightSideBox {
  background-image: url("../assets/images/img/heros/student_hero.png");
  background-size: cover;
  background-position: center;
  border-radius: 0px;
  display: grid;
  place-content: center;
}

.hero-slider-warp {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 50px;
  border: 2.286px solid #D98E23;
  background: #FFAF3D;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  margin-top: 60px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  color: white;
}

.hero-subtitle-first {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 400;
  color: white;
  font-family: Inter;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #FFC065;
  ;
  margin-top: 20px;
  font-style: normal;
  line-height: 33.321px;
  margin-bottom: 30px;
}

.journey-card {
  background: linear-gradient(135deg, #f8f5ff, #fff);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  margin-top: 80px;
  max-width: 642px;
}

.profile-badge {
  display: inline-flex;
  background: white;
  padding: 10px 14px;
  border-radius: 12px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 50px;
}

.blinking-text {
  animation: blink 2s ease-in-out infinite;
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-slider-warp .content {
    max-width: 545px;
  }

  .hero-slider-warp .content h1 {
    font-size: 40px;
        letter-spacing: 1.4px;
        margin-bottom: 25px;
  }

}

@media (max-width: 991px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .journey-card {
    margin-top: 40px;
        padding: 30px;
  }

  .hero-slider-warp {
    padding: 60px 0;
  }

}

@media only screen and (max-width: 991px) {
  .hero-warp {
    margin-top: 0;
  }

  .hero-warp .pagination-bullet-btn {
    position: absolute;
        left: 0;
        right: 0;
        text-align: center !important;
        bottom: 60px;
        z-index: 999;
  }

  .hero-warp .pagination-bullet-btn .swiper-pagination2 {
    justify-content: center;
  }

  .hero-slider-warp {
    padding-top: 60px;
        padding-bottom: 90px;
        z-index: 1;
  }

  .hero-slider-warp .content {
    margin-bottom: 50px;
  }

  .hero-slider-warp .content h1 {
    font-size: 28px;
        letter-spacing: 0;
        margin-bottom: 20px;
        line-height: normal;
  }

  .hero-slider-warp::before {
    content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 80%;
        z-index: -1;
  }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-slider-warp .content h1 {
    font-size: 35px;
        letter-spacing: 1px;
        margin-bottom: 20px;
  }

}

@media (max-width: 767px) {
  .hero-badge {
    margin: 0px;
  }

  .hero-subtitle-first {
    font-size: 24px;
        margin-bottom: 0px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 15px;
        margin-top: 10px;
        margin-bottom: 25px;
  }

  .hero-slider-warp {
    padding: 40px 0;
        min-height: auto;
  }

  .journey-card {
    padding: 20px;
        margin-top: 30px;
  }

}

@media (max-width: 580px) {
  .rightSideBox {
    display: none;
  }

  .hero-slider-warp {
    display: flex;
        align-items: center;
        background-size: cover;
        background-position: center;
        padding: 40px 0;
        background-image: url("../assets/images/img/heros/mobileBanner.svg") !important;
  }

}

@media only screen and (max-width: 370px) {
  .hero-slider-warp .content .default-btn.style2 {
    margin-left: 0;
        margin-top: 10px;
  }

}




.campus-story-warp .container-fluid {
  max-width: 100%;
}

.campus-widget .image img {
  border-radius: 4px;
}

.campus-widget .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.campus-widget .content h3 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.28px;
  margin-bottom: 0;
}

.campus-widget .content .icon {
  display: inline-block;
  width: 40px;
  color: rgb(255, 255, 255);
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 22px;
  border-radius: 2px;
  background: #7768e5;
}

.campus-widget .content .icon:hover {
  color: #7768e5;
  background-color: #f8ca4d;
}

.campus-widget .image {
  position: relative;
  overflow: hidden;
}

.campus-widget .image img {
  transition: 0.6s;
}

.campus-widget .image::before {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  transition: 0.6s;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.campus-widget:hover .image::before {
  animation: shine 0.75s;
}

.campus-widget:hover .image img {
  transform: scale(1.1);
}

.about-campus-title {
  position: relative;
  max-width: 235px;
}

.about-campus-title h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.28px;
  margin-bottom: 0;
}

.about-campus-title .about-logo {
  position: absolute;
  bottom: -55px;
  right: -108px;
}

.about-campus-title .about-logo2 {
  position: absolute;
  bottom: -130px;
  right: -117px;
}

.build-campus-title {
  max-width: 1100px;
  margin-bottom: 70px;
}

.build-campus-title h2 {
  color: #0d0d25;
  font-family: Alfa Slab One;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.28px;
  margin-bottom: 0;
}

.build-campus-list {
  max-width: 490px;
  margin-left: auto;
}

.build-campus-list .build-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.build-campus-list .build-list li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 25px;
}

.build-campus-list .build-list li:last-child {
  margin-bottom: 0;
}

.build-campus-list .build-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background-color: rgb(217, 217, 217);
}

.build-campus-list .build-list li a {
  font-weight: 600;
  color: #353688;
  font-family: Work Sans;
}

.build-campus-list .build-list li a:hover {
  color: var(--primary);
  letter-spacing: 1px;
}

.build-campus-list .build-list li a i {
  position: relative;
  font-size: 20px;
  left: 4px;
  top: 3px;
}

.build-campus-list .build-list.style2 {
  padding-left: 50px;
}

.build-campus-list .build-list.style1 {
  margin-right: -20px;
}

.build-campus-content {
  padding-right: 30px;
}

.inner-campus-map iframe {
  width: 100%;
  height: 336px;
  display: block;
}

.directory-widget {
  margin-bottom: 50px;
  padding-left: 30px;
}

.directory-widget h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.directory-widget .directory-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.directory-widget .directory-list li {
  margin-bottom: 8px;
}

.directory-widget .directory-list li:last-child {
  margin-bottom: 0;
}

.directory-widget .directory-list li a {
  font-weight: 500;
  color: #0d0d25;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(13, 13, 37, 0.3);
  z-index: 4;
  cursor: pointer;
}

.play-btn-circle {
  width: 90px;
  height: 90px;
  background: #A13E99;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  box-shadow: 0 0 0 0 rgba(161, 62, 153, 0.4);
  animation: pulse-play 2s infinite;
  transition: all 0.3s ease;
}

.play-overlay:hover .play-btn-circle {
  transform: scale(1.1);
  background: #C436BE;
}

@keyframes pulse-play {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(161, 62, 153, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(161, 62, 153, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(161, 62, 153, 0);
  }
}

.ed-message-area {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.signature h5 {
  font-size: 22px;
  font-weight: 800;
  color: #0d0d25;
}

.signature span {
  color: #fc6441;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.video-preview-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.video-preview-box:hover .preview-img {
  transform: scale(1.05);
}

.play-btn-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.play-btn {
  width: 90px;
  height: 90px;
  background-color: #A13E99;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ffffff;
  box-shadow: 0 0 0 0 rgba(161, 62, 153, 0.4);
  animation: pulse-play 2s infinite;
  transition: all 0.3s ease;
}

.video-preview-box:hover .play-btn {
  transform: scale(1.1);
  background-color: #C436BE;
  color: #ffffff;
}

.video-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(13, 13, 37, 0.7);
  backdrop-filter: blur(5px);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
}

@keyframes pulse-play {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(161, 62, 153, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(161, 62, 153, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(161, 62, 153, 0);
  }
}

.gcc-commerce-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9fb 100%);
  overflow: hidden;
}

.gcc-commerce-section .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.gcc-commerce-section .feature-card {
  background: #ffffff;
  border: 1px solid rgba(134, 46, 132, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(70, 55, 114, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.gcc-commerce-section .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(134, 46, 132, 0.1);
  border-color: #F1A63E;
}

.gcc-commerce-section .icon-wrapper {
  margin-bottom: 25px;
}

.gcc-commerce-section .feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(134, 46, 132, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gcc-commerce-section .feature-icon i {
  font-size: 30px;
  color: #862E84;
  transition: all 0.3s ease;
}

.gcc-commerce-section .feature-card:hover .gcc-commerce-section .feature-icon {
  background: #862E84;
}

.gcc-commerce-section .feature-card:hover .gcc-commerce-section .feature-icon i {
  color: #ffffff;
}

.gcc-commerce-section .feature-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #463772;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.gcc-commerce-section .feature-card:hover .gcc-commerce-section .feature-content h4 {
  color: #862E84;
}

.gcc-commerce-image img {
  max-width: 800px;
  width: 100%;
}

.campus {
  padding: 50px 0;
  background: #ffff;
}

.campus-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

.campus-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0d0d25;
  text-transform: uppercase;
  line-height: 1.3;
}

.campus-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
}

.campus-image {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.campus-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


@media (max-width: 991px) {
  .play-btn-circle {
    width: 70px;
        height: 70px;
        font-size: 24px;
  }

  .gcc-commerce-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
        gap: 20px;
  }

  .gcc-commerce-section .feature-card {
    padding: 30px 20px;
  }

}

@media only screen and (max-width: 991px) {
  .campus-widget .content {
    padding-left: 0;
        padding-right: 0;
        padding-top: 12px;
        padding-bottom: 12px;
  }

  .campus-widget .content h3 {
    font-size: 18px;
        letter-spacing: 0;
        margin-bottom: 0;
  }

  .campus-widget .content .icon {
    width: 30px;
        height: 30px;
        line-height: 33px;
        font-size: 20px;
  }

  .about-campus-title {
    max-width: 100%;
  }

  .about-campus-title .about-logo {
    display: none;
  }

  .about-campus-title .about-logo2 {
    display: none;
  }

  .about-campus-title h2 {
    font-size: 22px;
  }

  .build-campus-list {
    max-width: 100%;
        margin-top: 20px;
        margin-left: 0;
  }

  .build-campus-title {
    margin-bottom: 20px;
  }

  .build-campus-title h2 {
    font-size: 18px;
  }

  .build-campus-list .build-list.style1 {
    margin-right: 0;
  }

  .build-campus-list .build-list.style2 {
    margin-top: 20px;
        padding-left: 0;
  }

}

@media (max-width: 768px) {
  .campus {
    padding: 30px 0;
  }

  .campus-content h2 {
    font-size: 28px;
  }

  .campus-content p {
    font-size: 14px;
  }

  .campus-image img {
    height: 250px;
  }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .build-campus-list .build-list.style2 {
    margin-top: 0;
        padding-left: 0;
  }

  .build-campus-title h2 {
    font-size: 25px;
  }

}

@media (max-width: 767px) {
  .gcc-commerce-section .features-grid {
    grid-template-columns: 1fr;
  }

  .gcc-commerce-section .feature-icon {
    width: 50px;
        height: 50px;
  }

  .gcc-commerce-section .feature-icon i {
    font-size: 24px;
  }

  .gcc-commerce-section .feature-content h4 {
    font-size: 18px;
  }

}




.modal-header {
  border-bottom: none;
  padding: 20px 20px 0 28px;
}

.modal-header .btn-close:focus {
  box-shadow: unset;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999;
  padding: 20px;
}

.modal-overlay .modal-container {
  background: #ffffff;
  border-radius: 24px;
  width: 100%;
  max-width: 800px;
  
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.modal-overlay .modal-content {
  padding: 60px 40px;
  text-align: center;
  background: linear-gradient(to bottom, #ffffff 0%, #fcfcfc 100%);
}

#eligibilityChecklistModal .modal-overlay h3 {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.modal-overlay .description {
  color: #666;
  margin-bottom: 40px;
  font-size: 18px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.modal-overlay .checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  text-align: left;
}

.modal-overlay .checkbox-item label {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  padding: 20px;
  border-radius: 16px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  background: #ffffff;
  height: 100%;
}

.modal-overlay .checkbox-item label:hover {
  background: #fdfdfd;
  border-color: #ddd;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.modal-overlay .checkbox-item label.checked {
  background: #f0fdf4;
  border-color: #22c55e;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

.modal-overlay .custom-checkbox {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  flex-shrink: 0;
}

.modal-overlay .checkbox-item label.checked .modal-overlay .custom-checkbox {
  background: #22c55e;
  border-color: #22c55e;
  color: white;
  transform: scale(1.1);
}

.modal-overlay .result-area {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 20px;
}

.modal-overlay .icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.modal-overlay .success-message .modal-overlay .icon-circle {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #16a34a;
}

.modal-overlay .error-message .modal-overlay .icon-circle {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: #dc2626;
}

.modal-overlay .success-message h4 {
  color: #16a34a;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
}

.modal-overlay .error-message h4 {
  color: #dc2626;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
}

.modal-overlay .close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  
  background: rgba(0, 0, 0, 0.05);
  
  border: none;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-overlay .close-btn:hover {
  background: #ff4757;
  color: white;
  transform: rotate(90deg) scale(1.1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-fade-enter-active,
.modal-fade-leave-active {
  transition: opacity 0.3s ease;
}

.modal-fade-enter-from,
.modal-fade-leave-to {
  opacity: 0;
}

.pathway-success-section {
  padding: 25px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.pathway-success-section .section-header .title {
  font-size: 32px;
  font-weight: 700;
  color: #0d0d25;
  margin-bottom: 25px;
  text-transform: uppercase;
  line-height: 1.3;
}

.pathway-success-section .section-header .highlight {
  color: #F1A63E;
}

.pathway-success-section .section-header .subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
  line-height: 1.6;
}

.pathway-success-section .max-800 {
  max-width: 800px;
}

.pathway-success-section .mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.pathway-success-section .timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 50px auto 0;
  padding: 20px 0;
}

.pathway-success-section .timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-image: linear-gradient(to bottom, #cbd5e1 50%, transparent 50%);
  background-size: 2px 20px;
  background-repeat: repeat-y;
  transform: translateX(-50%);
  z-index: 1;
}

.pathway-success-section .timeline-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  z-index: 2;
}

.pathway-success-section .timeline-row:last-child {
  margin-bottom: 0;
}

.pathway-success-section .timeline-content {
  width: 45%;
  position: relative;
}

.pathway-success-section .timeline-marker {
  width: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.pathway-success-section .marker-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 0 0 5px #fff;
}

.pathway-success-section .content-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pathway-success-section .content-text p {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.pathway-success-section .timeline-row:nth-child(2) .pathway-success-section .content-text h3 {
  color: #5b21b6;
}

.pathway-success-section .timeline-row:nth-child(3) .pathway-success-section .content-text h3 {
  color: #831843;
}

.pathway-success-section .timeline-row:nth-child(4) .pathway-success-section .content-text h3 {
  color: #d97706;
}

.pathway-success-section .timeline-row:nth-child(5) .pathway-success-section .content-text h3 {
  color: #1e3a8a;
}

.pathway-success-section .timeline-row:nth-child(6) .pathway-success-section .content-text h3 {
  color: #c2410c;
}

.pathway-success-section .color-1 {
  background-color: #5b21b6;
}

.pathway-success-section .color-2 {
  background-color: #701a75;
}

.pathway-success-section .color-3 {
  background-color: #d97706;
}

.pathway-success-section .color-4 {
  background-color: #1e1b4b;
}

.pathway-success-section .color-5 {
  background-color: #c2410c;
}

.pathway-success-section .feature-card {
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 400px;
}

.pathway-success-section .text-end .feature-card {
  margin-left: auto;
}

.pathway-success-section .feature-card:hover {
  transform: translateY(-5px);
}

.pathway-success-section .feature-card .icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.pathway-success-section .feature-card .icon-wrapper i {
  font-size: 24px;
  color: #fff;
}

.pathway-success-section .feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

.pathway-success-section .color-1-bg {
  background-color: #5b21b6 !important;
}

.pathway-success-section .color-2-bg {
  background-color: #701a75;
}

.pathway-success-section .color-3-bg {
  background-color: #d97706;
}

.pathway-success-section .color-4-bg {
  background-color: #1e1b4b;
}

.pathway-success-section .color-5-bg {
  background-color: #c2410c;
}

.eligibility-section {
  background-color: #26002e;
  
  padding: 40px 0;
  color: #ffffff;
}

.ticket-section {
  padding: 60px 0;
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
}

.ticket-header-bar {
  background: linear-gradient(90deg, #cfaa56 0%, #f7e2a9 50%, #cfaa56 100%);
  text-align: center;
  padding: 15px 20px;
  border-radius: 4px 4px 0 0;
  
  color: #000;
}

.ticket-header-bar h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0d0d25;
}

.ticket-header-bar p {
  font-size: 14px;
  font-weight: 600;
  margin: 5px 0 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
}

.ticket-wrapper {
  display: flex;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  overflow: hidden;
  position: relative;
}

.ticket-left {
  background-color: #38003c;
  
  color: #fff;
  padding: 30px 40px;
  flex: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ticket-content {
  position: relative;
  z-index: 2;
}

.ticket-right {
  background-color: #fff;
  padding: 30px;
  flex: 1;
  color: #000;
  display: flex;
  flex-direction: column;
  min-width: 300px;
}

.ticket-right h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000;
}

.ticket-right .info-group label {
  color: #888;
}

.ticket-section .highlight {
  font-weight: 700;
  font-size: 18px !important;
}

.ticket-divider {
  position: relative;
  width: 0;
  border-right: 2px dashed #ccc;
  background: #fff;
}

.growth-trend-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-20px, 20px);
  }
}

.pathway-section {
  background: #f9fafb;
  position: relative;
  overflow: hidden;
}

.pathway-visual-container {
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.pathway-graphic {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  display: block;
}

.pathway-visual-container:hover .image-wrapper {
  transform: translateY(-5px);
}

.comparison-table {
  width: 100% !important;
  margin-bottom: 0 !important;
  background-color: #fff !important;
  border-collapse: collapse !important;
  border: none !important;
}

.comparison-table th {
  padding: 25px 20px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  border: none !important;
  vertical-align: middle !important;
  text-transform: uppercase !important;
}

.comparison-table td {
  padding: 18px 20px !important;
  vertical-align: middle !important;
  font-size: 16px !important;
  color: #333 !important;
  border: 1px solid #bbb !important;
}

.think-tank-area {
  background: #f9fafb;
}

.think-tank-area .title {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.think-tank-area .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: #F1A63E;
  border-radius: 10px;
}

.think-tank-card {
  width: 100%;
  max-width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 992px) {
  .school-think-tank .row {
    max-width: 920px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}



.think-tank-card img {
  width: 90%;
  height: auto;
  display: block;
}

.think-tank-area {
  background: #ffffff;
}

.think-tank-area {
  background: #f9fafb;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  margin-top: 60px;
}

.marquee-row {
  display: flex;
  gap: 30px;
  width: max-content;
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-wrapper:hover .marquee-row {
  animation-play-state: paused;
}

.news-area {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
  padding: 80px 0 100px;
}

.news-slider-wrapper {
  position: relative;
  padding-bottom: 56px;
  padding-left: 50px;
  padding-right: 50px;
}

.news-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 10;
  width: 42px;
  height: 42px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #A13E99;
  font-size: 22px;
}

.news-nav-btn:hover {
  background: #A13E99;
  border-color: #A13E99;
  color: #fff;
}

.news-prev {
  left: 0;
}

.news-next {
  right: 0;
}

.news-swiper {
  padding: 10px 4px 10px;
}

.news-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-8px);
}

.news-card:hover .news-image img {
  transform: scale(1.08);
}

.category-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: linear-gradient(135deg, #A13E99, #7c2e76);
  color: #fff;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(161, 62, 153, 0.35);
}

.news-content {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.meta-item {
  font-size: 12.5px;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.meta-item i {
  font-size: 14px;
  color: #A13E99;
}

.news-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-content h3 a {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-content h3 a:hover {
  color: #A13E99;
}

.news-content p {
  color: #64748b;
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #A13E99;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.3s ease, color 0.3s ease;
}

.read-more-btn:hover {
  color: #7c2e76;
  gap: 12px;
}

.read-more-btn:hover .btn-arrow {
  background: rgba(161, 62, 153, 0.2);
}

.trus-eco-sy {
  padding: 50px 0;
  background-color: #f9fafb;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.trust-card {
  aspect-ratio: 1.1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: default;
}

.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.organistion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.org-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}

.org-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: all 0.3s ease;
}

.org-card:hover .org-logo {
  filter: grayscale(0);
}

.dossier-modal .referral-input-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dossier-modal .referral-field {
  flex: 1;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dossier-modal .referral-field.referral-verified {
  border-color: #28a745 !important;
  background-color: #f0fff4 !important;
  color: #155724;
}

.dossier-modal .btn-apply-coupon {
  flex-shrink: 0;
  background: linear-gradient(135deg, #8A2BE2, #A13E99);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.dossier-modal .btn-apply-coupon:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(138, 43, 226, 0.4);
  filter: brightness(1.1);
}

.dossier-modal .btn-apply-coupon:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.dossier-modal .referral-applied-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #d4edda;
  color: #155724;
  border: 1.5px solid #28a745;
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  animation: badge-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes badge-pop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.dossier-modal .referral-success-msg {
  display: block;
  margin-top: 5px;
  font-size: 12.5px;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.celebration-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.celebration-overlay.show {
  display: flex;
}

.celebration-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(138, 43, 226, 0.35), 0 0 0 1px rgba(138, 43, 226, 0.08);
  animation: card-bounce-in 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes card-bounce-in {
  0% {
    transform: scale(0.6) translateY(40px);
    opacity: 0;
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.confetti-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  overflow: hidden;
  pointer-events: none;
}

.confetti-particle {
  position: absolute;
  top: -20px;
  border-radius: 2px;
  animation: confetti-fall linear infinite;
  opacity: 0.85;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translateY(160px) rotate(540deg);
    opacity: 0;
  }
}

.celebration-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.08);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #555;
  transition: background 0.2s, transform 0.2s;
}

.celebration-close:hover {
  background: rgba(0, 0, 0, 0.15);
  transform: rotate(90deg);
}

.celebration-content {
  padding: 48px 36px 36px;
  text-align: center;
}

.celebration-emoji {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
  animation: emoji-bounce 0.8s ease 0.3s both;
}

@keyframes emoji-bounce {
  0% {
    transform: scale(0) rotate(-30deg);
  }

  60% {
    transform: scale(1.25) rotate(10deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

.celebration-title {
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8A2BE2, #A13E99, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.celebration-body {
  text-align: left;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.65;
}

.celebration-body p {
  margin-bottom: 8px;
}

.celebration-body strong {
  color: #511970;
}

.celebration-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0d0f0, transparent);
  margin: 14px 0;
}

.celebration-referral-note {
  color: #8A2BE2;
  font-weight: 500;
}

.celebration-welcome {
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

.celebration-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  background: linear-gradient(135deg, #8A2BE2 0%, #A13E99 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(138, 43, 226, 0.35);
}

.celebration-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(138, 43, 226, 0.45);
  filter: brightness(1.08);
}

.celebration-fade-enter-active,
.celebration-fade-leave-active {
  transition: opacity 0.35s ease;
}

.celebration-fade-enter-from,
.celebration-fade-leave-to {
  opacity: 0;
}

.dossier-modal .modal-content {
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(138, 43, 226, 0.2);
}

.dossier-modal .modal-title {
  color: #511970 !important;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
}

.dossier-modal .custom-input {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.dossier-modal .custom-input:focus {
  background-color: #fff;
  border-color: #8A2BE2;
  box-shadow: 0 0 0 4px rgba(138, 43, 226, 0.1);
  outline: none;
}

.dossier-modal .custom-checkbox .form-check-input {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #000 !important;
  cursor: pointer;
}

.dossier-modal .custom-checkbox .form-check-input:checked {
  background-color: #8A2BE2;
  border-color: #8A2BE2;
}

.dossier-modal .custom-checkbox .form-check-label {
  padding-left: 8px;
  padding-top: 3px;
  cursor: pointer;
}

.dossier-modal .btn-register {
  background: linear-gradient(90deg, #8A2BE2 0%, #A13E99 100%);
  color: white;
  border: none;
  border-radius: 12px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(138, 43, 226, 0.3);
}

.dossier-modal .btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(138, 43, 226, 0.4);
  filter: brightness(1.1);
}

.dossier-modal .btn-register:active {
  transform: translateY(0);
}

.dossier-modal .form-label {
  color: #4a4a68;
}

.dossier-modal .searchable-select {
  position: relative;
  width: 100%;
}

.dossier-modal .dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  z-index: 9999;
  margin-top: 4px;
}

.dossier-modal .dropdown-item {
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
  color: #4a4a68;
  white-space: normal;
  line-height: 1.4;
}

.dossier-modal .dropdown-item:hover {
  background-color: #f8f0ff;
  color: #8A2BE2;
}

.dossier-modal .dropdown-list::-webkit-scrollbar {
  width: 6px;
}

.dossier-modal .dropdown-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.dossier-modal .dropdown-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.dossier-modal .dropdown-list::-webkit-scrollbar-thumb:hover {
  background: #8A2BE2;
}

.dossier-modal .custom-tooltip-wrapper {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.dossier-modal .custom-tooltip-content {
  visibility: hidden;
  opacity: 0;
  width: 260px;
  background-color: #A13E99;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 8px 12px;
  position: absolute;
  z-index: 1060;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: none;
  font-weight: normal;
}

.dossier-modal .custom-tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #A13E99 transparent transparent transparent;
}

.dossier-modal .custom-tooltip-wrapper:hover .dossier-modal .custom-tooltip-content {
  visibility: visible;
  opacity: 1;
}

.dossier-modal .form-check-input {
  width: 20px !important;
  height: 20px !important;
  border: 2px solid #000000 !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  background-color: #fff !important;
  margin-top: 0 !important;
  position: relative !important;
  display: inline-block !important;
  vertical-align: middle !important;
  transition: all 0.2s ease !important;
}

.dossier-modal .form-check-input:checked {
  background-color: #8A2BE2 !important;
  
  border-color: #8A2BE2 !important;
}

.dossier-modal .form-check-label,
.dossier-modal .consent-label span {
  font-size: 14px !important;
  color: #4A4A4A !important;
  cursor: pointer !important;
}

.dossier-modal .consent-label {
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

#paymentStatusModal .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1055;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#paymentStatusModal .btn-close:hover {
  transform: scale(1.1);
}


@media (max-width: 1200px) {
  .pathway-success-section .section-header .title {
    font-size: 28px;
  }

  .ticket-header-bar h2 {
    font-size: 28px;
  }

  .think-tank-area {
    padding: 80px 0;
  }

}

@media (max-width: 991px) {
  .pathway-success-section .timeline-content {
    width: 42%;
  }

  .pathway-success-section .marker-circle {
    width: 40px;
        height: 40px;
        font-size: 16px;
  }

  .pathway-success-section .feature-card {
    padding: 15px;
  }

  .pathway-success-section .feature-card h4 {
    font-size: 16px;
  }

  .pathway-success-section .section-header .title {
    font-size: 24px;
  }

  .ticket-header-bar h2 {
    font-size: 24px;
  }

  .ticket-header-bar {
    padding: 10px 15px;
  }

  .ticket-wrapper {
    flex-direction: column;
  }

  .ticket-right {
    border-top: 2px dashed #ccc;
        min-width: auto;
  }

  .ticket-divider {
    display: none;
  }

  .think-tank-area {
    padding: 60px 0;
  }

  .news-area {
    padding: 60px 0 80px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .organistion-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {
  .modal-overlay {
    padding: 10px;
  }

  .modal-overlay .modal-container {
    border-radius: 20px;
  }

  .modal-overlay .modal-content {
    padding: 40px 20px;
  }

  #eligibilityChecklistModal .modal-overlay h3 {
    font-size: 28px;
        margin-bottom: 10px;
  }

  .modal-overlay .description {
    font-size: 16px;
        margin-bottom: 30px;
        padding: 0 10px;
  }

  .modal-overlay .checklist {
    grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 30px;
  }

  .modal-overlay .checkbox-item label {
    padding: 15px;
        gap: 12px;
        font-size: 15px;
  }

  .modal-overlay .custom-checkbox {
    width: 24px;
        height: 24px;
  }

  .modal-overlay .icon-circle {
    width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
  }

  .modal-overlay .success-message h4,
    .modal-overlay .modal-overlay .error-message h4 {
    font-size: 20px;
  }

  .modal-overlay .close-btn {
    top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
  }

  .modal-overlay .close-btn svg {
    width: 20px;
        height: 20px;
  }

  .modal-overlay .default-btn {
    width: 100%;
        justify-content: center;
  }

}

@media (min-width: 768px) {
  .dossier-modal .custom-input {
    padding: 12px 18px;
  }

}

@media (max-width: 767px) {
  .pathway-success-section .timeline-line {
    left: 20px;
  }

  .pathway-success-section .timeline-row,
    .pathway-success-section .timeline-row.reverse {
    flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
        gap: 15px;
        margin-bottom: 40px;
  }

  .pathway-success-section .timeline-marker {
    width: auto;
        position: absolute;
        left: 0;
        top: 0;
  }

  .pathway-success-section .marker-circle {
    width: 40px;
        height: 40px;
        box-shadow: none;
  }

  .pathway-success-section .timeline-content {
    width: 100%;
        padding-left: 60px;
        
        text-align: left !important;
  }

  .pathway-success-section .text-end .feature-card {
    margin-left: 0;
  }

  .pathway-success-section .content-text {
    text-align: left;
        margin-bottom: 10px;
  }

  .pathway-success-section .timeline-row {
    position: relative;
  }

  .pathway-success-section .timeline-row>div:nth-child(1) {
    order: 2;
        margin-bottom: 10px;
  }

  .pathway-success-section .timeline-row>div:nth-child(2) {
    order: 1;
  }

  .pathway-success-section .timeline-row>div:nth-child(3) {
    order: 3;
  }

  .pathway-success-section .timeline-row.reverse>div:nth-child(1) {
    order: 3;
  }

  .pathway-success-section .timeline-row.reverse>div:nth-child(3) {
    order: 2;
        
        margin-bottom: 10px;
  }

  .pathway-success-section .timeline-content {
    width: 100%;
  }

  .eligibility-section {
    padding: 50px 0;
  }

  .growth-trend-section {
    padding: 60px 0;
  }

  .pathway-section {
    padding: 60px 0;
  }

  .pathway-visual-container {
    padding: 10px;
  }

  .news-area {
    padding: 50px 0 70px;
  }

}

@media (max-width: 580px) {
  .modal-body {
    padding: 1rem;
  }

}

@media (max-width: 576px) {
  .celebration-content {
    padding: 44px 22px 28px;
  }

  .celebration-title {
    font-size: 1.5rem;
  }

  .celebration-emoji {
    font-size: 52px;
  }

  .dossier-modal .modal-content {
    border-radius: 20px;
  }

  .dossier-modal .modal-body {
    padding: 35px 20px 25px !important;
  }

  .dossier-modal .modal-title {
    font-size: 24px;
        line-height: 1.1;
  }

  .dossier-modal .btn-close {
    padding: 0.5rem;
        margin: 0.5rem !important;
  }

  .dossier-modal .btn-register {
    padding-top: 12px !important;
        padding-bottom: 12px !important;
        font-size: 14px;
  }

  #paymentStatusModal .btn-close {
    top: 10px;
        right: 10px;
        padding: 0.5rem;
  }

}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 650px;
  }

}

@media (max-width: 575px) {
  .news-slider-wrapper {
    padding-left: 0;
        padding-right: 0;
  }

  .news-nav-btn {
    display: none;
  }

  .news-area {
    padding: 40px 0 60px;
  }

  .trust-card {
    aspect-ratio: auto;
        padding: 30px 15px;
  }

  .org-card {
    height: 73px;
        padding: 5px;
  }

  .organistion-grid {
    gap: 0px;
  }

}

@media (max-width: 565px) {
  .timeline-container {
    margin: 30px auto 0;
  }

  .ticket-section {
    padding: 30px 0;
  }

  .ticket-section span {
    font-size: 12px !important;
  }

  .ticket-header-bar h2 {
    font-size: 14px;
  }

  .ticket-header-bar p {
    font-size: 12px;
  }

  .ticket-right {
    padding: 15px 30px;
  }

}

@media (max-width: 480px) {
  .modal-overlay .modal-content {
    padding: 35px 15px;
  }

  #eligibilityChecklistModal .modal-overlay h3 {
    font-size: 24px;
  }

  .modal-overlay .description {
    font-size: 14px;
  }

  .modal-overlay .checkbox-item label {
    padding: 12px;
        font-size: 14px;
  }

}

@media (max-width : 768px) {
  .comparison-table th {
    padding: 15px 10px;
        font-size: 14px;
        white-space: nowrap;
  }

  .comparison-table td {
    padding: 10px;
        font-size: 14px;
  }

}

@media (max-width : 575px) {
  .comparison-table {
    min-width: 400px;
  }

  .comparison-table th {
    font-size: 10px;
  }

}

@media (max-width : 425px) {
  .comparison-table {
    min-width: 350px;
  }

  .comparison-table th {
    font-size: 8px;
  }

  .comparison-table td {
    font-size: 12px;
  }

}
















.footer-warp {
  background: #3D2C5E;
}

.footer-widget h3 {
  font-size: 20px;
  margin-bottom: 25px;
  color: var(--white);
}

.footer-widget .footer-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 10px;
}

.footer-widget .footer-list li {
  position: relative;
  margin-bottom: 8px;
}

.footer-widget .footer-list li:last-child {
  margin-bottom: 0;
}

.footer-widget .footer-list li a {
  color: #c5c5cf;
}

.footer-widget .footer-list li a:hover {
  color: var(--primary);
  letter-spacing: 1px;
}

.footer-widget .form-control {
  height: 70px;
  background: #595970;
  color: #cacad1;
  font-size: 14px;
  padding-left: 20px;
  border-radius: 0;
  border: none;
  transition: 0.6s;
  margin-bottom: 20px;
}

.footer-widget .form-control:focus {
  box-shadow: unset;
}

.footer-widget .form-control:focus::-moz-placeholder {
  color: transparent;
}

.footer-widget .form-control:focus::placeholder {
  color: transparent;
}

.footer-widget .form-control::-moz-placeholder {
  -moz-transition: 0.6s;
  transition: 0.6s;
  color: #cacad1;
}

.footer-widget .form-control::placeholder {
  transition: 0.6s;
  color: #cacad1;
}

.footer-widget .footer-btn {
  display: block;
  color: #f8ca4d;
  font-weight: 600;
  font-family: Work Sans;
  background-color: transparent;
  border: none;
}

.footer-widget .footer-btn:nth-child(3) {
  margin-bottom: 0;
}

.footer-widget .footer-btn i {
  position: relative;
  left: 2px;
  top: 2px;
  font-size: 20px;
}

.footer-widget .footer-btn span {
  position: relative;
}

.footer-widget .footer-btn span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 0%;
  transition: 0.6s;
  background-color: rgb(252, 100, 65);
}

.footer-widget .footer-btn:hover {
  color: rgb(252, 100, 65);
}

.footer-widget .footer-btn:hover span::before {
  width: 100%;
}

.footer-widget .footer-form {
  margin-bottom: 50px;
}

.footer-widget .footer-logos {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-widget .footer-logos li {
  display: inline-block;
  padding-right: 24px;
}

.footer-widget .footer-logos li:last-child {
  padding-right: 0;
}

.col-lg-4:nth-child(4) .footer-widget {
  margin-left: 30px;
}

.col-lg-3:nth-child(2) .footer-widget {
  margin-left: -20px;
}

.col-lg-2:nth-child(3) .footer-widget {
  margin-left: -50px;
}

.copy-right-warp {
  background: #862E84;
  padding-top: 25px;
  padding-bottom: 25px;
}

.copy-right-warp .copy-right-content {
  text-align: center;
}

.copy-right-warp .copy-right-content p {
  color: #b8b8b8;
  font-weight: 400;
}

.copy-right-warp .copy-right-content p a {
  color: var(--white);
  font-weight: 700;
}

.copy-right-warp .copy-right-content p span {
  color: var(--white);
  font-weight: 700;
}

.ticket-footer {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  margin-top: 30px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
  z-index: 2;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.footer-apply-btn {
  background: #A13E99;
  border: none;
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
  display: inline-block;
  width: auto;
}

.footer-apply-btn:hover {
  background: #8b2e87;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(161, 62, 153, 0.35);
}

.footer-info {
  padding-top: 30px;
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-widget .footer-logos li {
    padding-right: 15px;
  }

}

@media (max-width: 991px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media only screen and (max-width: 991px) {
  .col-lg-3:nth-child(2) .footer-widget {
    margin-left: 0;
  }

  .col-lg-2:nth-child(3) .footer-widget {
    margin-left: 0;
  }

  .col-lg-4:nth-child(4) .footer-widget {
    margin-left: 0;
  }

  .footer-widget h3 {
    font-size: 18px;
        margin-bottom: 15px;
  }

  .footer-widget .form-control {
    height: 50px;
        padding-left: 15px;
        margin-bottom: 12px;
  }

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

}

@media (max-width: 565px) {
  .ticket-footer {
    margin-top: 15px;
  }

  .ticket-footer {
    font-size: 12px;
  }

}

/* ======================================================
   GLOBAL CSS
====================================================== */

/* (No desktop styles defined for this section) */

/* (No responsive styles defined for this section) */

/* ======================================================
   HEADER CSS
====================================================== */

/* (No desktop styles defined for this section) */

/* (No responsive styles defined for this section) */

/* ======================================================
   BANNER CSS
====================================================== */

/* (No desktop styles defined for this section) */

/* (No responsive styles defined for this section) */

/* ======================================================
   ABOUT CSS
====================================================== */

/* (No desktop styles defined for this section) */

/* (No responsive styles defined for this section) */

/* ======================================================
   FEATURES CSS
====================================================== */

/* (No desktop styles defined for this section) */

/* (No responsive styles defined for this section) */

/* ======================================================
   TESTIMONIAL CSS
====================================================== */

/* (No desktop styles defined for this section) */

/* (No responsive styles defined for this section) */

/* ======================================================
   FAQ CSS
====================================================== */

/* (No desktop styles defined for this section) */

/* (No responsive styles defined for this section) */

/* ======================================================
   FOOTER CSS
====================================================== */

/* (No desktop styles defined for this section) */

/* (No responsive styles defined for this section) */
