@font-face {
  font-family: "Creato Regular";
  src: url("../fonts/creatodisplay-regular-webfont.7ab848c55a4ec10b7b2d.woff2")
    format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Creato Bold";
  src: url("../fonts/creatodisplay-bold-webfont.dfd6bd34c8536d3ba95e.woff2")
    format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Creato Medium";
  src: url("../fonts/creatodisplay-medium-webfont.d88af0f96d93857c88f2.woff2")
    format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "AeonikPro-Black-Capitalised";
  src: url("../fonts/AeonikPro-Black-Capitalised.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}

:root {
  --main-text-custom: #343434;
  --main-dark-custom: #343434;
  --main-secondary: #151515;
  --main-tertiary: #413fe5;
  --primary: #ffd700;
  --green: #e8562e;
  --font-family-text: "Creato Regular", Arial, Helvetica, sans-serif;
  --font-family-bold: "Creato Bold", Arial, Helvetica, sans-serif;
  --font-family-medium: "Creato Medium", Arial, Helvetica, sans-serif;
  --custom-heading: "AeonikPro-Black-Capitalised", Arial, Helvetica, sans-serif;
}

html {
  font-size: 16px;
  scroll-padding-top: 180px;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-text);
  color: var(--main-secondary);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-bold);
  font-weight: 700;
}

.ft-custom-hero {
  font-size: 3rem;
}

.ft-custom-hero-3 {
  font-size: 2rem;
}

.ft-custom-hero-big {
  font-size: 4rem;
  font-family: var(--font-family-medium) !important;
  font-weight: 500;
  text-transform: uppercase;
}

.text-bold {
  font-family: var(--font-family-bold);
}

.text-green {
  color: var(--green);
}

.bg-green {
  background-color: var(--green) !important;
}

.course-button {
  background-color: #313030;
  padding: 10px 15px;
  border-radius: 50px;
  flex-wrap: wrap;
  /* backdrop-filter: blur(50px); */
  color: #fff;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Creates 4 columns */
  grid-template-rows: auto; /* Rows size based on content */
  gap: 2px; /* Space between grid items */
  height: 100%;
}

/* .item-element {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  height: 100%;
  color: #333;
  font-size: 20px;
  font-weight: bold;
} */

.item1 {
  grid-column: span 2; /* Spans two columns */
  grid-row: span 2; /* Spans two rows */
}

.item2 {
  grid-column: span 2;
  grid-row: span 1;
}

.item3 {
  grid-column: span 2;
  grid-row: span 2;
}

.item4 {
  grid-column: span 1;
  grid-row: span 1;
}

.item5 {
  grid-column: span 1;
  grid-row: span 1;
}

.item-img-box {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partner-name-logo {
  position: absolute;
  z-index: 1;
  right: 10px;
  left: 10px;
  bottom: 84px;
  /* background: white; */
  padding: 5px;
  border-radius: 8px;
}

/* .logo-box img {
  filter: grayscale(1);
} */

.main-chart {
  position: relative;
  display: inline-block;
  width: 110px;
  height: 110px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #515151;
}

.percent {
  display: inline-block;
  line-height: 110px;
  z-index: 2;
}

.percent:after {
  content: "%";
  margin-left: 0.1em;
  font-size: 1em;
}

.no-percent.percent:after {
  content: "" !important;
  margin-left: 0.1em;
  font-size: 1em;
}

.main-chart canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.text-regular {
  font-family: var(--font-family-text);
}

.text-medium {
  font-family: var(--font-family-medium);
}

.btn-size {
  /* height: 56px; */
  padding: 10px 30px;
}

.btn-main {
  background-color: var(--main-tertiary);
  color: #fff;
  font-family: var(--font-family-medium);
}

.btn-outline-main {
  border: 0.5px solid var(--main-tertiary);
  color: var(--main-tertiary);
}

.btn-outline-main:hover {
  background-color: var(--main-tertiary);
  color: #fff;
}

.btn-main:hover {
  background-color: var(--green);
  color: #fff;
}

.btn-outline-green {
  border: 1px solid var(--green);
  color: var(--green);
}

.btn-outline-green:hover {
  background-color: var(--green);
  color: #fff;
}

.table-font-size {
  /* border-collapse: separate; */
  border-spacing: 5px 0;
  /* font-size: 14px; */
}

.table-header {
  font-family: var(--font-family-bold);
  color: #fff !important;
}

.table > :not(caption) > * > * {
  border-bottom-width: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.ft-sm-2 {
  font-size: 10px !important;
}

.ft-md {
  font-size: 13px;
}

.btn-green {
  background-color: var(--green);
  color: #fff;
}

.btn-green:hover {
  background-color: var(--main-tertiary);
  color: #fff;
}

.main-content {
}

.video-main-container {
  position: relative;
  /* overflow: hidden; */
  height: auto;
}

.page-banner__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* background-color: var(--main-text-custom); */
  background-image: linear-gradient(#00262b38, rgb(18 27 50));
  opacity: 1;
}

.page-banner__video-overlay-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* background-color: var(--main-text-custom); */
  /* background-image: linear-gradient(270deg, #00262b38, rgb(18 27 50)); */
  background-image: linear-gradient(270deg, #00262b38, rgba(0, 0, 0, 1));
  opacity: 1;
}

.intro-content-absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  z-index: 1;
}

.main-video-view {
  width: 100% !important;
  object-fit: cover;
  object-position: center center;
}

/* .text-custom-heading{
  font-family: var(--custom-heading);
  font-weight: bold;
} */

.main-content-2 {
  margin-top: 50px;
}

.arrow-bullet {
  transform: rotate(270deg);
  width: 10px !important;
  height: 10px;
}

.invert-1 {
  filter: invert(1) !important;
}

.btn {
  font-family: var(--font-family-medium);
  text-transform: capitalize;
}

.btn-main-primary {
  background-color: var(--main-tertiary);
}

.bg-main-primary {
  background-color: var(--main-tertiary);
}

.bg-main-secondary {
  background-color: var(--primary);
}

.btn-main-secondary {
  background-color: var(--primary);
  color: var(--main-secondary);
}

.bg-main-tertiary {
  background-color: #120b26;
}

.btn-main-primary:hover {
  background-color: var(--primary);
}

.bg-main-yellow {
  background-color: var(--primary);
}

.btn-main-secondary:hover {
  background-color: var(--main-tertiary);
  color: #fff;
}

.text-main-primary {
  color: var(--main-tertiary);
}

.color-1 {
  color: #7a30ab;
}

.color-2 {
  color: #fc2641;
}

.color-3 {
  color: #00e785;
}

.color-7 {
  color: var(--green);
}

.color-5 {
  color: var(--primary);
}

.color-6 {
  color: #413fe5;
}

.color-4 {
  color: #120b26;
}

.bg-color-1 {
  background-color: #7a30ab;
}

.bg-color-2 {
  background-color: #fc2641;
}

.bg-color-3 {
  background-color: #00e785;
}

.bg-color-4 {
  background-color: #120b26 !important;
}

.hero-text {
  font-size: 4rem;
}

.hero-text-2 {
  font-size: 3rem;
}

.sub-text {
  font-size: 1.5rem;
}

.sub-text-2 {
  font-size: 1.3rem;
}

.text-muted-2 {
  color: #535e73;
}

.bg-muted {
  background-color: #535e73;
}

.bg-muted-2 {
  background-color: #535e738a;
}

.hero-section {
  background-image: url(../images/pattern-lines.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.vh-75 {
  height: 75vh;
}

.university-box {
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  transition: all 0.5s ease-in-out;
}

.iframe-cover {
  width: 100% !important;
  object-fit: cover;
  object-position: center center;
}

.testimonial-sect iframe {
  border-radius: 10px;
}

/* .university-box:hover {
  transform: translateY(10px) scale(0.9);
} */

.nav-custom {
  background-color: rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #edeffa;
}

.overlay {
  position: absolute;
  /* background: linear-gradient(0deg, rgba(0, 0, 0, 1) 10%, transparent 100%); */
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 10%,
    transparent 100%
  );
  display: block;
  left: 0;
  right: 0;
  height: 50%;
  bottom: 0;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

/* .prog-card {
  background-color: #f8f8f8;
} */

.z-index-1 {
  z-index: 1;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-title {
  /* padding: 15px;
  margin-top: -58px !important;
  border-radius: 10px;
  z-index: 1;
  position: relative;
  background: #fff;
  margin-right: 15px;
  margin-left: 15px; */
  font-size: 1rem;
}

.bi-star-fill {
  color: var(--primary);
}

.letter-space {
  font-size: 14px;
  letter-spacing: 0.1rem;
}

.sub-title {
  font-size: 1.2rem;
}

.text-bold-2 {
  font-family: var(--font-family-bold);
}

/* .font-sm{
  font-size: 13px;
} */

.profile-img-size {
  height: 50px;
  width: 50px;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}

.partner-logo-position {
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 10px;
  background: white;
  padding: 5px;
  border-radius: 8px;
}

.img-partner-box {
  height: 60px;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}

.img-circle {
  height: 100px;
  width: 100px;
  overflow: hidden;
  position: relative;
  border-radius: 50px;
}

.prog-img {
  height: 150px;
  overflow: hidden;
  position: relative;
}

.card {
  border-radius: 20px;
}

.border-rad-20 {
  border-radius: 20px;
}

.highlight {
  /* background-color: var(--main-tertiary);
  background: linear-gradient(-45deg, var(--main-tertiary), #a898fe, var(--main-tertiary)) 0 0 / 200% 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  animation: animateGradient 5s ease-in-out infinite; */
  color: var(--main-tertiary);
}

.text-highlight {
  background-image: linear-gradient(
    to right,
    var(--primary) 50%,
    var(--primary) 50%
  );
  background-size: 200%;
  background-position: 0 0;
  border-radius: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  width: 100%;
  position: relative;
  color: #000;
}

.u-text-highlight {
  animation-name: highlight;
  animation-duration: 0.75s !important;
  transition-duration: 0.75s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.image-box-partner {
  height: 500px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.clip-path-1 {
  clip-path: polygon(8% 0, 100% 0%, 93% 100%, 0% 100%);
}

@keyframes highlight {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.header-text {
  font-size: 3rem;
  line-height: 4rem;
}

.logo-box {
  height: 100px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid #f4f4f4;
  background-color: #fff;
}

.card {
  border-radius: 8px;
}

.object-fit-cover {
  object-fit: cover;
}

.object-fit-contain {
  object-fit: contain !important;
}

.object-position-center {
  object-position: center center;
}

.price-box {
  margin: 0 auto;
  background: #f6f6f6;
  border-radius: 10px;
  padding: 40px 15px;
  /*width: 500px;*/
}

.ui-widget-content {
  /* border: 1px solid #bdc3c7; */
  background: #f6f6f6;
  color: #222222;
  margin-top: 4px;
}

.ui-widget.ui-widget-content {
  border: unset;
}

.ui-widget-content {
  border: unset;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 7.2em;
  height: 2.7em;
  cursor: default;
  margin: 0 -40px auto !important;
  text-align: center;
  line-height: 30px;
  color: #ffffff;
  font-size: 12px;
}

.ui-slider .ui-slider-handle .glyphicon {
  color: #ffffff;
  margin: 0 1px;
  font-size: 11px;
  opacity: 0.7;
}

.ui-corner-all {
  border-radius: 20px;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.9em;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
  /* border: 1px solid #f9f9f9; */
  background: var(--main-tertiary);
}

.ui-slider-horizontal .ui-slider-handle {
  margin-left: -0.5em;
}

.ui-slider .ui-slider-handle {
  cursor: pointer;
}

.ui-slider a,
.ui-slider a:focus {
  cursor: pointer;
  outline: none;
}

.price,
.lead p {
  font-weight: 600;
  font-size: 32px;
  display: inline-block;
  line-height: 60px;
  border: 0;
  width: 100%;
}

h4.great {
  background: #000;
  /* margin: 0 0 25px -60px; */
  padding: 7px 15px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 5px;
  display: inline-block;
  -moz-box-shadow: 2px 4px 5px 0 #ccc;
  -webkit-box-shadow: 2px 4px 5px 0 #ccc;
  box-shadow: 2px 4px 5px 0 #ccc;
}

.total {
  border-bottom: 1px solid #7f8c8d;
  /*display: inline;
  padding: 10px 5px;*/
  position: relative;
  padding-bottom: 20px;
}

.total:before {
  content: "";
  display: inline;
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 3px;
  background: #7f8c8d;
  opacity: 0.5;
}

.price-slider {
  margin-bottom: 70px;
}

.price-slider span {
  font-weight: 200;
  display: inline-block;
  color: #7f8c8d;
  font-size: 13px;
}

.form-pricing {
  background: #ffffff;
  /* padding: 30px; */
  border-radius: 8px;
}

.price-form {
  background: #ffffff;
  margin-bottom: 10px;
  padding: 30px;
  /* border: 1px solid #eeeeee; */
  min-height: 100%;
  border-radius: 8px;
  /*-moz-box-shadow:    0 5px 5px 0 #ccc;
    -webkit-box-shadow: 0 5px 5px 0 #ccc;
    box-shadow:         0 5px 5px 0 #ccc;*/
}

.prog-card {
  transition: 0.5s ease-in-out;
}

.pricing-card.prog-card:hover {
  background-color: var(--main-secondary);
  color: #fff;
}

.prog-card:hover {
  transform: scale3d(1.03, 1.03, 1.08) translate3d(0.1rem, -0.25rem, 20rem);
  box-shadow: 0 0 40px -8px rgb(0 0 0 / 16%), 0 0 24px -16px rgb(0 0 0 / 16%);
  z-index: 1;
}

.form-group {
  margin-bottom: 0;
}

.form-group span.price {
  font-weight: 200;
  display: inline-block;
  color: #7f8c8d;
  font-size: 14px;
}

.help-text {
  display: block;
  margin-bottom: 10px;
  color: #737373;
  /*position: absolute;*/
  /*margin-left: 20px;*/
  font-weight: 200;
  /*text-align: right;*/
  width: 188px;
}

.price-form label {
  font-weight: 200;
  font-size: 21px;
}

img.payment {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.ui-slider-range-min {
  background: var(--main-tertiary);
}

.active-month,
.active-term {
  background: var(--main-tertiary);
  color: #fff;
}

/* HR */

hr.style {
  margin-top: 0;
  border: 0;
  border-bottom: 1px dashed #ccc;
  background: #999;
}

.accordionFAQ-2 .accordion-item {
  padding-top: 10px;
  padding-bottom: 10px;
  border: 0;
  border-bottom: 1px solid rgba(237, 239, 250, 1);
}

.accordionFAQ-2 .accordion-button {
  font-family: var(--font-family-medium);
  /* font-size: 24px; */
  font-weight: 400;
  line-height: 34.8px;
  text-align: left;
  color: var(--main-secondary);
}

.collapse-main-content {
  padding: 24px;
  border: 0px;
  color: rgba(78, 103, 133, 1);
  background-color: rgba(244, 246, 255, 1);
  border-bottom: 1px solid rgba(237, 239, 250, 1);
}

.main-footer {
  background-color: #120b26;
}

.bg-dark-blue {
  background-color: #120b26;
}

.footer-link-list li {
  margin-bottom: 10px;
}

.footer-link-list li a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

.ft-sm {
  font-size: 13px;
}

.gap-20 {
  gap: 20px;
}

.gap-15 {
  gap: 15px;
}

.top-100px {
  top: 100px;
}

.nav-custom-link .nav-item .nav-link {
  font-family: var(--font-family-bold);
  font-size: 15px;
}

.header-text-2 {
  font-size: 2.5rem;
  line-height: 3rem;
  text-transform: capitalize;
}

.form-control-size {
  height: 56px;
}

.form-control-width {
  width: 40%;
}

.calculator-font {
  font-family: var(--font-family-medium);
  font-size: 2rem;
}

.dropdown-container .dropdown-item {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1.1rem;
}

.dropdown-container .dropdown-item:hover {
  background-color: var(--main-tertiary);
  color: #fff;
}

.nav-custom.nav-pills .nav-link {
  padding: 15px;
  color: #777;
  border-radius: 50px;
}

.icon-flag-2 {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.form-control-custom {
  font-size: 40px;
  height: 60px;
  font-weight: 700;
}

.form-control-custom-2 {
  height: 45px;
  font-weight: 400;
  font-size: 13px;
}

.nav-custom.nav-pills .nav-link.active,
.nav-custom.nav-pills .show > .nav-link {
  background-color: transparent;
  border-radius: 50px;
  color: var(--main-tertiary);
  font-family: var(--font-family-bold);
  border-radius: 0;
  border-bottom: 4px solid var(--main-tertiary);
}

.bg-image-hero {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
}

.overlay-hero {
  background-image: linear-gradient(#00262b42, rgb(18 27 50));
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.overlay-hero-2 {
  /* background-image: linear-gradient(#141717cc, rgb(18 27 50)); */
  background-color: transparent;
  background-image: linear-gradient(90deg, #000000d1 28%, #ffffff00 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.img-partner-box img {
  max-width: 150px;
}

.partner-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.table > :not(caption) > * > * {
  border-bottom-width: 0;
}

.apply-img {
  background-image: url(../images/man-loan-2.jpg);
  background-attachment: fixed;
  height: 50vh;
}

.no-caret.dropdown-toggle::after {
  display: none;
}

.mosaic-grid-hero {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Creates 4 columns */
  grid-template-rows: auto;
  /* Rows size based on content */
  gap: 5px;
  /* Space between grid items */
  height: 100%;
}

/* .item-element {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    height: 100%;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    border-radius: 10px;
} */

.item1_1 {
  grid-column: span 1;
  /* Spans two columns */
  grid-row: span 2;
  /* Spans two rows */
}

.item2_1 {
  grid-column: span 1;
  grid-row: span 1;
}

.item3_1 {
  grid-column: span 1;
  grid-row: span 1;
}

.item4_1 {
  grid-column: span 1;
  grid-row: span 1;
}

.item5_1 {
  grid-column: span 2;
  grid-row: span 1;
}

.z-index-2 {
  z-index: 2;
}

.overlap-num {
  position: absolute;
  font-size: 7rem;
  top: -45px;
  left: -15px;
  z-index: 1;
  font-family: var(--font-family-medium);
  color: var(--primary);
}

.mosaic-grid-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Creates 4 columns */
  grid-template-rows: auto;
  /* Rows size based on content */
  gap: 5px;
  /* Space between grid items */
  height: 100%;
}

.mosaic-grid-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Creates 4 columns */
  grid-template-rows: auto;
  /* Rows size based on content */
  gap: 5px;
  /* Space between grid items */
  height: 100%;
}

.item-element {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
  background-color: #f0f0f0;
  height: 100%;
  position: relative;
  color: #333;
  font-size: 20px;
  font-weight: bold;
  border-radius: 10px;
}

.item1_2 {
  grid-column: span 1;
  /* Spans two columns */
  grid-row: span 2;
  /* Spans two rows */
}

.item2_2 {
  grid-column: span 1;
  grid-row: span 1;
}

.item3_2 {
  grid-column: span 1;
  grid-row: span 2;
}

.item4_2 {
  grid-column: span 1;
  grid-row: span 1;
}

.item5_2 {
  grid-column: span 1;
  grid-row: span 2;
}

.item6_2 {
  grid-column: span 1;
  grid-row: span 1;
}

.item7_2 {
  grid-column: span 1;
  grid-row: span 1;
}

.item8_2 {
  grid-column: span 1;
  grid-row: span 1;
}

/* .item5 {
grid-column: span 1;
grid-row: span 1;
} */

.item-img-box {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.hero-num {
  font-size: 4rem;
}

.hero-num-2 {
  font-size: 3.5rem;
}

.nav-custom-link .nav-item .nav-link {
  font-family: var(--font-family-regular);
  font-size: 18px;
}

.loader-screen {
  height: 100vh;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
}

.para-2 {
  font-size: 1.7rem;
}

.action-text {
  font-size: 4rem;
}

.grid-3-shape {
  grid-template-columns: repeat(4, 1fr);
}

.app-banner {
  background-image: url(../images/sky.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 100vh; */
}

.flag-icon {
  height: 40px;
  width: 40px;
  overflow: hidden;
  position: relative;
  border-radius: 50px;
}

.grid-main-container {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.avatar-circle {
  height: 150px;
  width: 150px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.pt-200 {
  padding-top: 200px;
}

.pt-150 {
  padding-top: 150px;
}

.introduction-section h1 {
  font-size: 6rem;
}

.team-box h5 {
  color: #fff;
}

.rounded-10 {
  border-radius: 10px;
}

.box-img-1 {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.box-yellow {
  /* border: 1px solid #ffba37a6; */
  padding: 10px;
  border-radius: 10px;
  background-color: #f7f7f7;
  height: 100%;
  font-size: 14px;
  color: #3e3e3e;
}

.nav-pills .nav-link {
  border-radius: 50px;
  color: #858585;
  padding: 10px 30px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: var(--main-tertiary);
}

.img-box-4 {
  height: 600px;
  overflow: hidden;
  position: relative;
}

.text-absolute-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
}

.text-absolute-2 h4 {
  font-size: 5rem;
  line-height: 5rem;
  text-shadow: 2px 10px 15px #1f1f1f;
}

.darken-img {
  filter: brightness(0.5);
}

.main-blog-container {
  margin-top: 70px;
}

@keyframes animateGradient {
  100% {
    background-position: 200% 0;
  }
}

@property --percent {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 0%;
}
.progress-stat {
  --fill-neutral: hsl(0 0% 25%);
  --fill-from: hsl(0 100% 50%);
  --fill-to: hsl(100 100% 50%);
  --part-count: 20;
  --part-spacing: 1deg;
  --part-width: 10%;
  --animation-duration: 2s;
  font-size: 2rem;
  width: 150px;
  aspect-ratio: 1;
  font-family: system-ui, sans-serif;
  color: #000;
  font-family: var(--font-family-bold);
  display: grid;
  place-items: center;
  position: relative;
  margin: 0 auto;
}

.progress-stat::before {
  content: "";
  inset: 0;
  position: absolute;
  border-radius: 50%;
  background-image: conic-gradient(
      transparent var(--percent),
      var(--fill-neutral) var(--percent)
    ),
    conic-gradient(var(--fill-from), var(--fill-to));
  --part-size: calc(360deg / var(--part-count) - var(--part-spacing));
  mask-image: repeating-conic-gradient(
      transparent 0 calc(var(--part-spacing) / 2),
      black calc(var(--part-spacing) / 2 + 0.25deg)
        calc(var(--part-spacing) / 2 + var(--part-size) - 0.25deg),
      transparent calc(var(--part-spacing) + var(--part-size) / 2)
        calc(var(--part-size) + var(--part-spacing))
    ),
    radial-gradient(
      100% 100%,
      black calc(50% - var(--part-width) - 1px),
      transparent calc(50% - var(--part-width))
    );
  mask-composite: subtract, add;
  animation: progress-fill var(--animation-duration) linear forwards;
}

.transfer-1 {
  animation-name: transfer-1;
  animation-iteration-count: infinite;
  animation-duration: 2s;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

.transfer-2 {
  animation-name: transfer-2;
  animation-iteration-count: infinite;
  animation-duration: 2s;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

.partner-heading {
  font-size: 4rem;
}

.partner-heading-2 {
  font-size: 5rem;
}

.partner-subtitle {
  font-size: 1.5rem;
}

.scroll-item.active {
  font-weight: bold;
  color: #000 !important;
  background: #fff;
  padding: 10px;
  border-radius: 7px;
}

.course-fixed {
  position: fixed;
  z-index: 9999;
  background: #264044;
  left: 0;
  right: 0;
  top: 0px;
}

.quick-payment-sect {
  overflow: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.tag-btn li {
  background-color: #e5e5e5;
  border-radius: 50px;
  padding: 10px 20px;
}

.main-grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.scroll-box {
  background-color: black;
  height: 5rem;
  width: 5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10px;
  cursor: pointer;
  animation-name: scroll-box;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.grid-split-payment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.add-image-in-box {
  background-size: 285px;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.ft-normal {
  font-size: 16px;
}

.glass-bg {
  border: 1px solid #d19623;
  border-radius: 10px;
  background-color: #ffefd7;
}

.cover-remit {
  height: 600px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.badge-opt {
  background-color: #ececec;
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 14px;
}

.box-blur {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  padding: 30px;
  border-radius: 10px;
}

.article-sm {
  width: 100%;
  height: 100px;
  overflow: hidden;
  position: relative;
}

.sidebar-cat li a {
  color: #353535;
  background-color: #d6d6d6;
  padding: 10px 15px;
  border-radius: 50px;
  text-decoration: none;
}

.sidebar-cat {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.sidebar-cat li a:hover {
  background-color: #00e785 !important;
  color: #fff !important;
}

.ft-hero {
  font-size: 3.5rem;
}

/***Enrolment***/

.bg-enrol-1 {
  background-color: #fff8d4;
}

.intro-box {
  height: 500px;
  width: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.btn-secondary.btn-radio {
  background-color: #dadadb;
  color: #000;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  color: var(--bs-btn-active-color);
  background-color: #000000;
  border-color: #000;
}

.enrol-bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/***End Enrolment ***/

.owl-carousel .owl-stage {
  display: flex;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}

.custom-badge {
  padding: 10px 15px;
  background-color: #e5e5e5;
  color: #000;
  border-radius: 50px;
  text-decoration: none;
  font-size: 10px;
}

.custom-height-view {
  min-height: 100vh;
}

.py-100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.img-partner-box-search {
  height: 60px;
  width: 100px;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}

.badge-main-success {
  background-color: #ffeddc !important;
  color: #ff8710 !important;
}

.badge-main-danger {
  background-color: #ffe6e9 !important;
  color: #fc2641 !important;
}

.hero-search {
  height: 200px;
  width: 100%;
}

@keyframes transfer-1 {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-10px);
  }
}

@keyframes scroll-box {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.2);
  }
}

@keyframes transfer-2 {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-20px);
  }
}

@keyframes progress-fill {
  from {
    --percent: 0%;
  }
}

@media screen and (max-width: 768px) {
  .hero-text {
    font-size: 2.5rem;
  }

  .custom-height-enrol {
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .intro-box {
    height: 300px;
    width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
  }

  .ft-hero {
    font-size: 2.5rem;
  }

  .add-image-in-box {
    background-image: unset !important;
  }

  .grid-split-payment {
    display: grid;
    grid-template-columns: 1fr;
    overflow: auto;
    /* padding-left: 25px;
    padding-right: 25px; */
    padding-top: 30px;
  }

  .quick-payment-sect {
    overflow: auto;
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: 100vh;
  }

  .main-grid-split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
  }

  .banner-height {
    height: 300px;
  }

  .mobile-scroll-bar {
    overflow: auto;
    gap: 20px;
    white-space: nowrap;
    padding: 10px;
  }

  .mosaic-grid-hero.d-add-block {
    display: flex;
    gap: 10px;
    position: relative;
    flex-direction: column;
    height: auto;
  }

  .action-text {
    font-size: 2.5rem;
  }

  .mosaic-grid-hero.d-add-block .item2_1 {
    display: none;
  }

  .grid-main-container {
    grid-template-columns: 1fr;
  }

  .order-grid-2 {
    order: 2;
  }

  .grid-main-item-1 {
    height: 300px;
  }

  .grid-main-item-2 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .grid-3-shape {
    grid-template-columns: repeat(1, 1fr);
  }

  .ft-custom-hero-big {
    font-size: 2.5rem;
    font-family: var(--font-family-medium) !important;
    font-weight: 500;
    text-transform: uppercase;
  }

  .para-2 {
    font-size: 1.3rem;
  }

  .full-height .main-video-view {
    height: 100vh;
  }

  .progress-stat {
    width: 120px;
  }

  .mosaic-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    gap: 2px;
    height: 100%;
  }

  .mosaic-grid-hero,
  .mosaic-grid-2,
  .mosaic-grid-3 {
    grid-template-columns: repeat(1, 1fr);
  }

  .ft-custom-hero-2 {
    font-size: 2.5rem;
  }

  .pt-100 {
    padding-top: 50px;
  }

  .pb-100 {
    padding-bottom: 50px;
  }

  .form-control-width {
    width: 100%;
  }

  .header-text {
    font-size: 2rem;
    line-height: 2.2rem;
  }

  .overlay {
    height: 30%;
  }

  .add-vh-100 {
    height: 100vh;
  }

  .nav-custom-link .nav-item {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-custom-link .nav-item .nav-link {
    font-size: 1.2rem;
    font-family: var(--font-family-text);
  }

  .w-100-sm {
    width: 100%;
  }

  .navbar-toggler-icon {
    width: 1em;
    height: 1em;
  }

  .font-xs {
    font-size: 13px;
  }

  .form-control-custom-small {
    font-size: 30px;
    height: 60px;
    font-weight: 700;
  }

  .pt-200 {
    padding-top: 130px;
  }

  .introduction-section h1 {
    font-size: 5rem;
    line-height: 5rem;
  }
}

@media screen and (min-width: 991px) {
  .sticky-top-lg {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }

  .custom-height-enrol {
    min-height: 100vh;
  }
}

.size-24 {
  font-size: 24px !important;
}

.pricing-card {
  border-radius: 25px !important;
}


/* New CSS Code */

.custom-currency-input .btn {
  background-color: #fff;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-right: 1px solid #ced4da;
}

.custom-currency-input .form-control {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.icon-flag-2 {
  width: 34px;
  height: 18px;
  overflow: hidden;
  border-radius: 4px;
}


/* Replace existing .icon-flag-2 styles with these */
.currency-flag-container {
  width: 30px;  /* Increased from 24px */
  height: 30px; /* Increased from 16px */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  overflow: hidden;
  background: #f8f9fa; /* Light background for contrast */
}

.currency-flag-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Maintains aspect ratio */
  object-position: center;
}

/* Add to your styles.css */
.amount-input {
  font-size: 2rem !important;
  font-weight: 700 !important;
  height: 70px !important; /* Make the input taller to match the larger text */
}

.currency-input {
  font-weight: 700 !important;
}