@font-face {
  font-family: dreamLover;
  src: url(../fonts/dreamlover.ttf);
}

/* Colors */
:root {
  --font-default: "Poppins";
  --sm-max-width: 480px;
  --md-max-width: 996px;
  --lg-max-width: 1600px;
  --sm-col-gap: 8px;
  --md-col-gap: 12px;
  --lg-col-gap: 16px;
  --full-span-val: 12;
  --color-default: #222222;
  /* --color-primary: #300031;
  --head-color : #300031;
  --color-secondary: #f85a40;
  --nav-links:#300031;
  --bg-color : #300031;
  --grade-to : #300031;
  --overlay-gradient: linear-gradient( 103deg, #3000318a, #300031);
  --footer-grad:linear-gradient(90deg, #300031 0%, #300031 106.49%);
  --footer-bg: #300031; */
  --footer-bg: #610c56e8;
  --overlay-gradient: rgba(18, 0, 21, 0.52);
  --btn-gradient: linear-gradient(90deg, #b82da7 0%, #7d1e6d 106.49%);
  --footer-grad: linear-gradient(90deg, #7d1e6d 0%, #b82da7 106.49%);
  --color-primary: #550047;
  --color-secondary: #f85a40;
  --nav-links: #55154c;
  --bg-color: #460c44;
  --head-color: #741c69;
  --grade-to: #bf2dad;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  user-select: none;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--nav-links);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
.sections-bg {
  background-color: #f6f6f6;
}

.section-header {
  text-align: center;
  padding-bottom: 60px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
  color: #6f6f6f;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 60px 0 60px 0;
  min-height: 20vh;
  position: relative;
  background-color: var(--color-primary);
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f6f6f6;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-default);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li + li {
  padding-left: 10px;
}

.breadcrumbs nav ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary);
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-primary);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary)
    transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: var(--color-primary);
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

.topbar .contact-info i {
  font-style: normal;
  color: #fff;
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

.topbar .dropdown button {
  border-radius: 2px;
  background: rgba(178, 71, 165, 0.52);
  max-width: 104px;
  min-width: 108px;
  border: none;
  padding: 0;
}

.topbar .dropdown button:focus {
  background: rgb(75, 0, 66, 0.1);
  outline: 1px solid white;
}

.topbar .dropdown button:hover {
  background: rgb(75, 0, 66, 0.1);
  outline: 1px solid white;
}

.topbar .dropdown button img {
  width: 25px;
  margin-right: 4px;
}

.topbar .dropdown-item {
  padding: 6px 8px;
  border-bottom: solid 1px #ddd;
  cursor: pointer;
}

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

.topbar .dropdown-item img {
  width: 25px;
}

.topbar .dropdown-menu {
  padding: 5px 0;
  position: relative;
  z-index: 100;
}

@media (max-width: 575px) {
  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 10px;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #fff;
}

.book_btn {
  border-radius: 5px;
  background: linear-gradient(90deg, #9f4294 0%, #6e1763 100%);
  border: none;
  color: #fff;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.book_btn:hover {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  outline: var(--color-primary);
}

.header {
  position: relative;
  transition: all 0.5s;
  z-index: 10;
  height: 90px;
  /* background: rgba(255, 255, 255, 0); */
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  /* box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.8); */
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.767);
}

.header .logo img {
  max-height: 60px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #000000;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: var(--nav-links);
}

.sticked-header-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .other-sec .navbar .dropdown li a,
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .other-sec .navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    color: rgba(0, 0, 0, 0.6);
  }

  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: var(--color-primary);
  }

  .other-sec.navbar a:hover,
  .other-sec .navbar .active,
  .other-sec .navbar .active:focus,
  .other-sec .navbar li:hover > a {
    color: #fff;
  }

  .other-sec .navbar .dropdown li:hover > a {
    color: #000000;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .other-sec .navbar .dropdown ul a,
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: var(--color-primary);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    height: fit-content;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #fff;
  }

  .navbar .dropdown a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: var(--head-color);
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: var(--color-primary);
  }

  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
    width: 300px;
  }

  .mobile-nav-show {
    color: rgba(0, 0, 0, 0.6);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 9px;
    top: 53px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: var(--nav-links);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    backdrop-filter: blur(10px);
    font-size: 16px;
    list-style: none;
    margin-top: 30px;
  }

  .navbar ul .border-none {
    border-style: none;
  }

  .navbar ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.288);
    width: 50%;
    margin-left: 10px;
  }

  .navbar ul .bar-bottom {
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 50px;
    margin-bottom: 0px;
    opacity: 0.8;
    border: 3px solid white;
  }

  .navbar ul .nav-blog {
    margin-left: 236px;
    position: fixed;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    color: white;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: var(--head-color);
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: var(--bg-color);
    border: 1px solid var(--bg-color);
    width: 100%;
  }

  .navbar .dropdown ul li {
    border-bottom: 0px solid rgba(255, 255, 255, 0.288);
    width: 100%;
    margin-left: 10px;
  }

  .navbar .dropdown ul li ul li {
    border-bottom: 0px solid rgba(255, 255, 255, 0.288);
    width: 100%;
    margin-left: 10px;
  }

  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: rgba(0, 0, 0, 0.6);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: -32px;
    font-weight: 900;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
    min-width: -webkit-fill-available;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    opacity: 0.8;
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/* @media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
    align-items: center;
  }
} */
.hero {
  width: 100%;
  /* background: #37517e10; */
  background: url("/img/frontend/hero-section/hero_bg1.png");
  background-size: cover;
  margin-top: -5.6rem;
  position: relative;
  align-items: center;
  background-position: center;
}

.hero .container {
  padding-top: 100px;
  position: relative;
  align-items: center;
}

#webinar .hero .container,
#blog .hero .container,
#contact .hero .container,
#ielts .hero .container,
#eoi-points .hero .container,
#success-strories .hero .container,
#about .hero .container {
  padding-top: 0px;
  position: relative;
  align-items: center;
}

#ielts .section-3 h1,
.hero h1 {
  font-family: Poppins;
  font-size: 42px;
  font-weight: 700;
  line-height: 56px;
  color: var(--head-color);
}

.hero h2 {
  margin-top: 20px;
  margin-bottom: 5px;
  color: #000;
  font-size: 23px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

#ielts .hero h2 {
  margin-top: 0px;
  margin-bottom: 50px;
  color: #ffffff;
  font-size: 23px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 5px;
  background: linear-gradient(
    93deg,
    var(--head-color) 1.01%,
    var(--grade-to) 98.99%
  );
  transition: 0.3s;
  margin: 10px 0 0 0;
  border: none;
  outline: none;
  color: #fff;
}

.btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 5px;
  background: linear-gradient(
    93deg,
    var(--head-color) 1.01%,
    var(--grade-to) 98.99%
  );
  transition: 0.3s;
  /* margin: 10px 0 0 0; */
  border: none;
  outline: none;
  color: #fff;
}

.hero .btn-get-started:hover {
  background: #ffffff;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  border-radius: 4px;
  border: 1px solid var(--head-color);
  line-height: 1;
  color: #000;
  text-decoration: none;
  background: none;
  transition: 0.3s;
}

.hero .btn-watch-video i {
  line-height: 0;
  color: #000000;
  font-size: 16px;
  transition: 0.3s;
  margin-right: 8px;
}

.hero .btn-watch-video:hover i {
  color: #ffffff;
}

.hero .btn-watch-video:hover {
  font-family: "Jost", sans-serif;
  letter-spacing: 1px;
  background: linear-gradient(
    93deg,
    var(--head-color) 1.01%,
    var(--grade-to) 98.99%
  );
  border: none;
  outline: none;
  color: #fff;
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.hero .hero-img img {
  width: 71.2%;
}

.hero .hero-img {
  display: flex;
  justify-content: center;
}

.service-count-bottom {
  display: none;
}

#app .services {
  min-height: 100vh;
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    text-align: center;
    align-items: center;
  }

  #app .services {
    min-height: auto;
  }

  .about {
    height: auto;
    text-align: center;
  }

  .about .bg-about {
    margin: 0px 0px;
  }

  .about .about-btn {
    text-align: center;
  }

  .services {
    min-height: 100vh;
    text-align: center;
  }

  .testimonials {
    min-height: 100vh;
    text-align: center;
  }

  .testimonials .client-pics-div {
    justify-content: center;
    display: none;
  }

  .testimonials .order-1 .client-pics-div img,
  .testimonials .order-1 .client-pics-div a {
    display: none;
  }

  .hero .animated {
    animation: none;
  }

  .hero .hero-img {
    text-align: center;
  }

  .hero .flag-div {
    justify-content: center;
  }

  .hero .hero-img img {
    width: 50%;
  }

  .service-count-bottom {
    display: block;
  }

  .testimonial-swiper-bg {
    width: 90%;
  }

  #ielts .section-1,
  .excellence-sec .container {
    text-align: center;
  }

  #eoi-points .count-div,
  #ielts .count-div {
    position: absolute;
    left: 0;
    top: 0;
    width: 53px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 14px 7px 65.5px 13px;
    background: #da85c6;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #eoi-points .count-div p,
  #ielts .count-div p {
    font-size: 2rem;
    margin-top: 10px;
  }

  #eoi-points .adv-sec-3 span,
  #ielts .adv-sec-3 span {
    margin-top: 3rem;
  }

  #contact .section-1 .map-container {
    max-width: 100%;
    margin-left: 0px;
    border-radius: 20px 20px 0px 0px;
    position: relative;

    z-index: 1;
  }

  .flag-select {
    padding: 10px;
    margin-left: 0px;
    display: flex;
    justify-content: center;
  }

  #contact .section-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .header .logo img {
    max-height: 45px;
    margin-left: -20px;
  }

  .header .book_btn {
    font-size: 10px;
  }

  .client .grid-wrapper {
    float: none;
    /* margin-right: auto; */
    position: relative;
    height: 87vw;
    width: 100vw;
    font-size: 12px;
    /* margin-left: -12vw; */
    top: 0rem;
  }

  #testimonials .hero h1 {
    font-size: 30px;
    margin-top: -10px;
  }

  .about .img-object img {
    width: 100%;
  }

  .client-pic-1,
  .client-pic {
    height: 40px;
    width: 40px;
  }

  #ielts .section-1 .partners-div .partners {
    display: flex;
    flex-wrap: nowrap;
    border: none;
    background: #f6f7ff;
    box-shadow: 0px 4px 12px 4px rgba(0, 0, 0, 0.03);
    border-radius: 0px;
    padding: 29px;
    padding-bottom: 112px;
    margin-top: -15px;
    margin: px;
    margin-bottom: -70px;
  }

  #ielts .section-1 .container {
    padding-left: 0px;
    padding-right: 0px;
    margin-top: -20px;
  }

  #ielts .section-1 .container .contact-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  #ielts .section-4 .ielts-4-hero {
    width: inherit;
  }

  #ielts .section-3 h1,
  #ielts .section-2 h1,
  #ielts .hero h1 {
    font-size: 28px;
    line-height: 36px;
    margin-top: 0px;
  }

  #career .jb-sec-1 {
    text-align: center;
  }

  #contact .section-1 .contact-card {
    border-radius: 20px;
    box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.18);
  }

  #contact .section-1 .contact-card.card {
    border-radius: 20px;
    margin-left: 0px;
    padding: 15px;
  }

  #contact .section-1 .map-container {
    overflow: hidden;
    padding-bottom: 50%;
    margin-left: 20px;
    margin-right: 20px;
    height: 100%;
    border-radius: 20px 20px 0px 0px;
    z-index: -1;
  }

  #app .hero .banner-slide-container .slide-banner-image {
    height: 97%;
    width: 97%;
  }

  .service-content .overview-content {
    justify-content: center;
  }

  .service-content h1.overview {
    font-size: 29px;
  }
  .bottom-desc {
    font-size: 14px;
  }
  #eoi-points .section-3 .adv-sec-3 h5 {
    margin-top: 19px;
    margin-left: 32px;
  }
  #eoi-points .modal-content .contact-col {
    padding: 10px 10px;
    border-radius: 0px;
  }
  #eoi-points .card-custom .table td {
    padding: 20px 15px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
    /* margin-top: -20px; */
  }

  .main-head {
    margin-top: -20px;
  }

  .hero h2 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #eoi-points .service-content .tab-content h2,
  #service .service-content .tab-content h2 {
    font-size: 24px;
    line-height: 24px;
  }

  #service .service-content h2 {
  }

  .hero .hero-tagline {
    margin-top: -15px;
  }

  #app .hero .sub-description {
    margin-top: -5px;
    font-size: 14px;
    line-height: 20px;
  }

  .testimonials h2 {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }

  .testimonials .testimonialReview .member {
    height: 80%;
  }

  .hero .hero-img {
    width: 80%;
    margin-top: -5px;
    align-items: center;
  }

  /* .get-started-div {
    margin-top: 20px;
  } */
  #app .flag-div img {
    margin-top: 0px;
    width: 35px;
    height: 35px;
  }

  #about .hero .hero-img {
    width: 80%;
    margin-top: -5px;
    align-items: center;
  }

  #ielts .hero h2 {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  #app .testimonials h2,
  #app .client h2,
  #app .client-story h2,
  #app .about h2,
  #app .services h2,
  #ielts .section-3 h1,
  #ielts .section-2 h1,
  #ielts .hero h1 {
    font-size: 28px;
    line-height: 36px;
    margin-top: 10px;
  }

  #app .testimonials h2 {
    font-size: 24px;
    line-height: 36px;
    margin-top: 0px;
  }

  #app .about .h3 {
    font-size: 14px;
  }

  #app .contact_us #about .about-sec-3 .card p,
  #app .about p {
    font-size: small;
  }

  #app .client-partners {
    text-align: center;
  }

  #app .contact_us {
    text-align: center;
  }

  #app .client-partners h3 {
    text-align: center;
    color: var(--color-primary);
    margin-top: 20px;
  }

  /* .section-5 .swiper-button-prev,
  .section-5 .swiper-button-next {
    margin-top: 50px;
  } */
  .contact_us p {
    font-size: smaller;
  }

  .hero .swiper {
    width: 100%;
    height: 110vh;
  }

  #app .hero .banner-slide-container .slide-banner-image {
    height: 97%;
    width: 97%;
  }

  #app .hero .swiper-pagination-bullet-active {
    height: 10px;
    width: 25px;
    border-radius: 10px;
    background-color: var(--head-color);
  }
}

@media (max-width: 575px) {
  .hero .hero-img img {
    width: 80%;
  }

  .hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }

  .hero .swiper {
    width: 100%;
    height: 110vh;
  }

  #app .hero .hero-img .banner-slide-container .slide-banner-image {
    height: 97%;
    width: 97%;
    margin-bottom: 5px;
    margin-left: 15px;
  }

  #app .hero .hero-img .slide-spinner-out {
    width: 84%;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.hero .sub-description {
  color: #5c5c5c;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px;
}

.hero .flags {
  height: 80%;
}

.hero .swiper-pagination-vertical.swiper-pagination-bullets,
.hero .swiper-vertical > .swiper-pagination-bullets {
  /* right: var(--swiper-pagination-right, 8px); */
  left: 0;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  margin-left: 20px;
}

.hero .swiper-pagination-bullet-active {
  height: 25px;
  border-radius: 10px;
  background-color: var(--head-color);
}

.hero .swiper-pagination {
  position: absolute;
  left: 0;
}

.hero .swiper {
  width: 100%;
  height: 100vh;
}

.services h2 {
  color: var(--head-color);
  font-family: Poppins;
  font-size: 51px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  /* margin-top: 50px; */
}

.excellence-sec .top-grad,
.services .top-grad {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 65%;
  flex-shrink: 0;
  background: radial-gradient(
    50% 50% at 0% 0%,
    rgba(255, 0, 212, 0.12) 0%,
    rgba(217, 217, 217, 0) 100%
  );
}

.service-count {
  right: 0;
  /* margin-top: 50px; */
  margin-right: 50px;
}

.service-count .count {
  right: 0;
  height: 100px;
  flex-shrink: 0;
}

.service-count .years {
  height: 49px;
  flex-shrink: 0;
  margin-left: 30px;
}

.services .card {
  position: relative;
  border-radius: 20px;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
  backdrop-filter: blur(1.5px);
  /* Apply blur to the gradient */
  opacity: 1;
  /* Initially hidden */
  transition: opacity 0.3s ease-in-out;
  border-radius: 0px 0px 20px 20px;
}

.card:hover .card-overlay {
  opacity: 1;
  /* Show the overlay on hover */
  height: 100%;
}

.card-body {
  position: relative;
  z-index: 1;
  /* Place the card content above the overlay */
}

.card-img-top {
  border-radius: 20px;
}

#about .hero {
  overflow: hidden;
  position: relative;
}

.about h2 {
  color: #ffffff;
  font-family: Poppins;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-top: 50px;
}

.about p {
  color: #ffffff;
  font-family: Poppins;
  font-style: initial;
  line-height: normal;
  margin-top: 10px;
}

.rounded-xl {
  border-radius: 0.75rem /* 12px */;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.justify-center {
  justify-content: center;
}

.bg-about {
  border-radius: 39px;
  background: url("/img/frontend/about-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  margin: 0px 35px;
}

.about-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 39px;
  background: var(--overlay-gradient);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0);
  backdrop-filter: blur(5px);
  /* opacity: 0.9; */
}

.h-\[60\%\] {
  max-height: 60%;
}

.about-btn {
  border-radius: 4px;
  border: 1px solid #f3f3f3;
  color: #fff;
  padding: 8px;
  background: transparent;
  width: fit-content;
}

.about-btn:hover {
  background: white;
  border: 0px solid black;
  color: var(--color-primary);
  font-weight: 500;
  outline: none;
}

.about-btn {
  text-align: start;
}

.about-btn:focus {
  outline: none;
  border: none;
}

@media (min-width: 640px) {
  .sm\:text-left {
    text-align: left;
  }
}

.img-object {
  display: flex;
  justify-content: end;
}

.img-object img {
  width: 70vh;
}

.client,
.client-story {
  height: auto;
  text-align: center;
  overflow: hidden;
  align-items: center;
  align-self: center;
  align-content: center;
}

.client-story h2 {
  color: var(--head-color);
  font-family: Poppins;
  font-size: 47px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.client-story h4 {
  color: #000;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* .testimonialVideo{
  max-width: 800px;
  max-height: 300px;
} */
.right-0 {
  right: 0px;
}

.bottom-0 {
  bottom: 0px;
}

.bottom-grad {
  z-index: -5;
  width: 50%;
  height: 80%;
  flex-shrink: 0;
  margin-bottom: -250px;
  /* border-radius: 1272px; */
  /* margin-right: -250px; */
  background: radial-gradient(
    50% 50% at 100% 50%,
    rgba(0, 102, 255, 0.12) 0%,
    rgba(217, 217, 217, 0) 100%
  );
}

.about .bottom-grad {
  width: 50%;
  height: 80%;
  flex-shrink: 0;
  margin-bottom: -250px;
  border-radius: 1272px 0px 0px 1272px;
  background: radial-gradient(
    50% 50% at 100% 50%,
    rgba(255, 0, 212, 0.13) 0%,
    rgba(217, 217, 217, 0) 100%
  );
  /* background-color: #31a9e1; */
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.max-w-screen-2xl {
  max-width: 1536px;
}

.testimonials {
  min-height: auto;
  background: #ffdbfa;
  align-items: center;
}

.testimonials h2 {
  color: var(--head-color);
  font-family: Poppins;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0em;
}

.testimonials .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  transition: 0.5s;
  height: 90%;
  max-width: 250px;
  max-height: 380px;
  margin-top: 4rem;
  border: 2px solid #f800db44;
  margin-left: -30px;
  overflow: hidden;
}

#testimonials .section-1 .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  transition: 0.5s;
  max-width: max-content;
  max-height: max-content;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

#testimonials .section-1 .member .pic,
.testimonials .member .pic {
  overflow: hidden;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

#testimonials .section-1 .member .pic img,
.testimonials .member .pic img {
  transition: ease-in-out 0.3s;
}

.testimonials .member:hover {
  transform: translateY(-10px);
}

#testimonials .section-1 .member .member-info,
.testimonials .member .member-info {
  padding-left: 10px;
}

#testimonials .section-1 .member h4,
.testimonials .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 16px;
  color: #37517e;
}

#testimonials .section-1 .member span,
.testimonials .member span {
  display: block;
  font-size: 12px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

#testimonials .section-1 .member span::after,
.testimonials .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

#testimonials .section-1 .member p,
.testimonials .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
  z-index: 5;
  position: relative;
  overflow: hidden;
}

.star-rating p {
  font-size: 20px;
}

.h-screen {
  height: 100vh;
}

.sociel-icon {
  background-color: white;
  padding: 10px;
  border-radius: 8px;
  width: 30px;
  height: 30px;
  align-items: center;
  align-content: center;
  display: flex;
  justify-content: center;
  margin-top: 5px;
  margin-bottom: 5px;
}

.sociel-icon i {
  color: var(--head-color);
  font-size: 20px;
}

.testimonialReview {
  max-width: 250px;
  min-height: 340px;
  max-height: 380px;
}

.testimonials a {
  color: #001560;
  text-decoration: none;
  font-size: 16px;
}

.client-pic {
  margin-left: -30px;
}

.client-story .bottom-grad {
  position: absolute;
  width: 50%;
  height: 80%;
  flex-shrink: 0;
  margin-bottom: -250px;
  border-radius: 1272px 0px 0px 1272px;
  background: radial-gradient(
    50% 50% at 100% 50%,
    rgba(0, 102, 255, 0.12) 0%,
    rgba(217, 217, 217, 0) 100%
  );
  /* background-color: #31a9e1; */
  z-index: 0;
  transform: rotate(180deg);
  left: 0;
  bottom: 0px;
}

.testimonials .bottom-grad {
  position: absolute;
  width: 50%;
  height: 80%;
  flex-shrink: 0;
  margin-bottom: -250px;
  border-radius: 1272px 0px 0px 1272px;
  background: radial-gradient(
    50% 50% at 100% 50%,
    rgba(0, 102, 255, 0.12) 0%,
    rgba(217, 217, 217, 0) 100%
  );
  /* background-color: #31a9e1; */
  transform: rotate(180deg);
  left: 0;
  bottom: 0px;
}

/* .client {
  height: 130vh;
  text-align: center;
  overflow: hidden;
} */
.client h2 {
  color: var(--head-color);
  font-family: Poppins;
  font-size: 47px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: var(--nav-links);
  color: white;
  position: relative;
}

.footer-inner {
  padding: 50px 0;
  background: url(../img/frontend/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: center; */
  position: relative;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  max-height: 60px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: #a61a94;
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.05);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.959);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: disc;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul::marker {
  color: rgb(255, 255, 255);
  /* Change the color to red */
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(0, 131, 116, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-contact p {
  line-height: 26px;
}

#footer .footer-bottom {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
}

#footer .copyright {
  text-align: center;
}

#footer .copyright a {
  color: #fff;
  text-decoration: none;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

.footer-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--footer-bg);
  backdrop-filter: blur(3px);
  /* Apply blur to the gradient */
  opacity: 0.9;
  /* Initially hidden */
  transition: opacity 0.3s ease-in-out;
}

.testimonials-obeject {
  right: 0;
  /* padding: 50px; */
  position: absolute;
}

.scroll-content {
  height: 100%;
  animation: scroll 10s linear infinite;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.max-h-\[150px\] {
  max-height: 150px;
}

.z-10 {
  z-index: 10;
}

@keyframes scroll {
  100% {
    transform: translateY(100%);
    /* Start from the right edge */
  }

  100% {
    transform: translateY(-100%);
    /* Scroll to the left edge */
  }
}

.overflow-hidden {
  overflow: hidden;
}

.animated-element::before {
  content: attr(data-aos "fade-up");
  display: none;
  /* Hide the pseudo-element */
}

.slide-inner {
  position: relative;
  z-index: -5;
}

.client-story .knowmore-btn {
  border-radius: 3px;
  background: linear-gradient(
    93deg,
    var(--head-color) 1.01%,
    var(--grade-to) 98.99%
  );
  border: none;
  color: #fff;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 8px 25px;
  margin: 25px 0px;
}

.client-story .html5-video-player a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.1s cubic-bezier(0, 0, 0.2, 1);
  -o-transition: color 0.1s cubic-bezier(0, 0, 0.2, 1);
  transition: color 0.1s cubic-bezier(0, 0, 0.2, 1);
  outline: 0;
  position: absolute;
  top: 15rem;
}

.grid-wrapper {
  float: none;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  height: 100vh;
  width: 100vw;
  font-size: 12px;
  margin-left: -16vw;
  top: -5rem;
}

.grid-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.grid-item {
  position: absolute;
  transform: rotate(45deg);
  transform-origin: 0% 0%;
}

.diamond-small {
  background: limegreen;
  box-shadow: inset 0px 0px 15px 5px rgba(0, 0, 0, 0.7);
  height: 7vw;
  width: 7vw;
}

.diamond-small .diamond__content {
  height: 7vw;
  width: 7vw;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  transform: rotate(-45deg);
}

.diamond-small .diamond__img {
  height: 22vw;
  width: 22vw;
  transform: rotate(-45deg) translateY(-5vw);
}

.diamond-small .diamond__img img {
  width: 10vw;
  height: 10vw;
}

.diamond-med {
  background: orange;
  box-shadow: inset 0px 0px 15px 5px rgba(0, 0, 0, 0.7);
  height: 7vw;
  width: 7vw;
}

.diamond-med .diamond__content {
  height: 7vw;
  width: 7vw;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  transform: rotate(-45deg);
}

.diamond-med .diamond__img {
  height: 34vw;
  width: 34vw;
  align-items: center;
  transform: rotate(-45deg) translateY(-7.5vw);
}

.diamond-med .diamond__img img {
  width: 10vw;
  height: 10vw;
}

.diamond-large {
  background: yellow;
  height: 14vw;
  width: 14vw;
  overflow: hidden;
}

.diamond-large .diamond__content {
  height: 14vw;
  width: 14vw;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  transform: rotate(-45deg);
}

.diamond-large .diamond__img {
  height: 50vw;
  width: 50vw;
  transform: rotate(-45deg) translateY(-10.625vw);
}

.diamond-large .diamond__img img {
  height: 20vw;
  width: 20vw;
}

.layout-1 .diamond-s1 {
  top: 24.5vw;
  left: 27vw;
}

.layout-1 .diamond-s3 {
  top: 30.2vw;
  left: 21.5vw;
}

.layout-1 .diamond-m1 {
  top: 35.8vw;
  left: 26.8vw;
}

.layout-1 .diamond-s2 {
  top: 25vw;
  left: 47.8vw;
}

.layout-1 .diamond-s4 {
  top: 14.2vw;
  left: 68.2vw;
}

.layout-1 .diamond-s5 {
  top: 19.5vw;
  left: 73.5vw;
}

.layout-1 .diamond-s6 {
  top: 8.8vw;
  left: 73.5vw;
}

.layout-1 .diamond-s6 {
  top: 8.8vw;
  left: 73.5vw;
}

.layout-1 .diamond-s7 {
  top: 24.7vw;
  left: 89.3vw;
}

.layout-1 .diamond-s8 {
  top: 19.5vw;
  left: 94.5vw;
}

.layout-1 .diamond-s9 {
  top: 29.8vw;
  left: 94.5vw;
}

.layout-1 .diamond-m2 {
  top: 8.6vw;
  left: 42.6vw;
}

.layout-1 .diamond-m3 {
  top: 19.8vw;
  left: 42.6vw;
}

.layout-1 .diamond-m4 {
  top: 30.3vw;
  left: 53vw;
}

.layout-1 .diamond-l1 {
  top: 25.2vw;
  left: 37vw;
}

.layout-1 .diamond-l2 {
  top: 9.2vw;
  left: 32.3vw;
}

.layout-1 .diamond-l3 {
  top: 9.2vw;
  left: 52.6vw;
}

.layout-1 .diamond-l4 {
  top: 19.7vw;
  left: 63vw;
}

.layout-1 .diamond-l5 {
  top: 9.3vw;
  left: 84vw;
}

.layout-1 .diamond-l6 {
  top: 24.9vw;
  left: 78.8vw;
}

.layout-2 .diamond-s1 {
  top: 12.5vw;
  left: 76vw;
}

.layout-2 .diamond-s2 {
  top: 37.5vw;
  left: 25vw;
}

.layout-2 .diamond-m1 {
  top: 0;
  left: 25vw;
}

.layout-2 .diamond-m2 {
  top: 37.5vw;
  left: 75vw;
}

.layout-2 .diamond-l1 {
  top: 12.5vw;
  left: 50vw;
}

.overflow-hidden {
  overflow: hidden;
}

.pt-10 {
  padding-top: 2.5rem /* 40px */;
}

.img-object-circle {
  transform: rotate(180deg);
}

.contact-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 244, 254, 0.65);
  backdrop-filter: blur(10.5px);
  opacity: 0.9;
}

.contact_us {
  background: url("/img/frontend/contact-bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding-top: 30px;
}

.contact_us h3 {
  color: var(--color-primary);
  font-family: Poppins;
}

.contact_us .form-contact .btn {
  border-radius: 5px;
  background: var(--btn-gradient);
  box-shadow: 0px 4px 6px 5px rgba(0, 0, 0, 0.04);
  color: #fff;
}

.contact_us .form-contact {
  width: 100%;
}

.client-partners .swiper {
  width: 100%;
  height: 100%;
}

.client-partners .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-partners .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.swiper-button-next:after {
  content: url("/img/frontend/next.svg");
  font-size: 16px;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  color: #7d1e6d;
  position: absolute;
}

.swiper-button-prev:after {
  content: url("/img/frontend/prev.svg");
  font-size: 16px;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  color: #7d1e6d;
  position: absolute;
}

.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  z-index: 100;
}

#success-strories .hero h1,
#ielts .hero h1,
#eoi-points .hero h1,
#about .hero h1 {
  font-family: Poppins;
  font-size: 48px;
  font-weight: 900;
  line-height: 56px;
  color: #ffffff;
  text-align: center;
}

#eoi-points .hero h2,
#about .hero h2 {
  margin-top: 10px;
  color: #fff;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  line-height: normal;
  text-align: center;
  font-weight: lighter;
}

#about .hero .head-col {
  align-content: center;
  align-items: center;
  align-self: center;
}

#about .hero {
  background: url("/img/about-banner.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  align-items: center;
  min-height: 450px;
}

#about .about-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
  background: var(--overlay-gradient);
  backdrop-filter: blur(0px);
  opacity: 0.9;
}

#contact .section-2 h1,
#career .section-1 h1,
#ielts .section-5 h1,
#ielts .section-4 h1,
#ielts .section-2 h1,
.excellence-sec h1 {
  font-family: Poppins;
  font-weight: 900;
  line-height: 56px;
  color: var(--head-color);
  font-size: 39px;
}

.excellence-sec .container {
  padding-top: 72px;
  position: relative;
  align-items: center;
}

.about-sec-3 {
  background: #f9d5f4de;
}

.w-auto {
  width: auto;
  min-width: 100%;
}

.about-sec-3 .container {
  padding-top: 72px;
  padding-bottom: 72px;
  position: relative;
  align-items: center;
}

.about-sec-3 h1 {
  font-family: Poppins;
  font-size: 51px;
  font-weight: 900;
  line-height: 77px;
  letter-spacing: 0em;
  text-align: left;

  color: var(--head-color);
}

#about .about-sec-3 .card {
  position: relative;
  border-radius: 10px;
  padding: 15px 10px;
  text-align: left;
  border: none;
  box-shadow: 0px 4px 6px 5px rgba(0, 0, 0, 0.08);
  background: white;
  transition: 1s;
}

/* .about-sec-3 .card h2{
  position: relative;
  color: var(--color-primary);
} */
.about-sec-3 .card p {
  color: #525151;
  text-align: justify;
  position: relative;
}

/* #about .about-sec-3 .card:hover {
  background: url("/img/frontend/about/card-hover.png");
  background: #000000;
  background-size: cover;
  background-position: center;
  transform: translateY(-10px);
} */
/* #about .about-sec-3 .card:hover h4, */
/* #about .about-sec-3 .card:hover p {
  color: #ffffff;
} */
#about .about-sec-3 .card .card-hr {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  opacity: 1;
}

#about .about-sec-3 .card:hover .card-hr {
  background: white;
  border: 1px solid white;
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.text-\[\#6f0b62\] {
  --tw-text-opacity: 1;
  color: rgb(111 11 98 / var(--tw-text-opacity));
}

.sec-4-bg {
  background: url("/img/frontend/about-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-sec-4 .container {
  padding-top: 72px;
  position: relative;
  align-items: center;
}

.sec-4-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-gradient);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0);
  backdrop-filter: blur(3.5px);
}

.about-sec-5 .container {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.w-full {
  width: 100%;
}

.excellence-sec p {
  font-family: Poppins;
  font-size: 17px;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
  color: #5c5c5c;
}

#about .about-sec-3 p {
  font-family: Poppins;
  font-size: 23px;
  font-weight: 300;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: left;
}

@media (max-width: 768px) {
  .image-1 {
    display: none;
  }

  .model-image-1 {
    display: none;
  }

  #about .about-sec-3 p {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: center;
  }

  #about .about-sec-3 .card {
    /* background: url("/img/frontend/about/card-hover.png"); */
    background-size: cover;
    background-position: center;
    transform: translateY(-10px);
  }

  #about .about-sec-3 .card h4 {
    font-weight: 900;
    color: var(--color-primary);
  }

  #about .about-sec-3 .card p {
    color: #1a1818;
    /* New text color on hover (red in this example) */
  }

  #about .about-sec-3 .card .card-hr {
    background: white;
    border: 1px solid white;
  }

  .about-sec-3 h1 {
    font-family: Poppins;
    font-size: 30px;
    font-weight: 900;
    line-height: 37px;
    letter-spacing: 0em;
    text-align: center;
  }

  .excellence-sec h1 {
    font-size: 34px;
  }

  .excellence-sec p {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 300;
    /* line-height: 18px; */
    letter-spacing: 0em;
    text-align: center;
  }

  #eoi-points .hero h1,
  #about .hero h1 {
    font-size: 34px;
  }

  #eoi-points .hero h2,
  #about .hero h2 {
    font-size: 20px;
    margin-top: -10px;
  }

  #testimonials .hero .head-col h1,
  #career .section-1 h1 {
    font-size: 28px;
    margin-top: -10px;
  }

  #about .hero p {
    font-size: 15px;
    margin-top: -20px;
  }

  #service .service-content .sec-head {
    text-align: center;
    margin-top: 60px;
  }

  #service .service-content .flags img {
    width: 35px;
    height: 35px;
  }

  #service .service-content .nav .contry-list {
    font-size: 12px;
  }

  #service .service-content .nav .contry-list img {
    width: 35px;
    height: 35px;
    margin-right: 9px;
  }

  #career .hero p {
    font-size: small;
  }

  #service .h5 {
    font-size: medium;
    font-weight: 500;
  }

  #service li,
  #service p {
    font-size: small;
  }

  #ielts .section-1 .text-p {
    font-size: small;
  }

  #ielts h5,
  #ielts h4,
  #ielts .hero h2 {
    font-size: medium;
  }

  #ielts p {
    font-size: small;
  }

  #career p {
    font-size: small;
  }

  #ielts h1 {
    font-size: 28px;
  }

  #blog .entry .entry-img {
    max-height: 440px;
    margin: 0px 0px 20px 0px;
    overflow: hidden;
  }

  #blog .entry {
    padding: 0px;
    margin-bottom: 60px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0);
  }

  #blog .sidebar {
    padding: 0px;
  }

  #app .contact-col {
    margin-left: 0rem;
  }

  #ielts .section-4 {
    text-align: center;
  }

  #ielts .section-4 .container {
    padding-top: 0px;
  }

  #about .about-sec-3 .hero-col img {
    margin-top: 50px;
  }
}

.about-sec-3 .hero-col img {
  margin-top: 0px;
}

#contact .section-1 h2 #ielts .section-1 .h4 {
  color: var(--color-primary);
}

#eoi-points .hero .head-col,
#service .hero .head-col {
  align-content: center;
  align-items: center;
  align-self: center;
}

#eoi-points .hero,
#service .hero {
  background-size: cover;
  background-position: center;
  position: relative;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center;
  /* overflow: hidden; */
  /* max-height: 100vh; */
  text-align: center;
  min-height: 450px;
}

#service .hero h2 {
  margin-bottom: 20px;
  margin-top: 20px;
}

#service .service-content h2 {
  margin-bottom: 20px;
  margin-top: 20px;
  color: var(--head-color);
  font-family: Poppins;
  font-size: 39px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

#eoi-points .service-content-bg,
#service .service-content-bg {
  background: url("/img/frontend/about/aboutpage-bg.png");
  padding: 15px;
  border-radius: 30px;
  overflow: hidden;
  background-repeat: repeat-y;
  background-size: cover;
  background-position: center;
}

.service-content h2 {
  color: #7d1e6d;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.service-content .nav li {
  color: #353535;
  font-family: Poppins;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px;
  /* 147.059% */
  border-radius: 25px;
  border: 0.1px solid #f3f3f3;
  background: #fff;
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.09);
  padding: 3px;
  margin-right: 8px;
  transition: 1s;
  font-weight: bold;
  cursor: pointer;
}

.service-content .nav li:hover {
  border-radius: 25px;
  border: 1px solid #7d1e6d;
  background: #fff;
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.09);
}

.service-content .nav li.active {
  border-radius: 25px;
  border: 1px solid #7d1e6d;
  background: #fff;
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.09);
  transition: 1s;
}

.service-content .nav .contry-list {
  color: #353535;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px;
  /* 147.059% */
  border-radius: 25px;
  border: 0.1px solid #ffffff;
  background: #fff;
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.09);
  padding: 3px;
  margin-right: 10px;
  transition: 1s;
  /* font-weight: bold;    */
  white-space: nowrap;
}

.service-content .nav .contry-list img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 5px;
}

.font-semibold {
  font-weight: 600;
}

.service-content .flags img {
  width: 45px;
  height: 45px;
}

#client .hero {
  background: url("/img/frontend/about/aboutpage-bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
  align-items: center;
  /* overflow: hidden; */
}

#client .about-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
  background: rgba(255, 244, 254, 0.65);
  backdrop-filter: blur(16.5px);
  opacity: 0.9;
}

#client .hero .head-col {
  align-content: center;
  align-items: center;
  align-self: center;
}

#client .section-1 .container {
  padding-top: 72px;
  position: relative;
  align-items: center;
}

#client .section-1 .card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
  opacity: 1;
  /* Initially hidden */
  transition: opacity 0.3s ease-in-out;
  border-radius: 0px 0px 20px 20px;
  backdrop-filter: blur(0px);
}

#webinar .hero,
#blog .hero,
#contact .hero,
#career .hero,
#ielts .hero,
#success-strories .hero,
#testimonials .hero {
  background-size: cover;
  background-position: center;
  position: relative;
  align-items: center;
  /* overflow: hidden; */
  /* max-height: 100vh; */
  text-align: center;
  min-height: 450px;
  background-position: center;
}

#testimonials .hero {
  background: url("/img/frontend/about/about-hero-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#blog .hero {
  background: url("/img/frontend/blog-hero-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#ielts .hero {
  /* background: url("/img/frontend/ielts-hero-bg.jpg"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#success-strories .hero {
  /* background: url("/img/frontend/succ-hero-bg.jpg"); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#contact .hero {
  /* background: url("/img/frontend/contact-hero-bg.jpg"); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#career .hero {
  /* background: url("/img/frontend/career-hero-bg.jpg"); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#webinar .about-overlay,
#blog-details .about-overlay,
#blog .about-overlay,
#contact .about-overlay,
#career .about-overlay,
#ielts .about-overlay,
#success-strories .about-overlay,
#testimonials .about-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
  background: var(--overlay-gradient);
  backdrop-filter: blur(0px);
  opacity: 0.9;
}

.sociel-icon-div,
#blog-details .hero .head-col,
#blog .hero .head-col,
#contact .hero .head-col,
#career .hero .head-col,
#ielts .hero .head-col,
#success-strories .hero .head-col,
#testimonials .hero .head-col {
  align-content: center;
  align-items: center;
  align-self: center;
}

#contact .section-2 .container,
#contact .section-1 .container,
#career .section-1 .container,
#ielts .section-5 .container,
#ielts .section-3 .container,
#ielts .section-2 .container,
#ielts .section-1 .container,
#success-strories .section-1 .container,
#testimonials .section-1 .container {
  padding-top: 72px;
  padding-bottom: 72px;
  position: relative;
  align-items: center;
}

#testimonials .section-1 .pic img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

#testimonials .hero .hero-img {
  width: 40%;
}

#testimonials .hero h1 {
  font-size: 40px;
}

#ielts .section-1 .top-grad {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  background: radial-gradient(
    50% 50% at 0% 0%,
    rgba(255, 0, 212, 0.12) 0%,
    rgba(217, 217, 217, 0) 100%
  );
  /* background-color: #001560; */
}

#eoi-points .hero .hero-img img,
#testimonials .hero .hero-img img,
#blog-details .hero .hero-img img,
#blog .hero .hero-img img,
#contact .hero .hero-img img,
#career .hero .hero-img img,
#service .hero .hero-img img,
#about .hero .hero-img img,
#ielts .hero .hero-img img,
#success-strories .hero .hero-img img {
  width: 100%;
}

#ielts .section-1 .partners {
  display: flex;
  flex-wrap: nowrap;
  border: none;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

#ielts .section-1 .partners img {
  width: 80%;
}

#ielts .section-2 .section-2-hero3 {
  width: 100%;
}

#ielts .section-1 .contact-card {
  align-items: center;
  align-content: center;
  align-self: center;
  display: flex;
  justify-content: center;
}

#ielts .section-1 .contact-card .card {
  border: none;
  box-shadow: 0px 4px 12px 4px #ffdef9;
  padding: 20px;
}

#ielts .section-1 .contact-card .card h5 {
  color: var(--color-primary);
}

#ielts .section-1 .contact-card .card select,
#ielts .section-1 .contact-card .card input {
  outline: none;
  border: none;
  -webkit-appearance: auto;
  -moz-appearance: inherit;
  appearance: auto;
  background: #ececec67;
}

#ielts .section-2 {
  background: linear-gradient(
    356deg,
    rgba(255, 240, 253, 0.95) 0.24%,
    rgba(255, 220, 251, 0.65) 96.68%
  );
}

#ielts .section-2 h4 {
  color: var(--color-primary);
}

#ielts .section-4 h5 {
  font-family: Poppins;
  font-size: 17px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
  color: #891d7c;
}

.adv-sec-3 {
  border-radius: 17px;
  background: #eda0db;
  position: relative;
  display: flex;
  align-items: center;
  align-self: center;
  align-content: center;
}

.count-div p {
  font-size: 5rem;
  font-family: Poppins;
  font-weight: 900;
  color: var(--color-primary);
}

.count-div {
  position: relative;
  left: 0;
  width: 124px;
  height: 131px;
  flex-shrink: 0;
  border-radius: 17px 65.5px 65.5px 17px;
  background: #da85c6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.translate-x-1\/2 {
  --tw-translate-x: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.relative {
  position: relative;
}

.left-1\/2 {
  left: 50%;
}

.w-screen {
  width: 100vw;
}

.transform-gpu {
  transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0)
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.h-screen {
  height: 100vh;
}

.z-10 {
  z-index: 10;
}

.w-\[90\%\] {
  width: 90%;
}

.text-sm {
  font-size: 0.875rem /* 14px */;
  line-height: 1.25rem /* 20px */;
}

.h-full {
  height: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.scoreCardSlide figure.flags {
  /* border: 2px solid #fff;
  box-shadow: 0px 4px 6px #0042ff40; */
  width: 23px;
  height: 23px;
  margin-left: 25px;
  margin-top: 30px;
  position: absolute;
}

#ielts .scoreCardSlide {
  overflow: hidden;
}

#ielts .scoreCardSlide .swiper-slide {
  margin: 50px 0px;
  padding: 15px;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  opacity: 1;
  height: fit-content;
}

#ielts .scoreCardSlide .swiper-slide-active {
  box-shadow: 0px 7px 30px #00d2f336;
  height: fit-content;
}

#ielts .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 35%;
  margin: 0 5px;
  border-radius: 16px;
  opacity: 1;
  width: 12px;
  cursor: pointer;
  transition: width 0.3s, background-color 1s;
}

/* Custom style for active pagination bullet */
#ielts .swiper-pagination-bullet-active {
  background: var(--color-primary) 0% 0% no-repeat padding-box;
  border-radius: 16px;
  opacity: 1;
  width: 25px;
}

/* Set a maximum width for the Swiper container */
.section-5 .swiper-container {
  display: flex;
  padding-bottom: 20px;
  max-width: 650px;
}

.section-5 .swiper-button-prev,
.section-5 .swiper-button-next {
  width: 40px;
  height: 40px;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 5px #00000024;
  border: 1px solid #c5c5c5;
  opacity: 1;
  border-radius: 50%;
  cursor: pointer;
  /* Add any other custom styles you want */
}

#ieltys .section-5 .swiper-button-next.card-next {
  margin-left: 100px;
}

.test-swiper-nav-card .swiper-button-next:after,
.test-swiper-nav-card .swiper-button-prev:after {
  font-size: 0.8rem;
  color: rgb(102, 102, 102);
  font-weight: 900;
}

@media (max-width: 991px) {
  .md\:flex {
    display: flex;
  }

  .md\:justify-center {
    justify-content: center;
  }

  .block {
    display: block;
  }

  .section-5 .swiper-container {
    display: flex;
    padding-bottom: 20px;
    max-width: 350px;
  }
}

@media (min-width: 768px) and (max-width: 1191px) {
  .md\:max-w-\[996px\] {
    max-width: 996px;
  }
}

@media screen and (min-width: 1192px) {
  .lg\:max-w-\[1600px\] {
    max-width: 1600px;
  }
}

@media (max-width: 767px) {
  .sm\:max-w-\[480px\] {
    max-width: 480px;
  }
}

.text-lg {
  font-size: 1.125rem /* 18px */;
  line-height: 1.75rem /* 28px */;
}

#ielts .section-5 {
  background: #ffdbfa;
  min-height: 100vh;
}

.rotate-180 {
  transform: rotate(180deg);
}

#career .openings-div {
  border-radius: 21px;
  background: linear-gradient(180deg, #ffecfc 5.36%, #fff4fd 100%);
  box-shadow: 0px 4px 12px 4px #f5f5f5;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 15px;
  width: 100%;
}

.text-sm {
  font-size: 0.875rem /* 14px */;
  line-height: 1.25rem /* 20px */;
}

.read-more-btn {
  cursor: pointer;
  color: var(--color-primary);
  font-weight: 900;
}

#career .btn-get-started {
  height: 40px;
  font-size: 12px;
}

#contact .section-1 .contact-card {
  border-radius: 0px 20px 20px 0px;
  background: #fee9fb;
  box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0);
  padding: 40px;
  border: none;
  max-width: 500px;
  margin-left: -10px;
}

.text-xs {
  font-size: 0.75rem /* 12px */;
  line-height: 1rem /* 16px */;
}

.map-container {
  /* overflow: hidden; */
  padding-bottom: 100%;

  height: 100%;
  border-radius: 20px 0px 0px 20px;
  z-index: -1;
}

.map-container iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

#contact .section-1 .contact-card .btn-get-started {
  height: 50px;
}

#contact .section-1 .contact-card textarea,
#contact .section-1 .contact-card input {
  outline: none;
  border: none;
  height: 50px;
}

.flag-select {
  padding: 10px;
  margin-left: -10px;
}

.flag-select button {
  padding: 5px 5px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin: 5px;
  border: none;
  background-color: white;
}

#career .flag-select button {
  padding: 7px 15px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin: 5px;
  border: none;
  background-color: white;
  min-width: 110px;
}

.flag-select button.active {
  border: 1px solid #2e2c2c44;
}

#career .flag-select button.active {
  border: 1px solid #2e2c2c44;
}

.flag-select img {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  margin-right: 5px;
}

#contact .section-2 {
  background: linear-gradient(
    356deg,
    rgba(255, 240, 253, 0.95) 0.24%,
    rgba(255, 220, 251, 0.65) 96.68%
  );
}

#contact .section-2 .card {
  max-width: 500px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  border: none;
}

#contact .section-2 .card img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

#contact .section-2 .card h4 {
  margin-top: 8px;
  margin-left: 8px;
}

.flex-wrap {
  flex-wrap: wrap;
}

.contact-col {
  background: white;
  border: none;
  padding: 20px;
  margin-left: 1.5rem;
}

#regionModalToggle .contact-col {
  background: white;
  border: none;
  padding: 20px;
  margin-left: 0rem;
}

.contact-col h2 {
  color: var(--head-color);
  font-family: Poppins;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 54px;
  /* 216% */
}

.contact-col select,
.contact-col input {
  outline: none;
  border: none;
  height: 40px;
  background: #fee9fb;
  text-transform: none;
  -webkit-appearance: auto;
  -moz-appearance: inherit;
  appearance: auto;
}

.contact-col .form-select-md:focus {
  border: 1px solid var(--color-primary);
  /* border: none; */
}

.contact-col .form-select-md::after {
  color: var(--color-primary);
  /* Change the color to your desired color */
}

.image-1 {
  margin-right: -2.275vw;
  position: relative;
  z-index: 3;
  height: 33.2vw;
}

/* .model-image-1 {
  position: relative;
  z-index: 3;
  height: 400px; 
  z-index: 1;
  margin-right: -74px;
} */
.model-image-1 {
  position: relative;
  z-index: 3;
  /* height: 33.2vw;  */
  z-index: 1;
  margin-right: -82px;
}

.contact-imag-col {
  display: flex;
  justify-content: end;
  background: #fee9fb;
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 700px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-modal-inner-border-radius: calc(
    var(--bs-border-radius-lg) - (var(--bs-border-width))
  );
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.btn-close {
  z-index: 10;
}

.pl-5 {
  padding-left: 5.25rem /* 20px */;
}

.success-dialog h2 {
  color: var(--head-color);
  font-family: Poppins;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 54px;
  /* 216% */
  margin-top: -8px;
  margin-bottom: -5px;
}

.success-dialog {
  --bs-modal-width: 500px;
}

/* blog */
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #1e4356;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: var(--color-primary);
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: var(--color-primary);
}

#blog-details .entry-meta ul,
.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

#blog-details .entry-meta ul li + li,
.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: var(--color-primary);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: left;
  text-align-last: left;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  border-radius: 5px;
  background: linear-gradient(
    93deg,
    var(--head-color) 1.01%,
    var(--grade-to) 98.99%
  );
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
}

.blog .entry .entry-content .read-more a:hover {
  border-radius: 5px;
  background: linear-gradient(93deg, #b14ca3 1.01%, var(--grade-to) 98.99%);
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #1e4356;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #4c99c1;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #255269;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #68a4c4;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #1e4356;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(30, 67, 86, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #68a4c4;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #1e4356;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #2b607c;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #b1d0e1;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #b1d0e1;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #1e4356;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #255269;
}

.blog .blog-pagination {
  color: #387ea2;
  display: flex;
  justify-content: center;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  background: #f5f5f5;
  width: fit-content;
  border-radius: 5px;
}

.blog .blog-pagination li {
  margin: 5px 5px;
  transition: 0.3s;
  border-radius: 5px;
}

.blog .blog-pagination .arrow {
  background: white;
  font-size: 18px;
  font-weight: bold;
}

.blog .blog-pagination .arrow a {
  padding: 8px 8px;
}

.blog .blog-pagination li a {
  color: #1e4356;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1em;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 10px;
  /* margin: 0 0 20px 20px; */
  /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); */
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: var(--color-primary);
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
  background: #fff4fe;
}

.blog .search-form form input[type="text"] {
  border: none;
  outline: none;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background: transparent;
}

.blog .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .search-form form button i {
  line-height: 0;
}

.blog .search-form form button:hover {
  background: var(--color-primary);
}

.blog .sidebar .categories ul {
  background-color: #fff4fe;
  list-style: none;
  padding: 10px;
}

.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #1e4356;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-primary);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.blog .sidebar .recent-posts {
  background: #fff4fe;
  padding: 10px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 79px;
  height: 68px;
  float: left;
  margin-top: -18px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #1e4356;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #68a4c4;
}

.blog .sidebar .recent-posts span {
  display: block;
  margin-left: 47px;
  font-style: normal;
  font-size: 12px;
  color: #aaaaaa;
}

.blog .sidebar .recent-posts span span {
  color: var(--color-primary);
  font-style: normal;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #3f8db5;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #e4eff5;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #68a4c4;
  background: #68a4c4;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #bedae8;
  font-size: 14px;
}

.text-\[\#7D1E6D\] {
  --tw-text-opacity: 1;
  color: rgb(125 30 109 / var(--tw-text-opacity));
}

.blog .categories ul li.active {
  list-style: disc;
  margin-left: 20px;
  font-weight: bold;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.footer-newsletter {
  padding: 10px 0;
  width: 100%;
}

.footer-newsletter form {
  margin-top: 30px;
  background: #f5f5f5;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  width: 100%;
}

#footer .footer-newsletter form {
  margin-top: 1px;
  background: var(--bg-color);
  padding: 6px 5px;
  position: relative;
  border-radius: 0px;
  width: 100%;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 100px);
  background: var(--bg-color);
  outline: none;
  border: none;
  color: #dadada;
}

.footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 100px);
  background: #f5f5f5;
  outline: none;
  font-size: small;
  border: none;
}

.footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  margin: 3px;
  border-radius: 32.5px;
  background: var(--footer-grad);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-newsletter form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  margin: 0px;
  border-radius: 0px;
  background: linear-gradient(90deg, #7d1e6d 0%, #b82da7 106.49%);
  color: #fff;
  transition: 0.3s;
}

.footer-newsletter form input[type="submit"]:hover {
  background: linear-gradient(90deg, #b82da7 0%, #7d1e6d 106.49%);
}

#footer .footer-newsletter form button {
  background: linear-gradient(90deg, #b82da7 0%, #7d1e6d 106.49%);
}

.subscribe-span {
  color: #353535;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

#blog-details .hero h1 {
  color: #353535;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: left;
}

#blog-details .hero {
  background: url("/img/frontend/blog-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  align-items: center;
  overflow: hidden;
  min-height: 450px;
}

#blog-details .sociel-hero-icons {
  background: white;
  border-radius: 20px;
  width: fit-content;
  height: fit-content;
}

#blog-details .sociel-hero-icons .sociel-icon {
  background: transparent;
  margin: 2px 5px;
}

.justify-start {
  justify-content: flex-start;
}

@media (min-width: 1024px) {
  .lg\:justify-end {
    justify-content: flex-end;
  }

  .lg\:.mt-\[-70px\] {
    margin-top: -70px;
  }
}

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

.mr-flag {
  margin-left: 2.5rem;
  margin-top: -29px;
}

.mt-\[-29px\] {
  margin-top: -29px;
}

#success-strories .section-1 .card {
  border-radius: 20px;
  border: none;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.z-10 {
  z-index: 10;
}

@media (min-width: 1024px) {
  .lg\:mb-0 {
    margin-bottom: 0px;
  }
}

.mb-\[-20px\] {
  margin-bottom: -20px;
}

#client .section-1 .card {
  border-radius: 20px;
  border: none;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

#testimonials .section-1 .card {
  border-radius: 20px;
  border: none;
  border: none;
  min-height: 250px;
}

.client .client-pics-div {
  background: white;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  width: fit-content;
  display: flex;
  align-items: center;
}

.-mt-\[10rem\] {
  margin-top: -10rem;
}

.whtsapp {
  width: auto;
  display: inline-block;
  position: fixed;
  top: 80%;
  right: -95px;
  transition-duration: 0.7s;
  z-index: 999;
}

.whtsapp:hover {
  right: 0;
  transition-duration: 0.7s;
  cursor: pointer;
}

.whtsapp img {
  width: 140px;
  float: right;
}

.fixed-sociel {
  position: fixed;
  top: 40%;
  z-index: 999;
}

#progress {
  position: fixed;
  bottom: 100px;
  right: 10px;
  height: 60px;
  width: 60px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 999;
}

#progress-value {
  display: block;
  height: calc(100% - 8px);
  width: calc(100% - 8px);
  background: linear-gradient(
    180deg,
    rgba(125, 30, 109, 0.96) 0%,
    rgba(137, 29, 124, 0.96) 100%
  );
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: #ffffff;
  transform: rotate(270deg);
}

#ielts .section-4 .ielts-4-hero {
  width: auto;
}

#ielts .section-4 {
  align-items: center;
  align-self: center;
  align-content: center;
}

.custom-upload {
  border: 1px solid #b7b7b7;
  text-align: left;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
}

.custom-upload i {
  font-size: 18px;
  margin-right: 10px;
  color: #1f1f1f;
}

.upload-text {
  font-weight: normal;
  color: #1f1f1f;
}

.captcha-holder {
  text-align: center;
  padding: 20px;
}

.captcha-box {
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 10px;
}

.services .learn-more {
  display: none;
  transition: opacity 3s;
}

.services .learn-more a {
  min-width: 130px;
  font-size: 12px;
}

.services .card:hover .learn-more {
  display: inline-block;
  /* Show the button on hover */
  opacity: 1;
  /* Make the button fully visible */
}

.services .card {
  transition: transform 0.2s;
}

.grecaptcha-badge {
  width: 256px;
  height: 60px;
  display: block;
  transition: right 0.3s ease 0s;
  position: relative;
  bottom: 14px;
  box-shadow: gray 0px 0px 5px;
  border-radius: 2px;
  overflow: hidden;
}

.page-card {
  padding: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 4px 56px #ea00ff40;
  background-color: #fff;
  margin: 20px 0px;
}

.page-card article p {
  line-height: 25px;
  font-size: 15px;
  color: var(--txtClr);
}

.page-card article p:last-child {
  margin-bottom: 0;
}

.navbar ul.scrolled {
  margin-top: 0px;
}

.mobile-nav-hide.scrolled {
  top: 24px;
}

#ielts h1.immi_succ {
  color: #fff;
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

#eoi-points .hero p,
#ielts .hero p {
  color: white;
}

#ielts .swiper .swiper-slide figure .avatar {
  border-radius: 10px;
  width: 45px;
  height: 45px;
}

[v-cloak] {
  display: none;
}

.spinner-grow {
  background-color: var(--color-primary);
}

#ielts .form-contact .btn-get-started {
  color: white;
}

.contact_us .form-contact .btn:hover,
#ielts .form-contact .btn-get-started:hover,
.btn-get-started:hover {
  background: rgba(255, 255, 255, 0.424);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  backdrop-filter: blur(5px);
}

@media (max-width: 376px) {
  .hero .swiper {
    width: 100%;
    height: 130vh;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: small;
  }

  #ielts .section-1 .h4 {
    font-size: medium;
    color: var(--color-primary);
  }

  #ielts .section-4 .ielts-4-hero {
    width: 90%;
  }
}

@media (min-width: 359px) and (max-width: 476px) {
  /* .hero .swiper {
    width: 100%;
    height: 118vh;
  } */
  .hero h1 {
    font-size: 26px;
    line-height: 36px;
    /* margin-top: -20px; */
  }
}

.get-started-div {
  margin-top: 20px;
}

@media (min-width: 376px) and (max-width: 416px) {
  .hero .swiper {
    width: 100%;
    height: 100vh;
  }

  .get-started-div {
    margin-top: -20px;
  }

  #ielts .section-1 .h4 {
    font-size: medium;
    color: var(--color-primary);
  }

  #ielts .section-4 .ielts-4-hero {
    width: 90%;
  }
}

#webinar .section-1 .h4,
#ielts .section-1 .h4 {
  color: #7d1e6d;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.text-\[\#5C5C5C\] {
  --tw-text-opacity: 1;
  color: rgb(92 92 92 / var(--tw-text-opacity));
}

.w-full {
  width: 100%;
}

.space-y-5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem /* 20px */ * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem /* 20px */ * var(--tw-space-y-reverse));
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  /* Adjust padding as needed */
  border-radius: 7px;
  background: rgba(217, 217, 217, 0.31);
  transition: max-height 0.5s ease, padding 0.8s ease;
  /* Add transitions for max-height and padding */
}

.accordion-content.show {
  max-height: 1000px;
  /* Adjust this value based on your content height */
  padding: 10px;
  /* Ensure the desired padding when the content is visible */
}

.font-extrabold {
  font-weight: 800;
}

.cursor-pointer {
  cursor: pointer;
}

.filter-button {
  background: #ececec;
  border-radius: 20px;
  width: fit-content;
}

.filter-button button {
  border-radius: 20px;
  background: transparent;
  padding: 8px 15px 8px 15px;
  min-width: 120px;
  outline: none;
  border: none;
  transition: background-color 0.8s ease, opacity 0.3s ease;
  /* Add transitions for background-color and opacity */
  opacity: 1;
  /* Initial opacity */
}

.filter-button button.active {
  background: var(--head-color);
  color: white;
}

.scroll-position::-webkit-scrollbar {
  width: 3px;
  /* Adjust the width as needed */
}

.scroll-position::-webkit-scrollbar-thumb {
  background-color: var(--head-color);
  /* Color of the thumb (the draggable part) */
  border-radius: 5px;
  /* Round the corners of the thumb */
}

.scroll-position::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  /* Color of the track (the area where the thumb moves) */
}

#testimonials .section-1 .content-div {
  max-height: 200px;
}

.w-full {
  width: 100%;
}

#testimonials .section-1 .member .scroll-position::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  /* Color of the track (the area where the thumb moves) */
}

#testimonials .section-1 .scroll-position::-webkit-scrollbar-thumb {
  background-color: var(--head-color);
  /* Color of the thumb (the draggable part) */
  border-radius: 5px;
  /* Round the corners of the thumb */
}

.transition-transform {
  transition: transform 0.5s, opacity 0.5s;
}

.hero .hero-img .rotate-180 {
  transform: rotate(-5deg);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  95% {
    opacity: 1;
  }

  100% {
    transform: rotate(300deg);
    opacity: 0;
  }
}

.animate-spin {
  animation: spin 15s linear infinite;
}

#app .hero .slide-spinner {
  height: 90%;
  width: 89%;
  margin-top: 1.8rem;
}

#app .hero .slide-spinner-out {
  margin-top: 2.8rem;
  z-index: -1;
  width: 75%;
}

#app .hero .banner-slide-container {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  align-self: center;
}

#app .hero .banner-slide-container .slide-banner-image {
  height: 79%;
  width: 79%;
  margin-bottom: 10px;
  margin-left: 20px;
}

#app .hero .banner-slide-container .hero-img-slider {
  border-radius: 100%;
  margin-top: 3rem;
  z-index: -1;
}

#app .hero .banner-slide-container .clock-wipe-animation {
  animation: clockWipe 0.5s ease-in-out;
}

@keyframes clockWipe {
  to {
    clip-path: circle(100% at 50% 50%);
  }
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}

.duration-500 {
  transition-duration: 1000ms;
}

.about .-mt-4 {
  margin-top: -1rem /* -16px */;
}

.service-content .overview {
  color: var(--head-color);
  font-family: Poppins;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  font-size: 39px;
}

.service-content p {
  color: #1c1c1c;
  font-family: Poppins;
  font-size: 17px;
  line-height: 25px;
  /* 147.059% */
}

.service-content .benfits-contant {
  background: linear-gradient(
    179deg,
    rgba(255, 224, 251, 0.87) 0.46%,
    rgba(255, 224, 251, 0.4) 100.58%
  );
}

.courses-contant .card,
.benfits-contant .card {
  border: none;
  background: transparent;
  box-shadow: 0px 4px 8px 5px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
}

.courses-contant .card .benefits-count,
.benfits-contant .card .benefits-count {
  color: #afafaf;
  font-family: Poppins;
  font-size: 51px;
  font-style: normal;
  font-weight: 900;
}

.benfits-contant .card .card-title {
  color: #ffffff;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}

.service-content .know-more-btn {
  border-radius: 4px;
  padding: 10px;
  border: 1px solid #7d1e6d;
  background: transparent;
}

.service-content .know-more-btn:hover {
  border-radius: 4px;
  padding: 10px;
  border: 0px solid #7d1e6d;
  background: #7d1e6d;
  color: white;
}

.brands {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.brands_slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.brands_item {
  flex: 0 0 calc(100% / 3);
  max-width: calc(100% / 3);
  box-sizing: border-box;
  padding: 0 15px;
}

@media (max-width: 767px) {
  .brands_item {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #app .client p {
    font-size: 14px;
    line-height: normal;
  }

  #ielts .section-4 p.pg {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: left;
    color: #1c1c1c;
  }
}

.brands_nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.brands_prev {
  left: 0;
}

.brands_prev img {
  height: 35px;
  width: 35px;
}

.brands_next img {
  height: 35px;
  width: 35px;
}

.brands_next {
  right: 0;
}

.sample-slider {
  width: 80vw;
  height: 23vw;
}

.sample-slider .swiper-slide {
  height: auto;
}

.sample-slider .card {
  width: 300px;
}

.lifestyle-contant .card h5 {
  font-size: 18px;
  font-weight: 800;
}

.lifestyle-contant .card p {
  font-size: 12px;
}

.lifestyle-contant .card {
  height: 100%;
  position: relative;
  box-shadow: 0px 4px 8px 5px rgba(0, 0, 0, 0.07);
  border: 0px;
  border-radius: 15px;
}

.service-content .faq-contant {
  background: #ffdbfa;
}

.service-content .faq-contant .card {
  box-shadow: 0px 4px 8px 5px rgba(0, 0, 0, 0.07);
  border: 0px;
  border-radius: 15px;
  margin-bottom: 15px;
}

.service-content .faq-contant p {
  font-size: 16px;
}

.service-content .faq-contant .accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0px;
  /* Adjust padding as needed */
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.31);
  transition: max-height 0.5s ease, padding 0.4s ease;
  /* Add transitions for max-height and padding */
}

.service-content .faq-contant .accordion-content.show {
  max-height: 1000px;
  /* Adjust this value based on your content height */
  padding: 10px;
  /* Ensure the desired padding when the content is visible */
}

.sec-padd {
  padding: 40px 0;
}

.courses-contant .swiper-button-prev {
  left: -100px;
  top: 50%;
}

.courses-contant .swiper-button-next {
  right: -100px;
  top: 50%;
}

.courses-contant {
  background: url("/img/frontend/study-abroad/top-crs-bg.jpg");
  width: 100%;
  background-size: cover;
  height: 100%;
  padding-bottom: 50px;
  padding-top: 50px;
}

.courses-contant .courses-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
  background: rgba(255, 244, 254, 0.65);
  backdrop-filter: blur(16.5px);
  opacity: 0.9;
}

.overview-content {
  text-align: start;
}

#eoi-points .about-overlay,
#service .about-overlay {
  background: rgba(18, 0, 21, 0.42);
  backdrop-filter: blur(0px);
  border-radius: 0px;
}

.flag-div img.flags {
  width: 50px;
  height: 50px;
}

#app .grid-wrapper .grid-item {
  transition: transform 0.5s ease-in-out;
}

#app .heroswiper .swiper-slide {
  position: relative;
  z-index: 0;
}

* {
  box-sizing: border-box !important;
}

h1 {
  font-size: 26px;
}

div.footerinfo {
  margin-top: 16px;
  color: #666;
  font-size: 12px;
  text-align: right;
}

div.footerinfo * {
  font-size: 12px;
}

.sitemap {
  margin: 5em 0;
}

.primaryNav {
  clear: both;
  width: 100%;
  margin-top: 3em 0;
}

.primaryNav #home {
  position: absolute;
  margin-top: -3em;
  margin-bottom: 0;
  min-width: 14.5em;
  width: 100%;
  z-index: 99;
}

.primaryNav #home:before {
  display: none;
}

.primaryNav #home.long-cell:before {
  display: block;
  position: absolute;
  border-width: 0;
  border-color: #04123b;
  border-style: solid;
  z-index: -1;
  border-left-width: 2px;
  border-top-width: 2px;
  top: 1.375em;
}

@media screen and (max-width: 1111px) {
  .primaryNav #home.long-cell:before {
    left: -8px;
    box-shadow: -10px 0 0 0 #fff;
  }
}

.primaryNav #home img {
  float: left;
  margin-right: 4px;
}

.primaryNav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  position: relative;
  padding-inline-start: 40px;
}

.primaryNav li {
  flex: 1;
  flex-basis: 14.5em;
  padding-right: 1.25em;
  position: relative;
  min-width: 14.5em;
}

.primaryNav li ul li {
  min-width: 12.5em;
}

.primaryNav li ul li ul li {
  min-width: 10.5em;
}

.primaryNav > ul > li {
  margin-top: 3em;
}

.primaryNav li a {
  margin: 0;
  padding: 0.875em 0.9375em 0.9375em 0.9375em;
  display: block;
  font-size: 0.9375em;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  text-decoration: none;
}

.primaryNav li a:hover {
  box-shadow: 0 3px 3px 1px #666;
}

.primaryNav a:link:after,
.primaryNav a:visited:after,
.utilityNav a:link:after,
.utilityNav a:visited:after {
  display: block;
  font-weight: 600;
  font-size: 0.75em;
  margin-top: 0.25em;
  word-wrap: break-word;
  color: #666;
}

.primaryNav ul ul {
  display: block;
}

.primaryNav ul ul li {
  padding-top: 0.9875em;
  padding-right: 0;
}

.primaryNav ul ul li:first-child {
  padding-top: 2em;
}

.primaryNav ul ul ul {
  margin-top: 0.6em;
  padding-top: 0.6em;
  padding-bottom: 0.625em;
}

.primaryNav ul ul ul li {
  padding-top: 0.3125em;
  padding-bottom: 0.3125em;
}

.primaryNav ul ul ul li a {
  font-size: 0.75em;
  padding: 0.75em;
  min-width: 90%;
  width: auto;
  margin-right: 0;
  margin-left: auto;
}

.primaryNav ul ul ul li:first-child {
  padding-top: 1em;
}

.primaryNav ul ul ul li a:link:after,
.primaryNav ul ul ul li a:visited:after {
  font-size: 0.75em;
}

.primaryNav ul ul ul ul {
  margin-top: 0;
  padding-top: 0.3125em;
  padding-bottom: 0.3125em;
}

.primaryNav ul ul ul ul li a {
  padding: 0.75em;
  min-width: 80%;
  width: auto;
}

.primaryNav ul ul ul ul li a:link:after,
.primaryNav ul ul ul ul li a:visited:after {
  display: none;
}

.primaryNav ul li:after,
.primaryNav ul li:before,
.primaryNav ul:after,
.primaryNav ul:before {
  display: block;
  content: "";
  position: absolute;
  border-width: 0;
  border-color: #04123b;
  border-style: solid;
  z-index: 0;
}

.primaryNav > ul > li:before {
  height: 1.375em;
  top: -1.375em;
  right: calc(50% + 0.625em);
  width: calc(100% - 2px);
  border-top-width: 2px;
  border-right-width: 2px;
}

.primaryNav > ul > li:first-child + li:before {
  border-top-width: 0;
  height: 5em;
  top: -5em;
}

.primaryNav ul ul li:after {
  width: 50%;
  height: 0.9875em;
  top: 0;
  right: 1px;
  border-left-width: 2px;
}

.primaryNav ul ul li:first-child:before {
  width: 50%;
  height: 1.3125em;
  top: 0.9875em;
  right: 1px;
  border-left-width: 2px;
}

.primaryNav > ul > li:last-child:after {
  border-bottom-width: 0;
}

.primaryNav ul ul ul li:before {
  width: calc(50% - 5px) !important;
  height: calc(100% - 2px);
  top: -50%;
  left: 0;
  border-left-width: 2px;
  border-bottom-width: 2px;
}

.primaryNav ul ul ul li:first-child:before {
  height: 2.125em;
  top: -1px;
  border-top-width: 2px;
}

.primaryNav ul ul ul:before {
  width: 50%;
  height: 1.25em;
  top: -10px;
  right: 1px;
  border-left-width: 2px;
}

.primaryNav ul ul ul li:after {
  border-width: 0;
}

.primaryNav ul ul ul ul li:before,
.primaryNav ul ul ul ul li:first-child:before {
  display: none;
}

.primaryNav ul ul ul ul:before {
  width: 1px;
  height: calc(100% + 2.5em);
  top: -2.5em;
  left: 0;
  border-left-width: 2px;
}

@media screen and (max-width: 30em) {
  .primaryNav ul {
    display: block;
  }

  .primaryNav li {
    width: 100%;
    padding-right: 0;
  }

  .primaryNav #home {
    width: 100%;
    position: relative;
    margin-bottom: -1em;
    margin-top: 0;
  }
}

@media screen and (min-width: 30em) {
  .primaryNav > ul > li {
    max-width: 50%;
  }
}

@media screen and (min-width: 38.5em) {
  .primaryNav > ul > li {
    max-width: 33%;
  }
}

@media screen and (min-width: 50em) {
  .primaryNav > ul > li {
    max-width: 25%;
  }
}

@media screen and (min-width: 61em) {
  .primaryNav > ul > li {
    max-width: 20%;
  }
}

@media screen and (min-width: 73em) {
  .primaryNav > ul > li {
    max-width: 16.66%;
  }
}

@media screen and (min-width: 84.5em) {
  .primaryNav > ul > li {
    max-width: 14.285%;
  }
}

@media screen and (min-width: 96em) {
  .primaryNav > ul > li {
    max-width: 12.5%;
  }
}

@media screen and (min-width: 107.5em) {
  .primaryNav > ul > li {
    max-width: 11.11%;
  }
}

@media screen and (min-width: 119em) {
  .primaryNav > ul > li {
    max-width: 10%;
  }
}

a[href$="#"] {
  cursor: default;
  color: #333;
}

.collapsed_item {
  display: none !important;
  cursor: pointer !important;
}

.expand_items a {
  color: #333 !important;
  text-align: center;
  cursor: pointer !important;
}

nav.primaryNav ul {
  padding-left: 150px;
}

.bg-color {
  padding: 30px 0;
  background: #fafafa;
}

@media (max-width: 767px) {
  nav.primaryNav ul {
    padding-left: 0;
  }

  .sitemap {
    margin: 20px 0;
  }
}

#regionModalToggle.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: fit-content;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: 20px;
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-modal-inner-border-radius: calc(
    var(--bs-border-radius-lg) - (var(--bs-border-width))
  );
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

#regionModalToggle .card {
  border-radius: 20px;
  max-width: 170px;
  border: 0px;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
}

#regionModalToggle .card-title {
  font-weight: 800;
}

#regionModalToggle .card .flag {
  width: 25px;
  border: 1px solid white;
  border-radius: 50%;
  height: 25px;
  margin-top: -5px;
  margin-right: 8px;
}

#regionModalToggle .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
  backdrop-filter: blur(0px);
  /* Apply blur to the gradient */
  opacity: 1;
  /* Initially hidden */
  transition: opacity 0.3s ease-in-out;
  border-radius: 0px 0px 20px 20px;
}

#regionModalToggle .card:hover .card-overlay {
  opacity: 1;
  /* Show the overlay on hover */
  height: 100%;
}

.custom-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* background: rgba(0, 0, 0, 0.5); */
  backdrop-filter: blur(2px);
  z-index: -2;
}

#eoi-points .card .card-overlay,
#service .card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
  backdrop-filter: blur(1px);
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  border-radius: 0px 0px 20px 20px;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

#service .client-partners .swiper-button-prev {
  left: -50px;
  top: 60%;
}

#service .client-partners .swiper-button-next {
  right: -50px;
  top: 60%;
}

#ielts .section-5 .swiper-button-prev {
  left: -60px;
}

#ielts .section-5 .swiper-button-next {
  right: -60px;
}

#ielts .section-5 .text-date {
  font-size: 12px;
  display: flex;
  white-space: nowrap;
  border-radius: 16px;
  background: #d7e2ff;
  height: fit-content;
}

@media (max-width: 767px) {
  #ielts .section-5 .swiper-button-prev,
  #ielts .section-5 .swiper-button-next {
    display: none;
    /* Hide navigation buttons on mobile screens */
  }
}

.other-sec .mobile-nav-toggle {
  color: white;
}

@media only screen and (width: 412px) and (height: 915px) {
  .hero .swiper {
    height: 96vh;
  }
}

@media only screen and (width: 430px) and (height: 932px) {
  .hero .swiper {
    height: 96vh;
  }
}

@media only screen and (width: 360px) and (height: 740px) {
  .hero .swiper {
    height: 114vh;
  }
}

@media only screen and (width: 412px) and (height: 732px) {
  .hero .swiper {
    height: 114vh;
  }
}

@media only screen and (width: 360px) and (height: 640px) {
  .hero .swiper {
    height: 114vh;
  }
}

.services .h4 {
  font-family: Poppins;
  font-size: 23px;
  font-weight: 300;
  line-height: 35px;
  letter-spacing: 0em;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.client p {
  font-family: Poppins;
  font-size: 23px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0em;
  text-align: center;
}

.client-partners .bottom-grad {
  position: absolute;
  width: 50%;
  height: 80%;
  flex-shrink: 0;
  margin-bottom: -250px;
  border-radius: 1272px 0px 0px 1272px;
  background: radial-gradient(
    50% 50% at 100% 50%,
    rgba(0, 102, 255, 0.12) 0%,
    rgba(217, 217, 217, 0) 100%
  );
  /* background-color: #31a9e1; */
  z-index: 0;
  transform: rotate(180deg);
  left: 0;
  bottom: 0px;
}

.client-partners .top-grad {
  position: absolute;
  width: 50%;
  height: 80%;
  flex-shrink: 0;
  margin-top: -150px;
  border-radius: 1272px 0px 0px 1272px;
  background: radial-gradient(
    50% 50% at 100% 50%,
    rgba(255, 0, 212, 0.11) 0%,
    rgba(217, 217, 217, 0) 100%
  );
  /* background-color: #31a9e1; */
  z-index: 0;
  transform: rotate(0deg);
  right: 0;
  top: 0;
}

.lifestyle-contant .bottom-grad {
  position: absolute;
  width: 50%;
  height: 80%;
  flex-shrink: 0;
  margin-bottom: -150px;
  border-radius: 1272px 0px 0px 1272px;
  background: radial-gradient(
    50% 50% at 100% 50%,
    rgba(0, 102, 255, 0.12) 0%,
    rgba(217, 217, 217, 0) 100%
  );
  /* background-color: #31a9e1; */
  z-index: 0;
  transform: rotate(180deg);
  left: 0;
  bottom: 0px;
}

.lifestyle-contant .top-grad {
  position: absolute;
  width: 50%;
  height: 80%;
  flex-shrink: 0;
  margin-top: -150px;
  border-radius: 1272px 0px 0px 1272px;
  background: radial-gradient(
    50% 50% at 100% 50%,
    rgba(255, 0, 212, 0.11) 0%,
    rgba(217, 217, 217, 0) 100%
  );
  /* background-color: #31a9e1; */
  z-index: 0;
  transform: rotate(0deg);
  right: 0;
  top: 0;
}

.overview-container .top-grad {
  position: absolute;
  width: 50%;
  height: 80%;
  flex-shrink: 0;
  margin-top: -250px;
  border-radius: 1272px 0px 0px 1272px;
  background: radial-gradient(
    50% 50% at 100% 50%,
    rgba(255, 0, 212, 0.11) 0%,
    rgba(217, 217, 217, 0) 100%
  );
  /* background-color: #31a9e1; */
  z-index: 0;
  transform: rotate(180deg);
  left: 0;
  top: 0;
}

#ielts .section-4 p {
  font-family: Poppins;
  font-size: 17px;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
  color: #1c1c1c;
}

#ielts .section-4 h4 {
  font-family: Poppins;
  font-size: 17px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
  color: #891d7c;
}

.h-full {
  height: 100%;
}

.-z-1 {
  z-index: -1;
}

.iti {
  position: relative;
  display: inline-block;
  width: 100%;
}

.hide {
  display: none;
}

#invalid-msg,
#valid-msg1,
#valid-msg3,
#valid-msg {
  font-size: 9px;
  color: rgb(170, 1, 1);
}

.border-none {
  border-style: none;
}

.w-fit {
  width: fit-content;
}

.reply-devider {
  /* border: 1px solid black; */
  border-bottom: 1px solid rgba(138, 138, 138, 0.253);
  width: 100%;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.text-sm {
  font-size: 0.875rem /* 14px */;
  line-height: 1.25rem /* 20px */;
}

.comment-bg {
  background-color: #ebebeb;
}

.entry .featured_image {
  width: 100%;
}

@media (min-width: 1024px) {
  .lg\:max-w-\[1920px\] {
    max-width: 1920px;
  }
}

#eoi-points .eoi-nav {
  display: flex;
  gap: 10px;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
}

#eoi-points .eoi-nav .eoi-tabs {
  border-radius: 20px;
  background: transparent;
  border: 1px solid #b6149a;
  cursor: pointer;
  position: relative;
  padding: 8px 8px;
}

#eoi-points .eoi-nav .eoi-tabs.active {
  background: linear-gradient(
    93deg,
    var(--head-color) 1.01%,
    var(--grade-to) 98.99%
  );
  color: white;
}
.primaray-bg {
  background: linear-gradient(
    103.02deg,
    rgba(116, 28, 105, 0.88) 2.53%,
    rgba(157, 42, 143, 0.88) 100%
  );
  border-radius: 20px;
}
.max-w-xl {
  max-width: 64rem;
}
.bottom-desc {
  background: white;
  border-radius: 10px;
  padding: 10px;
}
.ttk-list li {
  font-size: small;
}
.primary-text {
  color: var(--head-color);
}
.font-bold {
  font-weight: 700;
}
.gap-5 {
  gap: 20px;
}
.eoi-points-calculator input[type="radio"] {
  accent-color: var(--head-color);
  width: 16px;
  height: 16px;
}
#eoi-points .card-custom {
  border: none;
  background: transparent;
}
#eoi-points .table th {
  background-color: #7d1e6d; /* purple header */
  color: white;
  padding: 20px 45px;
}
#eoi-points .table td {
  vertical-align: middle;
  padding: 20px 45px;
}
.font-weight-bold {
  font-weight: 700;
}
.bg-light-pink {
  background: #FFDBFB;
}
#eoi-points .contact-col h2 {
  color: white;
}
#eoi-points .adv-sec-3 h5 {
  margin-top: 0px;
  margin-left: 0px;
}
.bg-successeoi {
  background: #A3FFBC;  
  border-radius: 30px;
  padding: 10px;
  width: 100%;
  max-width: 600px;
  position: relative;
}
.bg-successeoi.failed {
  background: #FF9191;
}
.bg-successeoi img{
  position: absolute;
  top: -10px;
  left: -20px;
  width: 120px;
  height: 120px;
}
.bg-successeoi.failed img{
  position: absolute;
  top: -20px;
  left: -40px;
  width: 130px;
  height: 130px;
}
.score-progressbar .progress-bar {
  background: var(--head-color);
}
.max-w-lg {
  max-width: 32rem;
}