html {
    box-sizing: border-box;
  }
body {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden !important;
	background-color: #eaedf4;
}

  *,
  *:before,
  *:after {
    box-sizing: inherit; 
  } 
 :root {
	--font:
	'Poppins', sans-serif;
    --zerounit: 0px;
    --oneunit: 1px;
    --twounit: 2px;
    --threeunit: 3px;
    --fourunit: 4px;
    --lightyellow: #ffd815;
    --black: #000000;
    --gridcell: 6.2vw;
    --border-color: #bebcbd80;
    --red: #e13212;
    --blue: #5926c4;
    --white: #fff;
    --scale-value: 0;
	--blue: #28C2D1;
	--orange: #FF723B;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.blue{ color:#28C2D1 !important;}
.orange {color: #FF723B !important;}
.purple {color: #BDADFF !important;} 
.pb10{padding-bottom:10px;}
.mr-0{margin-right:0 !important;}
.story_cell_wrp {
    padding-bottom: calc(var(--gridcell) * 0);
}
.grid_cell_box {
    position: relative;
    z-index: 0;
    border-top: var(--oneunit) solid #333333ad;
    /*border-bottom: var(--oneunit) solid #bebcbd80;*/
    border-right: var(--oneunit) solid #333333ad;
}
.grid_cell_item:after {
    background-size: calc(100%/16) var(--gridcell);
}
.grid_cell_box:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(#333333ad var(--oneunit),transparent var(--oneunit)),linear-gradient(90deg,#333333ad var(--oneunit),transparent var(--oneunit));
    background-position: 0px -1px;
    z-index: -1;
}
.l-wrap { 
    margin-right: auto;
    margin-left: auto;
    padding-left: 16px;
    padding-right: 16px;
	 
    max-width: 1279px;
    display: flex;
}


/* Hide Page Title */
h1.entry-title {
    display: none !important;
}


 input, input:before, input:after {
      -webkit-user-select: initial;
      -khtml-user-select: initial;
      -moz-user-select: initial;
      -ms-user-select: initial;
      user-select: initial;
     } 

.hover-tabs:hover .e-n-accordion-item-title {
    border-radius: 30px 30px 0px 0px !important;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    max-width: 1400px;
    margin: 0 auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
}

.header a {
    padding: 0px !important;
}

.logo {
    display: flex;
    align-items: center;
    width: 15%;
}

.logo-img {
    width: 100%;
}

.logo-icon {
    font-size: 24px;
    color: #23c3c8;
    margin-right: 5px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
}

.grad {
    color: #23c3c8;
}

.right {
    color: #ff7f50;
}



.nav-center-list li.active a {
    color: #FF6600; /* Change to your highlight color */
}

/* Mobile Menu - Active Item */
.menu-items a.active {
    color: #FF6600;
    font-weight: bold;
}

/* Optional Hover Effect */
.nav-center-list li a:hover,
.menu-items a:hover {
    color: #FF6600;
    transition: color 0.3s ease;
}



.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
}

.nav-center-list {
    background-color: white;
    border-radius: 30px;
    margin-bottom: 0px;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
    padding: 0px;
    justify-content: space-between;
}

.header a {
    padding: 0.5rem 1rem;
}

.nav-center li {
    font-weight: 400;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    position: relative;
}
.testimonial-item {
    cursor: pointer;
}

/* Background overlay */
.testimonial-popup {
  display: flex; /* hidden by default */
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  overflow-y: auto;

  /* animation states */
   opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* When popup is visible */
.testimonial-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
/* Popup box */
.popup-content {
  background: #fff;
  border-radius: 8px;
  max-width: 1058px;
  width: 100%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  /*min-height: 417px;*/

  /* animation state */
  transform: translateY(-30px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
/* Animate when parent is active */
.testimonial-popup.active .popup-content {
  transform: translateY(0);
  opacity: 1;
}

/* Close button */
.popup-content .close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 26px;
  font-weight: bold;
  color: #444;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 1;
}
.popup-content .close:hover {
  color: #ff4d4d;
}

/* Layout inside popup */
.testimonialRow {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  text-align: center;
}

.testimonialContent img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 3px solid #20B6CE;
}

.userDetail {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 12px;
    position: absolute;
    bottom: 24px;
}
.userName {
  font-size: 18px;
  font-weight: 600;
  display: block;
}

span.userUniversity {
    color: #FC7B50;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding-left: 5px;
}
.UserCourse {
    color: #000000;
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    font-family: Montserrat;
    display: flex;
}


.testimonialVideo {
    flex: 0 0 64%;
    max-width: 64%;     
    position: relative;
    /*height: 417px;*/
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    overflow: hidden;
    background:#000;
    height: 381px;
}
.testiVideo{
    width: 100%;       
    height: 100%;         
    object-fit: cover; 
}
.playButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
}
.playButton img {
  width: 62px;
  height: 62px;
}

.testimonialContent {
    flex: 0 0 36%;
    max-width: 36%;
    position: relative;
    padding: 16px;
}
img.testiThumbnail {
    position: absolute;
    left: 16px;
    top: -25px;
}
.testimonialFullText {
    font-size: 20px;
    text-align: left;
    padding-top: 58px;
    font-family: 'Roboto';
    color: #043F5D;
    font-family: "Roboto", Sans-serif;
}

.userDetailsRight {
    display: flex;
    flex-direction: column;
}

.userDetailsRight .NameUni {
    display: flex;
}
img.userImage {
    border: 2px solid #FC7B50 !important;
    border-radius: 100% !important;
    width: 46px !important;
    height: 46px !important;
    object-fit: cover;
    margin-bottom: 0;
}
.text_testimonial .testimonialFullText {
    font-size: 16px;
}
.text_testimonial  .testimonialContent {
    min-height: 290px;
}
.text_testimonial .userName{
    font-size:16px;
}
.popup-content.textReview {
    max-width: 430px;
    min-height: 290px;
}

.testimonialRow.text_testimonial .testimonialContent {
    flex: 0 0 100%;
    max-width: 100%;
}

/* GradNews */

.grBtn .elementor-button-icon{
    position: absolute;
    right: 2px;
    width: 62px;
    height: 62px;
    top: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
}

.grBtn a.elementor-button {
    padding-right: 100px !important;
    position: relative;
    color: #fff;
}

.gradPagination .elementor-pagination {
    margin-top: 42px;
}
.gradPagination .elementor-pagination .page-numbers.current {
    background-color: #FC7B50;
    border-radius: 10px;
    width: 27px;
    height: 30px;
    display: inline-block;
}
.gradPagination .page-numbers.prev, .gradPagination .page-numbers.next {
    border: 1px solid;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-color: rgba(0,0,0,.1);
}
.gradPagination nav{
    background:transparent;
}

/* Events */

.events-wrapper {
    display: flex;
    height: 75vh;
    align-items:strech;
}
/* Left side */
.event-list {
    width: 60%;
    max-height: 100vh;
    overflow-y: auto;
    background: #f5f5f5;
    padding: 10px;
}
.event-row {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: .5;
    margin-bottom: 8px;
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s ease;
}
.event-row:hover {
    opacity: 1;
}
.event-row img {
    max-width: 105px !important;
}
.eventDate {
    color: #fff;
    font-size: 35px;
    font-family: "Poppins", sans-serif;
    position: relative;
}
.eventDate small.eventMonth {
    position: absolute;
    font-size: 12px;
    width: 100px;
}
.event-row .eventType {
    display: none;
}
.eventType {
    font-size: 12px;
    color: #fff;
}
.event-row:hover .eventType {
    display: flex;
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fadeInLeft {
  animation: fadeInLeft 0.6s ease forwards;
}
.fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}
.eventCountDown .unit {
    color: #726f6f;
}

/* Right side */
.event-details {
    width: 40%;
    padding: 0 20px;
    background: #fff;
    border-left: 2px solid #eee;
}
.event-detail {
    display: none;
    height:100%;
    border-radius: 6px;
    position: relative;
}
.event-detail.active {
    display: block;
}
.eventLogoWrapper {
    max-width: 180px;
    margin: 0 auto;
    margin-bottom:20px;
}
.eventDescriptionWrapper {
    padding: 20px;
}
.collaborationWith span.inCollab {
    font-size: 12px;
}
.collaborationWith {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.collaborationWith span.inCollab {
    font-size: 12px;
}

.collabsWrapper {
    display: flex;
    gap: 10px;
    background: #fff;
    border-radius: 9px;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
}
.eventDescription {
    color: #fff;
    text-align: center;
    font-size: 15px;
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
}
.eventBottom {
    width: 75%;
    margin: 0 auto;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}
.eventTypeTime {
    color: #fff;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    margin-top: 15px;
}
.eventTypeTime span {
    color: #ababab;
    margin-right:5px;
}
.collabInner {
    width: 70px;
}
.eventLink a {
    background: #f5df51;
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    margin-top: 20px;
}
.eventCountDown {
    background: #060424;
    text-align: center;
    color: rgb(255, 255, 255);
    font-family: Lora, "Lora Placeholder", serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    font-style: normal;
    letter-spacing: 0em;
    margin: 0px;
    padding: 13px 10px;
    visibility: visible;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

a.eventBtnEffect {
  position: relative;
  padding: 12px 24px;
  color: #000; 
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}
a.eventBtnEffect::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1D53F5; 
  z-index: -1;
  transition: left 0.4s ease;
}
a.eventBtnEffect:hover::before {
  left: 0;
}
a.eventBtnEffect:hover .elementor-widget-text-editor {
  color: #fff;
}
.eventHeading span {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Footer Layout */
.contact-section {
    margin-top: 30px;
}
.contact-section .contact-info {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}
ul.footer-links {
    display: flex;
    gap: 15px;
}
ul.footer-links a {
    color: #bfbec6;
    font-size: 14px;
}
.eventLogoWrapper h2 {
    text-align: center;
    color: #fff;
}
.eventLogoWrapper h2 {
    text-align: center;
    color: #fff;
}
.event-row span {
    color: #fff;
}

/* New HomePage Design */

.trustedContent .elementor-image-box-wrapper {
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #B03DEB, #20B6CE) border-box;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.55);
    padding: 8px;
    border-radius: 100px;
}
/*.tabLayout .e-n-tab-title{
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.55));
}*/
.readMoreBtn .elementor-button-icon svg {
    width: 5px;
}
.eventWidth_100 .event{
    width: 100%;
}
.uniPartnersCounter .elementor-counter-number-wrapper, 
.countryCounter .elementor-counter-number-wrapper, 
.loanCounter .elementor-counter-number-wrapper,  
.hiddenCost .elementor-counter-number-wrapper, .uniPartnersCounter .elementor-counter-title,
.countryCounter .elementor-counter-title, .loanCounter .elementor-counter-title,
.hiddenCost .elementor-counter-title, .lightGreenGdnt .elementor-counter-title, .lightGreenGdnt .elementor-counter-number-wrapper{
    -webkit-background-clip: text !important;
    background-clip: text;
     color: transparent; 
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.uniPartnersCounter .elementor-counter-number-wrapper, .uniPartnersCounter .elementor-counter-title{
        background: linear-gradient(90deg, #040663 0%, #2F6BE3 100%);
}
.countryCounter .elementor-counter-number-wrapper, .countryCounter .elementor-counter-title {
        background: linear-gradient(90deg, #21302A 0%, #527C65 100%);
}
.loanCounter .elementor-counter-number-wrapper, .loanCounter .elementor-counter-title{
        background: linear-gradient(90deg, #304C3A 0%, #60C18A 100%);
}
.hiddenCost .elementor-counter-number-wrapper, .hiddenCost .elementor-counter-title{
        background: linear-gradient(90deg, #552822 0%, #E65C4F 100%);
}
.lightGreenGdnt .elementor-counter-number-wrapper, .lightGreenGdnt .elementor-counter-title{
    background: linear-gradient(90deg, #304C3A 0%, #60C18A 100%);
}
.gradNewsDescription .elementor-widget-container {
  display: -webkit-box;
  -webkit-line-clamp: 3;   /* limit to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.testimonial-cluster {
  position: relative;
  height: 672px; /* adjust to your section */
  overflow: visible;
}

.testimonial-item {
  width: 155px;
  height: auto;
  transition: all 0.7s ease; 
  position: absolute;
  user-select: none;
}

.testimonialText {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 40px;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 558px;
    line-height: 52px;
    color:#2B076E;
}

.googleReviews {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    gap: 8px;
    color: #2B076E;
}
.googleImage img {
    width: 31px;
    height: 31px;
}
.googleReviews .totalRatings {
    font-size: 14px;
    font-weight: 500;
    color: #230735;
}

.tabsCircular .e-n-tabs-heading{
    background: #F1F1F3;
    margin: 0 auto;
    border-radius: 12px;
    padding:4px;
}
.tabsCircular .e-n-tab-title[aria-selected="true"] {
    font-weight: 500 !important;
}
.tabsCircular button.e-n-tab-title:hover, .tabsCircular button.e-n-tab-title:focus {
    border-radius:12px;
}
.HeroHeading .eael-fancy-text-strings{
    background: linear-gradient(90deg, #FB7B50 0%, #E65C4E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-left: 3px;
}
.instaFeed .ti-layout-item {
    height: 290px !important;
}

/* Header New */
 .events-marquee-wrapper {
    overflow: hidden;
    color: #fff;
    padding: 6px 0;
    font-size: 14px;
    position: relative;
    white-space: nowrap;
}
.events-marquee {
    display: flex;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
    font-family: "Poppins", sans-serif;
    font-style: Medium;
    font-size: 14px;
    line-height: 150%;
    color:#1B1B1B;
    font-weight: 400;
    width: max-content;
}
.events-marquee .separator {
    padding: 0px 8px;
}
.events-marquee:hover {
  animation-play-state: paused;
}
.marquee-inner a {
    color: #096DEB;
    text-decoration: underline !important;
}
@keyframes marquee {
    0%   { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}
.gradNewsLoop svg {
    font-size: 16px;
    fill: #782BFF !important;
}
.elementor-widget-eael-feature-list .eael-feature-list-items 
.eael-feature-list-item .eael-feature-list-icon-box
 .eael-feature-list-icon{
    padding: 0 !important;
}
.footerSocial ul.ekit_social_media svg {
    width: auto;
}
.footerSocial ul.ekit_social_media a {
    display: flex !important;
    align-items: end;
}
.footerSocial ul.ekit_social_media{
    display: flex;
    gap: 15px;
}


body {
  transition: background-color 0.8s ease;
}

body.default-bg {
  background-color: #ffffff; 
}

body.dark-bg {
  background-color: #230735 !important; 
}
body.dark-bg .blueSectionTitle h2{
    color:#fff !important;
}
.financeMenu .elementskit-megamenu-panel {
    left: -6px !important;
}
.essentialsMenu .elementskit-megamenu-panel {
    left: -100px !important;
}
.onlineProgramsMenu .elementskit-megamenu-panel {
    left: -501px !important;
}
.bigText {
    font-size: 48px;
}
.instaFeed .ti-layout-item{
    padding: 0px 11px !important;
}
.instaFeed .ti-layout-item, .instaFeed .ti-layout-item article {
    border-radius: 8px !important;
    overflow: hidden;
}
.heroBtn a{
    position: relative;
}
.heroBtn a:before {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 18px;
    pointer-events: none;
    border: 0.8px solid #782bff15;
}
.heroBtn a:after {
    content: "";
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 20px;
    pointer-events: none;
    border: 0.8px solid #782bff15;
}
body.dark-bg .zeroCost p{
    color:#fff;
}
.multiColorTesti .swiper-wrapper .swiper-slide:nth-child(3n+1) .e-con-boxed{
  background: 
    
    linear-gradient(44.18deg, #552822 5.68%, #2F6BE3 92.78%);
}
.multiColorTesti .swiper-wrapper .swiper-slide:nth-child(3n+2) .e-con-boxed{
  background: 
    
    linear-gradient(277.86deg, #E65C4F 13.78%, #AB5143 58.39%, #803C33 106.7%) ;
}
.multiColorTesti .swiper-wrapper .swiper-slide:nth-child(3n+3) .e-con-boxed{
  background: 
   
    linear-gradient(44.18deg, #273F83 5.68%, #60C18A 92.78%);
}


.multiColorTesti .swiper-wrapper .swiper-slide .testiContent p {
  position: relative;
  text-align: center; 
}

.multiColorTesti .swiper-wrapper .swiper-slide .testiContent p::before,
.multiColorTesti .swiper-wrapper .swiper-slide .testiContent p::after {
  content: "";
  display: block;
  width: 18px;  
  height: 18px;
  background: url("https://dev.gradright.com/wp-content/uploads/2025/09/QuoteIcon.svg") no-repeat center;
  background-size: contain;
  margin: 0 auto 15px; 
  position: absolute;
  left:0px;
  top:-18px;
}

/* Place the closing icon after the text */
.multiColorTesti .swiper-wrapper .swiper-slide .testiContent p::after {
  margin: 15px auto 0;
  transform: rotate(180deg); 
  right:10px;
  bottom:-15px;
  top: auto;
  left: auto;
}
 .sImage_2, .sImage_3, .sImage_4,  .sImage_5{
    display:none;
}

.ourFeatures {
    position: absolute !important;
    bottom: 0;
    width: 412px !important;
    height: 272px !important;
    right: 0;
    box-shadow: 0px 4px 11.8px 0px #0000002B;
    background-color: #fff;
    padding: 20px !important;
    border-radius: 8px !important;
    box-shadow: 0px 40px 100px 0px #66BAFF33, 0px 0px 3px 0px #0000008C, 0px 4px 11.8px 0px #0000002B;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    top: 50%;
    transform: translateY(-50%);
}
.ourFeatures .selectionFeatures{
    border: 0.6px solid #D1D1D6;
    border-radius:8px;
    padding: 10px;
    cursor: pointer;
}

li.elementor-icon-list-item svg {
    margin: 0 !important;
}
li.elementor-icon-list-item .elementor-icon-list-text{
    padding-left:0 !important;
}
.selectionFeatures.active {
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #B03DEB, #20B6CE) border-box;
    
}
.selectionFeatures.active .elementor-icon-list-text{
    font-weight:600 !important;
}
 .selectionFeatures.active svg path{
    fill:#782BFF !important;
}
.feature_image{
    display:none;
}
.feature_image.active{
    display: block;
}
.shortlistAccordion .eael-accordion-content a {
    color: #782BFF;
    font-weight: 500;
}
.eael-accordion-list {
  position: relative;
  border-bottom: 2px solid #ebe7ff; /* always visible */
}

.eael-accordion-list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px; /* same as border thickness */
  width: 0;
  background: linear-gradient(90deg, #2B076E, #2B076E);
  transition: width 2s ease;
}

/* When active, gradient overlays the gray */
.eael-accordion-list.active::after {
  height: 2.2px; /* thinner than the base border */
  bottom: -1.2px; /* center over the border */
  width: 100%;
}
.spline-bg {
  overflow: hidden; /* prevent scrollbars */
  width: 100%;
}

.spline-bg spline-viewer {
  width: 100%;
  height: 100%;
  transform: scale(1.2);       
  transform-origin: center;
}
.testiImgWrapper {
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width:50px;    
}
.accordLink::after {
  content: '>';
  display: inline-block;
  width: 6px;
  height: 11px;
  margin-left: 6px;
  color: #782BFF;
}
.type-testimonial .testiContentBox.Text{
    width:100%;
}
.type-testimonial .testiContentBox.Text .testiContent {
    width: 100%;
    margin: 0 auto;
    padding: 10px 10px;
}
.testiBottom.Text .userTestiInfo {
    width: 100%;
}
.type-testimonial .testiContentBox.Text .testiContent .elementor-widget-container {
    padding: 20px;
}
.testimonial-video-slide {
    min-width: 400px !important;
}
.orangeGradiant {
  background: linear-gradient(90deg, #782bff 0%, #782bff 75.48%);
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
  background-clip: text; 
  color: transparent; 
}
.journeyGradiant::before {
    content: '' !important;
    background: linear-gradient(
      180deg,
      rgba(214, 115, 26, 0) 7.7%,
      rgba(214, 115, 26, 0.08) 20.22%,
      rgba(214, 115, 26, 0.17) 31.38%,
      rgba(214, 115, 26, 0.28) 43.22%,
      rgba(214, 115, 26, 0.9) 73.97%
    );
}
.journeyTabs .e-n-tab-title span {
  transition: all 0.3s ease; 
}
.journeyTabs .e-n-tab-title[aria-selected="true"] span {
    font-size: 52px !important;
    border-top: 2px solid;
}
.journeyTabs .e-n-tab-title {
  min-height: 130px; 
}
.type-testimonial .testiContentBox{
    min-height: 171px !important;
}

/*.journeyTabs .e-n-tab-title span {
  display: inline-block;
  position: relative;
}

.journeyTabs .e-n-tab-title span::after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%; /
  height: 2px;
  width: 0%; 
  background-color: #F37B51;
}*/

.essentialsList li.eael-feature-list-item {
    align-items: center;
}
header.elementor-slideshow__header.elementor-lightbox-prevent-close {
    background: transparent;
}

/* Shared styles */
#carouselOne .swiper-wrapper,
#carouselTwo .swiper-wrapper,
#carouselThree .swiper-wrapper, .testNewCarousel .swiper-wrapper, .adviserCarousel .swiper-wrapper, .galleryCarousel .swiper-wrapper{
  /*display: flex;
  width: max-content;*/
  transition-timing-function: linear !important;
}
#carouselThree .swiper-slide,
.testNewCarousel .swiper-slide,
.adviserCarousel .swiper-slide, .galleryCarousel .swiper-slide {
  flex-shrink: 0; /* prevents overlap */
}

#carouselOne .swiper-wrapper{
  animation: ticker-left 30s linear infinite;
}

#carouselTwo .swiper-wrapper {
  animation: ticker-right 50s linear infinite;
}

#carouselThree .swiper-wrapper {
  animation: ticker-left 50s linear infinite;
}

#carouselOne:hover .swiper-wrapper,
#carouselTwo:hover .swiper-wrapper,
#carouselThree:hover .swiper-wrapper, 
.testNewCarousel:hover .swiper-wrapper, .adviserCarousel .swiper-wrapper:hover, .galleryCarousel .swiper-wrapper:hover{
  animation-play-state: paused !important;
}

.marquee-swiper {
  display: flex;
  animation: marquee 50s linear infinite; 
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* Keyframes */
@keyframes ticker-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

@keyframes ticker-right {
  0%   { transform: translateX(0); }
  100% { transform: translateX(50%); } 
}

.allCarouselWrapper {
  position: relative;
  overflow: hidden; 
}

/* Fade overlays */
.allCarouselWrapper::before,
.allCarouselWrapper::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  width: 30% !important; 
  height: 100% !important;
  z-index: 10;
  pointer-events: none; 
}

.allCarouselWrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}

.allCarouselWrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
}
.allCarouselWrapper .swiper-slide:hover{
    border: 1.67px solid #146BB4;
    box-shadow: 0px 4.21px 12.42px 0px #0000002B;
    border-radius: 8px;
    cursor: pointer;
}
.testimonial-item.cardBox {
    cursor: default;
}
.testimonialVideo video.testiVideo {
    width: 100%;
    height: 100%;
    max-height: 417px;
    object-fit: contain;
    background: #000;
}
.allCarouselWrapper  [inert] {
    interactivity: auto !important;
}
.allCarouselWrapper .swiper-slide {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.allCarouselWrapper .swiper-slide.dimmed {
  opacity: 0.3; /* fade out */
}

.banksSlider .swiper-slide-bg {
    background-color: transparent !important;
}
.bankBox .dialog-widget-content {
    background-color: transparent !important;
}
.bankBox .dialog-close-button {
    padding: 6px;
    border-radius: 50px;
}
.dialog-close-button:focus-visible {
    outline: unset;
}
.HeaderNavigation a.ekit-menu-nav-link {
    height: 40px !important;
    top: 50%;
    transform: translateY(-50%);
}

.HeaderNavigation .elementskit-submenu-indicator{
    display: none;
}
.testimonial-cluster .testimonial-item:not(.cardBox):hover {
    transform: scale(1.2) !important;
    transition: transform 0.25s ease-in-out;
}
span.testiNameDivider {
    font-weight: 400;
}
.video-frame {
  overflow: hidden;
  display: inline-block;
  background: #000;
  position: relative;
  border-radius: 4px;
  height: 390px;
}

.frame-contain .fit-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #000; /* letterbox color */
  border: 0;
}
.video-frame.frame-cover .playButton {
    bottom: 0;
    top: auto;
    right: 0px;
    left: auto;
}
.video-frame img {
    width: 40px;
}
.video-frame video{
    object-fit: cover !important;
    width: 100%;
    height: 100%;
}
.dropdownBoxOld {
    box-shadow: 0px 0px 13.23px 0px #4040400D, 0px 42.1px 105.25px 0px #00000066, 0px 0px 3.16px 0px #0000008C, 0px 4.21px 12.42px 0px #0000002B !important;
    backdrop-filter: blur(42.1px) !important;
}
.dropdownBox {
    box-shadow: 0px 0px 20px 0px rgba(2, 3, 12, 0.2) !important;
    backdrop-filter: blur(42.1px) !important;
}
.eael-feature-list-item .eael-feature-list-icon-box {
    display: flex;
}
.txtLetterSpacing p, .txtLetterSpacing .elementor-widget-container{
    letter-spacing:-0.132px;
}
.formLayout .elementor-field {
    padding: 14px 18px;
}
.formLayout .elementor-field.elementor-select-wrapper {
    padding: 0;
}

.formLayout .elementor-field.elementor-select-wrapper select {
    padding: 14px 18px;
    line-height: 1;
    color: #616161;
}
.formConfirmationBox.hidden, .formLayout.hidden{
    display:none !important;
}
.formLayout.active, .formLayout.active{
    display:block !important;
    animation: fadeInScale 0.4s ease forwards;
}
.formLayout .elementor-message.elementor-message-success.elementor-message-svg {
    display: none !important;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.dark-bg .homeHeroSection {
    background-image: none !important;
}


.journeyUni.healthInsurance,
.journeyUni.educationLoans,
.journeyUni.uniSelection,
.journeyUni.onlinePrograms {
    position: relative;          /* needed for pseudo-element */
    border-radius: 8px;
    backdrop-filter: blur(20px);
    transition: background 0.4s ease, transform 0.3s ease, box-shadow 0.4s ease;
}

/* Base borders via pseudo-element */
.journeyUni.healthInsurance::before,
.journeyUni.educationLoans::before,
.journeyUni.uniSelection::before,
.journeyUni.onlinePrograms::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 0.6px solid;          /* base border width */
    pointer-events: none;
    transition: border-width 0.3s ease, border-color 0.3s ease;
}

/* Health Insurance */
.journeyUni.healthInsurance {
    background: radial-gradient(389.97% 184.47% at 50% 50%, rgba(255, 255, 255, 0.20) 0%, rgba(218, 251, 220, 0.20) 100%), #FCFCFD;
}
.journeyUni.healthInsurance::before {
    border-color: #304C3A;
}
.journeyUni.healthInsurance:hover {
    background: radial-gradient(389.97% 184.47% at 50% 50%, #FFF 0%, #DAFBDC 100%);
    box-shadow: 0 4px 11.8px rgba(0,0,0,0.17), 0 0 3px rgba(0,0,0,0.55);
    transform: translateY(-2px);
}
.journeyUni.healthInsurance:hover::before {
    border-width: 1.6px;
}

/* Education Loans */
.journeyUni.educationLoans {
    background: radial-gradient(389.97% 184.47% at 50% 50%, rgba(255,255,255,0.20) 0%, rgba(254,230,222,0.20) 100%), #FCFCFD;
}
.journeyUni.educationLoans::before {
    border-color: #552822;
}
.journeyUni.educationLoans:hover {
    background: radial-gradient(389.97% 184.47% at 50% 50%, #FFF 0%, #FEE6DE 100%);
    box-shadow: 0 4px 11.8px rgba(0,0,0,0.17), 0 0 3px rgba(0,0,0,0.55);
    transform: translateY(-2px);
}
.journeyUni.educationLoans:hover::before {
    border-width: 1.6px;
}

/* Uni Selection */
.journeyUni.uniSelection {
    background: radial-gradient(389.97% 184.47% at 50% 50%, rgba(255,255,255,0.20) 0%, rgba(182,215,255,0.20) 100%), #FCFCFD;
}
.journeyUni.uniSelection::before {
    border-color: #040663;
}
.journeyUni.uniSelection:hover {
    background: radial-gradient(389.97% 184.47% at 50% 50%, #FFF 0%, #B6D7FF 100%);
    box-shadow: 0 4px 11.8px rgba(0,0,0,0.17), 0 0 3px rgba(0,0,0,0.55);
    transform: translateY(-2px);
}
.journeyUni.uniSelection:hover::before {
    border-width: 1.6px;
}


.journeyUni.onlinePrograms {
    background: radial-gradient(389.97% 184.47% at 50% 50%,  rgba(244, 242, 255, 0.20) 0%,  rgba(190, 174, 255, 0.20) 100%), #FCFCFD;
}
.journeyUni.onlinePrograms::before {
    border-color: #040663;
}
.journeyUni.onlinePrograms:hover {
    background: radial-gradient(389.97% 184.47% at 50% 50%, #FFF 0%, #c3a0ff 100%);
    box-shadow: 0 4px 11.8px rgba(0,0,0,0.17), 0 0 3px rgba(0,0,0,0.55);
    transform: translateY(-2px);
}
.journeyUni.onlinePrograms:hover::before {
    border-width: 1.6px;
}

.SRFeatureList svg, .mblIconList svg{
    fill:none !important;
}
.blueShine {
    background: linear-gradient(91deg, #782BFF -23.02%, #5712c5 245.76%) !important;
    box-shadow: 0 4px 11.8px 0 rgba(0, 0, 0, 0.17), 0 0 3px 0 rgba(0, 0, 0, 0.55), 0 17px 100px 0 rgba(47, 107, 227, 0.20) !important;
    backdrop-filter: blur(20px) !important;
}
.watchStory {
    cursor: pointer;
}
.innerTestimonials .testimonialContent {
    display: none;
}
.innerTestimonials .testimonialVideo {
    flex: 0 0 100%;
    max-width: 100%;
}
.innerTestimonials .popup-content.videoReview {
    max-width: 776px;
    border-radius: 8px;
}
.innerTestimonials span.close {
    right: 0px;
    top: -44px;
    color: #fff;
    width: 35px;
    opacity: 1 !important;
    height: 35px;
    background-color: #ddd;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    z-index: 999 !important;
}
.innerTestimonials span.close path {
}

.innerTestimonials  .testimonialVideo{
    border-radius: 8px;
}
.countersLayout .countersWrapper > .e-con-full:not(:last-child)::after{
    content:none;
}


/* Preloader container with white background */
#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff; /* white background */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 0 20px;
  box-sizing: border-box;
  transition: opacity 2s ease;
  flex-direction: column;
}

/* Gradient text for h2 */
#preloader h2 {
  position: relative;
  z-index: 3;
  font-family: "Poppins", sans-serif;
  font-size: 46px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: 55px;
  background: linear-gradient(
    90deg,
    #E65C4F 0%,
    #552822 25%,
    #E65C4F 50%,
    #552822 75%,
    #E65C4F 100%
  );
  background-size: 300% auto;              /* 👈 More width for smoother motion */
  background-position: 100% 50%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    fadeIn 1s ease-out forwards,
    gradientMove 2s linear infinite 1s; /* 👈 delay = 1s */

  max-width: 50%;
  text-align: center;
}
.loadingAnimated img{
    max-width: 250px;
}

 #preloader.fade-out {
    opacity: 0;
    pointer-events: none;
  }

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1); /* zoom in to 110% */
  }
}
@keyframes fadeIn {
  0% { 
    opacity: 0;
    transform: translateY(10px);
  }
  100% { 
    opacity: 1;
    transform: translateY(0);
  }
}
div#gnResults.noNewsFound {
    grid-template-columns: repeat(1, 1fr);
}
.noFoundText {
    width: 100%;
    text-align: center;
    padding-top: 200px;
}



/* Gates */
.gate {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: #ffffff; /* match preloader background */
  z-index: 2;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.gate.left { left: 0; transform-origin: left center; }
.gate.right { right: 0; transform-origin: right center; }

/* Gate open animation */
#preloader.open .gate.left { transform: translateX(-100%); }
#preloader.open .gate.right { transform: translateX(100%); }

/* Fade out entire preloader after gates open */
#preloader.open {
  transition: opacity 0.6s ease 1s;
  opacity: 0;
  pointer-events: none;
}
#preloader.close{
    transition: opacity 0.6s ease out 1s;
}
@keyframes fadeText {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Moving gradient */
@keyframes gradientMove {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


#fundRightTestimonials .testiContentBox {
    width: 100%;
}
#fundRightTestimonials .testiContentBox .testiContent .elementor-widget-container {
    padding: 20px;
}
.hideMenu{
    display: none;
}
.tabLayout .e-n-tab-title {
    cursor: pointer;
}
.communityMenu .elementskit-megamenu-panel {
    left: -120px !important;
}
.carouselNavIcon .elementor-swiper-button svg, .countrySlider .elementor-swiper-button svg{
    width: 36px !important;
    height:36px !important;
}
.testNewCarousel .swiper {
    overflow: unset;
}
/* Always target inside the swiper-wrapper */
.testNewCarousel .swiper-wrapper .swiper-slide:nth-child(3n + 1) {
  transform: rotate(0deg);
  margin-left: 22px;
  top: 14px;
}
.testNewCarousel .swiper-wrapper .swiper-slide:nth-child(3n + 2) {
  transform: rotate(12.649deg);
    margin-left: 36px;
    margin-top: 46px;
}
.testNewCarousel .swiper-wrapper .swiper-slide:nth-child(3n + 3) {
  transform: rotate(6.47deg);
  margin-left: 35px;
  top: 30px;
}
.testNewCarousel .swiper-wrapper .swiper-slide:nth-child(3n + 1) .tagImage {
    transform: rotate(42.814deg);
    left: -5.499px;
    top: -25.35px;
    width: 73.782px;
    height: 35.129px;
}
.testNewCarousel .swiper-wrapper .swiper-slide:nth-child(3n + 2) {
    transform: rotate(12.649deg);
}
.testNewCarousel .swiper-wrapper .swiper-slide:nth-child(3n + 2) .tagImage {
    transform: rotate(-12.649deg);
    left: 18px;
    top: -42px;
    width: 75.447px;
    height: 32.812px;
}
.testNewCarousel .swiper-wrapper .swiper-slide:nth-child(3n + 3) .tagImage {
    transform: rotate(-27deg);
    top: -40px;
    width: 73.782px;
    height: 35.13px;
}
.testNewCarousel .swiper-wrapper .swiper-slide {
    width: 365px !important;
    height: 273px !important;
}
.IR-Tabs .e-n-tabs-heading {
    background: #45465F;
    margin: 0 auto;
    border-radius: 100px;
    padding: 4px;
}
.IR-Tabs .e-n-tabs-heading .e-n-tab-title{
    cursor: pointer;
}
.elementor-field-group-f1VisaRadio .elementor-field-option label {
    color: #616161 !important;
}
.testiNewIcon .elementor-widget-container {
    width: 46px;
    height: 46px;
}
.elementor-field-group-f1VisaRadio {
    align-items: self-start;
}

.elementor-field-group-f1VisaRadio {
    align-items: self-start;
    padding: 0px 0px 4px 20px !important;
}

.elementor-field-group-f1VisaRadio input[type="radio"] {
    font-size: 30px;
    width: 24px;
    height: 24px;
}

.elementor-field-group-f1VisaRadio span.elementor-field-option {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.elementor-field-group-f1VisaRadio .elementor-field-subgroup.elementor-subgroup-inline {
    display: flex;
    gap: 30px;
}
.shortlistAccordion .eael-adv-accordion .eael-accordion-list .eael-accordion-header {
    border-right: 0;
}
.adviserQualifications{
    min-height:42px;
}
.scroll-nav ul {
    padding: 0;
    list-style: none;
    margin: 0;
}
.scroll-nav ul li {
    display: flex;
    padding: 8px 16px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    margin-bottom: 10px;
    color: #043F5D;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    line-height: 20px;
    text-align: left;
}
.scroll-nav ul li.active {
    color: #2F6BE3;
    border-right: 2px solid #2F6BE3;
    background: linear-gradient(0deg, rgba(47, 107, 227, 0.05) 0%, rgba(47, 107, 227, 0.05) 100%), #FFF;
}
.scroll-nav ul li:hover {
    background: #F0F0F1;
}  
span.boldText {
    display: block;
    color: var(--White-Mode-Primary, #230735);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.headingTextList li {
    margin-bottom: 16px;
}
#scroll-sync-wrapper #headingFixed.stuck {
  position: fixed;
  top: 100px;
}

/* scholarship  styles*/
#scholarship-filters {
    display: flex;
    gap: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    margin-bottom: 32px;
}
#scholarship-filters .filterSearch{
    flex: 0 0 54%;
    display: flex;
}
#scholarship-filters #sch_search {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    position: relative;
}
#sch_search_input{
    border-radius: 8px;
    border: 0.6px solid rgba(0, 0, 0, 0.22);
    background: #FFF;
    box-shadow: 0 0.75px 1px 0 rgba(0, 0, 0, 0.05);
    padding: 11px 8px 11px 40px;
    width: 100%;
}
#scholarship-filters #sch_search svg{
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    left:8px;
}
/*#sch_program, #sch_country, #sch_level {
    flex: 1 1 0;
    width: 0;
    min-width: 0;
    display: flex;
    padding: 15px 12px 15px 16px;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid rgba(62, 151, 255, 0.61);
    background: #FFF;
    box-shadow: 0 0.893px 1.19px 0 rgba(0, 0, 0, 0.05);
    color: rgba(35, 7, 53, 0.79);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-family: "Poppins", sans-serif;
}*/


.filtersInner {
    display: flex;
    gap: 20px;
}
.select-wrap {
    position: relative;
    width: 100%;
}
.select-wrap select {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ccc;
    appearance: none;
    background-color: #fff;
    cursor: pointer;
}

.select-wrap::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 12px;
    height: 7px;
    transform: translateY(-50%);
    pointer-events: none;

    background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'><path d='M10.835 0.834961L5.83496 5.83496L0.834961 0.834961' stroke='%23230735' stroke-opacity='0.79' stroke-width='1.67' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-size: 12px;
}
.select-wrap select {
    padding: 15px 12px 15px 16px;
    align-items: center;
    border-radius: 8px;
    border: 1px solid rgba(62, 151, 255, 0.61);
    background: #FFF;
    box-shadow: 0 0.893px 1.19px 0 rgba(0, 0, 0, 0.05);
    color: rgba(35, 7, 53, 0.79);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-family: "Poppins", sans-serif;
}


#sch_level {
    flex: 0 0 34%;
}

#scholarship-results {
    display: flex;
    gap: 20px;
    align-self: stretch;
    flex-direction: row;
    justify-content: center;
}

#scholarship-results .sch-card {
    display: flex;
    width: 385px;
    padding: 16px;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
    border: 2px solid rgba(140, 122, 248, 0.20);
    background: #FFF;
    box-shadow: 0 0 7px 0 rgba(64, 64, 64, 0.10);
}

#scholarship-results .sch-card h3 {
    overflow: hidden;
    color: var(--White-Mode-Primary, #230735);
    text-overflow: ellipsis;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.sch-criteria {
    color: #043F5D;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 12px;
}

.sch-deadline.badge {
    border-radius: 200px;
    background: linear-gradient(90deg, rgba(243, 123, 81, 0.20) 0%, rgba(230, 92, 79, 0.20) 75.48%), #FFF;
    color: #E15A32;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    height: 26px;
    padding: 0 8px;
    align-items: center;
    gap: 4px;
    display: flex;
    width: auto;
    max-width: max-content;
}

.sch-deadline.badge {
    border-radius: 200px;
    background: linear-gradient(90deg, rgba(243, 123, 81, 0.20) 0%, rgba(230, 92, 79, 0.20) 75.48%), #FFF;
    color: #E15A32;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    height: 26px;
    padding: 0 8px;
    align-items: center;
    gap: 4px;
    display: flex;
    width: auto;
    max-width: max-content;
}

.sch-criteria label {
    color: #8E8E8E;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2px;
}

.sch-criteria p {
    color: #043F5D;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
}

.priceBtnWrapper {
    display: flex;
    padding-left: 4px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.priceWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.sch-amount {
    color: var(--Main-Sucess, #0FA161);
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 125% */
}

.sch-currency {
    color: #768EA7;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

a.sch-apply-btn {
    display: flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 120px;
    background: #2F6BE3;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-family: "Poppins", sans-serif;
}
span#sch_next {
    position: absolute;
    right: -62px;
    top: 50%;
    transform: translateY(70%);
}
span#sch_prev {
    position: absolute;
    right: auto;
    top: 50%;
    transform: translateY(70%) rotate(180deg);
    left: -62px;
}
.sch-apply-btn svg {
    width: 10px;
    color: #fff;
    fill: #fff;
}
a.sch-apply-btn:hover {
    color: #fff;
    background: #3255B0;
}
#scholarship-results-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

#scholarship-results {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
    will-change: opacity, transform;
    min-height: 273px;
}
.sch-arrow{
    cursor: pointer;
}
.sch-arrow.disabled{
    cursor: not-allowed;
}
.sch-arrow.disabled path {
    stroke: gray;
}
#sch_program option, #sch_country option, #sch_level option {
    text-align: left;
}
.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
  top: calc(46% - 35px);
  position: absolute;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.filtersBtn{
    display: none;
}
.filtersInner {
    flex: 1;
    display: flex;
    gap: 15px;
}
.adviserCarousel .swiper-slide {
    position: relative;
    aspect-ratio: 9/11;
}
span.scholarshipBgGrad {
    background: linear-gradient(270deg, #D073FF 0%, #FFA150 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.blogPopup .dialog-message.dialog-lightbox-message {
    border-radius: 8px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.48) 100%), linear-gradient(260deg, rgba(95, 215, 240, 0.70) -11.9%, rgba(96, 211, 240, 0.67) -5.44%, rgba(101, 200, 241, 0.59) 3.95%, rgba(110, 183, 242, 0.46) 15.1%, rgba(121, 159, 244, 0.28) 27.43%, rgba(136, 128, 247, 0.05) 40.93%, rgba(140, 122, 248, 0.00) 43.28%), #FFF;
    box-shadow: 0 4px 11.8px 0 rgba(0, 0, 0, 0.17), 0 0 3px 0 rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(20px);
}
.blogPopup h2 {
    margin: 0;
}

/*ScholarShip Cards */
.gr-cards-wrapper {
  display: flex;
  gap: 20px;
}

.gr-card {
  flex: 1;
  height: 440px; 
  background: #fff;
  padding: 24px 20px;
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gr-card.expanded {
  flex: 2;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 0;
}

.gr-cards-wrapper a.gr-btn {
    color: #2F6BE3;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background: transparent;
    width: auto;
    display: flex;
    padding-left:0;
    align-items: center;
    gap: 8px;
}
.gr-cards-wrapper a.gr-btn svg{
  width: 8px;
}

.gr-card.expanded .gr-img-top {
    display: block;
    width: 100%;
    height: 206px;
}
.gr-card h3 {
    margin: 0;
    color: #2F6BE3;
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: left;
}
.gr-card.expanded h3 {
  font-size: 24px;
}

.gr-card.expanded .gr-img-bottom {
  display: none;
}

.gr-card:not(.expanded) .gr-img-top {
  display: none;
}

.gr-card:not(.expanded) .gr-img-bottom {
  display: block;
  width: 201px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.gr-card:not(.expanded) p,
.gr-card:not(.expanded) .gr-btn {
  display: none;
}
.gr-cards-wrapper p {
    color: #747485;
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: left;
    margin: 0;
}
.gr-card.expanded .expandedContent {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gr-card h3 span {
    font-size: 18px;
    display: block;
    font-family: "Poppins", sans-serif;
    color: #230735;
}
.expandedContent,
.gr-card p,
.gr-card .gr-btn {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease 0.2s, transform 0.2s ease 0.2s;
}

.gr-card.expanded .expandedContent,
.gr-card.expanded p,
.gr-card.expanded .gr-btn {
    opacity: 1;
    transform: translateY(0);
}

.gr-card:not(.expanded) p,
.gr-card:not(.expanded) .gr-btn {
    display: block;
    height: 0;
    overflow: hidden;
}
.gr-card.expanded p,
.gr-card.expanded .gr-btn {
    height: auto;
}
.gr-card.expanded .cardNotExpanded{
  display: none;
}
.scholarshipBackground {
    background: linear-gradient(171deg, #FCFCFC -62.31%, #f2f9fe 32.5%, #FFFEFE 95.35%), #F5F5FD;
}

.bankLoanCards .shortlistBox{
    box-shadow: 1px 4px 59.8px 0 rgba(0, 0, 0, 0.12);
}
#ekit-megamenu-main-menu h2.elementor-heading-title {
    margin: 0;
    line-height: 1;
}
#ekit-megamenu-main-menu p.eael-feature-list-content {
    line-height: 1.2;
}
#ekit-megamenu-main-menu .txtLetterSpacing .elementor-widget-container {
    line-height: 1.5;
}
.studyVideoWrapper .elementor-custom-embed-image-overlay{
    border-radius: 14px;
}
.studyVideoWrapper.refinancing .elementor-wrapper.elementor-open-inline{
    overflow: hidden;
    border-radius: 10px;
}
.studyVideoWrapper.refinancing .elementor-custom-embed-image-overlay{
    background-position: 20% !important;
}
.gn-wrapper{display:flex;gap:40px;}
.gn-left{
    width:308px;
    position: sticky;
    top: 150px;
    height: fit-content;
}
.gn-search {
    position: relative;
}

.gn-search input::placeholder {
    color: #BBBACC; 
    opacity: 1;
}
.gn-search input::-webkit-input-placeholder {
    color: #BBBACC;
}
.gn-search input::-moz-placeholder {
    color: #BBBACC;
    opacity: 1;
}
.gn-search input:-ms-input-placeholder {
    color: #BBBACC;
}

.gn-search input {
    width: 100%;
    padding: 10px 16px;
    border: 0.5px solid #EBE7FF;
    border-radius: 12px;
    color: rgba(35, 7, 53, 0.61);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background: #F4F2FF;
}
.gn-search svg {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}
.gn-cats ul{list-style:none;padding:0;margin:0;}
.gn-cats li {
    padding: 8px 16px;
    cursor: pointer;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
}
.gn-cats li.active {
    color: #2F6BE3;
    border-right: 2px solid #2F6BE3;
    background: linear-gradient(0deg, rgba(47, 107, 227, 0.05) 0%, rgba(47, 107, 227, 0.05) 100%), #FFF;
}
.gn-cats li:hover {
    background: #F0F0F1;
}
.gn-posts {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px; 
    row-gap: 48px;  
}

.gn-post{border-radius:10px;overflow:hidden;}
.gn-post img {
    width: 100%;
    height: 165px !important;
    object-fit: cover;
    border-radius: 8px !important;
}
.gn-title{font-weight:600;margin-top:10px;}
.gn-meta {
    margin-top: 16px;
    color: #7A7A7A;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.gn-title a {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.gn-content {
    width: 100%;
    min-height: 732px;
}

#gnPagination, 
.gn-pagination-wrapper {
    margin-top: 30px;
    text-align: center;
    grid-column: 1 / -1 !important; /* Forces full row below grid */
}

.gn-pagination a {
    padding: 8px 14px;
    margin: 0 4px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}
.gn-pagination a, .gn-pagination span {
    padding: 8px 12px;
    margin: 0 4px;
    border-radius: 50%;
    display: inline-block;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    color: #807F7C;
}
.gn-pagination .gn-current {
    color: #FC7B50;
}

.gn-pagination .gn-dots {
    padding: 8px 4px;
    color: #777;
}
.gnGridBg{
    background: linear-gradient(0deg, #FAFDFE 0%, #FAFDFE 100%), linear-gradient(169deg, #FCFCFC 0.8%, #EFF9FF 34.14%, #FFFEFE 100%);
}
.news-meta {
    color: #7A7A7A;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: "Poppins", sans-serif;
}
.topCateWrapper{
    background: linear-gradient(169deg, #FCFCFC 0.8%, #EFF9FF 34.14%, #FFFEFE 100%);
}
.newsLeftImage .news-meta{
     font-size: 14px;
}
.newsLeftImage .news-meta svg path{
    fill:#7A7A7A;
}
.NewsMainImage a {
    width: 100%;
}
#gnResults div#loading-spinner {
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
}
div#gnResults {
    position: relative;
}
.gn-wrapper h2{
    color:  #230735;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
}
 /* Fade + slide in animation */
.gn-post.animate-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideIn 0.4s ease-out forwards;
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.image-map-wrap {
  position: relative;
  display: inline-block;
  line-height: 0; 
}
.color-mask-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; 
  opacity: 0;
  transition: opacity 0.22s ease;
  display: block;
  z-index: 2;
}
.color-mask-svg.visible {
  opacity: 1;
}
.color-mask-svg image {
  image-rendering: optimizeQuality;
}
h2.teamLeadHeading {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
}
.teamLeadInfo {
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 40px 100px 0 rgba(0, 0, 0, 0.05), 0 0 4px 0 rgba(0, 0, 0, 0.11);
    backdrop-filter: blur(23.549999237060547px);
    width: 315px;
    margin: 0 auto;
    justify-content: space-between;
    padding: 12px 26px;
    align-items: center;
    display: flex;
}
h2.teamLeadName {
    color: #043F5D;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
}
h3.teamLeadDesignation {
    color: #00669A;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 0;
}
.teamLeadInfo img {
    width: 31px;
    height: 31px;
}
.memberLeftInfo img {
    width: 68px;
    height: 68px !important;
    border-radius: 100% !important;
}
.reportingteamWrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
}
.reportingteamWrapper .memberName {
    color: #043F5D;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.reportingteamWrapper .memberDesignation {
    color: #00669A;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 136px;
}
.memberWrapper {
    display: flex;
    justify-content: space-between;
    padding: 12px 4px 12px 4px;
    align-items: center;
    border-bottom: 1px solid #EDEDED;
}
.memberLeftInfo {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}
.memberInfo h2, .memberInfo h3 {
    margin-bottom: 0;
}
.memberInfo {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
#teamListWrapper {
    min-height: 350px;
    border-radius: 12px;
    overflow: hidden;
}
.reportingteamWrapper {
    padding: 0 20px;
    max-height: 500px;
    overflow-y: auto;
}
.teamLeadWrapper {
    padding: 16px 12px 20px;
}
.teamBtn svg {
    width: 20px !important;
    height: 20px !important;
}
.newsFeatured:after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      180deg, 
      rgba(0, 0, 0, 0.00) 7.01%, 
      #000 111.8%
  );
}
.NewsDetailMeta .news-date{
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.NewsDetailMeta .news-cat-name{
   padding: 4px 6px;
    border-radius: 4px;
    background: linear-gradient(90deg, #F37B51 0%, #E65C4F 75.48%);
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #fff;
}
.NewsDetailMeta .news-meta{
    display: flex;
    align-items: center;
    gap: 12px;
}
.newsFeatured .e-con-inner{
    position: relative;
}
.newsFeatured{
    margin-top: -84px !important;
    padding-top: 114px;
    padding-bottom: 44px;
}
.NewsDetailMeta .news-meta-dot {
    align-items: center;
    display: flex;
}
.backToListBtn .elementor-button-content-wrapper {
    align-items: center;
    display: flex;
}
.trendingLayout img {
    height: 172px !important;
}

.trendingLayout  span.news-date {
    color: #7A7A7A;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.trendingLayout  .news-meta {
    color: #7A7A7A;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.trendingLayout h2, .trendingLayout2 h2 {
    color: #230735;
    font-family: "Poppins", sans-serif;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 24px !important;
}
.trendingLayout .elementor-widget-theme-post-excerpt{
    display: none;
}
.trendingLayout2 img {
    height: 76px !important;
    width: 80px;
}
.layout2Wrapper .layout2Image {
    width: 40% !important;
}
.NewsSidebar .layout2Image {
    width: 68% !important;
}
.single-grad-news .elementor-widget-theme-post-content em span, .single-grad-news .elementor-widget-theme-post-content em, .single-grad-news .elementor-widget-theme-post-content i {
    color: #043F5D;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 24px;
}
.single-grad-news .elementor-widget-theme-post-content blockquote{
    margin-bottom: 28px;
}
.grad-share-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.grad-share-toggle{
        display: none;
}
.subscribeFormWrapper{
    border-radius: 12px !important;
    border: 0.5px solid #D1D1D6;
    background: radial-gradient(120.99% 120.99% at 50% 0%, rgba(137, 236, 251, 0.15) 0%, rgba(67, 178, 72, 0.15) 100%), #FFF;
    box-shadow: 0 40px 100px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(23.55px);
}
.subscriptionForm form.elementor-form {
    position: relative;
}

.subscriptionForm input#form-field-email {
    height: 47px;
}
.subscriptionForm button.elementor-button {
    min-height: 35px !important;
}
.single-grad-news .layout2content h2, .single-post .layout2content h2, .trendingLayout2.emi h2{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.single-grad-news .layout2content, .single-post .layout2content, .single-post .layout2content h2{
    margin: 0;
}
.single-grad-news .trendingLayout .newsMainMetaContent, 
.single-grad-news .trendingLayout .elementor-page-title .elementor-widget-container, 
.single-grad-news .trendingLayout .elementor-widget-container,
.single-post .trendingLayout .newsMainMetaContent, 
.single-post .trendingLayout .elementor-page-title .elementor-widget-container, 
.single-post .trendingLayout .elementor-widget-container, .trendingLayout2.emi .layout2content
{
    margin-bottom: 0 !important;
}
.trendingLayout2.emi .layout2content
{
    margin-top: 0 !important;
}
.trendingLayout2 .e-loop-item {
    border-bottom: 1px solid #D1D1D6;
    padding-bottom: 20px;
}
.single-grad-news .trendingLayout h2, .single-post .trendingLayout h2{
    margin-top: 4px;
}
.single-post .trendingLayout h2{
    margin-bottom: 0;
}
.mrgnZero h2 {
    margin: 0 !important;
}
.relatedNewsWrapper .gn-post img {
    height: 224px !important;
}
.fromCustomNotice span {
    color: #f91515;
    font-size: 14px;
}
.grad-single-category {
    background: #782BFF;
    color: #fff;
    padding: 4px 6px;
    align-items: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
}
.categoryList button.e-filter-item {
    border-radius: 0 !important;
}
.categoryList button.e-filter-item:focus{
    background-color: transparent !important;
    color: #23073591 !important;
}
.checkSaving, .anchorText{
    color:#782BFF;
}


/* TimeLine Css */
  .vision-section {
  height: 6870px; /* long scroll */
  position: relative;
}

.wheel-container {
  position: sticky;
  top: 56%;
  transform: translateY(-50%);
  height: 1100px;
  width: 70%;
}

.wheel {
  position: absolute;
  left: -40%;         /* hides left half */
  top: 50%;
  transform: translateY(-50%);
  width: 1200px;      
  transform-origin: center;
}

.year {
  position: absolute;
  left: 40%;
  transform: translateX(-50%);
  font-size: 24px;
  color: #aaa;
  opacity: 0.2;
  transition: 0.4s;
  font-weight: 500;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}

.year.active {
  opacity: 1;
  color: #fff;
  font-weight: 500;
  font-size: 28px;
  background: linear-gradient(90deg, #F37B51 0%, #E65C4F 75.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Poppins", sans-serif;
  transform: translate(-22%, -50%) !important;
}

.content-panel {
    position: absolute;
    left: 60%;
    top: 50%;
    transform: translateY(-50%);
}

.content-item {
  position: absolute;
  opacity: 0;
  transform: translateY(80px);
  transition: 0.5s;
}

.content-item.active {
  opacity: 1;
  transform: translateY(0px);
}
.wheel-container .years {
    position: absolute;
    top: 50%;
    left: 22%;
}

.content-panel {
  position: absolute;
  top: 50%;
  height: 220px;         /* visible area */
  overflow: visible;
  pointer-events: none;
  width: 60%;
}

/* each item stacked on top of each other at same center */
.content-item {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%); /* base center, JS will add Y */
  width: 100%;
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: none;
}

.timeLineCicular {
    background: radial-gradient(44.47% 44.47% at 50% 81.87%, rgba(224, 160, 255, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), #010219;
  background-attachment: fixed;
  background-size: cover; 
}
.content-item h3 {
    margin: 0 0 6px;
    color: #fff;
    font-family: "Poppins", Sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.content-item p {
    margin: 0;
    color:  #FFF;
    font-family: "Poppins", Sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.siteLogo {
    position: absolute;
    top: 47%;
    width: 86px;
    left: 50px
}

.abtImg img{
    width: 582.219px;
    height: 398.36px;
    transform: rotate(-4deg);
    aspect-ratio: 582.22/398.36;
}
.grad-post-meta {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}
.grad-post-meta span {
    display: flex;
    align-items: center;
    justify-content: center;
}
.grad-post-meta svg {
    margin-right: 5px;
}
.blogListMainExcerpt  p {
    margin-bottom: 0;
}
.blogItemTitle h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;  
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blogLoopItem .grad-post-meta {
    color: #85849A;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}
.blogLoopItem  .grad-post-meta svg {
    margin-right: 4px;
}
.blogLoopItem .grad-post-meta path {
    stroke: #535353;
}
span.page-numbers.prev, span.page-numbers.next {
    color: #BBBACC !important;
}
.gr-countdown {
    display: flex;
}

.gr-countdown .gr-digit {
    border-radius: 4.488px;
    background: linear-gradient(90deg, #F37B51 0%, #E65C4F 75.48%);
    color: #fff;
    width: 19.7px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
span.gr-sep {
    padding-left: 4.5px;
    padding-right: 4.5px;
    display: flex;
    align-items: center;
    background:  linear-gradient(90deg, #F37B51 0%, #E65C4F 75.48%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gr-unit {
    display: flex;
    gap: 3.37px;
}
.blogCarousel .elementor-swiper-button svg{
    width: 36px !important;
    height: 36px !important;
}

.blogSearch .gn-search svg {
    left: auto;
    right: 16px;
}

/*.blogSearch .gn-search.active {
    width: 260px; 
}*/
/*.blogSearch .gn-search input{
    display: none;
}*/
/*.blogSearch .gn-search.active input {
    width: 100%;
    opacity: 1;
    padding-left: 4px;
}*/
/*.blogSearch .gn-search.active {
    cursor: pointer;
    overflow: hidden;
    transition: width 0.35s ease;
    width: 44px; 
   
    display: flex;
    width: 318px;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0;
}*/
/*.blogSearch .gn-search.active input {
    width: 100%;
    opacity: 1;
    padding-left: 4px;
    border-radius: 8px;
    padding: 8px 8px 8px 32px;
     height:40px;
    border-radius: 8px;
    border: 0.6px solid #2F6BE3;
    background: #FFF;
    box-shadow: 0 0.75px 1px 0 rgba(0, 0, 0, 0.05);
    display: block;
}
.blogSearch .gn-search.active svg {
    left: 12px;
}*/

.gridPagination nav.elementor-pagination .page-numbers {
    border-radius: 8px;
    border: 1px solid #D7D7E6;
    padding: 12px 20px;
    align-items: flex-start;
    color: #782BFF;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.blogPopup.updated .dialog-message.dialog-lightbox-message {
    background: transparent;
    box-shadow: none;
    backdrop-filter: unset;
}
.blogPopup.updated .innerBlg {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.48) 100%), linear-gradient(260deg, rgba(95, 215, 240, 0.70) -11.9%, rgba(96, 211, 240, 0.67) -5.44%, rgba(101, 200, 241, 0.59) 3.95%, rgba(110, 183, 242, 0.46) 15.1%, rgba(121, 159, 244, 0.28) 27.43%, rgba(136, 128, 247, 0.05) 40.93%, rgba(140, 122, 248, 0.00) 43.28%), #FFF;
    box-shadow: 0 4px 11.8px 0 rgba(0, 0, 0, 0.17), 0 0 3px 0 rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(20px);
    border-radius: 8px;
}
.blogPopup.updated .dialog-widget-content.dialog-lightbox-widget-content.animated {
    background-color: transparent;
}

.cateFilters{
    min-height: 42px !important;
    position: sticky !important;
    top: 116px;
    background: #fff !important;
    padding: 0 !important;
    z-index: 9 !important;
}
.MainCategoriesBlog .cateFilters{
    top: 84px;
}
.postMetaSingle .grad-post-meta {
    color: #230735;
}
.postMetaSingle .grad-post-meta svg path {stroke: #230735;}
.blogDetailTitle .elementor-heading-title {
    text-align: center;
}
.blogDetailAuthor .elementor-icon-list-item {
    display: flex;
    gap: 8px;
}

.snow-bg {
   position: relative;
}

.snow-bg:after {
   content: '';
   display: block;
   position: absolute;
   z-index: 2;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   pointer-events: none;
   background-image: url('/wp-content/uploads/2025/12/s1.webp'), 
   url('/wp-content/uploads/2025/12/s2.webp'), 
   url('/wp-content/uploads/2025/12/s3.webp');
    animation: snow 10s linear infinite;
}

@keyframes snow {
 0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
 50% {background-position: 500px 500px, 100px 200px, -100px 150px;}
 100% {background-position: 500px 1000px, 200px 400px, -100px 300px;}
}

.single-post .blogContent h2, .single-grad-news .newsContent h2{
    font-size: 20px;
    color: #230735;
}
 .single-grad-news .newsContent h3{
    font-size: 16px;
    color: #230735;
}
.single-post .blogContent h3{
    color: #230735;
    margin-top: 20px;
    margin-bottom: 16px;
}
.subscribeFormWrapper h2.elementor-heading-title {
    margin: 0;
}
.blogLeftSidebar .elementor-toc__list-item-text-wrapper svg{
    display: none;
}
.blogTableContent  li.elementor-toc__list-item {
    padding: 8px;
}
.blogTableContent li.elementor-toc__list-item:hover {
    background: #F0F0F1;
}

.reviewsCircle .avatar-1 img {
    max-width: 467px;
}

.reviewsCircle .avatar-2 img {
    max-width: 685px;
}

.reviewsCircle .avatar-3 img {
    max-width: 902px;
}
/* 1. Make each circle container a true center anchor */
.reviewsCircle {
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block !important;
    pointer-events: none;
}

/* 2. Reset Elementor image widget behavior */
.reviewsCircle .elementor-widget-image {
  display: block;
}

/* 3. Force image to be centered and circular */
.reviewsCircle img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* 4. Layering */
.ring-inner { z-index: 3; }
.ring-middle { z-index: 2; }
.ring-outer { z-index: 1; }
    
.circle-layer {
  opacity: 0;
  animation: circleInRotate 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transform-origin: center center;
}



@keyframes circleInRotate {
  from {
    transform: translate(-50%, -50%) scale(1.15) rotate(15deg);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
  }
}


.ring-inner{ animation-delay: 0.1s; }
.ring-middle { animation-delay: 0.3s; }
.ring-outer { animation-delay: 0.6s; }

.ReviewVideoTestimonials {
    left: 22px !important;
    bottom: 22px !important;
    right: 22px !important;
}

.studentAbroad .swiper-slide .elementor-widget-video .elementor-wrapper {
    /*aspect-ratio: 4 / 5.75;  */
    width: 100%;
}
.studentAbroad .swiper-slide .elementor-widget-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.studentAbroad .swiper-slide .elementor-custom-embed-image-overlay {
    aspect-ratio: 4 / 5.75;
    background-size: cover;
}
.reviewBlueSection  .e-con-inner {
    position: relative;
}
.folderSection {
    background: linear-gradient(169deg, #FCFCFC 0.8%, #EFF9FF 34.14%, #FFFEFE 100%), linear-gradient(0deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.45) 100%), #E8E8E8;
}
.heroReviewSection {
    position: relative;
    overflow: hidden;
}

/* TOP FADE */
.heroReviewSection::before {
    content: "" !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px !important;
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        rgba(255,255,255,0.85) 30%,
        rgba(255,255,255,0) 100%
    );
    z-index: 5;
    pointer-events: none;
}

/* BOTTOM FADE */
.heroReviewSection::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(
        to top,
        #ffffff 0%,
        rgba(255,255,255,0.85) 30%,
        rgba(255,255,255,0) 100%
    );
    z-index: 5;
    pointer-events: none;
}
.googleReviewsCarousel .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}
.folderTestimonial .swiper-slide {
    flex-shrink: 0 !important;
}

.folderTestimonial .swiper-slide .e-con {
    width: fit-content !important;
}
.reviewsCircle.d-none{
    display: none !important;
}

/* News CTA */
  .grad-news-cta,
    .grad-news-cta * {
      box-sizing: border-box;
    }
.grad-news-cta {
  background: linear-gradient(to left, #ffffff, #ffffff);
  border-radius: 12px;
  border-style: solid;
  border-color: transparent;
  border-width: 1px;
  padding: 12px 18px 12px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0px 0px 11.6px 0px rgba(0, 0, 0, 0.17);
  overflow: hidden;
  margin-bottom: 16px;
}
.grad-news-cta-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  position: relative;
}
.grad-news-cta-content {
  color:  #230735;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 140.06%;
  font-weight: 600;
  position: relative;
}
.grad-news-cta .secondary-button {
  background: #2f6be3;
  border-radius: 120px;
  border-style: solid;
  border-color: transparent;
  border-width: 1px;
  padding: 10px 16px 10px 16px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.grad-news-cta .see-my-matches {
  color:  #ffffff;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}
.grad-news-cta .secondary-button:hover {
    background: #3255B0;
}
.blogListGridItem .grad-single-category {
    border-radius: 4px;
    border: 1px solid  #DAD2FF;
    background: #F4F2FF;
    color: #782BFF !important;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.finderWrapper #scholarship-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.instaColored .elementor-custom-embed-play {
    bottom: 0;
    top: auto;
    right: 0px;
    left: auto;
}
.instaColored .elementor-custom-embed-play svg{
    opacity: 1;
}
.filterSearchWrapper {
    display: flex;
    gap: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}
.scholarshipFinderFilters  div#scholarship-filters.is-sticky {
    position: sticky;
    top: 84px;
    z-index: 9;
    background: #fff;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 16px 24px;
}
.admin-bar .scholarshipFinderFilters  div#scholarship-filters.is-sticky {
    top: 114px;
}
.scholarshipFinderFilters  #scholarship-filters .filterSearchWrapper {
    max-width: 1200px;
    margin: 0 auto;
}
.grad-single-category:hover {
    color: #fff;
}
.ArchivePage .blogListGridItem .grad-single-category {
    display: none;
}
.headingBtmMrgn h2{
    margin-bottom: 0 !important;
}

/* EMI Calcualtor CSS Starts */
 .calculator-container.customCalculator {
    margin: 0 auto;
    background: #FBFBFF;
    border-radius: 8px;
    padding: 24px 56px;
    border: 1px solid #8E4BE6;
    display: grid;
}

.customCalculator .calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
}

.customCalculator .input-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    padding: 32px 0;
}

.customCalculator .input-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.customCalculator .input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.customCalculator .input-label {
    color: #230735;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
}

.customCalculator .input-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    width: 125px;
}
.customCalculator .input-value span {
    position: absolute;
    right: 8px;
    font-family: "Poppins", sans-serif;
    color: #91839A;
    font-size: 16px;
}
.customCalculator .emi-title {
    color: #230735;
    font-family: "Poppins", Sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.customCalculator .input-field {
    padding: 8px 12px !important;
    width: 100% !important;
    font-size: 16px !important;
    border-radius: 4px !important;
    border: 0.4px solid rgba(4, 63, 93, 0.42) !important;
    background: #FFF;
    box-shadow: 0 40px 100px 0 rgba(0, 0, 0, 0.05) !important;
    font-family: "Poppins", sans-serif;
    margin-bottom: 0 !important;
    line-height:1;
}
.customCalculator .input-value.w90 {
    width: 90px;
}
.customCalculator .slider {
    width: 100%;
    height: 4px;
    border-radius: 3px;
    background: linear-gradient(to right, #2F9234 0%, #2F9234 50%, #e0e0e0 50%, #e0e0e0 100%);
    outline: none;
    -webkit-appearance: none;
}
.customCalculator .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: 5px solid #2F9234;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.customCalculator .slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.customCalculator .result-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.customCalculator .emi-title {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.customCalculator .emi-amount {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Poppins", sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.28px;
    background-image: linear-gradient(to right, #0C004B, #974FF0, #3BE0F9);
    width: 350px;
}

.customCalculator .details-link {
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 8px;
    border: 1px solid #CFC8FF;
    background: #FFF;
    display: flex;
    height: 46px;
    padding: 12px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.customCalculator .details-link:hover {
    background: #f0f0f0;
}

.customCalculator .details-text {
    color: #230735;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
}

.customCalculator .summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.customCalculator .summary-item {
    display: flex;
    gap: 12px;
}

.customCalculator .summary-icon {
    width: 22px;
    height: 22px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.customCalculator .summary-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.customCalculator .summary-label {
    color: #230735;
    font-size: 16px;
    line-height: 21px;
}
.customCalculator .summary-value {
    color: #230735;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.48px;
}

/* Modal Styles */
.customCalculator .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.customCalculator .modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.customCalculator .modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.customCalculator .modal-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.customCalculator .close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customCalculator .close-btn:hover {
    color: #333;
}

.customCalculator .year-tabs {
    display: flex;
    gap: 8px;
    padding: 16px 24px;
    overflow-x: auto;
    border-bottom: 1px solid #e0e0e0;
    background: #fafafa;
}

.customCalculator .year-tab {
    padding: 8px 16px;
    border-radius: 20px;
    background: white;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    white-space: nowrap;
    font-size: 14px;
    color: #666;
    transition: all 0.3s;
}

.customCalculator .year-tab.active {
    background: #2d6a4f;
    color: white;
    border-color: #2d6a4f;
}

.customCalculator .year-tab:hover:not(.active) {
    background: #f5f5f5;
}

.customCalculator .add-year-btn {
    padding: 8px 16px;
    border-radius: 20px;
    background: white;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    min-width: 40px;
}

.customCalculator .modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.customCalculator .amortization-table {
    width: 100%;
    border-collapse: collapse;
}

.customCalculator .amortization-table thead {
    background: #f5f5f9;
    position: sticky;
    top: 0;
}

.customCalculator .amortization-table th {
    padding: 12px 8px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    border-bottom: 2px solid #e0e0e0;
}

.customCalculator .amortization-table td {
    padding: 12px 8px;
    font-size: 13px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.customCalculator .amortization-table tr:hover {
    background: #fafafa;
}

.customCalculator .month-col {
    color: #2d6a4f;
    font-weight: 500;
}
#amortizationModal{
    display: none;
}

/* Modal Styles */
#amortizationModal.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

#amortizationModal .modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 888px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#amortizationModal .modal-header {
    padding: 20px 24px;
    border-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#amortizationModal .modal-title {
    color: rgba(35, 7, 53, 0.66);
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

#amortizationModal .close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#amortizationModal .close-btn:hover {
    color: #333;
}

#amortizationModal .year-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 16px 24px;
    margin-bottom: 24px;
    align-items: center;
}

#amortizationModal .year-tab {
    padding: 4px 12px;
    background: white;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    color: rgba(35, 7, 53, 0.55);
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#amortizationModal .year-tab.active {
    border-radius: 8px;
    background: rgba(47, 107, 227, 0.14);
    color: #2F6BE3;
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
#amortizationModal .add-year-btn {
    padding: 8px 16px;
    border-radius: 20px;
    background: white;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    min-width: 40px;
}

#amortizationModal .modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    border-radius: 8px;
    background: rgba(226, 234, 251, 0.49);
    max-height: 300px;
}

#amortizationModal .amortization-table {
    width: 100%;
    border-collapse: collapse;
}

#amortizationModal .amortization-table thead {
    background: #f1f5fd;
}

#amortizationModal .amortization-table th {
    padding: 12px 8px;
    color: #230735;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

#amortizationModal .amortization-table td {
    border-bottom: 1px solid #f0f0f0;
    color: #043F5D;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 24px 0;
}

#amortizationModal .month-col {
    color: #2d6a4f;
    font-weight: 500;
}

/* EMI Calcualtor CSS Ends */


#teamListWrapper span.loadingYext {
    text-align: center;
    width: 100%;
    display: block;
    padding-top: 20%;
}

.calculatorList li.elementor-icon-list-item a {
    padding: 12px 16px;
}
.calculatorList li.elementor-icon-list-item a:hover{
    background-color:#F0F0F1;
}
.calculatorSidebar {
    position: sticky!important;
    top: 120px;
}
.coloredGradient {
    background: linear-gradient(270deg, #D073FF 0%, #FFA150 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.countryLoanHeading .coloredGradient{
    width: 100%;
    display: block;
}
.h2Margn h2{
    margin:0 !important;
}
.blogDetailAuthor.qa  span.elementor-icon-list-icon {
    width: 41px !important;
    height: 41px !important;
    object-fit: cover;
}
.expertOpinionLink {
    padding: 10px;
    border-radius: 6px;
    background: linear-gradient(
        180deg,
        rgba(243, 123, 81, 0.18) 0%,
        rgba(230, 92, 79, 0.18) 75.48%
    );
    display: inline-flex;
}
.expertOpinionLink span{
    border-radius: 4px;
    background: linear-gradient(90deg, #F37B51 0%, #E65C4F 75.48%);
    display: flex;
    padding: 4px 6px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    line-height:1;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color:#fff;
}
.backToListBtn svg {
    width: 24px !important;
    height: 24px !important;
}
.essentialForm input, .essentialForm select {
    padding: 13px;
}
a.memberLinkedIn {
    line-height:1;
}
.memberLinkedIn svg {
    fill: #0A66C2;
    width: 31px;
    height: 31px;
}
.single-post .authorTitle h2 {
    font-weight: 400 !important;
}

.gr-author-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
}
.gr-author-img {
    width: 106px;
}
.gr-author-img img {
    width: 100%;
    border-radius: 50% !important;
    object-fit: cover;
    height: auto;
    max-width: 100%;
    display: flex;
}

.gr-author-name {
    color: #2F6BE3;
    line-height: 1.3;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.gr-author-bio {
    color: #230735;
    margin-top: 4px;
    line-height: 1.4;
    font-family: "Roboto", Sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}
.countryBlueGradient{
    background: radial-gradient(38.66% 38.66% at 50% 88.69%, rgba(160, 211, 255, 0.20) 0%, rgba(0, 19, 58, 0.20) 100%), #010219;
}
.loanGradientText{
    background: linear-gradient(90deg, #8AA5E8 0%, #2F6BE3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.opacity8 .elementor-heading-title {
    opacity: .8;
}
.lendersCompareBoxes{
    border-radius: 8px !important;
    background: linear-gradient(185deg, rgba(255, 255, 255, 0.10) -27.39%, rgba(0, 0, 0, 0.00) 69.97%);
    backdrop-filter: blur(23.25px);
}
.lendersCompareBoxes .elementor-icon-wrapper {
    display: flex;
}
.blurContainer{
    filter: blur(3.3px);
}
.secondBlurItem{
    opacity: .4;
}
.thirdBlurItem{
    opacity: .2;
}
.forthBlurItem{
    opacity: .1;
}
.sch-card.loading-card {
    position: relative;
    min-height: 294px;
    border: 0 !important;
    box-shadow: unset !important;
    background: transparent !important;
}
.sch-card.loading-card div#loading-spinner {
    top: calc(50% - 35px) !important;
    left: calc(50% - 35px) !important;
}
.finderWrapper div#loading-spinner {
    left: calc(50% - 35px);
}

/* PDD Pages */
.customPDDContainer {
    max-width: 1200px;
    margin: 0 auto;
}
.uniPhoto {
    max-width: 100%;
    height: 150px;
    width: 100%;
    object-fit: cover;
    object-position: 0 40%;
    border-radius: 8px;
}
.programContentWrapper {
    display: flex;
    flex-direction: row;
    gap: 56px;
    padding: 20px 0 60px 0;
}
.leftContentPDD {
    flex: 0 0 790px;
    position: relative;
    overflow: visible;
    width: 790px;
}
.leftContentPDD .gallerySwiper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.leftContentPDD .swiper-wrapper {
  display: flex;
}
.leftContentPDD .swiper-slide {
  flex-shrink: 0;
}
.image-carousel-wrapper {
    width: 100%;
}
.rightContentPDD {
    flex: 0 0 355px;
}
.brandPhotos {
    position: relative;
    margin-bottom: 42px;
}
img.uniLogo {
    position: absolute;
    bottom: -30px;
    left: 24px;
    max-width: 85px;
}
.infoProgram .rank {
    color: #45465F;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 8px;
    border: 1.2px solid #FFF;
    background: #FDFDFD;
    padding: 4px 6px;
    align-items: center;
    margin-bottom: 8px;
    display: inline-block;
}
h1.program-title {
    color: #1b1b1b;
    font-family: "Poppins", Sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 4px;
    max-width: 60%;
}
.uniInfo h3 {
    color: #1B1B1B;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    margin-bottom: 0;
}
.uniInfo p {
    color: #898B8C;
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 20px;
}
.grBlueBtn {
    padding: 8px 19px;
    align-items: center;
    border-radius: 12px !important;
    border: 1px solid #782BFF;
    background: #782BFF !important;
    color: #fff !important;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    gap: 7px;
    cursor: pointer;
    justify-content: center;
}
.grBlueBtn:hover {
    background: #6816EB !important;
    color: #fff;
}
.grTransparentBtn {
    padding: 8px 19px;
    align-items: center;
    border-radius: 12px;
    border: 1px solid #782BFF;
    color: #782BFF;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
 .grTransparentBtn:hover {
    background: #782BFF;
    color: #fff;
}
.uniButtons {
    margin-bottom: 20px;
    gap: 4px;
    display: flex;
    align-items: center;
}
.saveIcon svg {
    width: 15px;
    height: 15px;
}
.saveIcon {
    border-radius: 123.871px;
    border: 1.032px solid #2F6BE3;
    display: flex;
    height: 32px;
    padding: 8.258px;
    justify-content: center;
    align-items: center;
    gap: 12.387px;
}
.headerPdd {
    border-top: 0;
    background: #f7f7f7;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-bottom: 24px;
    position: sticky;
    top: 84px;
    z-index: 9;
    border-top: 1px solid #ddd;
}
.admin-bar .headerPdd {
    top: 115px;
}
section.infoProgram.boxProgram {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0;
    border-bottom: 1px solid #f7f7f7;
}
.listPages {
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    padding: 0 24px;
    list-style: none;
    margin: 0;
}
.aboutInnerInfo.aboutEmpty {
    padding-bottom: 10px;
}
.rightContentPDD .boxProgram {
    margin-bottom: 16px;
}
.listPages a {
    display: flex;
    padding: 12px 8px;
    align-items: center;
    gap: 8px;
    color: rgba(35, 7, 53, 0.57);
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-bottom: 2px solid #f2f2f2;
}
.uniInfoWrapper {
    padding: 5px 24px 0;
    position: relative;
}
.listPages li.active a {
    border-bottom: 2px solid #2F6BE3;
    color: #2F6BE3;
}
.boxProgram {
    border-radius: 8px;
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    border-left: 1px solid #FFF;
    background: #F7F7F7;
    box-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}
.aboutInnerInfo {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.programContentWrapper h2 {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
}
.uniAbout, .descriptionProgram {
    color: #757575;
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}
.descriptionProgram {
    margin-bottom: 0;
}
span.read-more-btn, span.read-less-btn {
    cursor: pointer;
}
.uniFeaturesDetails {
    padding: 16px 20px;
    display: flex;
    gap:10px;
    overflow: hidden;
}
span.verticalDivider {
    width: 1px;
    height: 24px;
    background: #DDD;
}
.featureBigText {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}
.featureSmallText {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 196%;
}
.FeatureDetail {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: relative;
}
.uniFeaturesDetails .FeatureDetail:first-child {
    padding: 0 20px 0 12px;
}

.FeatureDetail:last-child::after {
    content: none;
}
.uniMoreDetails {
    margin-top: 20px;
}
.uniMoreDetails a.viewUnivMore {
    border-radius: 0 0 8px 8px;
    border-top: 1.2px solid #FFF;
    background: #FAFAFA;
    box-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.05);
    width: 100%;
    display: flex;
    align-items: center;
    padding: 12px;
    text-align: center;
    justify-content: center;
    gap:8px;
    color: #000;
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}
.uniUrl a {
    color: #2F6BE3;
}
.gallerySwiper .swiper-slide{
    height: auto;
}

.gallerySwiper {
  width: 100%;
  max-width: 100%;
}


.gallerySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 6.6px;
  cursor: pointer;
}
.gallerySwiper .swiper-button-next:after, .gallerySwiper .swiper-button-prev:after{
    content: none;
}
.gallerySwiper .swiper-button-prev, .gallerySwiper .swiper-button-next {
    border-radius: 8px;
    border: 1.2px solid #E2E2E2;
    background: #FFF;
    box-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.05);
    height: 28px;
    width: 28px;
    top: calc(50% - 14px);
    margin-top: auto;
}
.gallerySwiper .swiper-button-next svg, .gallerySwiper .swiper-button-prev svg {
    width: 5px;
    height: 10px;
    object-fit: contain;
    transform-origin: center;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-overlay.active {
    display: flex;
}

.popup-overlay .uni-popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-overlay .uni-popup-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.popup-overlay .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #fff;
    color: #333 !important;
    border: none;
    font-size: 28px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 1001;
}

.popup-overlay .close-btn:hover, .popup-overlay .close-btn:focus {
    background-color: #fff;
    color: #fff;
    outline: none;
}

/* Navigation Arrows */
.popup-overlay .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: #333 !important;
    border: none;
    font-size: 20px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 1001;
    border-radius: 8px;
}

.popup-overlay .nav-arrow:hover, .popup-overlay .nav-arrow:focus {
    background-color: #fff;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    outline: none;
}

.popup-overlay .prev-arrow {
    left: 20px;
}

.popup-overlay .next-arrow {
    right: 20px;
}

.campusInfo {
    display: flex;
    align-items: flex-start;
    gap: 120px;
}
.blockInfo.singleColumn {
    gap: 12px;
}
.campLeft {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.campRight h3, .campLeft h3 {
    color: #1B1B1B;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 0;
}
.totalExpenses h2 {
    color: #898B8C;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.154px;
}
.totalExpensesAmount {
    color: #1B1B1B;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.totalExpenses .aboutInnerInfo {
    gap: 8px;
}
.totalExpenses .aboutInnerInfo {
    gap: 8px;
}

.feeExpensive {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.feeExpensive span {
    color: #1B1B1B;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.totalExpenses .cusotmDivider {
    margin-top: 8px;
    margin-bottom: 8px;
}
.headingROI h2.boldROI {
    color: #1B1B1B;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.headingROI {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.totalROI {
    color: #43B248;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.ctaPDD.boxProgram {
    border-radius: 8px;
    border: 1.2px solid #3E97FF;
    background: #DDEDFF;
    box-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    padding: 20px 16px;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}
.tailored-loan-rates {
    color: #1B1B1B;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.cta-right {
    flex: 0 0 105px;
}
.cta-right .see-my-matches {
    color: #2F6BE3;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    padding: 8px 20px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 6px;
    background: #FFF;
    cursor: pointer;
}
.one1-guidance.boxProgram {
    border-radius: 8px;
    border: 1px solid #DDD;
    background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.9) 30%,
    rgba(255, 255, 255, 1) 80%
  ), url("/wp-content/uploads/2026/01/coloredBG.png") center / cover no-repeat;
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}
.guidanceSection {
    padding: 12px;
    border-radius: 8px;
    border: 1.2px solid #FFF;
    background: #FAFAFA;
    box-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}
.guidanceWrapper h3 {
    color: #1E1E1E;
    font-family: "Inter", Sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.176px;
}
.guidanceWrapper span {
    color: #1B1B1B;
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
}
h3.howitworks {
    color: #757575;
    font-family: Poppins;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 15px */
    margin-bottom: 0;
}
ul.guidanceList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.guidanceList li span {
    color: #1B1B1B;
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 15px */
}
ul.guidanceList li {
    display: flex;
    gap: 16px;
}
h3.howitworks {
    color: #757575;
    font-family: "Poppins", Sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}
.guidanceSection svg {
    position: absolute;
    right: -38px;
    top: 0;
}
.guidanceWrapper {
    display: flex;
    flex-direction: column;
    gap: 34px;
}
.campRight {
    gap: 8px;
    display: flex;
    flex-direction: column;
}

.studentDiversity .studentData {
    border-radius: 8px;
    border: 1.2px solid #FFF;
    background: #FDFDFD;
    display: flex;
    padding: 4px 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #45465F;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.studentDiversity {
    display: flex;
    gap: 4px;
}
.campRight {
    gap: 8px;
    display: flex;
    flex-direction: column;
}
.blockInfo {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}
.blockInfo span {
    color: #1B1B1B;
    font-family: "Inter", Sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
     /* 200% */
    letter-spacing: -0.132px;
    line-height: 1;
}
.blockInfo div {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 12px;
}
.campIcon svg {
    width: 16px;
    height: 16px;
}


/* Image Counter */
.popup-overlay .image-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}
.subHeadingWrapper h3 {
    color: #898B8C;
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; 
    margin-bottom: 0;
}
.innerBoxProgram h4 {
    color: #000;
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.subHeadingWrapper {
    display: flex;
    gap: 4px;
    align-items: center;
}
.innerBoxProgram.firstBox {
    margin-bottom: 4px;
}

.innerBoxProgram {
    border-radius: 8px;
    border: 1.2px solid #FFF;
    background: #FAFAFA;
    box-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    padding: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}
.cusotmDivider {
    width: 100%;
    height: 1.2px;
    background: #ddd;
}
.scoreListWrapper ul {
    list-style: none;
    padding: 0;
    width: 100%;
    margin-bottom: 0;
}
.scoreListWrapper ul li {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 6px 0;
}
.scoreListWrapper {
    width: 100%;
}
.scoreListWrapper ul li span {
    color: #89898A;
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px; /* 175% */
}
.scoreListWrapper ul li span.examName {
    font-weight: 400;
}
.admissionLeftContent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 0 0 50%;
}
.requirementsWrapper {
    display: flex;
    gap: 24px;
    width: 100%;
}
.listProcessWrapper li {
    color: #1b1b1b;
    font-family: "Inter", Sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 33px;
    letter-spacing: -0.132px;
}
.listProcessWrapper ol {
    padding: 0 0 0 12px;
}
.headingBtmMrgn  h2.elementor-heading-title.elementor-size-default {
    margin-top: 0;
}
.cal-title {
    color: #230735;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.totalLoanAmount{
    color: #043F5D;
    text-align: center;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.84px;
    background-image: linear-gradient(to right, #0C004B, #974FF0, #37e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Poppins", sans-serif;
}
.inrUsdBox {
    border-radius: 8px;
    border: 1px solid rgba(35, 7, 53, 0.14);
    background: #FFF;
    box-shadow: 0 0 14.9px 0 rgba(0, 0, 0, 0.03);
    width: 50%;
    padding: 12px;
    gap: 10px;
    display: flex;
    flex-direction: column;
}
.inrUsdWrapper {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}
tr.highlight td {
    border-top: 1px solid #2F6BE3;
    background: #F1F5FD;
    color: #2F6BE3 !important;
}
.INRUSDHeading {
    color: #230735;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
}
.totalInrPrice {
    color:  #230735;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.48px;
}
.savings {
    color: #043F5D;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
}
.savingBox {
    display: flex;
    align-items: center;
    gap: 4px;
}
.savingBox span {
    color: #43B248;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
}
.convertedInner {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
#amortizationModalRefi .modalTabs ul li {
    color: #043F5D;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 8px 12px;
    cursor: pointer;
}
#amortizationModalRefi .modalTabs ul li.active {
    color: #2F6BE3;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    background: rgba(182, 215, 255, 0.30);
}
.compareSavingHeader {
    display: flex;
    gap: 24px;
    align-items: center;
}
.compareSavingHeader ul {
    padding: 0;
    display: flex;
    align-items: center;
    list-style: none;
    margin:0;
}
#amortizationModalRefi .modal-content{
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 4px 11.8px 0 rgba(0, 0, 0, 0.17), 0 0 3px 0 rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(20px);
    display: flex;
    width: 848px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
#amortizationModalRefi .modal-content, #amortizationModalRefi .modal-content .modal-header {
    border: 0;
    width: 100%;
}
#amortizationModalRefi .modal-content .modal-body {
    border-radius: 8px;
    border: 1px solid #2F6BE3;
    width: 100%;
    padding: 0;
    overflow: hidden;
}
#closeModalModalRefi {
    background: transparent;
    border: 0;
    cursor: pointer;
}
#closeModalModalRefi:focus, #closeModalModalRefi:active {
    border: 0;
    background: transparent;
    outline: unset;
}
table.amortization-table.usd {
    display: none;
}
#amortizationModalRefi table{
    width: 100%;
}
#amortizationModalRefi th {
    color: #230735;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
#amortizationModalRefi td, #amortizationModalRefi th {
    color: #043F5D;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 12px 32px 12px 14px;
}
tbody.compareSavings tr {
    border-bottom: 1px solid #E3E3E3;
    background: #FFF;
}
#amortizationModalRefi .modal-content {
    max-width: 700px;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}
#amortizationModalRefi {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    display: none;
}
#amortizationModalRefi thead tr {
    border-bottom: 1px solid #2F6BE3;
}
tbody.compareSavings tr.highlight td {
    font-weight: 600 !important;
}
#amortizationModalRefi .modal-content .modal-header {
    padding-left: 0;
    padding-right: 0;
}
.single-post td, .single-post td span {
    color:  #424242;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Roboto", Sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: 12px;
    padding-bottom: 12px;
}
.single-post tr {
    border-bottom: 1px solid #E3E3E3;
}
.single-post tr:first-child td, .single-post tr:first-child td b {
    color: #230735;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.single-post .blogContent b, .single-post .blogContent strong {
    color: #230735;
}
.refi-inner-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.teamLeadInfo .leftInfo {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


h4.faq-stittle {
    color: #230735;
    font-family: "Poppins", Sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    margin-bottom: 24px;
}
.single-post .gdfaqs-question h3 {
    color: #230735;
    font-family: "Roboto", Sans-serif !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 24px !important;
    margin-bottom: 0;
    padding-right: 22px;
}
.gdfaqs-answer p {
    margin: 0px;
    color: #043F5D;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.gdfaqs-item {
    border-bottom: 1px solid #CFCFCF;
    padding: 20px 0;
}
  .gdfaqs-answer.active {
    max-height: 500px;
    padding: 16px 0 0;
    opacity: 1;
    transition: max-height 0.6s ease, opacity 0.5s ease 0.1s, padding 0.4s ease;
}
.content-card {
    display: none;
    min-height: 204px;
    border-radius: 8px;
    padding: 12px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
.content-card.active {
    display: block;
}
.content-left {
    border-radius: 8px;
    border-top: 1.2px solid #FFF;
    background: #FAFAFA;
    box-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.05);
    width: 376px;
    padding: 20px;
    min-height: 201px;
    position: relative;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
.content-left h3 {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 550;
    line-height: 130%;
    margin-bottom: 8px;
}
.content-left p {
    color: #757575;
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}
.content-left a{
    position: absolute;
    bottom: 20px;
}
.tabsContainer .tabs button, .tabsContainer .tabs button:focus,  .tabsContainer .tabs button:focus-visible{
    color: #043F5D !important;
    font-family: "Poppins", sans-serif !important; 
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: none !important;
    border: 0 !important;
    cursor: pointer;
    padding: 8px 12px;
    outline: unset;
}
.tabsContainer .tabs {
    margin-bottom: 12px;
}
.tabsContainer .tabs button.active {
    border-radius: 8px;
    background: rgba(182, 215, 255, 0.30) !important;
    padding: 8px 12px;
    align-items: center;
    color: #2F6BE3 !important;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: 0;
}
.applicationDatesHeadline {
    color: #45465F;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

ul.dateList {
    padding: 0;
    list-style: none;
    margin-bottom: 0;
    width: 225px;
    padding: 6px 8px;
    border-left: 2px solid #2F6BE3;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
ul.dateList.exactDate {
    width: 175px;
}
.seasonDate {
    color: #1B1B1B;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 18px */
}

.applicationDate {
    color: #2F6BE3;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 18px */
}

ul.dateList li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.applicationDates {
    position: absolute;
    right: 36px;
    top: 5px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.page-template-programs-data{
    background: #F2F2F2;
}
.subHeadingWrapper span.infoIcon {
    display: flex;
}
.admissionRightContent {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.aboutInnerInfo {
    padding: 20px 16px;
}
body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}
.uniAboutInfo h3 {
    color: #000;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 8px;
}
.uniAboutInfo p {
    color: #757575;
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 18px */
    margin-bottom: 20px;
}
.uniAboutFull {
    padding: 0px 24px 20px;
    display: none;
    margin-top: -8px;
}
.uniUrl {
    color: #1B1B1B;
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}
.uniAbout p {
    margin-bottom: 0;
}
.grBlueBtn svg {
    width: 14px;
    height: 14px;
}



/* Hero Section */

/*.shiftedHero {
    background: radial-gradient(1151.37% 142.83% at 1.84% 65.76%, rgba(255, 255, 255, 0.40) 0%, rgba(65, 0, 245, 0.40) 100%), #4100F5;
    backdrop-filter: blur(2px);
}*/
.redBg {
    background: #FF4632;
    display: flex;
    transform: rotate(-11.237deg);
    padding: 7px;
    align-items: flex-start;
}
.RegisterNowShifted a {
  position: relative;
  background: #C0F602;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  color: #000;
}
.RegisterNowShifted a::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border: 1px solid #c0f602;
  opacity: 0;
  pointer-events: none;
}
.RegisterNowShifted a:hover::before {
  animation: borderExpandFade 0.5s ease-out forwards;
}
@keyframes borderExpandFade {
  0% {
    opacity: 1;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-width: 1px;
  }
  100% {
    opacity: 0;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-width: 8px;
  }
}

.studyInTheUk .elementor-custom-embed-image-overlay {
    background-position: 28% !important;
}
.single-post .shiftedHero1 {
    display: none;
}
/*.single-post .sticky-blogs{
    display: none;
}*/
.oneGuided {
    margin-top: 16px;
}
img.uniLogo.uniLogoRelative {
    position: relative;
}
#scroll-sync-wrapper a:not(.elementor-button-link) {
    color: #782BFF;
}
.inlineBlock {
    display: inline;
}
.countrySlider .swiper-slide{
    border-radius: 8px;
    border: 1px solid #696974;
}
.exploreStudyDestinations {
    background: linear-gradient(192deg, #FCFCFC 36.67%, #DFF1FF 59.09%, #FFFEFE 79.52%), #F5F5FD;
}
.topCountriesDestinations .elementor-shape .elementor-shape-fill {
    fill: #fcfcfc;
}
.university-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.university-tags__item {
    display: inline-flex;
    align-items: center;
    background-color: #096DEB;   
    color: #ffffff; 
    padding: 4px 6px;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.15s ease;
    border-radius: 4px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04), 0 4px 100px 0 rgba(0, 0, 0, 0.05);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}
.uniMenuList ul li a {
    padding: 12px 8px;
}
.uniMenuList ul li {
    margin: 0 !important;
}
.uniBoldPoints{
    position: relative !important;
}
.uniBoldPoints:before {
    content: "" !important;
    width: 1.2px !important;
    height: 30px !important;
    background-color: #ddd;
    right: 0px;
    position: absolute !important;
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%);
}
.iIcon {
    height: 18px;
}
.uniList ol {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.uniIconList ul.elementor-icon-list-items.elementor-inline-items li {
    margin-bottom: 12px;
}
.uniIconList ul.elementor-icon-list-items.elementor-inline-items li:last-child {
    margin-bottom: 0;
}
.diversityList li span {
    padding: 4px 6px !important;
    border-radius: 8px;
    border: 1.2px solid #FFF;
    background: #FDFDFD;
    display: flex;
    text-align: center;
}
.diversityList li.elementor-icon-list-item .elementor-icon-list-text {
    padding-left: 6px !important;
}
.diversityList li {
    margin-bottom: 6px !important;
}
.uniIconList.bottomList  li.elementor-icon-list-item.elementor-inline-item {
    margin: 0;
}


.fee-indicator {
  max-width: 500px;
}

.fee-value {
  font-size: 16px;
  font-weight: 600;
  color: #2ea86b;
}

.bar-wrapper {
  position: relative;
  height: 8px;
  border-radius: 4px;
  background: #e0e0e0;
  margin: 8px 0 12px 0;
}

.bar-fill {
  width: 60%; /* 33% = Low | 55% = Moderate | 80% = High */
  height: 100%;
  border-radius: 4px;
  background: #3b82f6;
}

/* Left end dot */
.dot-left {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #3b82f6;
  border: 2.5px solid #fff;
  box-shadow: 0 0 0 1.5px #3b82f6;
}

/* Indicator dot at current level */
.dot-indicator {
  position: absolute;
  top: 50%;
  left: 50%; /* match bar-fill width */
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #3b82f6;
  border: 2.5px solid #fff;
  box-shadow: 0 0 0 1.5px #3b82f6;
}

/* Right end dot */
.dot-right {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d0d0d0;
  border: 2.5px solid #fff;
  box-shadow: 0 0 0 1.5px #d0d0d0;
}

.bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.label-active {
  color: #3b82f6;
  font-weight: 500;
}

.label-inactive {
  color: #aaa;
}
#stickyUniMenu {
    position: sticky;
    top: 63px;
    z-index: 9;
}
.admin-bar #stickyUniMenu {
    top: 95px;
}
.uniMenuList ul li.active a span {
    color: #2F6BE3 !important;
    font-weight: 600;
}
.uniMenuList ul li.active a {
    border-bottom: 2px solid #2F6BE3;
}
.uniMenuList ul li a {
    border-bottom: 2px solid transparent;
}
.eventCardItem .event-date {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.eventCardItem span.event-month {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 18px */
}
.eventCardItem span.event-day {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 27px */
}
.eventCardItem span.event-meta-data {
    color: #898B8C;
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}
.MobileEvents .swiper-wrapper, .DesktopEvents .swiper-wrapper{
    animation: scroll-left 28s linear infinite;
}
.MobileEvents:hover .swiper-wrapper, .DesktopEvents:hover .swiper-wrapper{
  animation-play-state: paused;
}
.uniImageCarousel .elementor-swiper-button {
    border-radius: 8px;
    border: 1.2px solid #E2E2E2;
    background: #FFF;
    box-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.05);
    height: 28px;
    width: 28px;
    margin-top: auto;
    padding: 4px;
    font-size: 19px !important;
}
.uniImageCarousel .elementor-swiper-button svg{
    width: 18px;
    height: 18px;
    fill: #89898A;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


@keyframes moveX {
  0%   { transform: translateX(0px) translateY(-50%); }
  100% { transform: translateX(100%) translateY(-50%); }
}
@keyframes moveXMbl {
  0%   { transform: translateX(0px) translateY(-50%); }
  100% { transform: translateX(70px) translateY(-50%); }
}
@keyframes moveY {
  0%   { transform: translateY(0px);   animation-timing-function: cubic-bezier(0.215,0.61,0.355,1); }
  40%  { transform: translateY(-35px); animation-timing-function: cubic-bezier(0.55,0.055,0.675,0.19); }
  100% { transform: translateY(0px);   animation-timing-function: cubic-bezier(0.215,0.61,0.355,1); }
}
@keyframes squash {
  0%   { transform: scaleX(1.1) scaleY(0.92); }
  15%  { transform: scaleX(0.95) scaleY(1.06); }
  40%  { transform: scaleX(1.02) scaleY(0.98); }
  85%  { transform: scaleX(0.95) scaleY(1.06); }
  100% { transform: scaleX(1.1) scaleY(0.92); }
}
.GraddieSmiley img {
  animation: squash 0.8s ease-in-out infinite alternate;
  transform-origin: center bottom;
  display: block;
}
.GraddieSmiley {
  position: absolute !important;
  top: 78%;
  left: 0;
  animation: moveX 2.5s linear infinite alternate;
}
.GraddieSmiley .elementor-widget-container {
  animation: moveY 0.8s ease-in-out infinite alternate;
}
span.loanRatesDiscount {
    font-weight: 800;
    font-style: italic;
    margin-right: 3px;
}
.HeroHeading  span.eael-fancy-text-prefix {
    display: block;
}
.HeroHeading .eael-fancy-text-container {
    min-height: 115px;
}
.grDefaultBtn{
    background-color: #2F6BE3;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    border-radius: 120px 120px 120px 120px;
    padding: 12px 26px 12px 26px !important;
    color: #fff !important;
}
.grDefaultBtn:hover{
    background-color: #3255B0;
}
.editorList ul li {
    margin-bottom: 12px;
    overflow-wrap: break-word;
    word-break: break-all;
}
.editorList ul li b {
    color: #230735;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 500;
}
.defaultTable table {
    position: relative;
    width: 100%;
    margin: 30px 0;
    font-style: normal;
    font-size: 1rem;
    line-height: 20px;
    color: #120826;
}
.defaultTable tr {
    border-bottom: 1px solid #E3E3E3;
}
.defaultTable td{
    color:  #424242;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Roboto", Sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: 12px;
    padding-bottom: 12px;
}
/*@keyframes graddieBounce {
  0%, 100% { transform: translateY(0px);  }
  30%       { transform: translateY(-14px); }
  50%       { transform: translateY(-6px);  }
  70%       { transform: translateY(-10px); }
  85%       { transform: translateY(-3px);  }
}

.guidanceGraddie img {
  animation: graddieBounce 1.4s ease-in-out infinite;
}
*/


.essenCard{
    background: linear-gradient(239deg, rgba(255, 255, 255, 0.10) -116.97%, rgba(0, 0, 0, 0.20) 165.53%), radial-gradient(44.47% 44.47% at 50% 81.87%, rgba(224, 160, 255, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%), rgba(1, 2, 25, 0.00);
    backdrop-filter: blur(46.843116760253906px);
}
.essenCard2 {
    border-radius: 8px;
    border: 0.4px solid #FFF;
    background: linear-gradient(239deg, rgba(255, 255, 255, 0.10) -116.97%, rgba(0, 0, 0, 0.20) 165.53%);
    backdrop-filter: blur(23.25px);
    max-height: 456px;
}
.expandIcon .elementor-icon-wrapper {
    width: 20px;
    height: 20px;
}
.expandIcon{
    border-radius: 4px;
    border: 0.2px solid rgba(255, 255, 255, 0.43);
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.20) -46.89%, rgba(255, 255, 255, 0.00) 238.79%);
}
.iconBgTransparent svg {
    fill: transparent !important;
}
.forexList {
    background: radial-gradient(790.45% 144.53% at 61.78% 56.76%, rgba(255, 160, 242, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), #010719;
    box-shadow: 0 4px 11.8px 0 rgba(0, 0, 0, 0.17), 0 0 3px 0 rgba(0, 0, 0, 0.55), 0 17px 100px 0 rgba(47, 107, 227, 0.20);
    backdrop-filter: blur(20px);
}
.elementor-location-popup .elementor-element.e-con-full.forexList.essentialList.e-con.e-child {
    background-image: radial-gradient(790.45% 144.53% at 61.78% 56.76%, rgba(255, 160, 242, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%) !important;
    box-shadow: 0 4px 11.8px 0 rgba(0, 0, 0, 0.17), 0 0 3px 0 rgba(0, 0, 0, 0.55), 0 17px 100px 0 rgba(47, 107, 227, 0.20);
    backdrop-filter: blur(20px);
}
.essentialPopup a.dialog-close-button.dialog-lightbox-close-button {
    border-radius: 4px;
    border: 0.2px solid rgba(255, 255, 255, 0.43);
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.20) -46.89%, rgba(255, 255, 255, 0.00) 238.79%);
    padding: 6px;
}
.elementor-location-popup .elementor-element.e-con-full.travelCardList.essentialList.e-con.e-child{
    background: radial-gradient(790.45% 144.53% at 61.78% 56.76%, rgba(160, 209, 255, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), #010719 !important;
    box-shadow: 0 4px 11.8px 0 rgba(0, 0, 0, 0.17), 0 0 3px 0 rgba(0, 0, 0, 0.55), 0 17px 100px 0 rgba(47, 107, 227, 0.20);
    backdrop-filter: blur(20px);
}
.elementor-location-popup .elementor-element.e-con-full.accommodationList.essentialList.e-con.e-child{
    background: radial-gradient(790.45% 144.53% at 61.78% 56.76%, rgba(255, 209, 160, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), #010719 !important;
    box-shadow: 0 4px 11.8px 0 rgba(0, 0, 0, 0.17), 0 0 3px 0 rgba(0, 0, 0, 0.55), 0 17px 100px 0 rgba(47, 107, 227, 0.20);
    backdrop-filter: blur(20px);
}
.tableEssentials {
    border-radius: 8px;
    background: rgba(226, 234, 251, 0.49);
    padding-top: 15px;
}
.tableEssentials tr:first-child td{
    border-top: 0;
    border-bottom: 1px solid #2F6BE3;
}
.tableEssentials tr:first-child td b {
    border-top: 0;
    color: #230735;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.tableEssentials tr td span {
    color: #043F5D;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.tableEssentials  .elementor-widget-container {
    max-height: 406px;
    overflow-y: auto;
}
.tableEssentials .table td {
    padding: 24px 18px 24px 32px;
    border-top: 1px solid #E3E3E3;
}
.tableEssentials tr td:last-child {
    width: 34%;
}
.tableEssentials  table {
    width: 100%;
}
#elementor-popup-modal-38323, #elementor-popup-modal-38315, #elementor-popup-modal-38286 {
    background: linear-gradient(239deg, rgba(255, 255, 255, 0.10) -12.99%, rgba(0, 0, 0, 0.20) 246.23%);
    backdrop-filter: blur(17.85px);
}

.mediaCardWrapper .elementor-widget-container a {
    display: block;
}
.mediaCardWrapper .layout2Image1 {
    width: 100%;
}
.highligtedText {
    color: #FFFFFF99;
    font-family: "Inter", Sans-serif;
    font-weight: 700;
    text-decoration-line: underline !important;
    text-underline-position: from-font;
    display: inline-flex !important;
}

.highligtedText:hover{
    color: #FFFFFF99;
}
.mediaPhoneList .elementor-icon-list-item {
  flex-wrap: nowrap;
}
.mediaPhoneList .elementor-icon-list-text {
  white-space: nowrap;
}
/*.blueBgGradient{
    border-radius: 10px;
    background: radial-gradient(93.99% 141.42% at 100% 0%, #91ADFF 0%, #2F6BE3 100%);
}*/
.blogLoopGrid .category-study-abroad .elementor-widget-image img, .blogLoopGrid .category-study-abroad .elementor-widget-image a {
    width: 100%;
    max-width: 100%;
}
.googleRatingBox .elementor-icon-box-wrapper {
    display: flex !important;
    flex-direction: row !important;
    justify-content: start;
    align-items: center;
    gap: 4px;
}
.googleRatingBox .elementor-icon-box-wrapper .elementor-icon-box-icon {
    width: 18px;
    height: 18px;
}
.googleRatingBox .elementor-icon-box-wrapper .elementor-icon-box-content {
    text-align: left;
}
input#typed-input {
    width: 449px;
    height: 192px;
    border-radius: 12px;
    background: #FFF;
    border: 1px solid #fff;
    box-shadow: unset;
    outline: unset;
}
span.askBtnWrapper {
    position: absolute;
    width: 81px;
    height: 81px;
    padding: 8px;
    top: 50%;
    transform: translateY(-50%);
    right: -40px;
    cursor: pointer;
}
.askBtnWrapper img {
    width: 62px !important;
    height: 62px !important;
    border-radius: 100% !important;
}

.graddie-search-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
}

.graddie-search-box .bg-img {
  width: 100%;
  display: block;
}

.graddie-search-box textarea {
  position: absolute;
  left: 5%;
  top: 12%;
  width: 90%;
  height: 76%;
  background: transparent;
  border: none;
  outline: none;
  resize: none;
  font-size: 14px;
  color: #616161;
  font-family: inherit;
  line-height: 1.7;
  padding: 0;
  overflow: hidden;
  z-index: 2;
  caret-color: #555;
  font-family: "Poppins", sans-serif;

}

.graddie-animated-placeholder {
  position: absolute;
  left: 9px;
  top: 0;
  width: 89%;
  pointer-events: none;
  z-index: 1;
  font-size: 14px;
  color: #bbb;
  line-height: 1.7;
  white-space: pre-wrap;
  font-family: inherit;
  font-family: "Poppins", sans-serif;
  color: #D5D4D3;
}

.graddie-cursor {
  display: inline-block;
  width: 1.5px;
  height: 1em;
  background: #bbb;
  margin-left: 1px;
  vertical-align: text-bottom;
  animation: graddieBlink 0.7s steps(1) infinite;
}

@keyframes graddieBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.contentLandingPage h3 {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    color: #230735;
    margin-top: 15px;
}
#scroll-sync-wrapper .clrDefault a:not(.elementor-button-link) {
    color: #043F5D;
}
.askBtnWrapper img:hover {
  animation: none;
  filter: drop-shadow(0 4px 10px rgba(91, 111, 232, 0.6));
  cursor: pointer;
}
.hiddenDesktop{
    display: none !important;
}

.graddie-search-box-hero {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}
span.askBtnWrapperHero {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -18px;
    z-index: 3;
    cursor: pointer;
}
div#graddlePlaceholderHero {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 16px;
    z-index: 1;
    flex-direction: column;
    gap: 6px;
    align-items: start;
    display: flex;
}
img.graddieIconHero {
    position: absolute;
    right: -64px;
    top: -68px;
    width: 162px;
    transform: rotate(11deg);
}
textarea#userInputHero {
    position: absolute;
    top: 0;
    right: 5px;
    bottom: 5px;
    left: 0;
    z-index: 2;
    background: transparent;
    border: 0;
    box-shadow: none;
    outline: unset;
    padding: 16px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #626262;
}
span.graddlePlaceholderTextHero {
    border-radius: 12px;
    background: rgba(123, 104, 208, 0.10);
    padding: 2px 12px;
    color: #7B68D0;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
#graddlePlaceholderHero.hide{
    display: none;
}
.centerItems .safari-frame{
    margin: 0 auto;
}
.homeHeroGraddie{
    margin-top: 40px !important;
    margin-bottom: 10px !important;
}
.tc-filter h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 50px;
    color: #230735;
}
select#tc-category-filter {
    width: 200px;
    color: #474747;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.28px;
    padding: 10px 12px;
}
.tc-filter {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    align-items: center;
}
.tc-swiper video {
    border-radius: 6px;
}

.select-wrapper {
  position: relative;
  display: inline-block;
}

#tc-category-filter {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 32px; 
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10L12.0008 14.58L17 10' stroke='%23474747' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 20px 20px;
  background-color: #EEE;
  border: 0;
}

.elementor-field-group-formRecaptcha {
    visibility: hidden;
    height: 0;
}
.studyAnywhereCarousel  img.swiper-slide-image {
    padding: 12px;
    border: 0.592px solid rgba(0, 0, 0, 0.08);
    background: #FFF;
    box-shadow: 0 11.052px 11px -2.679px rgba(0, 0, 0, 0.04);
}
.stickyAppBox{
    position: sticky !important;
    top: 150px;
}
.stickyHeadingBox {
    position: sticky !important;
    /*top: 250px;*/
     top: 50vh;
    transform: translateY(-50%);
}
.graddieBtmDark::before {
    content: '' !important;
    background-color: #12132c;
    width: 30% !important;
    position:absolute !important;
    left:0;
    height:100%;
}

.graddieBtmDark::after {
    content: '';
    background-color: #12132c;
    width: 30% !important;
    position:absolute !important;
    right:0 !important;
    height:100% !important;
}
.graddieBtmDark  .e-con-inner {
    z-index: 1;
}

@keyframes scrollTransform {
  from {
    transform: perspective(1200px) translateY(-210px) scale(0.7) rotateX(40deg);
  }
  to {
    /*transform: perspective(1200px) translateX(-400px) scale(0.25);*/
    transform: perspective(1200px) translateX(-404px) translateY(257px) scale(0.25);
  }
}

@keyframes mascotPopup {
  0% {
    opacity: 0;
    transform: scale(0.1) translateX(50px) translateY(30px);
  }
  15% {
    opacity: 0.4;
    transform: scale(0.3) translateX(119px) translateY(20px);
  }
  35% {
    opacity: 0.8;
    transform: scale(0.55) translateX(213px) translateY(10px);
  }
  55% {
    opacity: 1;
    transform: scale(0.75) translateX(307px) translateY(-8px);
  }
  70% {
    transform: scale(0.9) translateX(370px) translateY(-4px);
  }
  85% {
    transform: scale(1.05) translateX(430px) translateY(2px);
  }
  100% {
    opacity: 1;
    transform: scale(1.1) translateX(464px) translateY(0px);
  }
}



.scrollingImageWrapper{
  animation: scrollTransform linear both;
  animation-timeline: scroll();
  animation-range: 0px 700px;
  will-change: transform;
  height: 940px;
    left: 0;
    overflow: visible;
    position: absolute;
    right: 0;
    top: 531px;
    z-index: 2;
    transform: perspective(1200px) translateY(-210px) scale(0.7) rotateX(40deg);
}
.scrollingImageWrapper img{
    width: 1000px;
}

.mascotWrapper {
  position: absolute !important;        /* ← FIXED not absolute, so it ignores parent scale */
  bottom: 1000px;          /* tune: vertical position on screen */
  left: 120px;            /* tune: horizontal — where phone lands */
  z-index: 99;
  opacity: 0;
  pointer-events: none;
    animation: mascotPopup linear both;
  animation-timeline: scroll();
  animation-range: 600px 900px; /* wider range = smoother, no blink */
}
.mascotWrapper, .mascotWrapper div{width: 100%;}

.mascotWrapper img {
  width: 52%;  
   transform-origin: bottom center;   
}
.mascotWrapper.mascot-animate {
  animation: mascotPopup 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.studyAnywhereCarousel  figure.swiper-slide-inner {
    padding-top: 15px;
    padding-bottom: 15px;
}
  @keyframes mascotPopupMobile{
    0% {
      opacity: 0;
      transform: scale(0.1) translateY(30px);
    }
    35% {
      opacity: 0.8;
      transform: scale(0.55) translateY(10px);
    }
    70% {
      opacity: 1;
      transform: scale(0.9) translateY(-4px);
    }
    85% {
      transform: scale(1.05) translateY(2px);
    }
    100% {
      opacity: 1;
      transform: scale(1) translateY(0px);
    }
  }

  .tc-swiper .video-wrapper {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      border-radius: 12px;
      overflow: hidden; /* this is the key fix */
    }

    .tc-swiper .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    .tc-swiper .play-btn {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      z-index: 10;
      width: 50px; height: 50px;
      background: rgba(255,255,255,0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      cursor: pointer;
      color: #00000080;
      padding-left: 6px;
    }
.swiper.tc-swiper {
    padding-left: 12px;
}
.tc-swiper .swiper-button-next::after,
.tc-swiper .swiper-button-prev::after {
  display: none;
}

.tc-swiper .swiper-button-next, .tc-swiper .swiper-button-prev {
    bottom: -60px;
    top: auto;
    left: 50%;
}

.tc-swiper .swiper-button-next {
    left: calc(50% + 25px);
}
.tc-swiper .swiper-button-prev {
    left: calc(50% - 25px);
}
.tc-wrapper {
  overflow: hidden;
  padding-bottom: 80px; /* space for buttons below */
  margin-bottom: -80px;
}

.tc-swiper {
  overflow: visible !important;
}
.googleReviewsCarousel .elementor-widget-container p {
    min-height: 75px;
}
.blgItemTitle h2.elementor-heading-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.listDefault ul {
    margin: 0;
    padding: 18px;
}
.listDefault ul li {
    margin-bottom: 5px;
}
.elementskit-dropdown-has .elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-content-box .eael-feature-list-title {
    margin-top: -4px;
}
.elementskit-dropdown-has .elementor-widget p {
    margin-bottom: 0;
}
.authorImgWrapper img {
    border-radius: 16777200px !important;
    border: 4px solid #FFF !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10) !important;
}
.authorRecentArticles .blogLoopItem {
    background: #fff;
    overflow: hidden !important;
    border-radius: 12px;
}
.authorRecentArticles .blogLoopItem .blogItemTitle {padding-left: 24px;padding-right: 24px;padding-top: 16px;}
.authorRecentArticles .blogLoopItem .authName {
    padding-left: 24px;
    padding-right: 24px;
}
.authorRecentArticles .blogLoopItem .blogPostMeta {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
}
.authorRecentArticles .blogLoopItem  img {
    border-bottom: 0 !important;
}
.authorEducationList h3.eael-feature-list-title {
    margin-bottom: 4px !important;
}
.authorEducationList li.eael-feature-list-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    padding-bottom: 20px !important;
    margin-bottom: 20px;
}
.authorEducationList li.eael-feature-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0 !important;
    margin-bottom: 0;
}
.single-post .blogDetailAuthor a {
    gap: 8px;
}
.bankBoxesStack .bankBoxLogo {
    border-right: 1px solid rgba(0, 0, 0, 0.10);
}
.bluredSection {
    backdrop-filter: blur(10px);
}


/* BreadCrumbs Style */
.cb-breadcrumbs {         
    padding: 10px 0px;
    font-family: inherit;
    font-size: 0.875rem;
    background: transparent;
}
.cb-breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 12px;
    margin-bottom: 0 !important;
}
.cb-breadcrumbs__item {
    display: flex;
    align-items: center;
    color: #c8d0e4;
    white-space: nowrap;
}
.cb-breadcrumbs__item--home svg {
    display: block;
    color: #c8d0e4;
}
.cb-breadcrumbs__link {
    transition: color 0.2s ease;
    font-size: 16px !important;
    color: rgba(255, 255, 255, 0.90);
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none !important;
}

.cb-breadcrumbs__link:hover,
.cb-breadcrumbs__link:focus {
    color: #ffffff;
    text-decoration: underline;
    outline: none;
}
.cb-breadcrumbs__current {
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
}
.cb-breadcrumbs__sep {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0 2px;
    list-style: none;
}
.blogDetailAuthor a {
    display: flex !important;
    gap: 8px !important;
}
a.wpil_keyword_link, a.wpil_keyword_link:hover {
    color: #f37b51;
}


.expert-banner {
    position: relative;
    min-height: 158px;
    display: flex;
    padding: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    border-radius: 8px;
    border: 1.2px solid #EBE7FF;
    background: radial-gradient(100% 85.34% at 34.8% 44.93%, #782BFF 0%, #02020A 100%);
    box-shadow: 0 0 30px 0 rgba(43, 7, 110, 0.06);
    overflow: hidden;
}

.expert-banner__overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(180deg, rgba(120, 43, 255, 0.00) 0%, rgba(2, 2, 10, 0.60) 100%),
    url(/wp-content/uploads/2026/05/TalkToExpertBg.png);
  background-size: cover; 
background-position:center;
}

.expert-banner__heading-row {
    color: #FFF;
    font-family: "Poppins", Sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 8px;
}
.expert-banner__avatars {
    max-width: 126px;
}
.expert-banner__avatars img {
    width: 100%;
}
.expert-banner__content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
    align-self: stretch;
    justify-content: space-between;
}
a.expert-banner__cta-button {
    display: flex;
    padding: 12px 26px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 12px;
    background: #FFF;
    color: #782BFF;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; 
}
.expert-banner__heading-row span{
    color: #FFF;
    font-family: "Poppins", Sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
p.expert-banner__description {
    color: #FFF;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.expert-banner__text-group {
    z-index: 1;
    max-width: 432px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
}
.expert-banner__cta-group {
    z-index: 1;
}
.city-pill {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 100px;
    border: 1px solid #9F80FF;
    background: rgba(255, 255, 255, 0.10);
    display: flex;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.city-pill__count {
    border-radius: 100px;
    background: #9F80FF;
    display: flex;
    padding: 2px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #F4F2FF;
    text-align: center;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 25px;
    height: 23px;
}
.city-pill.is-active {
    background: #ffffff;
    color: #1a0a3c;
    border-color: #fff;
}
.city-pill.is-active .city-pill__count {
    background: rgba(0,0,0,0.08);
}

span.city-pill__label {
    color: #F4F2FF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 125% */
}
.listingCTA .expert-banner__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 68%;
}
.listingCTA.lightblue {
    border-radius: 8px;
    border: 1.2px solid #FFF;
    background: linear-gradient(90deg, #EBE7FF 0%, #DAD2FF 100%), #FFF;
    box-shadow: 0 0 30px 0 rgba(43, 7, 110, 0.06);
}
.listingCTA.lightblue .expert-banner__overlay {
    display: none;
}
.listingCTA.lightblue span.expert-banner__title {
    color: #2B076E;
}
.listingCTA.lightblue p.expert-banner__description {
    color: #2B076E;
}
.listingCTA.lightblue .city-pill {
    border: 0.6px solid #9F80FF;
    background: #F4F2FF;
}
.listingCTA.lightblue .city-pill span.city-pill__label {color: #2B076E;}
.listingCTA.lightblue .city-pill span.city-pill__count {
    background: #DAD2FF;
    color: #2B076E;
}

#headerStJourney .scrolled-effect {
    background-color: #782BFF;
    color: #fff;
}
.sticky-blogs.hideSticky {
    display: none;
}
.blogLoopItem .elementor-widget-image a{
    width: 100%;
}


#gr-phone-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
#gr-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}
#gr-modal-box {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px 28px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

#gr-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #555;
    line-height: 1;
}
#gr-modal-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 24px;
    color: #1a1a2e;
}
.gr-modal-label {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #222;
}

.gr-phone-wrap {
    display: flex;
    align-items: center;
    background: #f5f6fa;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, background 0.2s;
}
.gr-phone-wrap.focused {
    border-color: #3b5bdb;
    background: #fff;
}
.gr-dial-code {
    padding: 0 12px;
    font-size: 14px;
    color: #555;
    border-right: 1px solid #e0e0e0;
    height: 48px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    user-select: none;
}
.gr-phone-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 14px;
    height: 48px;
    font-size: 14px;
    color: #333;
    outline: none;
}
#gr-modal-close:focus {
    border: 0;
    outline: none;
}
.onlineProgramsMenu a.ekit-menu-nav-link:before, 
.typesOfPrograms .eael-feature-list-items li.eael-feature-list-item:first-child:before, 
.newBadgeHeading .elementor-widget-container:before, .studyAnywhere  a.ekit-menu-nav-link:before, #onlineCourseTab span.title-main:before{
    content: "NEW";
    border-radius: 4px;
    width: 41px;
    height: 18px;
    position: absolute;
    right: -9px;
    background: linear-gradient(100deg, #9f80ff 46.71%, #9f80ff 97.38%), #FFF;
    display: flex;
    padding: 4px 8px;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 10px 2px rgba(139, 92, 246, 0.20), 0 2px 8px 0 rgba(129, 140, 248, 0.25);
    top: -7px;
    font-size: 11px;
    color: #fff !important;
    animation: grNewBadgePulse 1.8s ease-in-out infinite;
    font-family: "Poppins", sans-serif;
}
.typesOfPrograms .eael-feature-list-items li.eael-feature-list-item:first-child:before {
    left: 150px;
    right:auto;
    top: -4px;
}
.newBadgeHeading .elementor-widget-container{
    display: inline-flex;
    position: relative;
}
.newBadgeHeading .elementor-widget-container:before {
    right: -47px;
    top: -1px;
}

@keyframes grNewBadgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}
.headerMenuTabs span.e-n-tab-title-text {
    display: flex;
    flex-direction: column;
    align-items: start;
}
.headerMenuTabs span.e-n-tab-title-text span {
    font-size: 12px;
    color: #747485;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 18px */
    letter-spacing: -0.132px;
}
.headerMenuTabs span.e-n-tab-title-text span.title-main {
    color:#1B1B1B;
    font-size: 14px;
}
.title-main::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: rotate(-45deg);
    margin-left: 8px;
    vertical-align: middle;
}
.headerMenuTabs .e-n-tabs-heading {
    padding: 24px;
    justify-content: start !important;
}
.headerMenuTabs .e-n-tab-title{
 border-radius: 12px !important;
}
.hiddenSection {
    display: none;
}
.startsFrom {
    color: #121022;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 42px;
    letter-spacing: -1px;
}
.insPrice {
    color: #782BFF;
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px;
    letter-spacing: -2.1px;
}
.insPriceYearly {
    color: rgba(19, 14, 41, 0.94);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 19.5px;
}
.greenText {
    color: #378803;
}

/* Media Starts */

@media (max-width: 1260px) {
    .counterAssisted span.elementor-counter-number-suffix {
        white-space: unset;
        margin-left: 6px;
    }
}


/* Disable hover effect on mobile */
@media (max-width: 768px) {
    .steps-ions .elementor-icon-box-description {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: none !important;
    }
	
.team-box .elementor-image-box-wrapper {
        display: flex;
        gap: 16px;
        align-items: center;
}
	
.team-box .elementor-image-box-description {
    text-align: left;
}

h3.elementor-image-box-title {
    margin-bottom: 6px !important;
}
	
.team-box.elementor-image-box-title {
    text-align: left !important;
}


}

.nav-center li.active {
    font-weight: 400;
    color: white;
    background-color: #053F5C;
    padding: 4px 16px;
    border-radius: 50px;
}

.nav-right {
    width: 15%;
    display: flex;
    justify-content: flex-end;
    font-weight: 400;
    font-size: 18px;
    color: #333;
}

@media (max-width: 768px) {
      .header {
        flex-direction: row;
        align-items: center;
        padding: 0px;
    }

    .navigation {
        margin-top: 20px;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-center {
        width: 100%;
        margin-bottom: 20px;
    }

    .nav-center-list {
        justify-content: space-between;
        width: 100%;
    }

    .nav-center li {
        margin: 0 10px;
    }
}

/* <footer css  */

.footer-container {
    width: 100%;
    margin: 0 auto;
}
   .footer-box-2 {
    width: 40%;
    display: contents;
}

.footer-box {
    width: 60%;
    display: flex;
}     
.footer {
    background-color: #043f5d;
    color: white;
    padding: 5rem 6rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

p.copy-right-content {
    color: #bfbec6 !important;
}

.contact-item a:hover {
    color: #bfbec6;
}
        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        
        .footer-section {
            margin-right: 60px;
        }
        
        .footer-section:last-child {
            margin-right: 0;
        }
        
      .footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}
        
        .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-section li {
    margin-bottom: 2px;
}
        
       .footer-section a {
    color: #bfbec6;
    text-decoration: none;
    font-size: 16px;
}
        
.office-item span {
    color: #bfbec6;
}
        .office-section {
            display: flex;
        }
        
        .office-column {
            margin-right: 60px;
        }
        
        .office-column:last-child {
            margin-right: 0;
        }
        
        .office-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }
        
        .flag {
            margin-right: 10px;
            width: 20px;
            height: 15px;
        }
        
        .divider {
    border-top: 1px solid #499ac3;
    margin: 10px 0 20px 0;
}
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
      .contact-info {
    display: flex;
    width: 50%;
    justify-content: space-between;
}
        .contact-item {
            margin-right: 40px;
        }
        
        .contact-item:last-child {
            margin-right: 0;
        }
        
        .social-icons {
            display: flex;
            margin-top: 15px;
        }
        
        .social-icons a {
    margin-left: 8px;
}
        
        .social-icons a:first-child {
            margin-left: 0;
        }
        
        .social-icon {
          width: 20px;
}
        
        .logo {
            display: flex;
        }
        
.footer-g3 {
	margin: 0px !important;
}
        
        .copyright {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
        }

.footer-bottom .footer-section {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 60%;
    justify-content: space-between;
}

img.footer-logo {
    width: 200px;
}


 nav.header{padding: 20px 0;}
.header-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 1px 17px 0 rgb(51 51 51 / 10%);
    background: #000;
    z-index: 9999;
    display: none;
}
 #header ul li a.first{padding: 0 50px 0 0px;}
 #header ul li a{
    font-size: 16px;
    font-weight:200;
    padding: 0 50px 0 0px;
    line-height: 24px;
    font-weight: 400;
    color: #F4F4F4;
    }
#header ul li a:hover{ 
    color: #BDADFF;
    }
	

/* Hide mobile logo by default */
.logo .mobile-logo {
    display: none;
}

/* Show mobile logo on mobile screen */
@media (max-width: 768px) {
    .logo .desktop-logo {
        display: none;
    }
       .logo .mobile-logo {
        display: inline-block;
        width: 30px;
    }
	
	.hide-mobile {
    display: none;
}

    .header {
        background-color: #ffffff;
        margin: 15px;
        border-radius: 50px;
        padding: 10px;
    }
	
	
	.footer-section {
    margin-right: auto;
}
	
	.footer-container {
    width: auto;
    margin: 0 auto;
}
	
 .footer-content {
    display: flex;
    flex-wrap: wrap;
  }
    .office-item span {
        font-size: 12px;
    }

	.flag {
    margin-right: 4px;
    width: 20px;
    height: 15px;
}
.footer-section {
        width: 100%;
        box-sizing: border-box;
        margin-top: 20px;
        display: flex;
        gap: 20px;
    }
	
.footer-section ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        list-style: none;
        padding: 0;
        margin: 0;
	    width: 70%;
}
	
.footer-section li {
    margin-bottom: 0px;
    /* font-size: 13px; */
}
	
	
.social-icons {
        display: flex
			
			
			;
        margin-top: 0px;
        border-bottom: 1px solid #499ac3;
        padding: 0px 0px 18px 0px;
        margin-bottom: 20px;
    }

.footer-bottom {
    display: block;
    justify-content: space-between;
    align-items: center;
}

    .footer-bottom .footer-section {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        justify-content: space-between;
    }
	
	.contact-info {
    display: flex;
    width: auto;
    justify-content: space-between;
}
.footer-section .logo {
    display: flex;
    align-items: center;
    width: auto;
}
  /* To make the last section take full width */
  .footer-section:last-child {
    width: 100%;
    order: -1; /* Move the last section to the first position */
    text-align: center; /* Center content horizontally */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* To stack the content vertically */
  }

    .footer-section:last-child .logo {
        margin-bottom: 4px;
    }
.footer-section a {
        color: #bfbec6;
        text-decoration: none;
        font-size: 10px;
    }
	
  .footer-section:last-child .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px; /* Adjust space between social icons */
  }

 .footer-section h3 {
        margin-bottom: 10px;
        width: 30%;
        font-size: 14px;
    }

  .footer-section ul {
    padding-left: 0;
  }

	
}

/* Hide default dropdown arrow and add custom SVG arrow */
.wpcf7 select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('https://dev.gradright.com/wp-content/uploads/2025/03/select-arrow.svg');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px auto;
  padding-right: 2.5rem; /* Space for arrow */
  border-radius: 4px; /* Optional: styling */
}

/* Fix for Firefox */
.wpcf7 select::-ms-expand {
  display: none;
}


.menu-toggle {
    width: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    margin-right: 13px;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #f37b51;
    margin-bottom: 5px;
    transition: 0.3s;
}

.health-insurance-forms .full-width {
    width: 100% !important;
}

@media (min-width: 769px) {
  .mobile-menus {
    display: none;
  }
}
/* Remove margin from the last span */
.menu-toggle span:last-child {
    margin-bottom: 0;
}

    /* Cross Icon Animation */
    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

.menu-items {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    width: max-content;
    height: max-content;
    background: #eaedf4;
    border-radius: 22px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1;
}
 .menu-items a {
    text-decoration: none;
    padding: 4px 0;
    color: #333;
    font-size: 14px;
    transition: 0.3s;
    font-weight: 500;
}

    .menu-items a:hover {
      color: #007bff;
    }

    .menu-items.show {
      display: flex;
    }
#header .signup {
    background: #5F5F5F;
    border-radius: 50px;
    padding: 10px 20px;
    text-align: center;
    width: 140px;
}
#header .btn-signup{font-family: var(--font);
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 27px;
color: #F4F4F4;}

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

.pad-20{padding:0px 0px;margin-top: 100px;}

#banner1 {
  background-image: url(https://stage.dev.gradright.com/wp-content/uploads/2024/07/Website-graphics.png);
  background-repeat: no-repeat, repeat;
  padding: 15px;
  background-position: center;
  height: 100vh;
  padding-bottom: 500px;
  background-size: contain;
  text-align: center;
  margin: 0 auto;
  max-width: 100%;
}
#banner1 h1 { 
padding: 65px 0px 5px 0px;
font-family: var(--font);
font-style: normal;
font-weight: 500;
font-size: 40px;
line-height: 30px; 
text-align: center;
color: #F4F4F4;
}
#banner1 p {  
font-family: var(--font);

font-weight: 300;
font-size: 28px;
line-height: 42px; 
color: #F4F4F4;
}
.fiance1{
    padding-left: 160px;
    padding-right: 150px;
    margin-top: 155px;
} 
.fiance1 h2 {font-style: normal;font-weight: 500;font-size: 30px;line-height: 120%;color: #F4F4F4;padding-bottom: px;}
.fiance1 ul {padding: 0px 23px;}
.fiance1 ul li  {font-style: normal;font-weight: 300;font-size: 18px;line-height: 150%;color: #F4F4F4;padding-bottom: 15px;}
.fiance1 p.para  {font-family: 'Poppins';color: #FC8C50;font-style: normal;font-weight: 600;font-size: 22px;line-height: 33px;}
.fiance1 p.para-second  { 
font-style: normal;
font-weight: 600;
font-size: 22px;
line-height: 33px; 
color: #6FCCFE;} 
.fiance1 img.sec2 {margin-top:-60px; width: 85%;} 

div.sticky{ position: -webkit-sticky;
  position: sticky;
  top: 300px;   }
.quotes p{font-family: 'Poppins';font-style: normal;font-weight: 400;font-size: 20px;line-height: 30px;color: #F4F4F4;}
.fiance1 .quotes{background: #404040;position:relative;padding: 30px;border: 1px solid #000000;border-radius: 10px;margin-top: 210px;margin-left: 25px;width: 390px;background: linear-gradient(180deg, #7A89FF -100%, #404040 50%);border-top: 5px solid #7A89FF;}
.quotes img.img-quote{position: absolute;
    left: -27px;
    top: -23px;}
.quotes img.img-logo{background: #F4F4F4;padding:3px;float:right;border: 1px solid #000000;border-radius: 5px;width: 100px;height: 40px;/* object-fit: cover; */}
.fiance1 .quotes:after{clear:both;content:"";display:block;}
.quotes p.para{ 
font-style: normal;
font-weight: 400;
font-size: 15px;
line-height: 22px;

color: #F4F4F4;}
.quotes h4.ripote{font-style: normal;font-weight: 600;font-size: 16px;line-height: 24px;color: #F4F4F4;margin-bottom: 0;}
.quotes p.ripote{ 
font-style: normal;
font-weight: 400;
font-size: 15px;
line-height: 22px; 
color: #F4F4F4;

}
p.rel{position:relative;}
.p-rel .col-lg-3{flex: 0 0 18%;
    max-width: 18%; padding:0;}
.p-rel .col-lg-9{flex: 0 0 82%;
    max-width: 82%; padding:0;}
	
/* 	
	::-webkit-scrollbar-thumb {
    background-image: -o-linear-gradient(45deg, #ffbd84, #ff1f8e);
}
::-webkit-scrollbar-track {
    background: #e8e8e8;
}
::-webkit-scrollbar {
    width: 6px;
} */

.fiance1 .img-vid {
    background: #404040;
    position: relative;
    padding: 20px;
    border: 1px solid #000000;
    border-radius: 10px;
    margin-top: 130px;
    margin-left: 10px;
    width: 410px;
    background: linear-gradient(180deg, #7A89FF -100%, #404040 50%);
    border-top: 5px solid #7A89FF;
}
 .img-vid h4.ripote {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #F4F4F4;
    margin-bottom: 0;
	
}
.img-vid p.ripote {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #F4F4F4;
}
#videoStory {
    cursor: auto; 
    margin-top: 125px!important;
	z-index:9999;
}
#videoStory  iframe{ 
	width:50% !important;
	margin: 0 auto !important; 
}
.fiance1 p.purple{
	font-family: 'Poppins';
font-style: normal;
font-weight: 600;
font-size: 22px;
line-height: 33px;

color: #BDADFF;
}

.plan-section{
    background-image: url(../img/rectang-bg1.png);
    /* padding-left:45px; */
    margin-top: 142px;
    width:100%;
    text-align:center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    }

.plan-section h3.h2{font-family: 'Poppins';font-style: normal;font-weight: 500;font-size: 30px;line-height: 111.5%;width:100%;text-align:center;color: #FFFFFF;/* padding-left: 60px; */}
.plan-section h3.h2c{font-family: 'Poppins';font-style: normal;font-weight: 500;font-size: 30px;line-height: 111.5%;width:100%;text-align: center;/* padding-right: 60px; */color: #FFFFFF;padding-bottom: 60px;}

.smarter{padding: 50px 0px;}
.toggl p{margin-bottom:0; padding-top: -50px}
.toggl p a{font-family: 'Poppins';font-style: normal;font-weight: 600;font-size: 16px;
/* identical to box height */padding-right: 27px;text-align: center;color: #F4F4F4;padding-left: 27px;}
.toggl{align-items: center; justify-content: center;}
.toggl img{padding-right: 27px; }


.resource-sec h3{font-family: 'Poppins';font-style: normal;font-weight: 500;font-size: 30px;line-height: 94px;color: #F4F4F4;padding-left: 25px;}
.resource-sec{padding-left:35px;margin-top: 150px;padding-right: 35px;}
.resource-sec .border-white{border: 1px solid #F4F4F4;border-radius: 10px;padding: 14px;}
.resource-sec  p a{font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-size: 22px;
line-height: 33px;
/* identical to box height */
padding-top:18px;
text-decoration-line: underline;

color: #FFFFFF;}
.resource-sec  p {padding-top:18px;}
.resource-sec  .col-lg-6.ml {margin-left: 15px;}
 
.resource-sec  h4 {font-family: 'Poppins';font-style: normal;font-weight: 600;font-size: 18px;line-height: 125.5%;
/* or 25px */color: #F4F4F4;padding: 20px 0px 10px 15px;}
.resource-sec  p a{font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-size: 22px;
line-height: 33px;
/* identical to box height */

text-decoration-line: underline;

color: #FFFFFF; 
} 
.resource-sec  .bw p a{font-family: 'Poppins';font-family: 'Poppins';font-style: normal;font-weight: 300;font-size: 16px;line-height: 125.5%;
/* identical to box height, or 20px */text-decoration-line: none;color: #F4F4F4;padding: 20px 0px 0px 15px;}
.resource-sec  .bw{display:flex;padding: 5px;border: 1px solid #F4F4F4;border-radius: 10px;/* height: 170px; */margin-bottom: 25px;/* width: 547px; */}
.resource-sec  .bw .col-lg-4{ padding:0px; 
}
.resource-sec  .df{
} 
.d .col-lg-6{width:50%;}
.res1 {
    padding-left: 45px;
    padding-right: 60px;
    margin-top: 0px;
    padding-bottom: 150px;
}
.res1 .quotes {
    /* background: #404040; */
    position: relative;
    padding: 20px;
    border: 1px solid #fff;
    border-radius: 10px;
    margin-top: 35px;
    margin-left: 25px;
    /* border: 1px solid #fff; */
}
.res1 .quotes p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    color: #F4F4F4;
    margin: 0;
}
 .res1 .quotes img.img-logo {
    background: #F4F4F4;
    padding: 3px;
    float: right;
    border: 1px solid #000000;
    border-radius: 5px;
}
.res1 .quotes:after {
    clear: both;
    content: "";
    display: block;
}

.Social-media{
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    padding: 200px 0;
    }
.media{justify-content: center; width: 100%;}
.media p{font-family: 'Poppins';
font-style: normal;
font-weight: 500;
font-size: 30px;
line-height: 69px;
text-align: center;

color: #F4F4F4;}
footer h4{font-family: 'Poppins';
font-style: normal;
font-weight: 500;
font-size: 30px;
line-height: 45px;
/* identical to box height */


color: #F4F4F4;}
footer{
    background: #181818;
    padding: 50px 82px;
    }
footer p{font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-size: 12px;
line-height: 150%; 
margin-bottom: 10px; 
/* identical to box height, or 18px */


color: #BFBEC6;}
.social{ 
    justify-content: center;
    width: 100%;
    align-items: center;
	display:flex;
} 
.social p a{ 
    font-family: 'Poppins';
font-style: normal;
font-weight: 500;
font-size: 18.1273px;
line-height: 27px;
text-align: center;
margin-right:50px;
color: #F4F4F4;
} 
footer .form-control.text{
    height: 36px;
    background: #D9D9D9;
    margin-bottom: 15px;
    }
footer select.form-control {
    height: 36px;
    background: #D9D9D9;
    margin-bottom: 15px;
	font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    margin-bottom: 10px;
}
footer select.form-control:active, footer select.form-control:focus{ 
    background: #D9D9D9; 
}
footer .form-control.subscribe{
    background: #d9d9d900;
    border: 2px solid #fff;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 15px;
/* identical to box height */
    color: #F4F4F4;
    border-radius:0;
    padding: 10px 0px;
    }
footer .form-control.subscribe:hover{
    
    background: #000000; 
    }
	footer .top-m{margin-top:15px;}

.social-icons a {
    align-items: center;
    margin-right: 2px;
}

.social-icons img{
    margin-top: -7px;
    }
footer h5{
    font-family: 'Poppins';
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 100%;
/* identical to box height, or 17px */


color: #FFFFFF;

    }
footer .df{display:flex; padding:0;}
footer .df .col-lg-6{max-width: 100%;padding-left:0;flex: 0 0 39.666667%;margin-right: 50px;}
footer .po{padding-left:0;}

footer ul li a{font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-size: 12px;
line-height: 18px;
/* identical to box height */


color: #BFBEC6;}
footer ul li {font-family: 'Poppins';font-style: normal;font-weight: 400;font-size: 12px;line-height: 18px;
/* identical to box height */color: #BFBEC6;padding-bottom: 12px;}
footer ul {
    list-style: none;
    padding: 0;
    margin-top: 16px;
    }
footer .col-lg-2{
    flex: 0 0 22.666667%;
    max-width: 22.666667%;
    }
.copyright {
    /* background: #000; */
    text-align: center;
    font-size: 14px;
    width: 40%;
    display: contents;
}
.copyright p{font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 21px;
/* identical to box height */
padding:15px 0px;
margin-bottom:0;
color: #656565;}

.navbar-expand-lg .navbar-nav .dropdown-menu{background: #333333;
} 
#header ul li a.dropdown-item {
    font-size: 14px;
    font-weight: 400;
    padding: 10px 20px;
    line-height: 22px;
    color: #F4F4F4;
} 
#header ul li a.dropdown-item {
     
    color: #BDADFF;
} 
.signup.dropdown a.dropdown-item {
    font-size: 14px;
    font-weight: 400;
    padding: 3px 15px;
    line-height: 22px;
    color: #F4F4F4;
} 
.dropdown-item:focus, .dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
background-color: #333333;}
.nav-item.dropdown{position:relative;}
.nav-item.dropdown:hover .dropdown-menu { display:block !important;}
 .signup.dropdown:hover .dropdown-menu { display:block !important;}
.signup .dropdown-toggle::after {
    display: none; 
}
.signup .dropdown-menu{background: #333333;
} 
.signup a.btn-signup{text-decoration:none;}
.fiance1 .quotes1 {
    background: #404040;
    position: relative;
    padding: 30px;
    border: 1px solid #000000;
    border-radius: 10px;
    margin-top: 235px;
    margin-left: 10px;
    width: 470px;
    background: linear-gradient(180deg, #7A89FF -100%, #404040 50%);
    border-top: 5px solid #7A89FF;
}
.quotes1 p.para {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #F4F4F4;
}
.quotes1 h4.ripote {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #F4F4F4;
    margin-bottom: 0;
}
.quotes1 p.ripote {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #F4F4F4;
}
.pallrax1{margin-bottom: 170px;}
.pallrax2{margin-bottom: 170px;}


 
input.blus {
  position: relative;
  width: 175px;
  height: 60px;
  -webkit-appearance: none;
  appearance: none;
  background: #f06b38;
  outline: none;
  border-radius: 2rem;
  cursor: pointer;
  box-shadow: inset 0 0 5px rgb(0 0 0 / 50%);
}

input.blus::before {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0px;
  transition: 0.5s;
}

input.blus:checked::before {
  transform: translateX(190%);
  background: #fff;
}

input.blus:checked {
  background: #28C2D1;
}
input.best-loan{}
a:hover{text-decoration:none;}
a:hover {
    color: #043F5D;
}

/* ------------ team page ------------- */
#banner-team {
    background-image: url(../gif/team/teampage-bg-elements.gif);
    background-position: right bottom, left top;
    background-repeat: no-repeat, repeat;
    padding: 15px;
    background-position: center;
    height: 100vh;
    padding-bottom: 500px;
    background-size: cover;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
}
#banner-team h1 {
    padding: 180px 0px 5px 0px;
    font-family: var(--font);
    font-style: normal;
    font-weight: 600;
    font-size: 60px;
    line-height: 90px;
    text-align: center;
    color: #F4F4F4;
}
#banner-team p {
    font-family: var(--font);

    font-weight: 300;
    font-size: 25px;
    line-height: 38px;
    color: #F4F4F4;
}
.inside_profile {
    text-align: center;
    /* padding: 57px; */
    margin-bottom: 40px;
}
.team-section h5 {
    padding-top: 12px;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 24px;
    text-align: center;
    color: #F4F4F4;
}
.team-section h6 {
    padding-top: 2px;
    font-family: 'Poppins';
    font-size: 12px;
    font-weight: 300;
    font-style: normal;
    line-height: 130%;
    text-align: center;
    color: #BDADFF;
    padding-bottom: 7px;
    /* min-height: 18px; */
}
.team-section a {
    /* padding-top: 30px; */
    font-family: 'Poppins';
    font-size: 12px;
    /* font-weight: 400; */
    font-style: normal;
    line-height: 18px;
    text-align: center;
    text-decoration: underline;
    color: #F4F4F4;
}
.team-section .team-img {
    position: relative;
    width: 114px;
    margin: 0 auto;
}
.team-section img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    cursor: pointer;
    transition: 0.5;
}
.team-icons {
    position: absolute;
    right: -10px;
    bottom: 5px;
}
.team-icons a {
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 4px;
    align-items: center;
    margin-right: 15px;
    display: block;
    width: 25px;
    height: 25px;
    background: #333;
}
.team-icons img {
    margin-top: -5px;
}
.team-section img:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}
.team-section .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 20%;
    max-width: 20%;
    margin-bottom: 0px;
}
.team-section .container{max-width: 1279px;}
.team-section h3{font-family: 'Poppins';font-style: normal;font-weight: 500;font-size: 63px;line-height: 94px;
/* identical to box height */padding-left: 55px;margin-bottom: 50px;color: #F4F4F4;}
.board-slider{width:100%;}
.slick-slider button{/* display:none !important; */}
.team-section p {
    padding-top: 2px;
    font-family: 'Poppins';
    font-size: 12px;
    font-weight: 300;
    font-style: normal;
    line-height: 130%;
    text-align: center;
    color: #BDADFF;
    padding-bottom: 7px;
    min-height: 40px;
}
.life-gr h3{font-family: 'Poppins';font-style: normal;font-weight: 500;font-size: 63px;line-height: 94px;
/* identical to box height */padding-left: 55px;margin-bottom: 50px;color: #F4F4F4;}
.life-gr .container {
    max-width: 1279px;
}

.life-gr .third_img_sec .img5 {
    width: 200px !important;
}
.life-gr .third_img_sec {
    display: flex;
    padding-left: 90px;
}
.third_img_sec{width:100%;}
.plan-team {
    background-image: url(../img/bg-circle.png);
    padding-left: 45px;
    padding-right: 45px;
    margin-top: 175px;
    width: 100%;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
	background-size:cover;
}
.plan-team .smarter3 {
    padding: 298px 0px;
}
.plan-team  h3.h2 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 70px;
    line-height: 111.5%;
    text-align: left;
    color: #FFFFFF;
    padding-left: 155px;
}
.plan-team h3.h2c {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 70px;
    line-height: 111.5%;
    text-align: right;
    padding-right: 155px;
    color: #FFFFFF;
    padding-bottom: 60px;
}
.plan-team p.we {
    margin-bottom: 0;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
/* identical to box height */
    color: #F4F4F4;
    margin-bottom: 40px;
}
.div-sound h3.if{font-family: 'Poppins';font-style: normal;font-weight: 400;font-size: 40px;line-height: 60px;
/* identical to box height */color: #F4F4F4;margin-bottom: 50px;}

.div-sound p.p{font-family: 'Poppins';font-style: normal;font-weight: 400;font-size: 20px;line-height: 30px;
/* identical to box height */color: #F4F4F4;margin-bottom: 50px;}

.div-sound .container_headings1 p{font-family: 'Poppins';font-style: normal;font-weight: 600;font-size: 20px;line-height: 30px;
/* identical to box height */color: #F4F4F4;padding: 0px 25px;}
.toggll {
    align-items: center;
    justify-content: center;
}
.toggll img {
    padding-right: 27px;
}
.div-sound{    padding-top: 388px;}
.div-sound .container_headings1 {
    display: flex;
    margin-top: 25px;
    justify-content: center;
}
.our-office h3 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 63px;
    line-height: 94px;
    padding-left: 0px;
    margin-bottom: 50px;
    color: #F4F4F4;
}
.our-office img{font-family: 'Poppins';
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
/* identical to box height */


color: #F4F4F4;
}
.our-office .container {
    max-width: 1140px;
}
.our-office .row.bg {
    padding: 20px;
    background: #333;
    /* border: 1px solid #F4F4F4; */
    border-radius: 10px;
    margin: 0 auto;
    margin-bottom: 40px;
    background: linear-gradient(180deg, #7a89ff -100%, #404040 50%);
    border-top: 5px solid #7A89FF;
    border-radius: 10px;
}
.our-office p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
/* identical to box height */
    padding-top: 10px;
    color: #F4F4F4;
    margin-bottom: 0;
}
.our-office .dnone {
    display:none;
}
 img.img1:hover img.dnone {
    display:block;
}
.office-img {position: relative;} 
.office-img .hover_img {position: absolute;top: 0;left: 0;display: none;}
.office-img:hover .hover_img {display: inline;}
.office-img:hover p{color:#7987FC;}
.our-office{padding-bottom:200px; margin-top: 100px;}

	.career-slider ul li{font-family: 'Poppins';
font-style: normal;
font-weight: 600;
font-size: 20px;
line-height: 30px;
/* identical to box height */


color: #F4F4F4;}
.career-slider{width:100%;}
	.career-slider p{font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 24px;
/* identical to box height */

text-align: center;

color: #F4F4F4;}
.career-slider .slick-prev {
    width: 30px;
    height: 30px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: #fff;
    border: none;
    outline: none;
    background: transparent;
}
.career-slider .slick-next {
    width: 30px;
    height: 30px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: #fff;
    border: none;
    outline: none;
    background: transparent;
}
.career-slider .cont-sec{text-align:left;}
.career-slider .cont-sec p{text-align:left;     padding-left: 40px;}
.career-slider .slick-list.draggable{
    width: 70%; 
    margin: 0 auto;
    }
.career-slider .slick-next {
    right: 0px; 
}
.career-slider .slick-prev {
    left: 0px;
} 


/* ------------ select Right page ------------- */

#select-banner {
    background-image: url(https://stage.dev.gradright.com/wp-content/uploads/2024/07/sr3.png);
    background-repeat: no-repeat, repeat;
	background-position: center;
    padding: 15px;
    height: 85vh;
    padding-bottom: 0;
    background-size: contain;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
}
#select-banner p {
    font-family: var(--font);

    font-weight: 500;
    font-size: 40px;
    line-height: 30px;
    color: #F4F4F4;
    margin-bottom: -5px;
	margin-top: 55px;
}
#select-banner h1 {
    padding: 0px 0px 5px 0px;
    font-family: var(--font);
    font-style: normal;
    font-weight: 600;
    font-size: 50px;
    line-height: 90px;
    text-align: center;
    color: #F4F4F4;
}

.plan-section h3.sr {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 111.5%;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
}
.plan-section h3.sr1 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 111.5%;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
    padding-bottom: 60px;
}



.education {
    background-image: url(../img/bg-circle1.svg);
    padding-left: 45px;
    margin-top: 0px;
    width: 100%;
    text-align: center;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}
.education .smarter1 {
    padding: 100px 0 0 0px;
}
.education h3.sr {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 40px;
} 

.education p {font-family: 'Poppins';font-style: normal;font-weight: 400;font-size: 18px;line-height: 30px;
/* identical to box height */text-align: center;color: #F4F4F4; padding-bottom: 150px;} 




 
/* ------------ Fund Right page ------------- */

#fund-banner {
    background-image: url(https://stage.dev.gradright.com/wp-content/uploads/2024/07/FR-1.png);
    background-repeat: no-repeat, repeat;
    padding: 15px;
    background-position: bottom;
    height: 85vh;
    /* padding-bottom: 500px; */
    background-size: contain;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
}
#fund-banner p {
    font-family: var(--font);

    font-weight: 500;
    font-size: 40px;
    line-height: 30px;

    color: #F4F4F4;
    margin-top: 55px;
    margin-bottom: -5px;
}
#fund-banner h1 {
    padding: 0px 0px 5px 0px;
    font-family: var(--font);
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 90px;
    text-align: center;
    color: #F4F4F4;
}
input.orang {
  position: relative;
  width: 175px;
  height: 60px;
  -webkit-appearance: none;
  appearance: none;
  background: #28C2D1;
  outline: none;
  border-radius: 2rem;
  cursor: pointer;
  box-shadow: inset 0 0 5px rgb(0 0 0 / 50%);
}

input.orang::before {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0px;
  transition: 0.5s;
}

input.orang:checked::before {
  transform: translateX(190%);
  background: #fff;
}

input.orang:checked {
  background: #f06b38;
}


/* The Modal (background) */
.team-section .modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 90px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgb(0 0 0 / 90%); /* Black w/ opacity */
}

/* Modal Content */
.team-section .modal-content {
	background-image: url(../img/team.svg);
	background-color: #333;
	margin: auto;
	padding: 40px 30px 20px 20px;
	border: 1px solid #888;
	width: 80%;
	background-size: cover;
}

/* The Close Button */
.team-section .modal-content .close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute; 
    top: 0;
    right: 8px;
}

.team-section .modal-content .close:hover,
.team-section .modal-content .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}  
.team-section .modal-content .team-img {
    position: relative;
    width: 114px;
    margin: 0 auto;
}
.team-section .modal-content h5 {
    padding-top: 8px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
/* identical to box height */
    text-align: center;
    color: #F4F4F4;
}
.team-section .modal-content h6 {
    padding-top: 2px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 130%;
/* identical to box height, or 16px */
    text-align: center;
    color: #BDADFF;
    padding-bottom: 7px;
    /* min-height: 40px; */
}
.team-section .modal-content p.p1{font-family: 'Poppins';font-style: normal;font-weight: 400;font-size: 10px;line-height: 150%;
/* identical to box height, or 15px */color: #BDADFF;padding: 25px 0px;text-align: left;}
.team-section .modal-content h3{font-family: 'Poppins';font-style: normal;font-weight: 600;font-size: 26px;line-height: 110%; 
/* or 29px */color: #F4F4F4;padding-bottom: 10px;padding: 0; margin-bottom: 25px;}
.modal-content .inside_profile {
    text-align: center;
    /* padding: 57px; */
    margin-bottom: 15px;
}
.team-section .modal-content p.p2{font-family: 'Poppins';font-style: normal;font-weight: 300;font-size: 12px;line-height: 120%;
/* or 14px */color: #FFFFFF;text-align: left;margin: 0;}
.team-section .modal-content .color-bg{background: #252525;border: 1px solid #F4F4F4;border-radius: 10px;padding: 20px 20px;}
.team-section .modal-content .col-lg-4{margin-bottom:20px;}

.google-app{padding-top: 40px;}
.google-app img.mb{margin-bottom: 10px;} 


/* ------------ About us page ------------- */

#about-banner {
    background-image: url(../gif/about/About-us-banner.gif);
    background-position: right bottom, left top;
    background-repeat: no-repeat, repeat;
    padding: 15px;
    background-position: bottom;
    height: 85vh;
    padding-bottom: 500px;
    background-size: cover;
    text-align: center;
    margin: 0 auto;
    max-width: 1279px;
}
#about-banner p {
    font-family: var(--font);

    font-weight: 500;
    font-size: 40px;
    line-height: 42px;
    color: #F4F4F4;
    padding-top: 35px;
    margin-bottom: -5px;
}
#about-banner h1 {
    padding: 0px 0px 5px 0px;
    font-family: var(--font);
    font-style: normal;
    font-weight: 600;
    font-size: 50px;
    line-height: 90px;
    text-align: center;
    color: #F4F4F4;
}
.ecosystem  {margin-top: 115px;}

.ecosystem h3{font-family: 'Poppins';font-style: normal;font-weight: 500;font-size: 40px;line-height: 150%;
/* identical to box height, or 60px */text-align: center;color: #F4F4F4;margin-bottom: 10px;}

.ecosystem p.para{font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-size: 20px;
line-height: 30px;
text-align: center;
position: relative;
color: #F4F4F4;}
.ecosystem span{position: absolute;
    top: 45%;}
.ecosystem .content{margin-top: 15px;}
.ecosystem  .content p{font-family: 'Poppins';font-style: normal;font-weight: 400;font-size: 20px;line-height: 150%;
/* or 30px */color: #F4F4F4;} 
.ecosystem  .col-lg-4{align-items:center;display: grid;}
.ecosystem  .col-lg-12.pright{padding: 0px 30px;}
.ecosystem  .content p.p1{padding: 20px 0px;}
.ecosystem  .content p.p2{padding: 20px 0px;}
.ecosystem  .content p.p3{padding: 0px 0px;}


.globalsystem{margin-top: 340px;}
.globalsystem h3{font-family: 'Poppins';font-style: normal;font-weight: 500;font-size: 40px;line-height: 120%;
/* identical to box height, or 48px */margin-bottom: 40px;color: #F4F4F4;text-align: center;}
.globalsystem h4{font-family: 'Poppins';
font-style: normal;
font-weight: 600;
font-size: 35px;
line-height: 150%;
/* identical to box height, or 52px */

text-align: center;
 }
.globalsystem h6{font-family: 'Poppins';font-style: normal;font-weight: 500;font-size: 20px;line-height: 150%;
/* or 30px */text-align: center;color: #F4F4F4;/* padding-bottom: 30px; */min-height: 140px;padding-top: 10px;}
.globalsystem p{font-family: 'Poppins';font-style: normal;font-weight: 300;font-size: 20px;line-height: 150%;
/* or 30px */text-align: center;color: #FFF;}
.globalsystem .col-lg-12.pright{padding-top: 35px;}
.vicious{margin-top: 280px;}
.vicious h3{font-family: 'Poppins';
font-style: normal;
font-weight: 500;
font-size: 40px;
line-height: 150%;
/* or 60px */

text-align: center;

color: #F4F4F4;
}
.section-white_distribution p{font-family: 'Poppins';font-style: normal;font-weight: 300;font-size: 22px;line-height: 150%;
/* or 33px */color: #F4F4F4;}
.section-white_distribution h4{font-family: 'Poppins';font-style: normal;font-weight: 500;font-size: 30px;line-height: 150%;
/* or 45px */color: #F4F4F4;}

.most p{font-family: 'Poppins';font-style: normal;font-weight: 500;font-size: 25px;line-height: 38px;
/* identical to box height */color: #F4F4F4;text-align: center;}
.most{margin-top: 50px;}
.most p span:before{
    content: "";
    position: absolute;
    top: 35px;
    width: 100%;
    height: 100%;
    background-image: url(../img/dandiiiii.svg);
    background-repeat:no-repeat;
}
.about-section {
    background-image: url(../img/background-elements.png);
    /* padding-left: 45px; */
    margin-top: 175px;
    width: 100%;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.about-section .smarter {
    padding: 250px 0px;
}
.about-section p{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-size: 30px;
    line-height: 120%;
/* identical to box height, or 36px */
    text-align: center;
    color: #F4F4F4;
    margin-bottom: 75px;
    padding-top: 40px;
}
.about-section p span{
    text-decoration: line-through;
    text-decoration-color: #FFC306;

}
.about-section h3 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 70px;
    line-height: 120%;
    text-align: center;
    color: #F4F4F4;

}

.section-white_distribution.z-index-15 {
    background-color: transparent;
}
.z-index-15 {
    position: relative;
    z-index: 15;
}
.page-padding {
    padding-right: 12.5%;
    padding-left: 12.5%;
}
.container-large {
    margin-right: auto !important;
    margin-left: auto !important;
}
.container-large {
    width: 100%;
    max-width: 90em;
    margin-right: auto;
    margin-left: auto;
}
.distribution_component {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
.distribution_heading-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.heading-xlarge.is_distribution {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #000;
}
.heading-xlarge {
    font-size: 5.5em;
    line-height: 0.7954545454545454;
    font-weight: 400;
    text-transform: uppercase;
	margin-top: 0rem;
    margin-bottom: 0rem;
    font-family: Rx100, sans-serif;
	
}
.distribution-heading-white_margin-left {
    margin-left: 8%;
    white-space: nowrap;
}
.distribution_content-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 9.75em;
    margin-bottom: 7.5em;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.heading-medium {
    font-family: Rx100, sans-serif;
    font-size: 2.125em;
    line-height: 0.7941176470588235;
    font-weight: 400;
    letter-spacing: -0.015em;
    text-transform: uppercase;
}
.intelligence_slider-wrapper {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.black-intelligence_card.is-one-reverse {
    top: 0em;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.black-intelligence_card {
    position: -webkit-sticky;
    position: sticky;
    top: 0em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 38em;
    padding-top: 18.75em;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
}
.black-intelligence_card-wrapper.is-one-reverse {
    background: #242424;
    border: 4px solid #BDADFF;
}
.black-intelligence_card-wrapper.is-two-reverse {
    background: #242424;
border: 4px solid #FC8C50;
}
.black-intelligence_card-wrapper.is-three-reverse {
    background: #242424;
border: 3px solid #6FCCFE;
}
.black-intelligence_card-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 15.4em;
    padding: 45px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    grid-column-gap: 5em;
    border-style: solid;
    border-width: 1px;
    background-color: #242424;
}
.black-intelligence_card-left-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-row-gap: 1.25em;
}
.heading-small.blacktext {
    color: #000;
}
.heading-small {
    font-family: 'IBM Plex Mono', sans-serif;
    font-size: 1.375em;
    line-height: 1.1818181818181819;
    font-weight: 400;
    text-transform: uppercase;
}
.distribution_card-heading {
    margin-top: 0rem;
    margin-bottom: 0rem;
}
.black-intelligence_card-right-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 29em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.black-intelligence_card-text {
}
.black-intelligence_card.is-two-reverse {
    padding-top: 20.75em;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}



.black-intelligence_card.is-one-reverse {
  top: 0em;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
 

.black-intelligence_card.is-three-reverse {
    padding-top: 22.75em;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.slider-about .container{max-width:1279px;}
.wrap {
  position: relative;
  z-index: 100;
  width: 100%;
  height: 100%;
  padding: 0px 115px;
  overflow: hidden;
}

.slider-about .slider {
  position: relative;
  z-index: 200;
  padding: 0 0px;
  margin: 0rem auto;
  /* max-width: 990px; */
  /* width: 100%; */
}
 
.item.slick-slide {
  width: 455px;
  height: 455px !important;
  transition: transform .4s;
  position: relative; 
}

.slider-about .slick-slide:after {
  content:'';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.5);
  transition: transform .4s;
}



.item.slick-slide.slick-center + .slick-slide {
  transform: scale(0.8) translate(-150px);
  z-index: 10;
}

.item.slick-slide.slick-active {
  transform: scale(0.8) translate(150px);
}

.item.slick-slide.slick-center {
  /* margin: 0 -10%; */
  transform: scale(1);
  z-index: 30;
}

.slider-about .slick-center:after {
  opacity: 0;
}
 .slider-about .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: #fff; 
    outline: none;
    background: #fff0;
    border-radius: 50%;
    border: 1px solid #fff;
}
.slider-about .slick-dots li.slick-active button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: #fff; 
    outline: none;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #fff;
}
.slider-about h3{font-family: 'Poppins';font-style: normal;font-weight: 500;font-size: 50px;line-height: 120%;
/* identical to box height, or 60px */text-align:center;color: #fff;margin-bottom: 60px;}
.slider-about {margin-top:200px; padding-bottom:200px;}
.slider-about .slick-list.draggable{padding:0px !important;}
.slider-about .slick-dots {
      position: relative;  
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    margin-top: 80px;
}
.board-slider{background: linear-gradient(180deg, #7a89ff -100%, #404040 50%);
    border-top: 5px solid #7A89FF;
    padding: 50px 0px 0px 0px;
    border-radius: 10px;}
.board-slider .slick-prev { 
    left: 5px;
	z-index:9999;
}
.board-slider .slick-next { 
    right: 5px;
	z-index:9999;
}
.board-slider .slick-prev { 
    width: 30px;
    height: 30px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: #fff;
    border: none;
    outline: none;
    background: transparent;
}
 .board-slider .slick-next { 
    width: 30px;
    height: 30px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: #fff;
    border: none;
    outline: none;
    background: transparent;
}
.life-gr{
    padding-top: 200px;
}
.we1{ 
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #F4F4F4;
    margin-bottom: 40px;
    margin-top: 60px;
}
.mb-25{margin-bottom:25px;}
.col-lg-6.st{text-align:right;}
p.ofc-text{font-family: 'Poppins';
font-style: normal;
font-weight: 300;
font-size: 12px;
line-height: 150%;
/* identical to box height, or 18px */


color: #FFFFFF;}
.our-office .bg  .col-lg-12 {
    padding-left: 15px;
}
.show-hide{   }
.show-hide p{font-size: 14px;
    text-align: center;
	margin-bottom:40px;}

.toggl p.p1 {
    margin-bottom: 0;
    border: 1px solid #FF723B;
    border-radius: 30px;
    padding: 15px;
    margin-right: 80px;
}
.toggl p.p1:hover{ 
    background: #FF723B; 
}
.toggl p a:hover{color:#fff !important;}
.toggl p:hover a{color:#fff !important;}
.toggl p.p2 {
    margin-bottom: 0;
    border: 1px solid #28C2D1;
    border-radius: 30px;
    padding: 15px;
    margin-left: 80px;
}
.toggl p.p2:hover{ 
    background: #28C2D1; 
}
.unlock{padding: 150px 0px; width: 900px;
    margin: 0 auto;}

.social img{width:50px;}
.ecosystem .inside-gif {
    width: 850px;
    margin: 0 auto;
}
.modal-content .col-lg-9.col-12{
    overflow-y: scroll;
    height: 630px;
    overflow-x: hidden;
    } 
.app_google p { 
    font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-size: 12px;
line-height: 120%; 
 margin-bottom: 5px;
}
.mfp-auto-cursor .mfp-content {
    cursor: auto;
    top: 50px;
}

br.desk_none{display:none}
.desk_none{display:none}
@media screen and (min-width:320px) and (max-width:992px){
	
 br.desk_none{display:block!important}
.desk_none{display:block}
.mob_none{display:none}

.dropbtn {
  /* background-color: #04AA6D; */
  /* color: white; */
  padding: 16px;
  font-size: 16px; 
  border: none;
  cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
  /* background-color: #3e8e41; */
}

.dropdown {
  float: right;
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #333333;
  min-width: 145px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  right: 0;
  z-index: 1;
}

.dropdown-content a { 
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;}
.dropdown{
    position: absolute;
    right: 0px;
    top: -20px;
    }
.dropdown img{width: 65px;}
.mfp-iframe-holder{overflow:hidden;}
.mfp-auto-cursor .mfp-content {
    cursor: auto;
    top: 0px;
}
.modal-content .col-lg-9.col-12 {
    overflow-y: hidden;
    height: auto;
    overflow-x: hidden;
} 
.unlock{padding: 60px 0px;width: auto;}
.fiance1 p.para-second {
    font-weight: 600;
font-size: 13px;
line-height: 20px;
}
.ecosystem .inside-gif {
    width: auto;
    margin: 0 auto;
}
.team-icons img {
    margin-top: 3px;
}
.social {
      justify-content: flex-start;  
    width: 50%;
    align-items: center; 
    margin: 0 auto;
}
.third_img_sec .slick-slide{padding-left: 10px;
} 
.modal .inside_profile {
    text-align: center;
    /* padding: 57px; */
    margin-bottom: 0px; 
}
.centered img{width: 50px;} 
.toggl p.p1 {
    margin-bottom: 0;
    border: 1px solid #FF723B;
    border-radius: 27px;
    padding: 6px;
    margin-right: 10px;
}
.toggl p.p2 {
    margin-bottom: 0;
    border: 1px solid #28C2D1;
    border-radius: 27px;
    padding: 6px;
    margin-left: 10px;
}
.career-slider .slick-next:before, .career-slider .slick-prev:before {
    
    font-family: cursive;
}
.our-office {
    margin-top: 30px;
}
.show-hide p { 
    margin-bottom: 0px;
}
.board .col-lg-2{    margin-bottom: 0px !important;}
.board .inside_profile {
    text-align: center;
    /* padding: 57px; */
    margin-bottom: 0px;
}
.board p { 
    margin: 0;
}
.life-gr {
    padding-top: 80px;
}
.team-section {
    padding-top: 0px !important;
}
.resource-sec p {
    padding-top: 10px;
}
.l-wrap {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    display: block;
}
	.pad-20 {
    padding: 0px 0px;
    margin-top: 64px;
}
#banner1 h1 {
    font-weight: 600;
    font-size: 30px;
    line-height: 120%;
    text-align: center;
    color: #F4F4F4;
    padding: 20px 0px 5px 0px;
}
#banner1 p {    
   font-weight: 300;
font-size: 15px;
line-height: 120%; }
.fiance1 {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 50px;
}
.plan-section h3.h2 {

    font-weight: 500;
    font-size: 30px;
    line-height: 111.5%;
}
.plan-section h3.h2c {
    padding-bottom: 20px;
    font-weight: 500;
    font-size: 30px;
    line-height: 111.5%;
}
.toggl p a {
    padding-right: 15px;
    font-weight: 600;
    font-size: 10.3392px;
    line-height: 16px;
	padding-left: 15px;
}
.toggl img {
    padding-right: 27px;
    width: 100px;
}
.plan-section {
    padding-left: 0;
    margin-top: 30px;
}

nav.header {
    padding: 10px 0;
	text-align: center;
}

#banner1 {
	background-image: url(https://stage.dev.gradright.com/wp-content/uploads/2024/07/Website-graphics.png);
	background-repeat: no-repeat, repeat;
	padding: 15px;
	background-position: center;
	height: 100vh;
	padding-bottom: 0;
	background-size: contain;
	text-align: center;
	margin: 0 auto;
	max-width: 100%;
}
.fiance1 h2 {
    padding-bottom: 20px;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
}
.fiance1 ul li {
    font-weight: 300;
font-size: 12px;
line-height: 150%;
}
.fiance1 ul {
    padding: 0;
    padding-left: 20px;
}
.fiance1 p.para {
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
}
.fiance1 .quotes {
    background: #404040;
    position: relative;
    padding: 15px;
    border: 1px solid #000000;
    border-radius: 10px;
    margin-top: 0;
    margin-left: 0;
    width: 100%;
    background: linear-gradient(180deg, #7A89FF -100%, #404040 50%);
    border-top: 3px solid #7A89FF;
}

.quotes p {
    font-weight: 400;
font-size: 12.2717px;
line-height: 18px;
}
.quotes img.img-logo {
    /* object-fit: cover; */
    width: 85px;
    height: 30px;
}
.quotes img.img-quote {
    width: 33.13px;
    height: 33.13px;
    left: -10px;
    top: -18px;
}
.pallrax1 {
    margin-bottom: 50px;
}
.pallrax2 {
    margin-bottom: 50px;
}  
.fiance1 .quotes1 {
    background: #404040;
    position: relative;
    padding: 15px;
    border: 1px solid #000000;
    border-radius: 10px;
    margin-top: 0px;
    margin-left: 0;
    width: 100%;
    background: linear-gradient(180deg, #7A89FF -100%, #404040 50%);
    border-top: 3px solid #7A89FF;
}
.fiance1 .img-vid {
    background: #404040;
    position: relative;
    padding: 0px;
    border: 1px solid #000000;
    border-radius: 10px;
    margin-top: 0px;
    margin-left: 0;
    width: 100%;
    background: linear-gradient(180deg, #7A89FF -100%, #404040 50%);
    border-top: 3px solid #7A89FF;
}
.smarter {
    padding: 125px 0px;
}
.resource-sec {
    padding-left: 20px;
    margin-top: 20px;
    padding-right: 20px;
}
.resource-sec .d-flex{display: block !important;}
.res1 {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 0px;
    padding-bottom: 0;
}
.Social-media {
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    padding: 100px 20px;
}
.media p {
   font-weight: 500;
   font-size: 20px;
   line-height: 30px;
} 
footer {
    background: #181818;
    padding: 50px 20px 20px 20px;
} 
footer .df {
    display: block;
    padding: 0;
}
footer .col-lg-2 {
    flex: 0 0 50%;
    max-width: 50%; 
}  
footer .mob-footer{display:flex; margin-top: 35px;} 
.header-fixed button.navbar-toggler.collapsed{display:none;}
.mob-gif{
    padding-top: 0px;
    padding-bottom: 0px;
    /* margin-top: -30px; */
    /* margin-bottom: -30px; */
	text-align:center;
    }

.quotes1 h4.ripote {
    font-weight: 600;
font-size: 9.21319px;
line-height: 14px;

}
.quotes h4.ripote {
    font-weight: 600;
    font-size: 9.21319px;
    line-height: 14px;
}
.quotes1 p.ripote {
    font-weight: 400;
font-size: 8.63736px;
line-height: 13px;
}  
.quotes p.ripote {
    font-weight: 400;
font-size: 8.63736px;
line-height: 13px;
}  
.quotes1 img{width: 30px;}
.quotes img{width: 30px;}
.img-vid h4.ripote {
    font-weight: 600;
font-size: 9.21319px;
line-height: 14px;
}
.img-vid p.ripote {
    font-weight: 400;
font-size: 8.63736px;
line-height: 13px;
}
.img-vid img.icon{width: 30px;}
input.blus { 
    width: 100px;
    height: 40px; 
}
input.blus::before { 
    width: 40px;
    height: 40px; 
}
input.blus:checked::before {
    transform: translateX(150%); 
}
.resource-sec h3 {
    font-weight: 500;
font-size: 26px;
line-height: 39px;
    padding-left: 15px;
}
.resource-sec .border-white { 
    padding: 10px;
}
.resource-sec p a { 
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
	padding-top: 0px;
}
.resource-sec .col-lg-6.ml {
     margin-left: 0px; 
}
.resource-sec .col-lg-12{padding:0;}
.resource-sec h4 { 
    padding: 5px 0px 5px 0px;
    font-weight: 600;
    font-size: 10px;
    line-height: 125.5%;
}
.resource-sec .bw p a {
     
    padding: 5px 0px 5px 0px;
    font-weight: 300;
    font-size: 8px;
    line-height: 125.5%;
}
.resource-sec p.date {
    padding-top: 0px;
    margin: 0;
}
.resource-sec .bw { 
    margin-bottom: 10px; 
}
.resource-sec p.read {
    padding-top: 0;
}
.res1 .quotes p { 
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
}
.res1 .quotes img.img-quote { 
    width: 25.39px;
    height: 25.39px;
	left: -10px;
    top: -10px;
}
.res1 .quotes {  
    padding: 15px;
    border: 1px solid #fff; 
    margin-top: 25px;
    margin-left: 0; 
}
.social p a { 
    font-weight: 500;
    font-size: 10px;
    line-height: 15px;
	margin-right: 0;
}
.social img { 
    width: 20px;
    height: 20px;
}
.mob-footer .col-lg-2{padding-left:0;}
footer .df .col-lg-6 { 
    padding-right: 0; 
}
footer h4 { 
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}
footer p { 
    font-weight: 400;
    font-size: 10px;
    line-height: 150%;
	padding-bottom: 0 !important;
}
footer .form-control.text {
    height: 35px;
    background: #D9D9D9;
    margin-bottom: 15px;
}
footer .form-control.subscribe {
    padding: 7px 0px;
    margin-top: 25px;
}
footer ul { 
    margin-top: 5px;
}
footer ul li a { 
    font-weight: 400;
    font-size: 9px;
    line-height: 14px;
}
footer ul li { 
    padding-bottom: 5px;
}
footer h5 {
    font-weight: 600;
    font-size: 10px;
    line-height: 120%;
}
.col-lg-6.col-12 .social-icons { 
    margin-top: 30px;
	text-align: center;
    justify-content: center;
}
.google-app img {
    height: 42px; 
    width: 113px;
}
.google-app {
    padding-top: 15px;
}
.copyright p { 
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
}



/* -------fund right page responsive-------- */

#fund-banner p { 
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    opacity: 0.1;
	
}
#fund-banner h1 { 
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
}
#fund-banner { 
    background-image: url(https://stage.dev.gradright.com/wp-content/uploads/2024/07/FR-1.png);
    background-position: right bottom, left top;
    background-repeat: no-repeat, repeat;
    padding: 15px;
    background-position: bottom;
    height: 85vh; 
    padding-bottom: 0;
    background-size: cover;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
}
.plan-section h3.sr {
  
    font-weight: 500;
    font-size: 30px;
    line-height: 111.5%;
}
.plan-section h3.sr1 {

    color: #FFFFFF;
    padding-bottom: 10px;
    font-weight: 500;
    font-size: 30px;
    line-height: 111.5%;
}
input.orang {
    width: 100px;
    height: 40px;
}
input.orang::before {
    width: 40px;
    height: 40px;
}
.education h3.sr {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 14.5075px;
    line-height: 140%;
}
.education .smarter1 {
    padding: 100px 0 30px 0px;
}
.education { 
    padding-left: 20px;
    padding-right: 20px; 
}
.education p {
    padding-bottom: 40px;
    font-weight: 600;
    font-size: 9.75865px;
    line-height: 15px;
    margin: 0;
}
/* -------select right page responsive-------- */

#select-banner p { 
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
}
#select-banner h1 { 
    font-weight: 600;
    font-size: 25px;
    line-height: 120%;
}
#select-banner { 
	background-image: url(https://stage.dev.gradright.com/wp-content/uploads/2024/07/sr3.png);
    background-repeat: no-repeat, repeat;
	background-position: center;
    padding: 15px;
    height: 85vh;
    padding-bottom: 0;
    background-size: contain;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
}
/* -------About us page responsive-------- */

#about-banner p { 
    padding-top: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
}
#about-banner h1 { 
    font-weight: 600;
    font-size: 25px;
    line-height: 120%;
}
#about-banner { 
background-image: url(../img/about-mobile-banner.gif);
    background-position: right bottom, left top;
    background-repeat: no-repeat, repeat;
    padding: 15px;
    background-position: bottom;
    height: 85vh;
    padding-bottom: 0;
    background-size: cover;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
}
.ecosystem {
    margin-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 100px;
}
.ecosystem h3 { 
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
}
.ecosystem p.para { 
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.ecosystem span {
    position: relative;
    top: 0;
}
.ecosystem .mobimg img{rotate: 90deg;margin-top: -110px;}
.ecosystem .content p { 
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
}
.ecosystem .content p.p1 {
    padding: 0px 0px;
}
.ecosystem .content p.p2 {
    padding: 0px 5px;
}
.ecosystem .content p.p3 {
    padding: 0px 0px;
}
.ecosystem .content {
    margin-top: -20px;
    display: flex;
    flex-direction: row-reverse;
    text-align: center;
}
.ecosystem .col-lg-12.pright {
    padding: 0px 0px;
}
.vicious h3 { 
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
}
.vicious {
    margin-top: 50px;
	padding-left:20px;
	padding-right:20px;
}
.section-white_distribution p { 
    font-weight: 700;
    font-size: 9px;
    line-height: 150%;
} 
.section-white_distribution h4 { 
    font-weight: 700;
    font-size: 12px;
    line-height: 150%;
}
.black-intelligence_card-wrapper { 
    padding: 15px;
grid-column-gap: 1em;	
min-height: 8.4em;
}
.black-intelligence_card {
    min-height: 35em;
}
.black-intelligence_card-wrapper.is-one-reverse { 
    border: 2px solid #BDADFF;
}
.black-intelligence_card-wrapper.is-two-reverse { 
    border: 2px solid #FC8C50;
}
.black-intelligence_card-wrapper.is-three-reverse { 
    border: 2px solid #6FCCFE;
}
.black-intelligence_card-left-wrapper{width:50%;}
.black-intelligence_card-right-wrapper{width:50%;}
.most p {  
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.section-white_distribution.z-index-15 { 
    margin-bottom: 50px;
}
.most{padding-left:20px;
	padding-right:20px;}
.most p span:before { 
display:none;
    position: absolute;
    top: 40px;
    width: 105px;
    height: 68%;
    background-image: url(../img/dandiiiii.svg);
    background-repeat: no-repeat;
}
.most p span { 
border-bottom: 2px solid #fbd105;
}
.about-section p { 
    padding-top: 40px;
    font-weight: 400;
    font-size: 11.1248px;
    line-height: 120%;
}
.about-section h3 { 
    font-weight: 400;
    font-size: 34px;
    line-height: 111.5%;
}
.about-section .smarter {
    padding: 80px 0px;
}
.about-section p { 
    margin-bottom: 30px;
    padding-top: 40px;
}
.slider-about h3 { 
    margin-bottom: 60px;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
}
.slider-about {
    margin-top: 110px;
    padding-bottom: 110px; 
}
.slider-about .slick-dots { 
    margin-top: 20px;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.wrap {
    position: relative;
    z-index: 100;
    width: 100%;
    height: 100%;
    padding: 0px 0;
    overflow: hidden;
}
.item.slick-slide {
    width: 250px;
    height: 250px !important;
    transition: transform .4s;
    position: relative;
}
.about-section { 
    margin-top: 100px;
}
.black-intelligence_card.is-three-reverse {
    padding-top: 20.75em;
}
.black-intelligence_card.is-two-reverse {
    padding-top: 19.75em;
}
/* -------Team page responsive-------- */

#banner-team p {
    padding-top: 0px;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
}
#banner-team h1 {
    font-weight: 600;
    font-size: 25px;
    line-height: 120%;
    padding: 25px 0px 5px 0px;
}
#banner-team {background-image: url(../img/team-mobile-banner.gif);background-repeat: no-repeat, repeat;padding: 15px;background-position: center;height: auto;padding-bottom: 0;background-size: cover;text-align: center;margin: 0 auto;max-width: 100%;margin-bottom: 65px;}
.team-section .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px;
}
.team-section h5 {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    min-height: 40px;
	padding-top: 5px;
	margin: 0;
}
.team-section h6 { 
    font-weight: 300;
    font-size: 9px;
    line-height: 130%;
	min-height: 34px;
	margin: 0; 
}
.team-section{padding-left:20px; padding-right:20px;}
.pop-mob{padding:0px 20px;margin-bottom: 20px;}
.pop-mob .col-4 img{     border: 1px solid #fff;
    padding: 5px 8px;}
.pop-mob .col-8 p a{
    margin: 0;
    min-height:auto !important;
    margin-top: 1px;
	padding-top: 2px;
    font-family: 'Poppins';
    font-size: 12px;
    font-weight: 300;
    font-style: normal;
    line-height: 130%;
    text-align: center;
    color: #BDADFF;
    padding-bottom: 7px;  
    }
.pop-mob .col-8 a{text-decoration:none;font-family: 'Poppins';font-style: normal;font-weight: 400;font-size: 8px;line-height: 12px;
/* identical to box height */text-align: center;color: #F4F4F4;border: 1px solid #fff; padding: 5px 15px;}
.pop-mob .col-4, .pop-mob .col-8{padding:0;}
.team-section img { 
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}
.team-section h3 {
    padding-left: 0;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    margin-top: 20px;
}
.team-section{padding-left:20px; padding-right:20px;}
.board-slider { 
    padding: 20px 0px 0px 0px; 
}
.board-slider .slick-prev {
    width: 20px;
    height: 20px; 
}

.board-slider .slick-prev {
    left: 0; 
}
.board-slider .slick-next {
    width: 20px;
    height: 20px; 
}

.board-slider .slick-next {
    right: 0; 
}
.team-section .col-lg-2 { 
    margin-bottom: 35px;
}
.team-icons a {
    border: 1px solid #fff;
    border-radius: 0;
    padding: 0;
    align-items: center;
    margin-right: 0;
    display: block;
    width: 25px;
    height: 25px;
    background: #fff;
    border: 0.5px solid #28C2D1;
}
.team-icons {
    position: absolute;
    right: 0;
    bottom: 0;
}
.team-icons img{display: inline !important;
}
.life-gr h3 { 
    padding-left: 0px;
    margin-bottom: 30px; 
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
	text-align:center;
}
.life-gr .third_img_sec {
    display: flex;
    padding-left: 0;
}
.life-gr .third_img_sec .img5 {
    width: 174px !important; 
}
.plan-team h3.h2 { 
    padding-left: 35px;
    font-weight: 600;
    font-size: 25.5051px;
    line-height: 111.5%;
}
.plan-team h3.h2c {
    text-align: right;
    padding-right: 35px;
    padding-left: 0px;
    padding-bottom: 10px;
    font-weight: 600;
    font-size: 25.5051px;
    line-height: 111.5%;
}
.plan-team .smarter3 {
    padding: 130px 0px;
}
.plan-team { 
    padding-left: 0;
    padding-right: 0;
    margin-top: 0px; 
} 
.plan-team p.we {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 8.43241px;
    line-height: 13px;
}
.we1 { 
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
}
.div-sound {
    padding-top: 10px;
}
.div-sound p.p { 
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 9.58389px;
    line-height: 14px;
}
.career-slider ul li { 
    font-weight: 600;
    font-size: 8.79463px;
    line-height: 13px;
}
.career-slider .cont-sec p {
    font-weight: 400;
    font-size: 7.03571px;
    line-height: 11px;
    padding: 0;
}
.career-slider .cont-sec ul { 
    padding: 0;
	margin-bottom:0;
}
.our-office h3 { 
    padding-left: 0px;
    margin-bottom: 20px; 
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}
.our-office {
    padding-bottom: 15px;
    padding: 25px;
}
.our-office .col-lg-12{ 
    padding: 0px;
}
our-office .row.bg {
    padding: 10px; 
    margin-bottom: 20px; 
    border-top: 3px solid #7A89FF; 
}
.our-office p { 
    padding-top: 10px 0px; 
    font-weight: 500;
    font-size: 10px;
    line-height: 15px;
}
nav {
  padding: 9px;
  position: relative;
  background: #000;
  z-index: 1;
  width: 100%;
}
nav::after {
  content: "";
  display: block;
  clear: both;
}
hgroup {
  /* float: right; */
  margin: 2px 2px 2px 10px;
  top: -43px;
  position: relative;
  /* z-index: 9; */
}
hgroup img{  z-index: 9; position:relative; 
}
aside {
  position: absolute;
  width: 100%;
  height: 90vh;
  background: #181818;
  left: -100%;
  top: 0;
  bottom: 0;
  box-sizing: border-box;
  padding-top: 70px;
  transition: all 0.4s ease;
}
aside.active {
  left: 0;
  background: #181818;
  width: 70%;
  height: 90vh;
}
aside a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  background: #181818;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
/* identical to box height, or 24px */
  color: #F4F4F4;
  padding-left: 50px;
}
.toggle-wrap {
  padding: 10px;
  position: relative;
  cursor: pointer;
  float: left;

  /*disable selection*/
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.toggle-bar,
.toggle-bar::before,
.toggle-bar::after,
.toggle-wrap.active .toggle-bar,
.toggle-wrap.active .toggle-bar::before,
.toggle-wrap.active .toggle-bar::after {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.toggle-bar {
  width: 30px;
  margin: 10px 0;
  position: relative;
  border-top: 4px solid #fff;
  display: block;
}
.toggle-bar::before,
.toggle-bar::after {
  content: "";
  display: block;
  background: #fff;
  height: 4px;
  width: 30px;
  position: absolute;
  top: -12px;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -ms-transform-origin: 13%;
  -webkit-transform-origin: 13%;
  transform-origin: 13%;
}
.toggle-bar::after {
  top: 4px;
  background: #fff;
}
.toggle-wrap.active .toggle-bar {
  border-top: 4px solid transparent;
}
.toggle-wrap.active .toggle-bar::before {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.toggle-wrap.active .toggle-bar::after {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.mobile_menu{height: 60px;}


aside small a {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
/* identical to box height, or 18px */
    color: #F4F4F4;
    padding-left: 80px !important;
    padding-bottom: 10px;
}
a.mb-top{padding-top:30px;}
.team-section .modal-content { 
    padding: 20px; 
    width: 90%;  
}
.team-section .modal-content h5 {
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
    min-height: auto;
}
.team-section .modal-content h6 {
    padding-top: 0px; 
    padding-bottom: 0px;
    /* min-height: 40px; */
    font-weight: 300;
    font-size: 8px;
    line-height: 130%;
}
.team-section .modal-content h3 {
    padding-bottom: 10px;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    text-align: left;
    margin-top: 0;
    margin-bottom: 10px;
}
.team-section .modal-content p.p1 {
    padding: 0px 0px;
    font-weight: 500;
    font-size: 10px;
    line-height: 150%;
    min-height: auto;
}
.team-section .modal-content .color-bg { 
    padding: 20px;
    margin-bottom: 20px;
    margin-top: 10px;
	
}
.col-lg-2.col-6.pr-60{padding-left: 45px;
    padding-right: 0;}
.fiance1 p.purple {
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
}
.mb-25{margin-bottom:0px !important;}
} 
 .stickyy {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 15%;
}  
.our-office .col-lg-12{padding-left:0;}
.board-slider .slick-prev:before {
  content: "<";
  font-size: 30px;
  font-stretch: extra-condensed;
  font-weight: 700;
  font-family: monospace;
}

.board-slider .slick-next:before {
  content: ">";
  font-size: 30px;
  font-stretch: extra-condensed;
  font-weight: 700;
  font-family: monospace;
} 
.career-slider .slick-prev:before {
  content: "<";
  font-size: 30px;
  font-stretch: extra-condensed;
  font-weight: 700;
  font-family: monospace;
}

.career-slider .slick-next:before {
  content: ">";
  font-size: 30px;
  font-stretch: extra-condensed;
  font-weight: 700;
  font-family: monospace;
} 
.team-section .modal-content img{
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}
.team-section {padding-top:100px;}
.resource-sec p.date {
    padding-top: 18px;
    position: absolute;
    bottom: 0;
}










 
  .popup-youtube{
  position: relative;
  text-align: center;
  color: white;
}
 .centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.privacy .col-lg-12{padding-left:5px; padding-right:5px;}
.privacy h1{font-family: 'Poppins';
font-style: normal;
font-weight: 600;
font-size: 50px;
line-height: 75px;
/* identical to box height */
    padding: 100px 0px;
text-align: center;

color: #F4F4F4;
}
.privacy h4{font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-size: 22px;
line-height: 166%;
/* or 33px */
text-decoration:underline;
padding-top: 30px;
color: #F4F4F4;}
.privacy p{font-family: 'Poppins';font-style: normal;font-weight: 300;font-size: 16px;line-height: 26px;
/* or 33px */color: #F4F4F4;}
.privacy ul li{font-family: 'Poppins';font-style: normal;font-weight: 300;font-size: 16px;line-height: 26px;
/* or 33px */margin-bottom: 10px;color: #F4F4F4;}
.privacy ol li{font-family: 'Poppins';font-style: normal;font-weight: 300;font-size: 16px;line-height: 26px;
/* or 33px */margin-bottom: 10px;color: #F4F4F4;}
.privacy a{    color: #BDADFF;}
.relat{ position:relative}
.pad-20.blur{filter: blur(4px);
    -webkit-filter: blur(4px);}
.fiance1 .sec2 {
    margin-top: -60px;
    width: 85%;
}
.content{padding-bottom:100px;}

 @media screen and (min-width:2400px){
    .wheel-container .years {
        left: 16%;
    }
    .content-panel {
        left: 40%;
    }
}

 @media screen and (min-width:2133px){
     
   .wheel {
        left: -33%;
    }
 } 

 @media screen and (min-width:1920px){
	 
	 #banner-team {
    background-image: url(../gif/team/teampage-bg-elements.gif);
    background-position: right bottom, left top;
    background-repeat: no-repeat, repeat;
    padding: 15px;
    background-position: center;
    height: 80vh;
    padding-bottom: 500px;
    background-size: cover;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
}
    .content-panel {
        left: 50%;
    }
 }  
@media screen and (min-width:768px) and (max-width:1024px){
	.resource-sec h4 {
    padding: 5px 0px 5px 0px;
    font-weight: 600;
    font-size: 20px;
    line-height: 125.5%;
}
.plan-section h3.h2, .plan-section h3.sr, .plan-section h3.sr1{text-align:center;}
.plan-section h3.h2c{text-align:center;}
.fiance1 .img-vid { 
    width: 60%;
    margin: 0 auto;
}
.resource-sec .bw p a {
    padding: 5px 0px 5px 0px;
    font-weight: 300;
    font-size: 14px;
    line-height: 125.5%;
} 
}
@media screen and (min-width:1241px) and (max-width:1466px){}



.page-id-806 {
    background: #ffffff;
}
.page-id-806 .pad-20 {
    padding: 0px 0px;
    margin-top: 86px;
}
.page-id-806 .homesection1 {
    position: relative;
    background: #1b1b1b;
    color: #fff;
    clear: both;
    padding: 110px 0 0 0;
}
.page-id-806 .main-title h1{
    padding: 0px 0px 5px 0px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 70px;
    line-height: 60px;
    text-align: center;
    color: #bdadff;
}
.page-id-806 .search-bar {
    position: relative;
    clear: both;
    text-align: center;
    padding: 55px 0 35px 0;
    border-bottom: 2px solid #f4f4f4;
}
.page-id-806 .search-form input {
    border-radius: 25px;
    height: 40px;
    width: 230px;
    position: relative;
    clear: both;
    outline-offset: 0;
    border: 0;
    padding-left: 25px;
}

.page-id-806 .search-submit {
    display: none;
}

.page-id-806 .homesection2 {
    position: relative;
    background: #1b1b1b;
    color: #fff;
    clear: both;
    padding: 0;
    padding-bottom: 60px;
}

.page-id-806 .sub-title h2 {
    padding: 40px 0px 35px 0px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 45px;
    text-align: center;
    color: #F4F4F4;
}


.page-id-806 .feature-video-post-box-inner  img{
    width: 100%;
}

.page-id-806 .f-content-bx .featured-post-description {
    font-size: 1.1rem;
    width: 100%;
    margin-bottom: 22px;
}

.page-id-806 .feature-video-post-box-inner .f-video-title {
    font-weight: 500;
    font-size: 1.3rem;
    color: #fff;
    margin-top: 16px;
    line-height: 28px;
}

.page-id-806 .featured-post-category {
    font-weight: 300;
    margin-bottom: 22px;
	font-size: 1.1rem;
    text-transform: uppercase;
}

.page-id-806 .f-content-bx .featured-post-title{
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 40px;
    margin-bottom: 22px;
}

.page-id-806 .f-post-author {
    display: flex;
    align-items: center;
}

.page-id-806 .f-post-author-pic{
    width: 50px;   
}

.page-id-806 .f-post-author-content{
    width: calc(100% - 62px);
    padding-left: 10px;
}

.page-id-806 .f-post-author-content .auth-name{
    font-size: 1rem;
}

.page-id-806 .f-post-author-content .p-date {
    font-size: 1rem;
    margin-left: 20px;
}

.page-id-806 .f-content-bx{
    position: relative;
    padding-right: 10%;
    width: 95%;    
}

.page-id-806 .f-content-bx:after {
    content: "";
    width: 2px;
    height: calc(100% + 60px);
    position: absolute;
    background-color: #fff;
    top: 0;
    right: 0px;
}
.page-id-806 .f-content-bx-2 {
    position: relative;
    padding-right: 10%; 
	width: 95%;
}
.page-id-806 .featuredSection-2 {
    background-color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-id-806 .f-content-bx-2 .featured-post-title {
    font-weight: 700;
    font-size: 1.75rem;
    color: #000;
    width: 100%;
    line-height: 40px;
    margin-bottom: 22px;
}

.page-id-806 .f-content-bx-2 .featured-post-description {
	font-size: 1.1rem;
    width: 100%;
    margin-bottom: 22px;
}

.page-id-806 .f-post-2 .f-video-title{
    color: #000000;
}

.page-id-806 .f-content-bx-2:after {
    content: "";
    width: 2px;
    height: calc(100% + 60px);
    position: absolute;
    background-color: #000;
    top: -60px;
    right: 0;
}

.page-id-806 .home-category-section{
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #fff;
    
}

.page-id-806 .home-category-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
}

.page-id-806 .home-category-tabs-sec{
    position: relative;
    margin-top: 20px;
}

.page-id-806 .home-category-tabs-sec .nav-tabs {
    justify-content: center;
    border-bottom: 0px;
    gap: 12px;
}
.page-id-806 .home-category-tabs-sec .nav-tabs .nav-link {
    background-color: #e4e7ff;
    color: #000;
    font-size: 1.2rem;
    border-radius: 44px;
        border: 0px;
}

.page-id-806 .home-category-tabs-sec .nav-tabs .nav-link.active {
    font-weight: normal !important;
    background-color: #8d96dd;
    color: #fff !important;
}

.page-id-806 .tab-post-inner{
    padding-top: 50px;
}

.page-id-806 .tab-block-post{
    margin-top: 20px;
}

.page-id-806 .tab-block-post img {
    width: 100%;
    margin-bottom: 16px;
}

.page-id-806 .tab-block-post h2{
    font-weight: 600;
    font-size: 1.3rem;
    color: #000;
    line-height: 28px;
}

.page-id-806 .tab-block-post p {
	font-weight: 400;
    font-size: 1.1rem;
    color: #000;
    line-height: 25px;
}

.page-id-806 .tab-block-post-outer {
    padding: 0 18px;
}

.page-id-806 .tb-b-right{
    position: relative;
}

.page-id-806 .tb-b-right:after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #000;
    right: 0px;
    position: absolute;
    top: 0px;
}

.page-id-806 .load-more-post-btn{
    padding-top: 50px;
}

.page-id-806 .load-more-post-btn a {
    background-color: #2635b2;
    color: #fff;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 400;
    display: inline-block;
    width: 200px;
    height: 50px;
    line-height: 30px;
    text-align: center;
}
.page-id-806 .home-category-section .load-more-post-btn{
	position: absolute;
    bottom: 20px;
}
.page-id-806 .stu-b-heading{
       color: #000;
    font-size: 1.3rem;
    font-weight: 500;
}


.page-id-806 .load-more-post-btn a:hover{
    background-color: #000;
}

.page-id-806 .homeguest-section{
    background-color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-id-806 .home-page-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
}

.page-id-806 .student-blog-item {
    margin-top: 26px;
}

.page-id-806 .student-blog-thumb img{
    width: 100%;
}

.page-id-806 .st-name{
    font-weight: 300;
    font-size: 1rem;
    color: #000;
    line-height: 1.3;
}

.page-id-806 .uni-name {
    font-weight: 300;
    font-size: 1rem;
    color: #000;
    line-height: 1.3;
   margin-left: 20px;
}

.page-id-806 .st-blog-title{
    font-weight: 400;
    font-size: 1.3rem;
    color: #000;
    line-height: 30px;
}

.page-id-806 .student-blogs-section{
        margin-top: 54px;
}

.page-id-806 .students-blog-sec-inner{
    position: relative;
    padding-right: 10px;
}

.page-id-806 .students-blog-sec-inner:after {
    content: "";
    width: 1px;
    height: 106%;
    background-color: #000;
    position: absolute;
    top: 0;
    right: -5px;
}

.page-id-806 .st-video-item{
    margin-top: 15px;
}

.page-id-806 .st-video-item h4 {
    color: #000;
    font-weight: 300;
    margin-bottom: 22px;
    font-size: 1.1rem;
    text-transform: uppercase;
}


.page-id-806 .st-video-item h2 {
    font-size: 1.3rem;
    color: #000;
    margin-top: 16px;
    line-height: 28px;
}

.page-id-806 .st-video-item img{
    width: 100%;
}

.page-id-806 .grad-contributor {
    margin-top: 70px;
    font-weight: 300;
    font-size: 1.2rem;
    color: #000;
    line-height: 1.3;
}


.page-id-806 .home-video-section{
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #fff;
}

.page-id-806 .video-section {
    background-color: #000;
    padding: 40px 38px;
}

.page-id-806 .video-sec-heading{
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.page-id-806 .video-item-inner h4 {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 300;
    text-align: left;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.page-id-806 .video-item-inner h2 {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 300;
    margin-top: 18px;
}

.page-id-806 .video-item-inner img {
    width: 100%;
}

.page-id-806 .video-slide-section .slick-slide{
    margin: 0 25px 0 0;
}

.page-id-806 .see-all-video {
    text-align: center;
    margin-top: 38px;
}


.page-id-806 .home-new-section{
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #fff;
}

.page-id-806 .see-all-video a {
    background-color: #384ad7;
    color: #fff;
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 500;
    display: inline-block;
    width: 200px;
    height: 60px;
    line-height: 40px;
    text-align: center;
}

.page-id-806 .see-all-video a:hover{
    background-color: #fff;
    color: #384ad7;
}

.page-id-806 .news-item {
    display: flex;
    margin-top: 50px;
}

.page-id-806 .news-thumb{
    width: 200px;
}

.page-id-806 .news-thumb img{
    width: 100%;
}

.page-id-806 .news-content {
    width: calc(100% - 200px);
    padding-left: 20px;
}

.page-id-806 .news-content .news-content-inner{
    margin-top: 10px;
}

.page-id-806 .news-content .news-content-inner p{
    margin-top: 10px;
    font-weight: 300;
    font-size: 1.2rem;
    color: #000;
    line-height: 1.3;
}


.page-id-806 .home-webinar-section{
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #fff;
}

.webinar-blocks{
    padding-top: 10px;
}

.webinar-block {
    position: relative;
    padding: 20px;
    border: 1px solid #2e2e2e;
    border-radius: 12px;
    margin-top: 46px;
}

.webinar-thumb {
    width: 100%;
    height: 250px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.webinar-thumb img{
    width: 100%;
}

.webinar-content{
    position: relative;
}

.webinar-content h2 {
    font-weight: 500;
    font-size: 1rem;
    color: #000;
    line-height: 26px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.webinar-content p {
    margin-top: 10px;
    font-weight: 300;
    font-size: 1rem;
    color: #000;
    line-height: 26px;
}

 .speaker-info{
    display: flex;
}

.speaker-pic{
    width: 50px;
}

.speaker-info-inner{
    width: calc(100% - 50px);
    padding-left: 10px;
}

.speaker-pic img{
    width: 100%;
}

.speaker-name{
    margin-bottom: 0px;
    font-weight: 300;
    font-size: 1rem;
    color: #000;
}

.webinar-date{
    margin-bottom: 0px;
    font-weight: 300;
    font-size: 1rem;
    color: #000;
}

.webinar-register-btn {
    text-align: center;
    margin-top: 34px;
}

.webinar-register-btn a{
    background-color: #2635b2;
    color: #fff;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 500;
    display: inline-block;
    width: 200px;
    height: 50px;
    line-height: 30px;
    text-align: center;
}

.webinar-register-btn a:hover{
    background-color: #000;
    color: #fff;
}


.page-id-806 .form-section{
    background-color: #000;
        padding: 74px 30px;
    min-height: 300px;
}

.page-id-806 .form-heading{
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.page-id-806 .form-sub-heading{
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}



/* category Page css */

.page-id-816 .catsection1 {
    position: relative;
    background: #1b1b1b;
    color: #fff;
    clear: both;
    padding: 128px 0 70px 0;
}

.page-id-816 .category_banner_heading {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
}

.page-id-816 .banner-category-items ul {
    padding-left: 0px;
    text-align: center;
}

.page-id-816 .banner-category-items ul li{
    list-style: none;
    display: inline-block;
}

.page-id-816 .banner-category-items ul li a {
    background-color: #e4e7ff;
    color: #000;
    font-size: 1.4rem;
    padding: 10px 20px;
    border-radius: 30px;
    margin: 8px 6px;
    display: inline-block;
}

.page-id-816 .banner-category-items ul li.active a {
    background-color: #8d96dd;
    color: #fff;
    font-weight: normal;
}

.page-id-816 .banner-category-items{
    margin-top: 110px;
}

.page-id-816 .catsection2{
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #fff;
}


.page-id-816 .category-content-section{
    position: relative;
}

.breadcrum-section .breadcrumb{
    background-color: #fff;
}

.breadcrum-section .breadcrumb li{
   color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 16px;
}

.breadcrum-section .breadcrumb li.active {
    color: #000 !important;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 16px;
}

.breadcrum-section .breadcrumb li a{
   color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 16px;
}

.breadcrum-section .breadcrumb-item+.breadcrumb-item::before{
    color: #000000;
}

.page-id-816 .search-submit {
    display: none;
}

.page-id-816 .search-form input {
    border-radius: 25px;
    height: 40px;
    width: 230px;
    position: relative;
    clear: both;
    outline-offset: 0;
    border: 0;
    padding-left: 25px;
    background-color: #e7e7e7;
}

.page-id-816 .search-form input:focus{
    outline: none;
}

.page-id-816 .category-post-item{
    position: relative;
        margin-top: 40px;
    margin-bottom: 30px;
}

.page-id-816 .c-post-author {
    display: flex;
    align-items: center;
}

.page-id-816 .f-post-author-pic {
    width: 48px;
}

.page-id-816 .f-post-author-pic img{
    width: 48px;
}

.page-id-816 .f-post-author-content {
    width: calc(100% - 48px);
    padding-left: 15px;
}

.page-id-816 .f-post-author-content .auth-name {
    font-size: 1.2rem;
}

.page-id-816 .f-post-author-content .p-date {
    font-size: 1.2rem;
    margin-left: 20px;
}

.page-id-816 .category-post-content h2{
    font-weight: 600;
    font-size: 1.5rem;
    color: #000;
}

.page-id-816 .category-post-content{
    margin-top: 20px;
}

.page-id-816 .category-post-content p{
    font-weight: 300;
    font-size: 1.2rem;
    color: #000;
}

.page-id-816 .category-post-thumb img{
    width: 100%;
    border-radius: 10px;
}

.page-id-816 .sub-category-block h2 {
    background-color: #000;
    color: #fff;
    font-size: 1.4rem;
    padding: 10px 14px;
    text-align: center;
    margin-bottom: 0px;
}

.page-id-816 .sub-category-items {
    background-color: #e4e7ff;
    padding: 30px;
}

.page-id-816 .sub-category-items ul{
    padding-left: 0px;
}


.page-id-816 .sub-category-items ul li{
    list-style: none;
    margin-top: 10px;
}


.page-id-816 .sub-category-items ul li a{
   color: #000; 
   font-size: 1.3rem;
 }
 
.page-id-816 #sub-catDIV ul li a.current {
    color: #2635b2;
    font-weight: 600;
}

.page-id-816 #contfilter-DIV ul li a.current {
    color: #2635b2;
    font-weight: 600;
}

.page-id-816 .country-filter{
    margin-top: 20px;
}

.page-id-816 .related-content {
    padding: 38px 0px 54px 22px;
    border-left: 1px solid #cbcbcb;
}

.page-id-816 .category-related-content-item img{
    width: 100%;
}

.page-id-816 .related-content-heading{
    font-weight: 600;
    font-size: 1.7rem;
    color: #000;
}

.page-id-816 .related-cat-name {
    color: #000;
    font-size: 1.2rem;
    margin: 12px 0 10px 0;
}

.page-id-816 .related-content-title {
    font-weight: 600;
    font-size: 1.2rem;
    color: #000;
    margin-top: 18px;
}

.page-id-816 .category-related-content-item{
    margin-top: 40px;
}


/* blog detail page css*/

.page-id-842 .blog-detail-sec-1 {
    position: relative;
    background: #1b1b1b;
    color: #fff;
    clear: both;
    padding: 128px 0 70px 0;
}

.page-id-842 .blog_d_banner_heading {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 600;
}

 .breadcrum-section .breadcrumb {
    padding: .75rem 0;
}
.page-id-842 .breadcrum-section {
    background-color: transparent;
    margin-top: 36px;
}

.page-id-842 .breadcrum-section .breadcrumb {
   background-color: transparent;
    padding: .75rem 0;
}
    
.page-id-842 .breadcrum-section .breadcrumb li {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    line-height:16px 
}

.page-id-842 .breadcrum-section .breadcrumb li a {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    line-height:16px 
}

.page-id-842 .breadcrum-section .breadcrumb li.active {
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 600;
    line-height:16px 
}

.page-id-842 .breadcrum-section .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}



.page-id-842 .blog-detail-sec-2{
    position: relative;
    padding-bottom: 60px;
    background-color: #fff;
}

.page-id-842 .blog-detail-sec-2:before {
    content: "";
    width: 100%;
    height: 60px;
    background-color: #1b1b1b;
    position: absolute;
    top: 0px;
}

.page-id-842 .blog-detail-img-block {
    position: relative;
    padding-left: 5%;
    padding-right: 5%;
}

.page-id-842 .blog-detail-img-block img{
    width: 100%;
}

.page-id-842 .social-sharing p {
    font-weight: 300;
    font-size: 1.1rem;
    color: #fff;
    margin: 0px;
}

.page-id-842 .blog-detail-content-section{
    margin-top: 50px;
}

.page-id-842 .social-sharing {
    background-color: #000;
    padding: 7px;
}

.page-id-842 .social-share-links{
    margin-top: 18px;
}

.page-id-842 .social-share-links a {
    font-size: 1.4rem;
    color: #fff;
    margin-right: 10px;
}

.page-id-842 .blog-content-block p{
    font-weight: 300;
    font-size: 1.2rem;
    color: #000;
}


.page-id-842 .upcomming-webinar{
    width:100%;
}

.page-id-842 .upcomming-webinar img{
    width:100%;
}

.page-id-842 .blog-d-related-content {
    padding-left: 18px;
    border-left: 1px solid #b3b3b3;
    padding-top: 30px;
    padding-bottom: 30px;
}

.page-id-842 .blog-d-related-content-heading{
    font-weight: 600;
    font-size: 1.2rem;
    color: #000;
}

.page-id-842 .blog-d-related-content-item{
    margin-top: 30px;
    
}


.page-id-842 .blog-related-img img{
    width: 100%;
}

.page-id-842 .blog-d-related-content-item h3{
    font-weight: 500;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 5px;
}

.page-id-842 .blog-d-related-content-item h2 {
    font-weight: 500;
    font-size: 1.3rem;
    color: #000;
    margin-top: 16px;
}

.page-id-842 .c-post-author {
    display: flex;
    align-items: center;
    margin-top: 18px;
}

.page-id-842 .f-post-author-pic {
    width: 40px;
}

.page-id-842 .f-post-author-pic img{
    width: 100%;
}

.page-id-842  .f-post-author-content {
    width: calc(100% - 40px);
    padding-left: 15px;
}

.page-id-842 .f-post-author-content .p-date {
    font-size: 1.2rem;
    margin-left: 20px;
}

.page-id-842 .f-post-author-content .auth-name {
    font-size: 1.2rem;
}


.page-id-842 .add-with-cta {
    padding: 50px;
    background-color: #000;
    margin-top: 50px;
}

.page-id-842 .add-with-cta h2{
    color: #fff;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
}

.page-id-842 .add-with-cta h3{
    color: #fff;
    text-align: center;
    font-size: 2.1rem;
    font-weight: 500;
}


.page-id-842 .blogform-section {
    padding-top: 80px;
}

.page-id-842 .form-section {
    background-color: #000;
    padding: 74px 30px;
    min-height: 300px;
}

.page-id-842 .form-heading {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}


.page-id-842 .form-sub-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}


/* blog detail page css*/
.blog-detail-content-section {
    position: relative;
    clear: both;
    display: block;
    margin: 0;
    padding: 50px 0;
}

.single-post {
    font-weight: 300;
    font-size: 1.2rem;
    color: #000;
}
.single-post h1 {
    position: relative;
    clear: both;
    display: block;
    margin: 10px 0;
    font-size: 1.7rem;
    text-align: left;
    text-transform: capitalize;
    font-family: inherit;
    font-weight: 600;
    line-height: 1.7em;
}

.single-post h2 {
    position: relative;
    clear: both;
    display: block;
    margin: 10px 0;
    font-size: 1.5rem;
    text-align: left;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.5em;
}

.single-post h3 {
    position: relative;
    clear: both;
    display: block;
    font-size: 1.3rem;
    text-align: left;
    text-transform: capitalize;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.3em;
}

.elementor-toc__header {
    display: none !important;
}

.single-post .blog-detail-sec-1 {
    position: relative;
    background: #1b1b1b;
    color: #fff;
    clear: both;
    padding: 45px 0 70px 0;
}

.single-post .blog_d_banner_heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    line-height:45px 
}


.single-post .breadcrum-section {
    background-color: transparent;
    margin-top: 36px;
}

.single-post .breadcrum-section .breadcrumb {
   background-color: transparent;
}
    
.single-post .breadcrum-section .breadcrumb li {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    line-height:16px 
}

.single-post .breadcrum-section .breadcrumb li a {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    line-height:16px 
}

.single-post .breadcrum-section .breadcrumb li.active {
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 600;
    line-height:16px 
}

.single-post .breadcrum-section .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.single-post .blog-detail-sec-2{
    position: relative;
    padding-bottom: 60px;
    background-color: #fff;
}

.single-post .social-sharing p {
    font-weight: 300;
    font-size: 1rem;
    color: #fff;
    margin: 0px;
}

.single-post .social-sharing {
    background-color: #000;
    padding: 7px;
}

.single-post .social-share-links{
    margin-top: 18px;
}

.single-post .social-share-links a {
    font-size: 1.4rem;
    color: #fff;
    margin-right: 10px;
}

.single-post .blog-content-block p{
    font-weight: 400;
    font-size: 1rem;
    color: #000;
}


.single-post .upcomming-webinar{
    width:100%;
}

.single-post .upcomming-webinar img{
    width:100%;
}

.single-post .blog-d-related-content {
    padding-left: 18px;
    border-left: 1px solid #b3b3b3;
    padding-top: 30px;
    padding-bottom: 30px;
}

.single-post .blog-d-related-content-heading{
    font-weight: 600;
    font-size: 1.2rem;
    color: #000;
}

.single-post .blog-d-related-content-item{
    margin-top: 30px;
    
}

.single-post .blog-related-img img{
    width: 100%;
}

.single-post .blog-d-related-content-item h3{
    font-weight: 500;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 5px;
}

.single-post .blog-d-related-content-item h2 {
    font-weight: 500;
    font-size: 1.3rem;
    color: #000;
    margin-top: 16px;
}

.single-post .c-post-author {
    display: flex;
    align-items: center;
    margin-top: 18px;
}

.single-post .f-post-author-pic {
    width: 40px;
}

.single-post .f-post-author-pic img{
    width: 100%;
}

.single-post  .f-post-author-content {
    width: calc(100% - 40px);
    padding-left: 15px;
}

.single-post .f-post-author-content .p-date {
    font-size: 1.2rem;
    margin-left: 20px;
}

.single-post .f-post-author-content .auth-name {
    font-size: 1.2rem;
}


.single-post .add-with-cta {
    padding: 50px;
    background-color: #000;
    margin-top: 50px;
}

.single-post .add-with-cta h2{
    color: #fff;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
}

.single-post .add-with-cta h3{
    color: #fff;
    text-align: center;
    font-size: 2.1rem;
    font-weight: 500;
}


.single-post .blogform-section {
    padding-top: 80px;
}

.single-post .form-section {
    background-color: #1b1b1b;
    padding: 25px 20px;
    min-height: 300px;
    width: 100%;
    display: block;
    margin: 50px auto;
}

.single-post .form-heading {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.single-post .form-sub-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}

.single-post .breadcrum-section {
    background-color: transparent;
    margin-top: 36px;
}

.single-post .breadcrum-section .breadcrumb {
   background-color: transparent;
}
    
.single-post .breadcrum-section .breadcrumb li {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    line-height:16px 
}

.single-post .breadcrum-section .breadcrumb li a {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    line-height:16px 
}

.single-post .breadcrum-section .breadcrumb li.active {
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 600;
    line-height:16px 
}

.single-post .breadcrum-section .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.single-post .blog-detail-sec-2{
    position: relative;
    padding-bottom: 60px;
    background-color: #fff;
}


.single-post .blog-detail-img-block {
    position: relative;
    padding-left: 0;
    padding-right: 0;
	display:block;
	margin:0 auto;
    margin-top: -125px;
    margin-bottom: 35px;
    width: 770px;
    height: 468px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.single-post .social-sharing p {
    font-weight: 300;
    font-size: 1rem;
    color: #fff;
    margin: 0px;
}


.single-post .social-sharing {
    background-color: #000;
    padding: 7px;
}

.single-post .social-share-links{
    margin-top: 18px;
}

.single-post .social-share-links a {
    font-size: 1.4rem;
    color: #fff;
    margin-right: 10px;
}

.single-post .blog-content-block p{
    font-weight: 400;
    font-size: 1rem;
    color: #000;
}


.single-post .upcomming-webinar{
    width:100%;
}

.single-post .upcomming-webinar img{
    width:100%;
}

.single-post .blog-d-related-content {
    padding-left: 18px;
    border-left: 1px solid #b3b3b3;
    padding-top: 30px;
    padding-bottom: 30px;
}

.single-post .blog-d-related-content-heading{
    font-weight: 600;
    font-size: 1.2rem;
    color: #000;
}

.single-post .blog-d-related-content-item{
    margin-top: 30px;
    
}

.single-post .blog-related-img img{
    width: 100%;
}

.single-post .blog-d-related-content-item h3{
    font-weight: 500;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 5px;
}
.single-post .blog-d-related-content-item h2 {
    font-weight: 500;
    font-size: 1.3rem;
    color: #000;
    margin-top: 16px;
}

.single-post .c-post-author {
    display: flex;
    align-items: center;
    margin-top: 18px;
}

.single-post .f-post-author-pic {
    width: 40px;
}

.single-post .f-post-author-pic img{
    width: 100%;
}

.single-post  .f-post-author-content {
    width: calc(100% - 40px);
    padding-left: 15px;
}

.single-post .f-post-author-content .p-date {
    font-size: 1.2rem;
    margin-left: 20px;
}

.single-post .f-post-author-content .auth-name {
    font-size: 1.2rem;
}


.single-post .add-with-cta {
    padding: 50px;
    background-color: #000;
    margin-top: 50px;
}

.single-post .add-with-cta h2{
    color: #fff;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
}

.single-post .add-with-cta h3{
    color: #fff;
    text-align: center;
    font-size: 2.1rem;
    font-weight: 500;
}

.single-post .blogform-section {
    padding-top: 80px;
}

.single-post .form-sub-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}

/* Guest Single Page css */

.guest-blog-template-default {
    font-weight: 300;
    font-size: 1.2rem;
    color: #000;
}
.guest-blog-template-default h1 {
    position: relative;
    clear: both;
    display: block;
    margin: 10px 0;
    font-size: 1.7rem;
    text-align: left;
    text-transform: capitalize;
    font-family: inherit;
    font-weight: 600;
    line-height: 1.7em;
}

.guest-blog-template-default h2 {
    position: relative;
    clear: both;
    display: block;
    margin: 10px 0;
    font-size: 1.5rem;
    text-align: left;
    text-transform: capitalize;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.5em;
}

.guest-blog-template-default h3 {
    position: relative;
    clear: both;
    display: block;
    margin: 10px 0;
    font-size: 1.3rem;
    text-align: left;
    text-transform: capitalize;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.3em;
}

.guest-blog-template-default .blog-detail-sec-1 {
    position: relative;
    background: #1b1b1b;
    color: #fff;
    clear: both;
    padding: 128px 0 70px 0;
}

.guest-blog-template-default .blog_d_banner_heading {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 600;
}


.guest-blog-template-default .breadcrum-section {
    background-color: transparent;
    margin-top: 36px;
}

.guest-blog-template-default .breadcrum-section .breadcrumb {
   background-color: transparent;
}
    
.guest-blog-template-default .breadcrum-section .breadcrumb li {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    line-height:16px 
}

.guest-blog-template-default .breadcrum-section .breadcrumb li a {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    line-height:16px 
}

.guest-blog-template-default .breadcrum-section .breadcrumb li.active {
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 600;
    line-height:16px 
}

.guest-blog-template-default .breadcrum-section .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.guest-blog-template-default .blog-detail-sec-2{
    position: relative;
    padding-bottom: 60px;
    background-color: #fff;
}

.guest-blog-template-default .blog-detail-sec-2:before {
    content: "";
    width: 100%;
    height: 60px;
    background-color: #1b1b1b;
    position: absolute;
    top: 0px;
}

.guest-blog-template-default .blog-detail-img-block {
    position: relative;
    padding-left: 5%;
    padding-right: 5%;
}

.guest-blog-template-default .blog-detail-img-block img{
    width: 100%;
}

.guest-blog-template-default .social-sharing p {
    font-weight: 300;
    font-size: 1.1rem;
    color: #fff;
    margin: 0px;
}

.guest-blog-template-default .blog-detail-content-section{
    margin-top: 50px;
}

.guest-blog-template-default .social-sharing {
    background-color: #000;
    padding: 7px;
}

.guest-blog-template-default .social-share-links{
    margin-top: 18px;
}

.guest-blog-template-default .social-share-links a {
    font-size: 1.4rem;
    color: #fff;
    margin-right: 10px;
}

.guest-blog-template-default .blog-content-block p{
    font-weight: 300;
    font-size: 1.2rem;
    color: #000;
}


.guest-blog-template-default .upcomming-webinar{
    width:100%;
}

.guest-blog-template-default .upcomming-webinar img{
    width:100%;
}

.guest-blog-template-default .blog-d-related-content {
    padding-left: 18px;
    border-left: 1px solid #b3b3b3;
    padding-top: 30px;
    padding-bottom: 30px;
}

.guest-blog-template-default .blog-d-related-content-heading{
    font-weight: 600;
    font-size: 1.2rem;
    color: #000;
}

.guest-blog-template-default .blog-d-related-content-item{
    margin-top: 30px;
    
}

.guest-blog-template-default .blog-related-img img{
    width: 100%;
}

.guest-blog-template-default .blog-d-related-content-item h3{
    font-weight: 500;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 5px;
}

.guest-blog-template-default .blog-d-related-content-item h2 {
    font-weight: 500;
    font-size: 1.3rem;
    color: #000;
    margin-top: 16px;
}

.guest-blog-template-default .c-post-author {
    display: flex;
    align-items: center;
    margin-top: 18px;
}

.guest-blog-template-default .f-post-author-pic {
    width: 40px;
}

.guest-blog-template-default .f-post-author-pic img{
    width: 100%;
}

.guest-blog-template-default  .f-post-author-content {
    width: calc(100% - 40px);
    padding-left: 15px;
}

.guest-blog-template-default .f-post-author-content .p-date {
    font-size: 1.2rem;
    margin-left: 20px;
}

.guest-blog-template-default .f-post-author-content .auth-name {
    font-size: 1.2rem;
}


.guest-blog-template-default .add-with-cta {
    padding: 50px;
    background-color: #000;
    margin-top: 50px;
}

.guest-blog-template-default .add-with-cta h2{
    color: #fff;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
}

.guest-blog-template-default .add-with-cta h3{
    color: #fff;
    text-align: center;
    font-size: 2.1rem;
    font-weight: 500;
}


.guest-blog-template-default .blogform-section {
    padding-top: 80px;
}

.guest-blog-template-default .form-section {
    background-color: #000;
    padding: 74px 30px;
    min-height: 300px;
}

.guest-blog-template-default .form-heading {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.guest-blog-template-default .form-sub-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}


.guest-blog-template-default .blog-detail-sec-1 {
    position: relative;
    background: #1b1b1b;
    color: #fff;
    clear: both;
    padding: 128px 0 70px 0;
}

.guest-blog-template-default .blog_d_banner_heading {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 600;
}


.guest-blog-template-default .breadcrum-section {
    background-color: transparent;
    margin-top: 36px;
}

.guest-blog-template-default .breadcrum-section .breadcrumb {
   background-color: transparent;
}
    
.guest-blog-template-default .breadcrum-section .breadcrumb li {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    line-height:16px 
}

.guest-blog-template-default .breadcrum-section .breadcrumb li a {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    line-height:16px 
}

.guest-blog-template-default .breadcrum-section .breadcrumb li.active {
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 600;
    line-height:16px 
}

.guest-blog-template-default .breadcrum-section .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.guest-blog-template-default .blog-detail-sec-2{
    position: relative;
    padding-bottom: 60px;
    background-color: #fff;
}

.guest-blog-template-default .blog-detail-sec-2:before {
    content: "";
    width: 100%;
    height: 60px;
    background-color: #1b1b1b;
    position: absolute;
    top: 0px;
}

.guest-blog-template-default .blog-detail-img-block {
    position: relative;
    padding-left: 5%;
    padding-right: 5%;
}

.guest-blog-template-default .blog-detail-img-block img{
    width: 100%;
}

.guest-blog-template-default .social-sharing p {
    font-weight: 300;
    font-size: 1.1rem;
    color: #fff;
    margin: 0px;
}

.guest-blog-template-default .blog-detail-content-section{
    margin-top: 50px;
}

.guest-blog-template-default .social-sharing {
    background-color: #000;
    padding: 7px;
}

.guest-blog-template-default .social-share-links{
    margin-top: 18px;
}

.guest-blog-template-default .social-share-links a {
    font-size: 1.4rem;
    color: #fff;
    margin-right: 10px;
}

.guest-blog-template-default .blog-content-block p{
    font-weight: 300;
    font-size: 1.2rem;
    color: #000;
}


.guest-blog-template-default .upcomming-webinar{
    width:100%;
}

.guest-blog-template-default .upcomming-webinar img{
    width:100%;
}

.guest-blog-template-default .blog-d-related-content {
    padding-left: 18px;
    border-left: 1px solid #b3b3b3;
    padding-top: 30px;
    padding-bottom: 30px;
}

.guest-blog-template-default .blog-d-related-content-heading{
    font-weight: 600;
    font-size: 1.2rem;
    color: #000;
}

.guest-blog-template-default .blog-d-related-content-item{
    margin-top: 30px;
    
}

.guest-blog-template-default .blog-related-img img{
    width: 100%;
}

.guest-blog-template-default .blog-d-related-content-item h3{
    font-weight: 500;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 5px;
}
.guest-blog-template-default .blog-d-related-content-item h2 {
    font-weight: 500;
    font-size: 1.3rem;
    color: #000;
    margin-top: 16px;
}

.guest-blog-template-default .c-post-author {
    display: flex;
    align-items: center;
    margin-top: 18px;
}

.guest-blog-template-default .f-post-author-pic {
    width: 40px;
}

.guest-blog-template-default .f-post-author-pic img{
    width: 100%;
}

.guest-blog-template-default  .f-post-author-content {
    width: calc(100% - 40px);
    padding-left: 15px;
}

.guest-blog-template-default .f-post-author-content .p-date {
    font-size: 1.2rem;
    margin-left: 20px;
}

.guest-blog-template-default .f-post-author-content .auth-name {
    font-size: 1.2rem;
}

.guest-blog-template-default .add-with-cta {
    padding: 50px;
    background-color: #000;
    margin-top: 50px;
}

.guest-blog-template-default .add-with-cta h2{
    color: #fff;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
}

.guest-blog-template-default .add-with-cta h3{
    color: #fff;
    text-align: center;
    font-size: 2.1rem;
    font-weight: 500;
}

.guest-blog-template-default .blogform-section {
    padding-top: 80px;
}

.guest-blog-template-default .form-section {
    background-color: #000;
    padding: 74px 30px;
    min-height: 300px;
}

.guest-blog-template-default .form-heading {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.guest-blog-template-default .form-sub-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}

/* category Page css */

.archive.category .catsection1 {
    position: relative;
    background: #1b1b1b;
    color: #fff;
    clear: both;
    padding: 128px 0 70px 0;
}

.archive.category .category_banner_heading {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
}

.archive.category .banner-category-items ul {
    padding-left: 0px;
    text-align: center;
}

.archive.category .banner-category-items ul li{
    list-style: none;
    display: inline-block;
}

.archive.category .banner-category-items ul li a {
    background-color: #e4e7ff;
    color: #000;
    font-size: 1.4rem;
    padding: 10px 20px;
    border-radius: 30px;
    margin: 8px 6px;
    display: inline-block;
}

.archive.category .banner-category-items ul li.active a {
    background-color: #8d96dd;
    color: #fff;
    font-weight: normal;
}

.archive.category .banner-category-items{
    margin-top: 110px;
}

.archive.category .catsection2{
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #fff;
}


.archive.category .category-content-section{
    position: relative;
}

.breadcrum-section .breadcrumb{
    background-color: #fff;
}

.breadcrum-section .breadcrumb li{
   color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    line-height:16px 
}

.breadcrum-section .breadcrumb li.active {
    color: #000 !important;
    font-size: 1.1rem;
    font-weight: 600;
    line-height:16px 
}

.breadcrum-section .breadcrumb li a{
   color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    line-height:16px 
}

.breadcrum-section .breadcrumb-item+.breadcrumb-item::before{
    color: #000000;
}


.archive.category .search-submit {
    display: none;
}

.archive.category .search-form input {
    border-radius: 25px;
    height: 40px;
    width: 230px;
    position: relative;
    clear: both;
    outline-offset: 0;
    border: 0;
    padding-left: 25px;
    background-color: #e7e7e7;
}

.archive.category .search-form input:focus{
    outline: none;
}
.archive.category .category-search {
    margin-top: 0;
    margin-bottom: 0;
    display: block;
    width: 300px;
}

.archive.category .category-search .search-bar input[type='text'] {
    position: relative;
    display: inline-block;
    width: 300px;
    padding: 10px 30px;
    border: none;
    border-radius: 25px;
    margin: 0 auto;
    background: #f5f5f5 !important;
}
.archive.category .category-post-item{
    position: relative;
        margin-top: 40px;
    margin-bottom: 30px;
	padding-right:5%;
}

.archive.category .c-post-author {
    display: flex;
    align-items: center;
}

.archive.category .f-post-author-pic {
    width: 48px;
}

.archive.category .f-post-author-pic img{
    width: 48px;
}

.archive.category .f-post-author-content {
    width: calc(100% - 48px);
    padding-left: 15px;
}

.archive.category .f-post-author-content .auth-name {
    font-size: 1rem;
}

.archive.category .f-post-author-content .p-date {
    font-size: 1rem;
    margin-left: 20px;
}

.archive.category .category-post-content h2{
    font-weight: 600;
    font-size: 1.3rem;
    color: #000;
	line-height:28px;
}

.archive.category .category-post-content{
    margin-top: 20px;
}

.archive.category .category-post-content p{
    font-weight: 400;
    font-size: 1.1rem;
    color: #000;
	line-height:28px;
}
.archive.category .category-post-thumb {
	position: relative;
    clear: both;
    height: 250px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}
.archive.category .category-post-thumb img{
    width: 100%;
    border-radius: 10px;
}

.archive.category .sub-category-block h2 {
    background-color: #000;
    color: #fff;
    font-size: 1.1rem;
    padding: 10px 14px;
    text-align: center;
    margin-bottom: 0px;
    font-weight: 600;
}

.archive.category .sub-category-items {
    background-color: #e4e7ff;
    padding: 20px 25px;
}

.archive.category .sub-category-items ul{
    padding-left: 0px;
    margin-bottom: 0;
}


.archive.category .sub-category-items ul li{
    list-style: none;
    margin-top: 5px;
}


.archive.category .sub-category-items ul li a{
   color: #000; 
   font-size: 1.2rem;
 }
 
.archive.category #sub-catDIV ul li a.current {
    color: #2635b2;
    font-weight: 600;
}

.archive.category #contfilter-DIV ul li a.current {
    color: #2635b2;
    font-weight: 600;
}

.archive.category .country-filter{
    margin-top: 20px;
}

.archive.category .related-content {
    padding: 38px 0px 54px 22px;
    border-left: 1px solid #cbcbcb;
}

.archive.category .category-related-content-item img{
    width: 100%;
}

.archive.category .related-content-heading{
    font-weight: 600;
    font-size: 1.7rem;
    color: #000;
}

.archive.category .related-cat-name {
    color: #000;
    font-size: 1.2rem;
    margin: 12px 0 10px 0;
}

.archive.category .related-content-title {
    font-weight: 600;
    font-size: 1.2rem;
    color: #000;
    margin-top: 18px;
}

.archive.category .category-related-content-item{
    margin-top: 40px;
}


/* Video category Page css */

.archive.video-blog-category .catsection1 {
    position: relative;
    background: #1b1b1b;
    color: #fff;
    clear: both;
    padding: 128px 0 70px 0;
}

.archive.video-blog-category .category_banner_heading {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
}

.archive.video-blog-category .banner-category-items ul {
    padding-left: 0px;
    text-align: center;
}

.archive.video-blog-category .banner-category-items ul li{
    list-style: none;
    display: inline-block;
}

.archive.video-blog-category .banner-category-items ul li a {
    background-color: #e4e7ff;
    color: #000;
    font-size: 1.4rem;
    padding: 10px 20px;
    border-radius: 30px;
    margin: 8px 6px;
    display: inline-block;
}

.archive.video-blog-category .banner-category-items ul li.active a {
    background-color: #8d96dd;
    color: #fff;
    font-weight: normal;
}

.archive.video-blog-category .banner-category-items{
    margin-top: 110px;
}

.archive.video-blog-category .catsection2{
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #fff;
}


.archive.video-blog-category .category-content-section{
    position: relative;
}

.breadcrum-section .breadcrumb{
    background-color: #fff;
}

.breadcrum-section .breadcrumb li{
   color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    line-height:16px 
}

.breadcrum-section .breadcrumb li.active {
    color: #000 !important;
    font-size: 1.1rem;
    font-weight: 600;
    line-height:16px 
}

.breadcrum-section .breadcrumb li a{
   color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    line-height:16px 
}

.breadcrum-section .breadcrumb-item+.breadcrumb-item::before{
    color: #000000;
}

.archive.video-blog-category .search-submit {
    display: none;
}

.archive.video-blog-category .search-form input {
    border-radius: 25px;
    height: 40px;
    width: 230px;
    position: relative;
    clear: both;
    outline-offset: 0;
    border: 0;
    padding-left: 25px;
    background-color: #e7e7e7;
}

.archive.video-blog-category .search-form input:focus{
    outline: none;
}

.archive.video-blog-category .category-post-item{
    position: relative;
        margin-top: 40px;
    margin-bottom: 30px;
}

.archive.video-blog-category .c-post-author {
    display: flex;
    align-items: center;
}

.archive.video-blog-category .f-post-author-pic {
    width: 48px;
}

.archive.video-blog-category .f-post-author-pic img{
    width: 48px;
}

.archive.video-blog-category .f-post-author-content {
    width: calc(100% - 48px);
    padding-left: 15px;
}

.archive.video-blog-category .f-post-author-content .auth-name {
    font-size: 1.2rem;
}

.archive.video-blog-category .f-post-author-content .p-date {
    font-size: 1.2rem;
    margin-left: 20px;
}

.archive.video-blog-category .category-post-content h2{
    font-weight: 600;
    font-size: 1.5rem;
    color: #000;
}

.archive.video-blog-category .category-post-content{
    margin-top: 20px;
}

.archive.video-blog-category .category-post-content p{
    font-weight: 300;
    font-size: 1.2rem;
    color: #000;
}


.archive.video-blog-category .category-post-thumb{
	position: relative;
    clear: both;
    height: 250px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}
.archive.video-blog-category .category-post-thumb img{
    width: 100%;
    border-radius: 10px;
}

.archive.video-blog-category .sub-category-block h2 {
    background-color: #000;
    color: #fff;
    font-size: 1.4rem;
    padding: 10px 14px;
    text-align: center;
    margin-bottom: 0px;
}

.archive.video-blog-category .sub-category-items {
    background-color: #e4e7ff;
    padding: 30px;
}

.archive.video-blog-category .sub-category-items ul{
    padding-left: 0px;
}


.archive.video-blog-category .sub-category-items ul li{
    list-style: none;
    margin-top: 10px;
}


.archive.video-blog-category .sub-category-items ul li a{
   color: #000; 
   font-size: 1.3rem;
 }
 
.archive.video-blog-category #sub-catDIV ul li a.current {
    color: #2635b2;
    font-weight: 600;
}

.archive.video-blog-category #contfilter-DIV ul li a.current {
    color: #2635b2;
    font-weight: 600;
}

.archive.video-blog-category .country-filter{
    margin-top: 20px;
}

.archive.video-blog-category .related-content {
    padding: 38px 0px 54px 22px;
    border-left: 1px solid #cbcbcb;
}

.archive.video-blog-category .related-content-heading{
    font-weight: 600;
    font-size: 1.7rem;
    color: #000;
}

.archive.video-blog-category .related-cat-name {
    color: #000;
    font-size: 1.2rem;
    margin: 12px 0 10px 0;
}
.archive.video-blog-category .related-img-block {
    position: relative;
    clear: both;
    display: block;
    width: 328px;
    height: 184px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.archive.video-blog-category .related-content-title {
    font-weight: 600;
    font-size: 1.2rem;
    color: #000;
    margin-top: 18px;
}

.archive.video-blog-category .category-related-content-item{
    margin-top: 40px;
}
.blog-content-block img{
	position:relative;
	display:block;
}

/* search results Page css */

.search-results .catsection1 {
    position: relative;
    background: #1b1b1b;
    color: #fff;
    clear: both;
    padding: 128px 0 70px 0;
}

.search-results .category_banner_heading {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
}

.search-results .banner-category-items ul {
    padding-left: 0px;
    text-align: center;
}

.search-results .banner-category-items ul li{
    list-style: none;
    display: inline-block;
}

.search-results .banner-category-items ul li a {
    background-color: #e4e7ff;
    color: #000;
    font-size: 1.4rem;
    padding: 10px 20px;
    border-radius: 30px;
    margin: 8px 6px;
    display: inline-block;
}

.search-results .banner-category-items ul li.active a {
    background-color: #8d96dd;
    color: #fff;
    font-weight: normal;
}

.search-results .banner-category-items{
    margin-top: 110px;
}

.search-results .catsection2{
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #fff;
}


.search-results .category-content-section{
    position: relative;
}

.search-results .search-submit {
    display: none;
}

.search-results .search-form input {
    border-radius: 25px;
    height: 40px;
    width: 230px;
    position: relative;
    clear: both;
    outline-offset: 0;
    border: 0;
    padding-left: 25px;
    background-color: #e7e7e7;
}

.search-results .search-form input:focus{
    outline: none;
}

.search-results .category-post-item{
    position: relative;
        margin-top: 40px;
    margin-bottom: 30px;
}

.search-results .c-post-author {
    display: flex;
    align-items: center;
}

.search-results .f-post-author-pic {
    width: 48px;
}

.search-results .f-post-author-pic img{
    width: 48px;
}

.search-results .f-post-author-content {
    width: calc(100% - 48px);
    padding-left: 15px;
}

.search-results .f-post-author-content .auth-name {
    font-size: 1.2rem;
}

.search-results .f-post-author-content .p-date {
    font-size: 1.2rem;
    margin-left: 20px;
}

.search-results .category-post-content h2{
    font-weight: 600;
    font-size: 1.5rem;
    color: #000;
}

.search-results .category-post-content{
    margin-top: 20px;
}

.search-results .category-post-content p{
    font-weight: 300;
    font-size: 1.2rem;
    color: #000;
}
.search-results .category-post-thumb {
	position: relative;
    clear: both;
    height: 250px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.search-results .category-post-thumb img{
    width: 100%;
    border-radius: 10px;
}

.search-results .sub-category-block h2 {
    background-color: #000;
    color: #fff;
    font-size: 1.4rem;
    padding: 10px 14px;
    text-align: center;
    margin-bottom: 0px;
}

.search-results .sub-category-items {
    background-color: #e4e7ff;
    padding: 30px;
}

.search-results .sub-category-items ul{
    padding-left: 0px;
}


.search-results .sub-category-items ul li{
    list-style: none;
    margin-top: 10px;
}


.search-results .sub-category-items ul li a{
   color: #000; 
   font-size: 1.3rem;
 }
 
.search-results #sub-catDIV ul li a.current {
    color: #2635b2;
    font-weight: 600;
}

.search-results #contfilter-DIV ul li a.current {
    color: #2635b2;
    font-weight: 600;
}

.search-results .country-filter{
    margin-top: 20px;
}

.search-results .related-content {
    padding: 38px 0px 54px 22px;
    border-left: 1px solid #cbcbcb;
}

.search-results .category-related-content-item img{
    width: 100%;
}

.search-results .related-content-heading{
    font-weight: 600;
    font-size: 1.7rem;
    color: #000;
}

.search-results .related-cat-name {
    color: #000;
    font-size: 1.2rem;
    margin: 12px 0 10px 0;
}

.search-results .related-content-title {
    font-weight: 600;
    font-size: 1.2rem;
    color: #000;
    margin-top: 18px;
}

.search-results .category-related-content-item{
    margin-top: 40px;
}

/* Country Category Page css */

.archive.tax-country-blog-category .catsection1 {
    position: relative;
    background: #1b1b1b;
    color: #fff;
    clear: both;
    padding: 128px 0 70px 0;
}

.archive.tax-country-blog-category .category_banner_heading {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
}

.archive.tax-country-blog-category .banner-category-items ul {
    padding-left: 0px;
    text-align: center;
}

.archive.tax-country-blog-category .banner-category-items ul li{
    list-style: none;
    display: inline-block;
}

.archive.tax-country-blog-category .banner-category-items ul li a {
    background-color: #e4e7ff;
    color: #000;
    font-size: 1.4rem;
    padding: 10px 20px;
    border-radius: 30px;
    margin: 8px 6px;
    display: inline-block;
}

.archive.tax-country-blog-category .banner-category-items ul li.active a {
    background-color: #8d96dd;
    color: #fff;
    font-weight: normal;
}

.archive.tax-country-blog-category .banner-category-items{
    margin-top: 110px;
}

.archive.tax-country-blog-category .catsection2{
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #fff;
}


.archive.tax-country-blog-category .category-content-section{
    position: relative;
}

.archive.tax-country-blog-category .search-submit {
    display: none;
}

.archive.tax-country-blog-category .search-form input {
    border-radius: 25px;
    height: 40px;
    width: 230px;
    position: relative;
    clear: both;
    outline-offset: 0;
    border: 0;
    padding-left: 25px;
    background-color: #e7e7e7;
}

.archive.tax-country-blog-category .search-form input:focus{
    outline: none;
}

.archive.tax-country-blog-category .category-post-item{
    position: relative;
        margin-top: 40px;
    margin-bottom: 30px;
}

.archive.tax-country-blog-category .c-post-author {
    display: flex;
    align-items: center;
}

.archive.tax-country-blog-category .f-post-author-pic {
    width: 48px;
}

.archive.tax-country-blog-category .f-post-author-pic img{
    width: 48px;
}

.archive.tax-country-blog-category .f-post-author-content {
    width: calc(100% - 48px);
    padding-left: 15px;
}

.archive.tax-country-blog-category .f-post-author-content .auth-name {
    font-size: 1.2rem;
}

.archive.tax-country-blog-category .f-post-author-content .p-date {
    font-size: 1.2rem;
    margin-left: 20px;
}

.archive.tax-country-blog-category .category-post-content h2{
    font-weight: 600;
    font-size: 1.5rem;
    color: #000;
}

.archive.tax-country-blog-category .category-post-content{
    margin-top: 20px;
}

.archive.tax-country-blog-category .category-post-content p{
    font-weight: 300;
    font-size: 1.2rem;
    color: #000;
}
.archive.tax-country-blog-category .category-post-thumb{
position: relative;
    clear: both;
    height: 250px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}
.archive.tax-country-blog-category .category-post-thumb img{
    width: 100%;
    border-radius: 10px;
}

.archive.tax-country-blog-category .sub-category-block h2 {
    background-color: #000;
    color: #fff;
    font-size: 1.4rem;
    padding: 10px 14px;
    text-align: center;
    margin-bottom: 0px;
}

.archive.tax-country-blog-category .sub-category-items {
    background-color: #e4e7ff;
    padding: 30px;
}

.archive.tax-country-blog-category .sub-category-items ul{
    padding-left: 0px;
}


.archive.tax-country-blog-category .sub-category-items ul li{
    list-style: none;
    margin-top: 10px;
}


.archive.tax-country-blog-category .sub-category-items ul li a{
   color: #000; 
   font-size: 1.3rem;
 }
 
.archive.tax-country-blog-category #sub-catDIV ul li a.current {
    color: #2635b2;
    font-weight: 600;
}

.archive.tax-country-blog-category #contfilter-DIV ul li a.current {
    color: #2635b2;
    font-weight: 600;
}

.archive.tax-country-blog-category .country-filter{
    margin-top: 20px;
}

.archive.tax-country-blog-category .related-content {
    padding: 38px 0px 54px 22px;
    border-left: 1px solid #cbcbcb;
}

.archive.tax-country-blog-category .category-related-content-item img{
    width: 100%;
}

.archive.tax-country-blog-category .related-content-heading{
    font-weight: 600;
    font-size: 1.7rem;
    color: #000;
}

.archive.tax-country-blog-category .related-cat-name {
    color: #000;
    font-size: 1.2rem;
    margin: 12px 0 10px 0;
}

.archive.tax-country-blog-category .related-content-title {
    font-weight: 600;
    font-size: 1.2rem;
    color: #000;
    margin-top: 18px;
}

.archive.tax-country-blog-category .category-related-content-item{
    margin-top: 40px;
}

.single-post .blog-content-block blockquote {
    position: relative;
    font-size: 16px;
    clear: both;
    display: block;
    width: 90%;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 40px;
}

.single-post .blog-content-block blockquote p{
    position: relative;
    margin:0;
    font-style: italic;
    font-size: 16px;
}

.single-post .blog-content-block blockquote:before{
    content:"";
    display: inline-block;
    background-image: url(../image/quote-icon.png);
    height: 20px;
    width: 20px;
    background-size: cover;
    position: relative;
}

.single-post .blog-content-block blockquote:after {
    content: "";
    display: inline-block;
    background-image: url(../image/quote-icon.png);
    height: 20px;
    width: 20px;
    background-size: cover;
    position: relative;
    transform: rotateY(180deg);
    float: right;
}
.single-post .blog-content-block p{
	position: relative;
    margin-bottom: 10px;
    font-style: normal;
    font-size: 1rem;
	line-height: 20px;
    text-align: justify;
    color: #120826;
}
.single-post .blog-content-block p:empty {
  display: none;
}
.single-post h1 span, .single-post h1 b, .single-post h2 span, .single-post h2 b, .single-post h3 span, .single-post h3 b, .single-post h4 span, .single-post h4 b, .single-post h5 span, .single-post h5 b, .single-post h6 span, .single-post h6 b{
	font-weight: 600 !important;
	margin-bottom: 20px;
}
.single-post h1, .single-post h2, .single-post h3, .single-post h4, .single-post h5, .single-post h6{
	font-weight: 600 !important;
}
.single-post h2{
	font-weight: 600 !important;
	margin-top: 30px;
	margin-bottom: 20px;	
    font-size: 1.3rem;
}
.single-post h3, .single-post h4, .single-post, .single-post h6{
	font-weight: 600 !important;
    font-size: 1.1rem;
}

.single-post h2>strong, .single-post h3>strong, .single-post h4>strong, .single-post h5>strong, .single-post h6>strong{
	font-weight: 600 !important;
}
.single-post ul {	
	position: relative;
    font-style: normal;
    font-size: 1rem;    
	line-height: 26px;
    color: #043f5d;
}
.single-post ol {	
	position: relative;
	margin-bottom: 10px;
    font-style: normal;
    font-size: 1rem;    
	line-height: 26px;
    color: #120826;
}
.main-title {
    display: block;
    clear: both;
    max-width: 700px;
    margin: 0 auto;
}
.form-control {
    border: 1px solid #818a91;
}
.wpcf7-submit {
    display: inline-block;
    line-height: 1;
    background-color: #818a91;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 3px;
    color: #fff;
    fill: #fff;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    width: 100%;
}

.wpcf7-submit:hover {
    background-color:#3a3a3a
}

.single-post .upcomming-webinar{
    padding-top: 0;
    padding-bottom: 0;
    background-color: #fff;
}

.single-post .upcomming-webinar .webinar-blocks{
    padding-top: 10px;
}

.single-post .upcomming-webinar .webinar-block {
    position: relative;
    padding: 0;
    border: 1px solid #2e2e2e;
    border-radius: 0;
    margin-top: 0;
}

.single-post .upcomming-webinar .webinar-thumb {
    width: 100%;
	height:auto;
}

.single-post .upcomming-webinar .webinar-thumb img{
    width: 100%;
}

.single-post .upcomming-webinar .webinar-content{
    position: relative;
    padding: 0 15px;
}

.single-post .upcomming-webinar .webinar-content h2 {
    font-weight: 500;
    font-size: 1.1rem;
    color: #000;
    line-height: 25px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.single-post .upcomming-webinar .webinar-content p {
    margin-top: 10px;
    font-weight: 300;
    font-size: 1.1rem;
    color: #000;
    line-height: 30px;
}

.single-post .upcomming-webinar .speaker-info{
    display: flex;
    padding: 0 15px;
}

.single-post .upcomming-webinar .speaker-pic{
    width: 50px;
}

.single-post .upcomming-webinar .speaker-info-inner{
    width: calc(100% - 50px);
    padding-left: 10px;
}

.single-post .upcomming-webinar .speaker-pic img{
    width: 100%;
}

.single-post .upcomming-webinar .speaker-name{
    margin-bottom: 0px;
    font-weight: 300;
    font-size: 1rem;
    color: #000;
}

.single-post .upcomming-webinar .webinar-date{
    margin-bottom: 0px;
    font-weight: 300;
    font-size: 1rem;
    color: #000;
}

.single-post .upcomming-webinar .webinar-register-btn {
    text-align: center;
    margin-top: 34px;
    padding: 0 15px 30px 0;
}

.single-post .upcomming-webinar .webinar-register-btn a{
    background-color: #2635b2;
    color: #fff;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 500;
    display: inline-block;
    width: 200px;
    height: 60px;
    line-height: 40px;
    text-align: center;
}
.single-post table {
    position: relative;
    width: 100%;
    margin: 30px 0;
    font-style: normal;
    font-size: 1rem;
    line-height: 20px;
    color: #120826;
}
.bigContentTable>table {
    position: relative;
    font-size: 12px;
}

.bigContentTable>table tr, .bigContentTable>table td {
    border: 1px solid;
    padding: 3px 5px;
}
.single-post .blog-content-block p strong, 
.single-post .blog-content-block p b{
	font-weight: 600 !important;
}
.search-bar {
    position: relative;
    clear: both;
    text-align: center;
    padding: 55px 0 50px 0 !important;
    border-bottom: 2px solid #f4f4f4;
}
.search-bar input[type='text'] {
    position: relative;
    display: inline-block;
    width: 300px;
    padding: 10px 30px;
    border: none;
    border-radius: 25px;
    margin: 0 auto;
}
.search-bar input[type='text']:focus-visible {
  outline:none;
}
.search-bar input[type='text']::placeholder {
	font-style: normal;
	font-size: 1rem;
	font-weight: 600;
	line-height: 25px;
	text-align: justify;
	color: #000000;
  opacity: 1; /* Firefox */
}

.search-bar input[type='text']::-ms-input-placeholder { /* Edge 12 -18 */
	font-style: normal;
	font-size: 1rem;
	font-weight: 600;
	line-height: 25px;
	text-align: justify;
	color: #000000;
}
input#searchsubmit {
    display: none;
}
@media only screen and (max-width:767px){
	.page-id-806 .main-title h1 {
		font-size: 50px;
	}
	.page-id-806 .pad-20 {
		margin-top: 60px;
	}
	.page-id-806 .f-content-bx {
		padding-bottom: 35px;
		margin-bottom: 35px;
	}
	.page-id-806 .f-content-bx:after {
		content: "";
		width: 100%;
		height: 2px;
		position: absolute;
		background-color: #fff;
		top:unset;
		right:unset;
		left: 0;
		bottom: 0px;
	}
	
	.page-id-806 .f-content-bx-2 {
		padding-bottom: 35px;
		margin-bottom: 35px;
	}
	
	.page-id-806 .f-content-bx-2:after {
		content: "";
		width: 100%;
		height: 2px;
		position: absolute;
		background-color: #000;
		top:unset;
		right:unset;
		left: 0;
		bottom: 0px;
	}
	
	.page-id-806 .news-item {
		display: block;
		margin-top: 50px;
	}
	.page-id-806 .news-thumb {
		width: 100%;
		display: block;
		margin-bottom: 10px;
	}
	.page-id-806 .news-content {
		width: 100%;
		display: block;
		padding-left: 0px;
	}
	
	.page-id-806 .home-category-section .load-more-post-btn {
		position: relative;
		bottom: 20px;
	}
	.page-id-806 .tb-b-right:after {
		content: "";
		width: 100%;
		height: 1px;
		background-color: #000;
		right: unset;
		position: absolute;
		top: unset;
		left: 0;
		bottom: 0;
	}
}



	label.error {
	color: #ff1000;
	font-size: 14px;
	margin-top: 5px;
	}
	#loading, #loadings {
	display: none;
	text-align: center;
	color: #fff;
	}
	
.article_form .file-upload {
  width: 100%; /* Set width to 100% */
}
.article_form .file-upload input[type="file"] {
  width: calc(100% - 24px); /* Adjust width to match other fields */
}
	
.file-upload p {
    border: 1px solid black !important;
}
	
	.sumbitarticle .first-colum {
    width: 70%;
}
.sumbitarticle .secound-colum {
    width: 30%;
}	
.sumbitarticle {
    padding: 0px;
}

a.btn-started {
    background-color: #28ADCA;
    padding: 14px 24px;
    border-radius: 50px;
    color: white;
}

a.btn-started:hover {
    background-color: white;
    color: #28ADCA;
}
	
.sumbitarticle-main {
    background-color: #181818;
    padding: 40px 0px;
    border-bottom: 1px solid #E8E8E8;
}
	
.sumbitarticle .secound-colum {
    width: 30%;
    display: flex;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-end;
}
	
.sumbitarticle {
    padding: 0px;
    display: flex;
    align-items: center;
}
	
.first-colum h4 {
    color: white;
}
	
.first-colum p {
    color: #EAECF0;
    margin-top: 15px;
    margin-bottom: 0px;
}
	

.custom-popup {
  display: none; /* Hide the custom popup by default */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border: 1px solid #ccc;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 86%);
}

.wpcf7 input[type="file"] {
    cursor: pointer;
    height: 40px;
    padding: 5px;
    border-radius: 3px;
    border: 0px !important;
}

.custom-popup-content {
  text-align: center;
}

.custom-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.custom-close:hover,
.custom-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
	
.article_form {
    text-align: justify;
}

.article_form p {
    margin-bottom: 5px;
}

.wpcf7-spinner {
    visibility: hidden;
    display: inline-block;
    background-color: #23282d;
    opacity: 0.75;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 24px;
    position: relative;
    display: none;
}
	
.article_form input {
    height: 40px;
    padding: 10px;
    font-family: 'Poppins';
	border-radius: 3px;
	border: 1px solid #ababab;
}

.file-upload p {
    border: 1px solid #ababab !important;
    border-radius: 4px !important;
    margin-top: -10px !important;
}
	
/* Media query for mobile devices */
@media screen and (max-width: 768px) {
  .custom-popup {
    padding: 10px;
    max-width: 90%;
    width: 90%;
  }

.sumbitarticle .first-colum {
    width: 100%;
    text-align: center;
    padding: 0px 30px;
}
	

.article_form input {
    height: 40px;
    padding: 10px;
    font-family: 'Poppins';
    border-radius: 3px;
    border: 1px solid #ababab;
    width: 100%;
}
	
.custom-popup {
    padding: 13px;
    max-width: 90%;
    width: 87%;
    left: 49%;
    top: 51%;
}
	
	
.sumbitarticle .secound-colum {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center !important;
    margin-top: 20px;
}
	
.sumbitarticle {
    padding: 0px;
    display: flow !important;
    align-items: center;
}
	
}
	
body.popup-open {
  overflow: hidden;
}
	
.sumbitarticle .first-colum {
    width: 100%;
}
	
.sumbitarticle .secound-colum {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-end;
}

a.btn-started {
    background-color: #28ADCA;
    padding: 10px 18px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
}

.custom-popup-content h4 {
    font-size: 18px;
}

.custom-popup-content p {
    font-size: 14px;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0em 0em 0em;
    padding: 0.2em 1em;
    border: 1px solid #00a0d2;
    margin-top: -27px;
    font-size: 13px;
}


 .testimonial-container {
            display: flex;
            gap: 15px;
            max-width: 900px;
        }

.testimonial-card {
    width: 174px;
    height: 437px;
    background-color: white;
    border-radius: 40px;
    padding: 15px;
    cursor: pointer;
    transition: width 0.4sease -in-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.tittle-contebt img {
    width: 20%;
}
.content-box h3 {
    font-size: 16px;
}
.tittle-contebt {
    display: flex;
    align-items: center;
    gap: 20px;
}


.content-box p {
    font-size: 14px;
    margin: 0px 0px;
    font-weight: 600;
}

.testimonial-card.expanded {
    width: 50%;
    align-items: baseline;
}

img.img-company {
    width: 82px;
    margin-top: 6px;
}
.testimonial-card.expanded .tittle-contebt {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    width: 100%;
    text-align: left;
    width: 100%;
}

.tittle-contebt {
    display: block;
    gap: 20px;
    justify-content: center;
    width: 100%;
    text-align: center;
}

      .testimonial-text {
    display: none;
    text-align: left;
}
        .testimonial-card.expanded .testimonial-text {
            display: block;
        }

     .quote {
    transition: opacity 0.3sease;
    width: 80px;
}

       .testimonial-card.expanded .quote {
    opacity: 0;
    display: none;
}

        @media (max-width: 600px) {
            .testimonial-container {
                flex-direction: column;
                align-items: center;
            }

            .testimonial-card {
                width: 100%;
                height: auto;
            }

            .testimonial-card.expanded {
                width: 100%;
            }
        }
.video-wrapper {
            width: 100%;
            margin-top: 10px;
        }

        .video-wrapper iframe {
            width: 100%;
            height: 170px;
            border: none;
        }




     .testimonial-container {
            display: flex;
            gap: 15px;
            max-width: 900px;
        }

.testimonial-card {
    width: 174px;
    height: 437px;
    background-color: white;
    border-radius: 40px;
    padding: 25px;
    cursor: pointer;
    transition: width 0.4sease -in-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.tittle-contebt img {
    width: 60%;
    margin-bottom: 10px;
}

.content-box h3 {
    font-size: 16px;
    margin-bottom: 2px;
    margin-top: 3px;
    font-weight: 600;
    font-family: 'Montserrat';
}

.img-company {
    width: 82px;
    margin-top: 6px;
    display: none;
}

.tittle-contebt {
    display: flex;
    align-items: center;
    gap: 20px;
}

.content-box p {
    font-size: 14px;
    margin: 0px 0px;
    font-weight: 500;
	 font-family: 'Montserrat';
}

.testimonial-card.expanded {
    width: 50%;
    align-items: baseline;
}

.testimonial-card.expanded .tittle-contebt {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    width: 100%;
    text-align: left;
    width: 100%;
}

.testimonial-card.expanded .img-company {
    width: 140px !important;
    margin-top: 6px;
    display: block;
}

.testimonial-card.expanded .tittle-contebt img {
    width: 25%;
    margin-bottom: 0px;
}


.tittle-contebt {
    display: block;
    gap: 20px;
    justify-content: center;
    width: 100%;
    text-align: center;
}

      .testimonial-text {
    display: none;
    text-align: left;
}
        .testimonial-card.expanded .testimonial-text {
            display: block;
        }

     .quote {
    transition: opacity 0.3sease;
    width: 100px;
}

       .testimonial-card.expanded .quote {
    opacity: 0;
    display: none;
}

        @media (max-width: 600px) {
            .testimonial-container {
                flex-direction: column;
                align-items: center;
            }

            .testimonial-card {
                width: 100%;
                height: auto;
            }

            .testimonial-card.expanded {
                width: 100%;
            }
        }
.video-wrapper {
    margin-top: 10px;
    width: 395px;
}
        .video-wrapper iframe {
            width: 100%;
            height: 300px;
            border: none;
        }



        .testimonial-card {
    transition: width 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
}

.testimonial-card.expanded {
    width: 448px;
}

.testimonial-text p {
    font-size: 18px;
}

.testimonial-card.expanded .content-box h3 {
    color: #fc7b50;
}
.testimonial-card.expanded .content-box p {
    color: #fc7b50;
}

.testimonial-text {
    transition: opacity 0.3s ease-in-out, max-height 0.4s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.footer-section li a:hover {
    color: #ebebeb;
}

.testimonial-card.expanded .testimonial-text {
    max-height: 250px;
    opacity: 1;
}

.steps-ions .elementor-icon-box-icon::after {
    content: "";
    display: block;
    width: 22px;
    height: 17px;
    background-image: url(https://dev.gradright.com/wp-content/uploads/2025/03/Vector-70.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 95%;
    top: 13%;
    transform: translate(-50%, -50%);
}

.steps-ions:last-child .elementor-icon-box-icon::after {
    content: none;
}
.steps-ions .elementor-icon-box-description {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease-in-out, max-height 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.steps-ions:hover .elementor-icon-box-description {
    opacity: 1;
    visibility: visible;
    max-height: 500px; /* Adjust based on content height */
}

.tags-list .elementor-icon-list-text {
    border: 1px solid #fc7b50;
    padding: 5px 20px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.read-more-container .more-content {
    display: none; /* Hide extra content initially */
}

.read-more-container .read-more-btn:hover {
    color: #0056b3; /* Change color on hover */
}

.read-more-container p {
    margin: 0px;
}

a.read-more-btn {
    color: #fc7d50 !important;
    cursor: grab;
    font-weight: 500;
}

.read-more-container .read-more-btn {
    color: #fc7d50;
    background-color: transparent;
    border: none;
    font-size: 14px;
    padding: 0px;
    text-decoration: underline;
}


.health-insurance-forms .wpcf7-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.health-insurance-forms .wpcf7-form .form-column {
    flex: 1;
}
.health-insurance-forms .wpcf7-form .form-column.full-width {
    flex: 100%;
}
.health-insurance-forms .wpcf7-form label {
    display: block;
    margin-bottom: 5px;
}
.health-insurance-forms .wpcf7-form input,
.health-insurance-forms .wpcf7-form select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
}
.health-insurance-forms .wpcf7-form .submit-button {
    text-align: center;
}
.health-insurance-forms .wpcf7-form input[type="submit"] {
    background-color: #00d5ff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
}

.health-insurance-forms input, select {
    border: 1px solid #0040F229;
    padding: 13px;
    width: 100%;
    border-radius: 10px;
    font-size: 15px;
}

/* Change placeholder text color */
.health-insurance-forms input::placeholder,
.health-insurance-forms textarea::placeholder,
.health-insurance-forms select {
    color: #B1C1D2;
    opacity: 1;
}

.health-insurance-forms input, .health-insurance-forms textarea, .health-insurance-forms select {
    color: #000000;
}

.health-insurance-forms .form-column {
    width: 48%;
}

.wpcf7-submit {
    display: inline-block;
    line-height: 1;
    font-weight: 500;
    font-family: 'Montserrat';
    background-color: #17C8E5;
    font-size: 18px !important;
    border-radius: 50px !important;
    padding: 12px 0px !important;
    border-radius: 3px;
    color: #fff !important;
    fill: #fff;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    width: 100%;
}

.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-row.-lastbutton {
    display: flex;
    justify-content: center;
}



.smart-tabs .e-n-tab-title[aria-selected="true"] .e-n-tab-title-text {
    background-color: red !important;
    color: white !important;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
}

.smart-tabs .e-n-tab-title[aria-selected="true"] .e-n-tab-title-text {
    background-color: #FC7B50 !important;
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    display: inline-block;
    margin: 9px 20px;
}
.smart-tabs .e-n-tab-title[aria-selected="true"] {
    background-color: #ffffff !important;
    position: relative;
    border-radius: 30px 30px 0px 0px;
}

.smart-tabs .e-n-tab-title[aria-selected="true"]::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 70%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: url(https://dev.gradright.com/wp-content/uploads/2025/03/left-strape.svg) no-repeat center;
    background-size: contain;
}

.smart-tabs .e-n-tab-title[aria-selected="true"]::after {
    content: "";
    position: absolute;
    right: -40px;
    top: 70%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: url(https://dev.gradright.com/wp-content/uploads/2025/03/left-right.svg) no-repeat center;
    background-size: contain;
}

.smart-tabs .e-n-tab-title-text {
    background-color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    display: inline-block;
}

a {
    color: #000000;
}

.nav-center li.active a {
    color: white;
}

.littel-tittle .elementor-heading-title::after {
    content: "";
    display: inline-block;
    width: 20px; /* Adjust as needed */
    height: 20px; /* Adjust as needed */
    background-image: url('https://dev.gradright.com/wp-content/uploads/2025/03/Vector-52.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 8px; /* Adjust spacing */
    vertical-align: middle;
}

.calculator-container {
    display: flex;
    margin: 0 auto;
    gap: 39px;
    background-color: white;
    align-items: center;
    padding: 1rem;
    border-radius: 40px;
}
        
.input-section {
    width: 70%;
    min-width: 300px;
    padding: 20px;
}
.results-section {
    width: 30%;
    min-width: 300px;
    background-color: white;
    border: 1px solid #d6e0fd;
    border-radius: 1.5rem;
    /* font-size: 10px; */
    color: grey;
    padding: 16px;
}
.calculator-container h2 {
            color: #333;
            margin-bottom: 15px;
        }
        
.calculator-container label {
    display: block;
    color: #666;
    margin-bottom: 8px;
    font-size: 14px;
}

.calculator-container input[type="text"] {
    width: 100%;
    padding: 6px 14px;
    border: 1px solid #ddd;
    border-radius: 7px;
    margin-bottom: 20px;
    font-size: 16px;
    outline: none;
}
        
        .slider-emi-container {
            margin-bottom: 30px;
        }
        
        .slider-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
      .slider-value {
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px 14px;
    border: 1px solid rgba(0, 64, 242, 0.16);
    /* margin-top: -18px; */
    margin-left: 19px;
    text-align: center;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 400;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}
        
      .slider-track {
    position: relative;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    margin: 0px 0;
}
        
        .slider-progress {
            position: absolute;
            height: 100%;
            background-color: #ff6b35;
            border-radius: 3px;
        }


.slider-thumb {
    position: absolute;
    width: 20px;
    height: 36px;
    margin-top: 4px;
    margin-left: -11px;
    background: url(https://dev.gradright.com/wp-content/uploads/2025/03/Vector-53.svg) no-repeat center / contain;
    cursor: pointer;
    z-index: 2;
}
        .slider-labels {
    display: flex
;
    justify-content: space-between;
    color: #666;
    font-size: 14px;
    margin-top: 17px;
}
        
        .slider-markers {
            position: relative;
            height: 6px;
            margin-top: -6px;
        }
        
        .slider-marker {
            position: absolute;
            width: 12px;
            height: 12px;
            background-color: #ccc;
            border-radius: 50%;
            top: -3px;
            transform: translateX(-50%);
            cursor: pointer;
            z-index: 1;
            transition: transform 0.2s, background-color 0.2s;
        }
        
        .slider-marker:hover {
            transform: translateX(-50%) scale(1.2);
        }
        
        .slider-marker.active {
            background-color: #ff6b35;
        }
        
      .result-item {
    display: flex
;
    align-items: center;
    gap: 6px;
}


.slider-marker.active:first-child {
    left: 1% !important;
}
.result-title {
    color: #043f5d;
    font-size: 16px;
    font-weight: 600;
}
        
        .result-value {
            color: #ff6b35;
            font-size: 20px;
            font-weight: bold;
        }
        
.results-header {
    color: #666;
    font-size: 16px;
    margin: 10px 0px;
    font-weight: 500;
}

.slider-width {
    display: flex
;
}

.slider-emi-container {
    margin-bottom: 30px;
    width: 80%;
}

.width-value {
    width: 20%;
}
@media (min-width: 1500px) { 
    .impactNumbers {
        padding-top: 80px;
    }
    .onlineHeroBottom {
        margin-top: 130px !important;
    }
}

@media (max-width: 768px) { /* Adjust breakpoint as needed */
    .input-section {
        width: 100%;
        min-width: auto;
        padding: 8px;
    }
	
	.health-insurance-forms input, select {
    border: 1px solid #0040F229;
    padding: 9px;
    width: 100%;
    border-radius: 10px;
    font-size: 12px;
}
	
	.elementor-widget-image-box .elementor-image-box-wrapper {
    text-align: left !important;
}

	.values-box .elementor-icon-box-content {
    display: flex;
    align-items: center;
}
	
.dot-boxx .elementor-icon-box-wrapper {
    display: flex !important;
    gap: 16px;
}

	.results-section {
    width: 30%;
    min-width: 100% !important;
    background-color: white;
    border: 1px solid #d6e0fd;
    border-radius: 1.5rem;
    /* font-size: 10px; */
    color: grey;
    padding: 16px;
}
	
.slider-emi-container {
    margin-bottom: 30px;
    width: 70%;
}

.width-value {
    width: 30%;
}
.calculator-container {
    display: flow;
    max-width: 1300px;
    margin: 0 auto;
    gap: 40px;
    background-color: white;
    align-items: center;
    border-radius: 40px;
}
}

.trending-topic h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Adjust the number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

  .programsforms input {
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #0040F229;
    font-size: 14px;
    font-weight: 500;
    width: 110px;
    font-family: 'Poppins';
    box-sizing: border-box;
    transition: border-color 0.3sease;
    border-radius: 50px;
}

.programsforms select {
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #043F5D;
    font-size: 14px;
    font-weight: 700;
    color: #5B5A5A;
    font-family: 'Poppins';
    box-sizing: border-box;
    transition: border-color 0.3sease;
    border-radius: 50px;
    width: min-content;
}

.input-group {
    gap: 10px;
	width: auto;
}

    .programsforms input:focus, select:focus {
      border-color: #043F5D;
      outline: none;
    }
  .programsforms button[type="button"] {
    background-color: #17C8E5;
    color: white;
    border: none;
    font-size: 16px;
	font-family: 'Montserrat';
    padding: 10px 28px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

    .input-group-container {
    display: flex;
    gap: 20px;
}

 .programsforms button[type="button"]:hover {
    background-color: #fb7b50;
}
    .add-more-btn {
      color: #fb7b50;
      border: none;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      text-decoration: underline;
    }

    .multi-step-form {
      display: none;
    }
    #step1 {
      display: block;
    }

    .back-btn img {
    width: 38px;
}


.input-group-container {
    display: flex
;
    gap: 7px;
    margin-top: 1rem;
}

.colum-flex {
    display: flex
;
    gap: 10px;
    flex-wrap: wrap;
}

.flex-boxitem {
    display: flex
;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}


button.back-btn {
    border-radius: 50px;
    padding: 0px !important;
    background-color: #f5deb300 !important;
}

button.back-btn:hover {
    border-radius: 50px;
    padding: 0px !important;
    background-color: #f5deb300 !important;
}

.dropdown-items {
    display: grid
;
}


select#admit-status {
    width: 300px;
    font-weight: 400;
    color: #B1C1D2;
    border: 1px solid #B1C1D2;
}

#season-select {
    width: 300px;
    font-weight: 400;
    color: #B1C1D2;
    border: 1px solid #B1C1D2;
}

.lable-tittle {
    font-size: 16px;
    font-weight: 600;
    color: #00000080;
    margin-bottom: 5px;
    margin-top: 1rem;
}

.tittle-contebt img:first-child {
    border-radius: 50px !important;
}

/* Mobile-specific CSS for Smart Tabs */
@media only screen and (max-width: 767px) {
    /* Tab container */
    .smart-tabs .e-n-tabs-heading {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0 10px;
        margin-bottom: 15px;
    }
	
	
	.logo-img {
    margin-bottom: -7px !important;
}
	
	.logo a {
    padding: 3px;
}
	
	.teamgrop .meet-team {
    opacity: 1 !important;
    transition: opacity 0.5s ease;
}
	
.office-hours {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
    }
	
.office-hours h3 {
        width: 30%;
        text-align: left;
    }
	
	.office-column {
    margin-right: 14px;
}
	
	.office-section {
    display: flex;
    width: 70%;
}
	
.footer {
    background-color: #043f5d;
    color: white;
    padding: 1rem 1rem 1rem;
    width: 100%;
    box-sizing: border-box;
}
	
	.footer-box {
    width: 100%;
    display: inline-block;
}
	
	header {
    position: relative;
    top: 0;
    z-index: 999;
}

header {
    background: #eaedf4;
}
	
	.video-wrapper {
    margin-top: 10px;
    width: 100%;
}



    .smart-tabs .e-n-tab-title {
        background-color: white !important;
        border-radius: 25px;
        padding: 10px 11px;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        color: #FF7847;
        border: none;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
        font-size: 14px;
        min-height: 44px;
        margin-top: 1rem !important;
    }

    /* Active tab styling */
    .smart-tabs .e-n-tab-title[aria-selected="true"] {
        background-color: #FF7847;
        color: white;
    }

       .smart-tabs .e-n-tab-title::after {
        content: "";
        width: 25px;
        height: 25px;
        flex-shrink: 0;
        background-image: url(https://wordpress-1004599-5742325.cloudwaysapps.com/gradassets/ArrowUp.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        margin-right: 20px !important;
    }

	.smart-tabs .e-n-tab-title[aria-selected="true"] .e-n-tab-title-text {
    background-color: #FC7B50 !important;
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    display: inline-block;
    margin: 10px;
}
	
	.smart-tabs .e-n-tabs-content .e-con-boxed {
    border-radius: 0px 20px 20px 20px;
}

	  .smart-tabs .e-n-tab-title[aria-selected="true"] {
        background-color: #ffffff !important;
        position: relative;
        border-radius: 30px 30px 0px 0px;
        width: fit-content !important;
    }
	
       .smart-tabs .e-n-tab-title[aria-selected="true"]::after {
        content: "";
        width: 50px;
        height: 44.5px;
        background-image: url(https://wordpress-1004599-5742325.cloudwaysapps.com/gradassets/RightCurve.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        position: absolute;
        bottom: 7%;
        right: -10%;
        top: 37%;
        transform: translateX(85%);
        z-index: 1;
    }


    /* Tab content spacing */
    .smart-tabs .e-n-tabs-content {
        padding: 0 10px;
    }

    /* Font size for tab text */
    .smart-tabs .e-n-tab-title-text {
        font-size: 16px !important;
        font-weight: 500;
    }
	
	.smart-tabs .e-n-tabs-content .e-con-boxed {
    border-radius: 0px 20px 20px 20px;
    position: relative; /* Ensure the element can have positioned pseudo-elements */
}

    .smart-tabs .e-n-tabs-content .e-con-boxed::before {
        content: "";
        width: 25px;
        height: 25px;
        background-image: url(https://dev.gradright.com/wp-content/uploads/2025/03/ArrowDown.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        position: absolute;
        top: auto;
        left: 92%;
        transform: translateX(-50%) translateY(-150%);
    }
	  .smart-tabs .e-n-tab-title[aria-selected="true"]::before {
        content: none; /* Removes the icon */
    }
	
	.testimonial-card {
    gap: 50px;
}
	
	.tittle-contebt {
    display: none;
}
	
	.testimonial-text p {
    font-size: 14px;
}

.testimonial-card.expanded {
    width: 100%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
}

.hover-tabs .e-n-accordion-item-title {
    height: 135px;
}

.nav-right a.active {
    background-color: #053f5c;
    color: rgb(255, 255, 255);
    padding: 6px 12px !important;
    border-radius: 30px;
    cursor: pointer;
    min-width: max-content;
    font-size: 16px;
    display: inline-block;
    position: relative;
}
.read-more-container {
    position: relative;
    max-width: 100%;
    font-size: 14px;
}

.read-more-toggle {
  display: none;
}

.read-more-content {
  display: none;
}

.read-more-toggle:checked ~ .read-more-content {
  display: inline;
}

.read-more-toggle:checked ~ .read-more-link .read-more-label {
  display: none;
}

.read-more-toggle:checked ~ .read-more-link .read-less-label {
  display: inline;
}

.read-more-link {
    color: #fc7b50;
    cursor: pointer;
    font-weight: 500;
    text-decoration: underline;
    font-size: 12px;
}

.read-less-label {
  display: none;
}

.teamgrop {
    position: relative; /* Ensure relative positioning for proper animation placement */
    perspective: 1000px; /* Needed for 3D flip effect */
}

.teamgrop .meet-team {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.teamgrop:hover .meet-team {
    opacity: 1;
}



.tools-tabs .e-n-tabs-heading {
    display: inline-flex;
    background-color: white;
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: fit-content;
    margin: auto;
}
.tools-tabs .e-n-tab-title {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
    color: #666;
    text-align: center;
    white-space: nowrap;
    margin: 0px !important;
}

/* Active tab styling */
.tools-tabs .e-n-tab-title[aria-selected="true"] {
  background-color: #FF7A59; /* Coral/orange color from screenshot */
  color: white;
}

/* Hover effect for inactive tabs */
.tools-tabs .e-n-tab-title:not([aria-selected="true"]):hover {
  background-color: #f0f0f0;
}

/* Mobile responsive styles */
@media (max-width: 767px) {
    .tools-tabs .e-n-tabs-heading {
        width: fit-content !important;
        justify-content: center !important;
    }
  
  .tools-tabs .e-n-tab-title {
    flex: 1;
    padding: 8px 15px;
    font-size: 14px;
  }
}

/* Very small screens */
@media (max-width: 359px) {
  .tools-tabs .e-n-tab-title {
    padding: 6px 10px;
    font-size: 12px;
  }
}

.footer-ribbon-container {
    background-color: #2c6b93;
    color: white;
    padding: 3rem 5rem 3rem 5rem;
    border-radius: 40px 40px 0px 0px;
    max-width: 100%;
    margin: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: -40px;
}

.footer-ribbon-top-menu {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
    align-items: center;
}
        
.footer-ribbon-top-menu-title {
    font-size: 18px;
    font-weight: 600;
    width: 20%;
}
        
        .footer-ribbon-top-menu-item {
            margin-right: 15px;
            cursor: pointer;
            font-size: 14px;
        }
        
        .footer-ribbon-top-menu-item a {
      color: #EAEDF4;
    text-decoration: none;
    font-size: 16px;
}
        
        .footer-ribbon-top-menu-item a:hover {
            text-decoration: underline;
        }
        
.footer-ribbon-section {
    margin-bottom: 20px;
    display: flex;
}
        
 .footer-ribbon-section-title {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    width: 20%;
}
        
.footer-ribbon-content-columns {
    display: flex;
    justify-content: flex-start;
    width: 80%;
}
        
        .footer-ribbon-column {
            width: 32%;
        }
        
        .footer-ribbon-link-item {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
      .footer-ribbon-link-item a {
    color: #EAEDF4;
    text-decoration: none;
    font-size: 16px;
}
        
        .footer-ribbon-link-item a:hover {
            text-decoration: underline;
        }

.sub-top {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: 70%;
    justify-content: space-between;
    margin-left: 19px;
}
/* Mobile Responsive Styles */
@media (max-width: 768px) {
.footer-ribbon-container {
        padding: 15px 30px 57px 30px;
        border-radius: 20px 20px 0 0;
        margin-bottom: -38px;
    }
.sub-top {
    display: block;
    align-items: center;
    flex-wrap: nowrap;
    width: 80%;
    justify-content: space-between;
    margin-left: 10px;
}
    .footer-ribbon-top-menu {
        display: flex;
        align-items: baseline;
        text-align: left;
    }

	.footer-ribbon-section {
    display: flex;
    gap: 20px;
}
	
    .footer-ribbon-section-title {
        font-size: 15px;
        margin-bottom: 20px;
        font-weight: 600;
        width: 30%;
    }
	
	 .footer-ribbon-link-item a {
    color: #EAEDF4;
    text-decoration: none;
    font-size: 14px;
}
	
    .footer-ribbon-top-menu-item {
        font-size: 12px;
        margin: 5px 0;
    }

    .footer-ribbon-content-columns {
        display: flex;
        flex-direction: column;
        width: 70%;
    }
	
	.footer-ribbon-top-menu-title {
    font-size: 15px;
    font-weight: 600;
    width: 30%;
}
	

	
.footer-ribbon-top-menu-item a {
    color: #EAEDF4;
    text-decoration: none;
    font-size: 14px;
}
        .footer-ribbon-column {
        width: 100%;
        text-align: left;
    }
    .footer-ribbon-link-item {
        font-size: 14px;
        padding: 0px 0;
        margin-bottom: 6px;
    }
	
	.gd-videos .e-tab-title {
    height: 92px !important;
    background-color: #EAEDF4 !important;
    margin-bottom: 10px;
    margin: 12px 0px 6px 0px !important;
    border-radius: 9px;
}

}

span.breadcrumb_last {
    color: #FC7B50;
}

.postcontent-blogs a {
    color: #FC7B50;
}

.eael-reading-progress-wrap .eael-reading-progress .eael-reading-progress-fill {
    background-color: #FC7B50 !important;
}

.trending-topic h3 {
   display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gdblogs-tittle h5 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gd-videos .e-tab-thumbnail {
    display: none;
}

.gd-videos .e-tab-title {
    height: 90px !important;
    background-color: #EAEDF4 !important;
    margin-bottom: 10px;
    margin: 0px 0px 6px 20px;
    border-radius: 9px;
}

.gd-videos .e-tabs-items-wrapper .e-tab-title .e-tab-duration {
    font-size: 14px;
    color: #FB7B50;
    margin-top: auto;
}

.gd-videos .e-tab-title-text:after {
    content: "Play Now";
    display: block;
    color: #FB7B50;
    font-size: 12px;
    margin-top: 12px;
}

.e-tabs-header {
    display: none !important;
}

.elementor-widget-video-playlist .e-tabs-items-wrapper .e-tab-title .e-tab-title-text {
    flex-grow: 1;
    font-size: 14px;
    margin: auto 8px;
    overflow: hidden;
    text-align: start;
    text-overflow: ellipsis;
    white-space: normal !important;
}

.ed-news-2 img {
    height: 120px !important;
}

.ed-news img {
    height: 428px !important;
}


.blog-ctatop {
    background-color: #0c2164;
    color: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

        .blog-ctatop-text {
            flex: 1;
        }

        .blog-ctatop h2 {
    font-size: 22px;
    margin: 0 0 10px 0;
    font-weight: 500;
    font-family: 'Poppins';
    color: white !important;
}

        .blog-ctatop p {
    font-size: 14px;
    margin: 0;
    font-family: 'Poppins';
    line-height: 1.5;
}

  .blog-ctatop-button {
    background-color: white;
    color: #FF6347;
    padding: 14px 17px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    margin-left: 20px;
}

        @media (max-width: 768px) {
              .blog-ctatop {
        flex-direction: column;
        text-align: left;
        padding: 20px;
        align-items: baseline;
    }
            .blog-ctatop-button {
            margin-left: 0;
        margin-top: 10px;
        padding: 10px 20px;
    }
        }

.blog-cta-2 {
    background: linear-gradient(90deg, #26415B 34.5%, #193077 59.5%);
    color: white;
    padding: 20px 23px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 950px;
    margin: 0 auto;
    font-family: 'Poppins';
}


        .blog-cta-2-text {
            flex: 1;
        }

        .blog-cta-2 h2 {
             font-size: 22px;
    margin: 0 0 10px 0;
    font-weight: 500;
    font-family: 'Poppins';
    color: white !important;
}

        .blog-cta-2-button {
    background-color: white;
    color: #FF6347;
    padding: 14px 17px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    margin-left: 20px;
}
        @media (max-width: 768px) {
               .blog-cta-2 {
        flex-direction: column;
        text-align: left;
        padding: 20px;
        align-items: baseline;
    }
            
	.blog-cta-2-button {
        margin-left: 0;
        margin-top: 1px;
        padding: 10px 20px;
    }
        }


 .gdfaqs-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .gdfaqs-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        
        
        .gdfaqs-arrow {
            width: 18px;
            height: 18px;
            transition: all 0.4s ease;
        }
        

        .gdfaqs-answer {
            max-height: 0;
            overflow: hidden;
            color: #444;
            line-height: 1.6;
            transition: max-height 0.6s ease, padding 0.4s ease;
            opacity: 0;
        }
        
        .gdfaqs-arrow.up {
            transform: rotate(180deg);
        }

.faq-stittle {
    font-size: 23px;
    font-weight: 600;
}


.sticky-blogs {
    background-color: #FFFFFF;
    color: white;
    border-radius: 10px;
    padding: 10px 10px 10px 20px;
    border: 1px solid #782BFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    max-width: 720px;
    margin: 0 auto;
    position: fixed;
    bottom: 18px;
    left: 0;
    right: 0;
    z-index: 999;
    gap:10px;
}

.sticky-blogs-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: black;
}

.sticky-blogs-button {
    margin: 0;
    padding: 8px 20px;
    border: none;
    border-radius: 12px;
    background-color: #782BFF;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    min-width: 148px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
}

.sticky-blogs-button:hover {
    background-color: #6816EB;
	color: #ffffff;
    transform: scale(1.03);
}
@media (max-width: 480px) {
        .sticky-blogs {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 12px 16px;
        gap: 10px;
        width: 90%;
    }


    .sticky-blogs-text {
        font-size: 14px;
        line-height: 1.4;
        margin-right: 0;
    }

    .sticky-blogs-button {
        font-size: 13px;
        padding: 8px 20px;
        align-self: center;
    }
}

a.links-color {
    color: #ffffff;
    text-decoration: underline !important;
}

p a {
    color: #782BFF;
}

.banks-height {
    height: 70px;
}



.brand-color {
color: #F37B51;
}

.stop-solutions:hover .selections-heading .elementor-heading-title,
.stop-solutions:hover .sol-descriptions p {
    color: white !important;
}



    .timeline {
      position: relative;
      display: flex;
      justify-content: space-between;
      margin: 3rem auto;
      flex-wrap: wrap;
    }

    .timeline::before {
      content: "";
      position: absolute;
      top: 53%;
      left: 0;
      right: 0;
      height: 2px;
      background-color: #00bcd4;
      z-index: 0;
    }

    .event {
      position: relative;
      text-align: center;
      width: 20%;
      z-index: 1;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.6s ease-in-out forwards;
    }

    .event:nth-child(1) { animation-delay: 0.2s; }
    .event:nth-child(2) { animation-delay: 0.4s; }
    .event:nth-child(3) { animation-delay: 0.6s; }
    .event:nth-child(4) { animation-delay: 0.8s; }
    .event:nth-child(5) { animation-delay: 1s; }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .event .dot {
      width: 18px;
      height: 18px;
      background: #22ACC7;
      border: 4px solid #fff;
      border-radius: 50%;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      outline: 1px solid #22ACC7;
    }


    .event .top-text {
      margin-bottom: 20px;
      font-size: 18px;
      color: #000000;
    }

    .event .bottom-text {
      font-size: 18px;
      color: #000000;
      margin-top: 15px;
    }

    img.arrow-img,
    img.arrow-up {
      position: absolute;
      width: 8px;
    }

    img.arrow-img {
      left: 50%;
      transform: translateX(-50%);
      top: 54%;
    }

    img.arrow-up {
      left: 50%;
      transform: translateX(-50%);
      bottom: 50%;
    }

    .bottom-highlight {
      position: relative;
      top: 70px;
    }

    .top-highlight {
      position: relative;
      bottom: 48px;
    }

    .event.logo-timeline {
    position: relative;
    top: -6px;
}

    .bottom-logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 120px;
      text-align: center;
    }


.last-dots {
    position: absolute;
    top: 5px;
}

    .logo-subtext {
      font-size: 16px;
      color: #777;
      line-height: 1.3;
    }

    .logo-text {
      font-weight: bold;
      color: #f57c00;
      font-size: 18px;
    }

 @media screen and (max-width: 768px) {
    .timeline {
        flex-direction: row;
        overflow-x: auto;
        flex-wrap: nowrap !important;
        white-space: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        padding: 1rem 0;
        gap: 1rem;
    }
	 
	 .bottom-highlight {
    position: relative;
    top: 7px;
    left: 17px;
}
  .event {
    width: 40%; /* adjust width per event */
    flex: 0 0 auto; /* don't shrink */
    margin: 0 0.5rem;
  }
  .homeEvents .event{
    margin:0;
  }

	 .bottom-logo {
    position: absolute;
    left: 15%;
    transform: translateX(-50%);
    top: 120px;
    text-align: center;
}
	 
	 .event .bottom-text {
    font-size: 14px;
    color: #000000;
    width: 72%;
    margin-top: 14px;
    text-wrap: auto;
}
    .timeline::before {
        top: 38%;
        height: 2px;
        width: 251%;
        left: 0;
        transform: translateY(-50%);
    }
	 
	 .logo-subtext {
    font-size: 12px;
    color: #777;
    line-height: 1.3;
}
.top-highlight {
    position: relative;
    bottom: 2px;
}
	 
	 .event .top-text {
    margin-bottom: 20px;
    font-size: 14px;
    color: #000000;
}
	 .timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 0rem auto;
    flex-wrap: wrap;
}
	 
  img.arrow-img, img.arrow-up {
    display: none; /* optional: hide arrows on mobile */
  }

  .bottom-logo {
    position: relative;
    top: 10px;
    transform: translateX(0);
  }

  .timeline {
  scroll-snap-type: x mandatory;
}

.event {
  scroll-snap-align: start;
}

}

.stop-solutions {
  position: relative;
  overflow: hidden !important;
  height: 300px; /* Set based on your image height */
}

/* Common styles for image wrappers */
.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* Default image */
.sections-img {
  display: block;
  animation: slideInUp 1.0s ease forwards;
  z-index: 2;
}

/* Hover image is hidden by default */
.sections-imgonhover {
  display: none;
  z-index: 1;
}

/* On hover */
.stop-solutions:hover .sections-img {
  display: none;
}

.stop-solutions:hover .sections-imgonhover {
  display: block;
  animation: slideInUp 1.0s ease forwards;
  z-index: 3;
}

/* Keyframe animation */
@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
  }
}


.stop-solutions-right {
  position: relative;
  overflow: hidden !important;
}

/* Common styles for image wrappers */
.slide-img-right {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* Default image */
.sections-img-right {
  display: block;
  animation: slideInFromRight 1.0s ease forwards;
  z-index: 2;
}

/* Hover image is hidden by default */
.sections-imgonhover-right {
  display: none;
  z-index: 1;
}

/* On hover */
.stop-solutions-right:hover .sections-img-right {
  display: none;
}

.stop-solutions-right:hover .sections-imgonhover-right {
  display: block;
  animation: slideInFromRight 1.0s ease forwards;
  z-index: 3;
}

/* Keyframe animation: slide from right to center */
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0%);
  }
}

@media (max-width: 767px) {
.universtry-listed {
        top: 17rem;
        left: -21.6rem;
        width: 300px;
        z-index: 5;
    }
    .scholarships-aids {
        top: -33rem;
        left: -1.6rem;
        width: 300px;
    }
       .hidden-cost {
        top: 3.2rem;
        left: 0.3rem;
        z-index: 2;
        width: 300px;
    }

   .students-assisted {
        top: 22rem;
        left: -21.5rem;
        width: 300px;
    }

 .load-request {
        top: -12.2rem;
        left: -31.1rem;
        width: 300px;
    }

   .india-cities {
        top: -18.1rem;
        left: 26.9rem;
        z-index: 5;
        width: 300px;
    } */
    .no-wrap-box {
        flex-wrap: nowrap;
        height: 150px;
  } 
	
	
	.scroll-builts {
    overflow: hidden !important;
}
	
    .count-tittle p {
        font-size: 10px !important;
        margin-bottom: 0px;
        padding-bottom: 0px;
    }
.elementor-counter-number-wrapper span {
    font-size: 36px !important;
}

.sl-heading .elementor-heading-title {
        font-size: 16px !important;
    }
.universtry-listed, .scholarships-aids, .hidden-cost, .students-assisted, .load-request, .india-cities {
        padding: 11px;
        border-radius: 20px;
    }

  .hidden-cost.active {
    transform: translate(-17rem, -18rem) scale(1) !important;
}

.students-assisted.active
 {
    transform: translate(20.5rem, -10rem) scale(1) !important;
}

	.load-request.active {
    transform: translate(29rem, 7rem) scale(1) !important;
}
	
.universtry-listed.active {
    transform:  translate(21rem, -8rem) scale(1) !important;
}

.india-cities.active {
    transform: translate(-26rem, 11rem) scale(1) !important;
}

.scholarships-aids.active {
    transform: translate(0rem, 19rem) scale(1) !important;
}
	
.sections-imgonhover {
    display: none !important;
}
	
.img-hides {
    display: none !important;
}
	
}



/* Shared base style */
.students-assisted,
.hidden-cost,
.universtry-listed,
.india-cities,
.scholarships-aids,
.load-request {
    position: relative;
    z-index: 1;
    transform: translate(0, 0) scale(0.8); /* Clean starting position */
    transition: transform 0.6s ease-in-out;
}

/* .scroll-builts stays above all */
.scroll-builts {
    position: relative;
    z-index: 10;
}

/* Individual element positions */
.students-assisted {
    top: 13rem;
    left: -20.5rem;
}

.hidden-cost {
    top: 18.2rem;
    left: 16.3rem;
    z-index: 2;
}

.universtry-listed {
    top: 7rem;
    left: -20.6rem;
    z-index: 5;
}

.india-cities {
    top: -12.1rem;
    left: 25.9rem;
    z-index: 5;
}

span.ceo-tittle {
    font-weight: 700;
    color: #555555;
}

.scholarships-aids {
    top: -19rem;
    left: 0.4rem;
}

.load-request {
    top: -5.2rem;
    left: -28.1rem;
}

/* Active slide-in animations */
.students-assisted.active {
    transform: translate(23rem, -15rem) scale(1);
}

.hidden-cost.active {
    transform: translate(-13rem, -21rem) scale(1);
}

.universtry-listed.active {
    transform: translate(21rem, -10rem) scale(1);
}

.india-cities.active {
    transform: translate(-21rem, 14rem) scale(1);
}

.scholarships-aids.active {
    transform: translate(2rem, 24rem) scale(1);
}

.load-request.active {
    transform: translate(28rem, 7rem) scale(1);
}

table span {
    font-size: 14px;
}

.vide-items .elementor-video {
    height: 350px !important;
    object-fit: cover !important;
}


.vide-items .elementor-video {
    height: 350px !important;
    object-fit: cover !important;
}

.vide-items img {
    height: 290px !important;
}

.leafio-aspc-section {
    background: #EAEDF4 !important;
    padding: 9px;
    margin: 0px !important;
    margin-bottom: 20px !important;
    border-radius: 15px !important;
    /* border: 3px solid #193177; */
}

.leafio-aspc-section.template-light p.summary-header {
    background: linear-gradient(90deg, #0E2360 34.5%, #193077 59.5%) !important;
    color: white;
    margin: 0 0 10px 0;
    padding: 11px;
    border-radius: 12px 12px 0px 0px !important;
}

p.summary-header::before {
    content: "";
    display: inline-block;
    width: 20px; /* Adjust width */
    height: 20px; /* Adjust height */
    background-image: url('https://dev.gradright.com/wp-content/uploads/2025/06/Group-267.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px; /* Space between icon and text */
    vertical-align: middle;
}

.leafio-aspc-section.template-light p.summary-header {
    background: #2596a4;
    color: white;
    margin: 0 0 10px 0;
    padding: 13px 18px !important;
}

.leafio-aspc-section.template-light {
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    border: 2px solid #193177;
    border-top: unset;
}



    .blogs-btn {
      width: 100%;
      background-color: #FFFFFF;
      border-radius: 20px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .blogs-btn-img {
      background-color: #26415B;
      padding: 20px;
      text-align: left;
    }

   .blogs-btn-img img {
    width: 80%;
    margin-bottom: 10px;
}

    .blogs-btn-img h4 {
      margin-bottom: 0;
      color: white;
      font-size: 18px;
      font-weight: 600;
    }

    .btn-content {
      padding: 20px;
    }

    .btn-content h4 {
      font-size: 16px;
      font-weight: 500;
      color: #333;
      margin-bottom: 20px;
    }

    a.button-desing {
    display: inline-block;
    background-color: #17C8E5;
    padding: 8px 20px;
    color: white;
    text-align: center;
    font-size: 15px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

    a.button-desing:hover {
      background-color: #12aeca;
    }




/* Clean Sitemap Styles */
.sitemap-container {
    max-width: 1300px;
    margin: 50px auto;
    padding: 46px 30px;
    background: #ffffff;
    border-radius: 20px;
}

.sitemap-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e1e5e9;
}

.sitemap-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.sitemap-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin: 0;
}

.sitemap-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.sitemap-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #e9ecef;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-icon {
    font-size: 1.2rem;
}

.sitemap-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sitemap-list > li {
    margin-bottom: 8px;
}

.sitemap-list > li > a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: block;
    padding: 3px 0;
    border-left: 3px solid #3498db;
    padding-left: 16px;
}

.sitemap-list > li > a:hover {
    color: #3498db;
    text-decoration: underline;
}

.sub-list {
    list-style: none;
    margin: 10px 0 0 20px;
    padding: 0;
}

.sub-list li {
    margin-bottom: 8px;
}

.sub-list a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    padding: 5px 10px;
    border-radius: 3px;
}

.sub-list a:hover {
    color: #2c3e50;
    background: #e9ecef;
    text-decoration: underline;
}

.last-updated {
    text-align: center;
    padding: 40px 0 20px;
    color: #7f8c8d;
    font-style: italic;
    border-top: 1px solid #e9ecef;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sitemap-container {
        padding: 20px 15px;
        margin: 20px;
    }
	
.post-topbar {
    background: #212141;
    padding: 8px 8px !important;
    border-radius: 44px !important;
    width: 100%;
    margin: 0px 0;
    display: flex;
    gap: 1%;
    align-items: center;
    justify-content: center;
}
    
.post-topbar .offer-label {
    font-size: 13px;
    text-align: center;
}	
.sitemap-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 20px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e1e5e9;
}
	
    .sitemap-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
	.sitemap-header p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}
    
    .sitemap-header h1 {
        font-size: 1.5rem;
    }
    
    .sitemap-section {
        padding: 20px;
    }
}

/* WordPress Theme Compatibility */
.page-template-page-sitemap .entry-content {
    max-width: none;
}

.page-template-page-sitemap .site-main {
    padding: 0;
}


/* Back To Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 98%;
  transform: translateX(-100%); /* pull it left from 98% */
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.back-to-top:hover {
  background: #005bb5;
}

/* SVG Progress Ring */
.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}
.progress-ring__background {
    fill: transparent;
    stroke: #ffffff;
    stroke-width: 8px;
}

.progress-ring__progress {
    fill: #22acc7;
    stroke: #F37B51;
    stroke-width: 3px;
    stroke-linecap: round;
    stroke-dasharray: 138;
    stroke-dashoffset: 138;
    transition: stroke-dashoffset 0.25s linear;
}

/* Arrow */
.arrow {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  z-index: 2;
}


.cls-2 {
    isolation: isolate;
    opacity: 0.2 !important;
}

.cls-1 {
    opacity: 1 !important;
}



.post-topbar {
    background: #212141;
    padding: 8px 20px;
    border-radius: 10px;
    width: 100%;
    margin: 0px 0;
    display: flex;
    gap: 1%;
    align-items: center;
    justify-content: center;
}

.post-topbar .offer-label {
    font-weight: 500;
    color: #ffffff;
    font-size: 14px;
    background: linear-gradient(85.46deg, #355FD0 -14.8%, #B03DEB 118.98%);
    border-radius: 50px;
    padding: 7px 16px;
    line-height: 20px;
}

.post-topbar .offer-text {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
}


@media (min-width: 1201px){
    .HeaderNavigation .elementskit-submenu-indicator {
        display: none !important;
    }

    .mblCustomContent {
        display: none;
    }

}

@media (max-width: 1200px) {
    .allCarouselWrapper .swiper-slide {
        border: 1.67px solid #146BB4;
        box-shadow: 0px 4.21px 12.42px 0px #0000002B;
        border-radius: 8px;
        cursor: pointer;
    }
    .elementskit-menu-overlay{
        display:none !important;
    }
    .HeaderNavigation .elementskit-nav-identity-panel {
        display: flex !important;
        justify-content: space-between;
        border-bottom: 1px solid #EDEDED;
        padding: 10px !important;
    }
    
    ul#menu-main-menu{
        padding:24px 0px !important;
    }
    .elementskit-menu-offcanvas-elements .elementskit-navbar-nav .ekit-menu-nav-link {
        color: #1E1E1EB2 !important;
        padding: 28px 24px !important;
        display: flex;
        border-bottom: 1px solid #EDEDED;
        border-radius: 0 !important;
    }
    .HeaderNavigation .ekit-menu-nav-link:hover, .HeaderNavigation .ekit-menu-nav-link:focus{
        background-color: transparent !important;
        color:#a09fb2 !important;
    }
    .mblHeadings .mblList{
        border-bottom: 1px solid #ededed !important;
    }
    .elementskit-megamenu-panel.elementskit-dropdown-open{
        transform:translateY(-30px) !important;
    }
    #ekit-megamenu-main-menu {
        background-color: #fff !important;
    }
    .elementskit-menu-offcanvas-elements .navBoxList .ekit_page_list_title_title{
        padding-left: 12px;
        padding-right: 12px;
    }
    i.icon.icon-down-arrow1.elementskit-submenu-indicator.active {
        transform: rotate(270deg);
    }
    .HeaderNavigation .elementskit-menu-hamburger svg {
        width: 24px;
        height: 24px;
    }
    .HeaderNavigation .elementskit-menu-hamburger svg path {
        stroke: #000;
    }
    .mblCustomContent .blueBtn {
        display: flex;
        padding: 12px 24px;
        justify-content: center;
        align-items: center;
        gap: 4px;
        align-self: stretch;
        border-radius: 12px;
        background: #782BFF;
        color: #fff;
        font-family: "Poppins", sans-serif;
        border: 1px solid #782BFF;
    }
    .mblCustomContent .whiteBtn{
        display: flex;
        padding: 12px 24px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        align-self: stretch;
        border-radius: 12px;
        border: 1px solid #D1D1D6;
    }
    .mblCustomContent .blueBtn:hover {
      background: #6816EB;
    }
    .mblCustomContent .whiteBtn:hover {
      background: #2F6BE3;
      color:#fff;
    }
    .mblCustomContent {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: stretch;
      gap: 16px;
      padding: 24px;
      background: #fff;
      border-radius: 12px;
      margin-top:200px;
      /*position: absolute;
      bottom: 50px;
      width: 100%;*/
    }

    /* --- Top section --- */
    .mblCustomContent .topContent {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .mblCustomContent .topContent img {
      width: 116px;
      height: 66px;
    }

    .mblCustomContent .ctaContent {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .mblCustomContent .ctaContent h3 {
     color: #1E1E1E;
      font-family: "Poppins", sans-serif;
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%; /* 21px */
      letter-spacing: -0.154px;
    }

    .mblCustomContent .ctaContent p {
      color: rgba(30, 30, 30, 0.58);
      font-family: "Poppins", sans-serif;
      font-size: 12px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%; /* 18px */
      letter-spacing: -0.132px;
    }

    .mblCustomContent .ctaContent a {
      color: #096DEB;
      font-family: "Poppins", sans-serif;
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%; /* 21px */
      text-decoration-line: underline;
      text-decoration-style: solid;
      text-decoration-skip-ink: auto;
      text-decoration-thickness: auto;
      text-underline-offset: auto;
      text-underline-position: from-font;
    }

    .mblCustomContent .ctaContent a:hover {
      background: #3255B0;
    }

    /* --- Bottom buttons --- */
    .mblCustomContent .bottomContent {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .mblCustomContent .bottomContent a {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .ctaContent h3, .ctaContent p {
        margin-bottom: 0;
    }
    .mblCustomContent .topContent {
        border-radius: 8px;
        background: #F1F9FF;
        display: flex;
        padding: 12px;
        align-items: flex-start;
        gap: 12px;
        align-self: stretch;
    }
    button.elementskit-menu-hamburger.elementskit-menu-toggler {
        background: transparent !important;
    }
    .testNewCarousel .swiper-wrapper .swiper-slide:nth-child(3n + 1) {
        margin-left: 15px; 
    }
    .testNewCarousel .swiper-wrapper .swiper-slide:nth-child(3n + 2) {
        margin-left: 25px;
    }
    .testNewCarousel .swiper-wrapper .swiper-slide:nth-child(3n + 3) {
        margin-left: 15px;
    }

}

@media (max-width: 1024px) {

    .icon-down-arrow1.elementskit-submenu-indicator {
        display: inline-block !important;
        width: 15px;
        height: 15px;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='7' height='12' viewBox='0 0 7 12' fill='none'><path d='M1 11L6 6L1 1' stroke='%231B1B1B' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/></svg>");
        border: 0 !important;
        right: 0;
        border-radius: unset;
        padding: 8px !important;

    }
    button.elementskit-menu-close.elementskit-menu-toggler {
        border: 0;
        width: 10px;
        padding: 0;
        margin: 0 !important;
    }
    .elementor-widget.elementor-widget-ekit-nav-menu {
        z-index: 99;
    }
    /*.elementskit-menu-offcanvas-elements .navBoxTitle::after{
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='7' height='12' viewBox='0 0 7 12' fill='none'><path d='M1 11L6 6L1 1' stroke='%231B1B1B' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/></svg>");
        width: 8px;
        height: 10px;
    }*/
    .elementor-widget-ekit-nav-menu nav.ekit-wid-con.ekit_menu_responsive_tablet {
        background: transparent;
        border: 0;
        padding: 0;
    }

    .elementor-widget-ekit-nav-menu nav.ekit-wid-con.ekit_menu_responsive_tablet button.elementskit-menu-hamburger.elementskit-menu-toggler {
        border: 0;
    }
    .elementskit-menu-offcanvas-elements .navBoxTitle  .elementor-heading-title{
        font-weight:600 !important;
    }

    .ekit_menu_responsive_tablet #ekit-megamenu-main-menu.active {
        max-width: unset;
    }
    /* Ensure the panel is always "display:block" so animation can run */
    .ekit_menu_responsive_tablet .elementskit-megamenu-panel {
      display: block !important;  /* overrides inline JS */
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transform: translateY(-10px);
      transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
      pointer-events: none; /* prevent clicks when closed */
    }

    /* Open state */
    .ekit_menu_responsive_tablet .elementskit-megamenu-panel.elementskit-dropdown-open {
      max-height: 1000px; /* adjust if menu is taller */
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .ekit_menu_responsive_tablet .elementskit-megamenu-panel .elementor-element{
        box-shadow:unset !important;
        border:0;
    }

    .elementskit-menu-close {
        color: transparent;
        font-size: 0;
        line-height: 0;
        text-indent: -9999px;
        background: url('https://dev.gradright.com/wp-content/uploads/2025/09/Multiply.png') no-repeat center center !important;
        background-size: contain;
    }
    .startJourney  a.ekit-menu-nav-link {
        background: #2F6BE3;
        display: inline-block !important;
        font-family: Outfit !important;
        font-weight: 600 !important;
        font-size: 16px !important;
        line-height: 20px;
        color: #fff !important;
        border-radius: 100px;
        width: 150px;
        text-align: center !important;
    }

    .startJourney {
        padding-left: 14px !important;
    }
    .mbl_menu_item {
        margin-top: 7px !important;
    }
    .startJourney a.ekit-menu-nav-link:hover{
        background: #3255B0;
    }
    .elementskit-menu-offcanvas-elements .elementskit-navbar-nav .ekit-menu-nav-link{
        color: #a09fb2;
    }
    .forUnis  a.ekit-menu-nav-link {
        color: #A2A3AF !important;
    }
    ul#menu-main-menu {
        padding-top: 24px;
    }
    .testimonial-item {
        width: 125px;
    }
    #ekit-megamenu-main-menu .elementskit-dropdown-has .ekit-menu-nav-link .elementskit-submenu-indicator {
        pointer-events: none;
    }
    #ekit-megamenu-main-menu li.menu-item {
        margin: 0;
    }
    #ekit-megamenu-main-menu .elementskit-dropdown-has .dropdownBox {
        border-radius: 0;
    }

}


/* Hide desktop version on mobile */
@media (max-width: 767px) {
  .in-hide-mobile {
    display: none;
  }

   .uniTabTable .td-content-wrapper, .governTabTable .td-content-wrapper{
        display: flex;
        flex-direction: column;
        align-items: start;
    }
    .uniTabTable .td-content-wrapper .th-mobile-screen, .governTabTable .td-content-wrapper .th-mobile-screen{
        flex-basis: auto !important;
        margin: 0;
        padding: 0;
    }
    .uniTabTable .td-content-wrapper .td-content, .governTabTable .td-content-wrapper .td-content{
        justify-content: start;
    }
    .uniTabTable tr, .governTabTable tr {
        display: flex;
        margin-bottom: 20px;
        padding: 15px;
        flex-direction: column;
        box-shadow: 0px 1.7px 6.82px rgba(0, 0, 0, .07) !important;
        border-radius: 14px;
        border: 1px solid #f7f7f7;
    }
    .uniTabTable .data-table-header-text, .governTabTable .data-table-header-text {
        color: #8E8E8E;
    }
    .uniTabTable td, .governTabTable td {
        padding: 10px 0px !important;
    }
    .uniTabTable .td-content p, .governTabTable .td-content p{
        margin-bottom: 0;
    }
    .uniTabTable tbody tr td:first-child .th-mobile-screen {
      display: none !important;
    }
    .tabsLayout  .e-n-tabs-heading, .tabsCircular .e-n-tabs-heading{
        display: flex;
    }
    .tabsLayout .e-n-tabs-heading, .tabsCircular .e-n-tabs-heading{
        display: flex !important;
    }
    .tabsLayout .e-n-tabs-heading .e-n-tab-title, .tabsCircular .e-n-tabs-heading .e-n-tab-title{
        margin: 0 !important;
    }
    .ColToRowLayout .elementor-image-box-wrapper {
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center;
        text-align: center !important;
    }
     .scholarCarousel .elementor-widget-text-editor {
        min-height: 110px;
    }
    .ColToRowLayout .elementor-image-box-wrapper .elementor-image-box-content{
        width: auto;
    }
    .ColToRowLayout figure.elementor-image-box-img{
        margin:0 !important;
    }
    .ColToRowLayout h3.elementor-image-box-title {
        margin-bottom: 0px !important;
    }
    .bannerImage{
        display: none;
    }
    .events-wrapper {
        flex-direction: column;
        height: auto;
        gap:22px;
    }

    .events-wrapper .event-list {
        max-height: 300px;
        height: 100%;
        width: 100%;
        overflow: scroll;
    }

    .event-details {
        width: 100%;
        padding: 0;
    }

    .event-details .event-detail {
        padding-bottom: 150px;
    }

    .table-container {
      width: 100%;
      overflow-x: auto;
    }

    .table-container table {
      width: 100%;
      border-collapse: collapse;
      min-width: 600px; 
    }

    .table-container th,
    .table-container td {
      padding: 12px;
      text-align: left;
      border: 1px solid #ddd;
      white-space: nowrap; 
    }

    .table-container th {
      background-color: #f2f2f2;
    }
    ul.footer-links a {
        font-size: 10px;
    }
    .footer-section ul.footer-links {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .contact-section {
        width:100%;
        display: flex;
        align-items: center;
        gap:15px;
    }
    .contact-section h3{
        width: 30%;
        text-align: left;
    }
    .contact-section .contact-info{
        flex-direction: row;
        margin-top:0;
    }
    .contact-section .contact-item {
        margin-right: 30px;
    }

      #secondFooter .navBoxList {
        display: none;
      }
      .navBoxTitle {
        cursor: pointer;
        position: relative;
        padding-right: 25px; /* space for arrow */
      }

      /* default arrow (down) */
      .navBoxTitle::after {
        content: "";
        position: absolute;
        right: 5px;
        top: 50%;
        width: 14px;
        height: 14px;
        transform: translateY(-50%) rotate(0deg);
         background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='7' height='12' viewBox='0 0 7 12' fill='none'><path d='M1 11L6 6L1 1' stroke='white' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/></svg>");
        background-size: contain;
        background-repeat: no-repeat;
        transition: transform 0.3s ease;
      }

      /* active arrow (up) */
      .navBoxTitle.active::after {
        transform: translateY(-50%) rotate(90deg);
      }
      .navBoxTitle  .elementor-heading-title, .footerTitle {
         font-weight: 500 !important;
       }

       .ekit_menu_responsive_mobile {
            background: transparent;
        }
        .ekit_menu_responsive_mobile button.elementskit-menu-hamburger{
            border:0;
        }
        .ekit_menu_responsive_mobile button.elementskit-menu-hamburger svg{
            width:23px;
            height:23px;
        }

    .tabsCircular .e-n-tabs-heading{
        margin-bottom:26px;
    }
    .testimonial-item {
        width: 80px;
    }
    .testimonialText {
        font-size: 24px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 320px;
        line-height: 32px;
    }
    .testimonial-cluster {
        position: relative;
        height: 520px;
        overflow: visible;
    }
    .testimonialRow {
        flex-direction: column;
    }
    .testimonialVideo {
        flex: 0 0 100%;
        max-width: 100%;
        min-height:auto;
    }
    .testimonialContent {
        flex: 0 0 100%;
        max-width: 100%;
        position: static;
        padding:32px 24px;
    }
    .userDetail {
        position: relative; 
        margin-top: 40px;
        bottom:auto;
    }
    .testimonialFullText{
        font-size:16px;
    }
    .popup-content .close {
        top: 0;
        right: 0;
    }
    /*.HeroHeading .eael-fancy-text-strings{
        font-size:30px !important;
        line-height: 38px !important;
    }*/
    button.elementskit-menu-close.elementskit-menu-toggler {
        background: transparent;
    }
    nav.ekit-wid-con.ekit_menu_responsive_mobile {
        padding: 0 !important;
    }
    button.elementskit-menu-hamburger.elementskit-menu-toggler {
        padding: 0 !important;
        width:23px !important;
    }
    .bigText {
        font-size: 32px;
    }
    .instaFeed .ti-layout-item{
        height: auto !important;
    }
    
    .tabsCircular .e-n-tabs-heading{
        flex-wrap: nowrap !important;
    }
    
    .ourFeatures {
        width: 270px !important;
        right: 0;
        flex-wrap: unset !important;
        height:176px !important;
        bottom: 0px;
        top: auto;
        transform: none;
    }
    .spline-bg spline-viewer {
        width: auto;
        transform: scale(1.2) translateX(-40%);
    }
    .selectionFeatures  span.elementor-icon-list-icon {
        padding-right: 5px !important;
    }

    .ourFeaturesContainer {
        flex-wrap: nowrap !important;
        gap: 10px !important;
    }
    .ourFeatures {
        padding: 15px !important;
    }
    .srHeroSection {
        background-image: none !important;
    }
    .ourFeatures .selectionFeatures {
        padding: 6px;
    }
    .spline-bg {
        overflow: hidden;
    }
    .journeyTabs .e-n-tab-title[aria-selected="true"] span {
        font-size: 32px !important;
    }
    .watchStory span.elementor-icon-list-text {
        display: none;
    }
    .ourFeatures.fundriight{
        width: 217px !important;
        right: 0;
        flex-wrap: unset !important;
        height:164px !important;
    }
     .ourFeatures.fundriight {
        padding: 12px !important;
    }
    .video-frame{
        width:100%;
        height:530px;
    }
    .instaVideoWrapper .elementor-widget{
        width:100%;
    }
    /*.bannerTitle1.HeroHeading {
        min-height: 100px;
    }*/
    .events-marquee {
        font-size: 12px;
    }
    .testimonial-popup .popup-content{
        padding: 0;
        border-radius: 8px;
    }
    .testimonialVideo iframe{
        min-height: 227px;
    }
    .testimonial-popup .testimonialFullText{
        padding-top: 0;
    }
    .testimonialVideo {
        border-bottom-left-radius: 0;
        border-top-right-radius: 8px;
    }
    .testimonial-popup .popup-content .close {
        top: -44px;
        right: 0px;
        width: 35px;
        height: 35px;
        background-color: #ddd;
        border-radius: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
    }
    .testimonial-popup .popup-content .close svg {
        fill: #000;
        width: 20px;
    }
    .testimonial-popup .testimonialContent img{
        width:85px;
    }
    img.testiThumbnail {
        position: absolute;
        left: 16px;
        top: -40px;
    }
    #preloader h2 {
          font-size: 28px;
          line-height: 32px;
    }
    .getFreeForm .dialog-widget-content.dialog-lightbox-widget-content.animated {
        max-width: 98%;
        width: 98%;
    }
    #fomo-wrapper{
        display: none !important;
    }
    .testNewCarousel .swiper-wrapper .swiper-slide {
        width: 318px !important;
        height: 285px !important;
    }
    .UniSelMbl{
        border-radius: 10px !important;
        background: radial-gradient(228.56% 154.17% at 52.58% 60.24%, #3255B0 0%, #373994 75.48%), #FFFAF8;
    }
    .EduLoanMbl{
        border-radius: 10px !important;
        background: radial-gradient(228.56% 154.17% at 52.58% 60.24%, #FC7B50 0%, #AB5143 75.48%), #FFFAF8;
    }
    .healthInsMbl{
        border-radius: 10px !important;
        background: radial-gradient(228.56% 154.17% at 52.58% 60.24%, #609871 0%, #314A3D 75.48%), #FFFAF8;
    }
    .hiddenMbl{
        display: none !important;
    }
    .hiddenDesktop{
        display: flex !important;
    }
    #OnePlateForm .elementor-widget-n-carousel .swiper-pagination-bullet {
        background: radial-gradient(228.56% 154.17% at 52.58% 60.24%, #FC7B50 0%, #AB5143 75.48%), #D9D9D9;
    }
    .scrollCarousel .bankLogo img{
        max-width: 100px;
    }
    span#sch_prev {
        position: absolute;
        right: auto;
        top: auto;
        transform: translateY(70%) rotate(180deg);
        left: calc(50% - 50px);
        bottom: -34px;
    }

    span#sch_next {
        position: absolute;
        right: calc(50% - 50px);
        top: auto;
        transform: translateY(70%);
        bottom: -40px;
    }
    #scholarship-results{
        padding: 20px 0;
        flex-direction: column;
    }
    #scholarship-results .sch-card {
        width: 100%;
    }
    .filtersBtn{
        display: flex;
    }
    #scholarship-filters {
        flex-direction: column;
        gap:12px;
        margin-bottom: 0;
    }
    .filterSearch{
        display: flex;
        flex: 0 0 100%;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        padding: 0;
        gap: 10px;
    }
    #scholarship-filters input#sch_search {
        flex: 0 0 86%;
    }
    .filtersBtn{
        display: flex;
        flex: 1;
    }
    .filtersInner {
        flex: 1;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
    }
    .filtersInner select#sch_program {
        flex: 0 0 35%;
    }

    .filtersInner select#sch_country {
        flex: 0 0 40%;
    }
    .filtersInner select#sch_level {
        flex: 0 0 50%;
    }

    .filtersInner {
        display: none;
        flex-wrap: wrap;  
        gap: 15px;
        width: 100%;
        padding: 0;
    }
    .filtersBtn svg {
        width: 32px;
        height: 32px;
    }

    .filtersBtn span {
        border-radius: 8px;
        border: 1px solid rgba(62, 151, 255, 0.61);
        background: #FFF;
        box-shadow: 0 0.893px 1.19px 0 rgba(0, 0, 0, 0.05);
        display: flex;
        padding: 7px;
        align-items: center;
        gap: 8px;
    }
    .filtersBtn .filterUp{
        display: none;
    }
    .showFilter .filterDown {
        display: none;
    }
    .showFilter .filterUp {
        display: flex;
    }
    #scholarship-results-wrapper{
        min-height: 627px;
    }
    #loading-spinner{
        left:50%;
    }
     #scholarship-filters #sch_search {
        flex: 0 0 84%;
    }
    .schlrshipCarouselMbl .swiper-slide {
        transition: all 0.35s ease;
        opacity: 0.3;
    }
    .schlrshipCarouselMbl .swiper-slide-active {
        transform: scale(1);
        opacity: 1;
    }
    .schlrshipCarouselMbl .swiper-wrapper {
        align-items: center;
    }
    .scholarshipMblDescrptn,
    .scholarshipMblBtn {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transform: translateY(10px);
        transition: all 0.35s ease;
    }
    .schlrshipCarouselMbl .swiper-slide-active .scholarshipMblDescrptn,
    .schlrshipCarouselMbl .swiper-slide-active .scholarshipMblBtn {
        max-height: 300px;
        opacity: 1;
        transform: translateY(0);
    }
	.blogPopup .dialog-message.dialog-lightbox-message {
		background: linear-gradient(0deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.48) 100%), linear-gradient(152deg, rgba(95, 215, 240, 0.70) 3.63%, rgba(96, 211, 240, 0.67) 10.96%, rgba(101, 200, 241, 0.59) 21.64%, rgba(110, 183, 242, 0.46) 34.31%, rgba(121, 159, 244, 0.28) 48.32%, rgba(136, 128, 247, 0.05) 63.67%, rgba(140, 122, 248, 0.00) 66.34%), #FFF;
		box-shadow: 0 4px 11.8px 0 rgba(0, 0, 0, 0.17), 0 0 3px 0 rgba(0, 0, 0, 0.55);
	}
	.blogPopup h2 {
		text-align: center;
	}
    .select-wrap.filterSelectOne {
        flex: 0 0 35%;
    }

    .select-wrap.filterSelecTwo {
        flex: 0 0 40%;
    }

    .select-wrap.filterSelecThree {
        flex: 0 0 50%;
    }
    .news-meta {
        font-size: 12px;
    }
    .gn-wrapper {
        flex-direction: column;
    }
    .gn-posts {
        grid-template-columns: repeat(1, 1fr);
    }
    .gn-left {
        width: 100%;
        display: block;
        margin-bottom: 20px;
        top: 54px;
        background: #fafdfe !important;
        padding: 10px 20px !important;
        z-index: 9;
    }
    .gn-left h2 {
        display: none;
    }
    .gn-left {
        display: flex;
        align-items: center;
        gap: 16px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        scrollbar-width: none;
    }
    .gn-left::-webkit-scrollbar {
        display: none;
    }
    .gn-cats {
        flex: 0 0 auto;
    }
    .gn-cats ul {
        display: flex;
        gap: 20px;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .gn-cats li {
        font-size: 12px;
        cursor: pointer;
        white-space: nowrap;
        padding:8px 0px;
        color: rgba(35, 7, 53, 0.57);
    }
    .gn-cats li.active {
        color: #2F6BE3;
        font-weight: 600;
        border-bottom: 2px solid #2F6BE3;
        padding-bottom: 1px;
        border-right: 0;
        background: none;
        margin-bottom: 8px;
    }
    .gn-search {
        position: relative;
        display: flex;
        align-items: center;
        cursor: pointer;
        margin: 0;
        margin-right: 10px;
    }

    .NewsMainImage {
        position: relative;
        overflow: hidden;
    }

    .NewsMainImage:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        border-radius: 13.462px;
        pointer-events: none; /* ensures clicks work */
        background: linear-gradient(180deg, rgba(0,0,0,0) 0%, #000 100%);
    }
    .newsMainMetaContent{
        position: absolute !important;
        bottom: 0;
        left: 20px;
        right: 20px;
        z-index: 9;
        opacity: 1;
        width:90% !important;
    }

    .news-meta {
        color: #fff;
    }
    .newsMainMetaContent h2.elementor-heading-title.elementor-size-default a {
        color: #fff;
    }
    .gn-wrapper{
        margin-top: 0;
        gap: 0;
    }
    .gn-search.active svg {
        left: 5px;
        top: 50%;
    }

    .gn-search.active input#gnSearch {
        padding-left: 32px;
    }
    .gn-search.active {padding-left: 0;}

    .gn-search.active input#gnSearch {
        margin-left: 0;
    }
    .gn-post {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }

    .gn-post img {
        width: 126px;
        height: 85px !important;
        object-fit: cover;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .gn-post-content {
        flex: 1;
    }

    .gn-post-content .gn-title a {
        font-size: 14px;
        line-height: 1.35;
        font-weight: 600;
        display: block;
    }

    .gn-meta {
        font-size: 12px;
        margin-bottom: 0px;
        opacity: 1;
    }

    /* Optional: reduce spacing between posts */
    .gn-post:last-child {
        margin-bottom: 0;
    }

    .gn-content .gn-post {
        margin-bottom: 0;
    }

    .gn-content .gn-posts {
        gap: 20px;
    }
    .gn-left{
        margin-bottom: 0;
    }
    .gn-meta {
        margin-top: 0;
    }
    .gn-content {
        min-height: 365px;
        padding: 20px;
    }
    .gn-pagination a, .gn-pagination span {
        padding: 6px;
        font-size: 14px;
        margin: 0;
    }
    .gn-posts p{
        font-size: 12px;
        text-align: center;
        padding-top: 20px;
    }
    .gn-title {
        margin-top: 4px;
    }
    .headingTextList ul.innerList li {
        line-height: 24px;
        margin-bottom: 10px;
    }
    .NewsDetailMeta .news-date {
        font-size: 12px;
    }
    .NewsDetailMeta .news-cat-name {
        padding: 2px 4px;
        font-size: 12px;
    }
    .shareIconsMbl .grad-share-toggle{
            display: flex;
    }
    .shareIconsMbl .grad_news_share_icons {
        position: relative;
    }
    .shareIconsMbl .grad_news_share_icons .grad-share-icons {
        flex-direction: column;
        position: absolute;
        background: #fff;
        padding: 4px;
        border-radius: 10px;
        right: -7px;
        top: 32px;
        display: none;
        gap: 16px;
        box-shadow: rgba(0, 0, 0, 0.12) 1px 4px 59.8px 0px;
    }
    .shareIconsMbl .grad-share-icons{
        display: none;
    }
   .shareIconsMbl .grad_news_share_icons .grad-share-icons a {
        display: block;
        padding: 3px;
        text-align: center;
    }
    .subscriptionForm button.elementor-button {
        min-height: 46px !important;
        width: 100%;
    }
    .subscriptionForm .elementor-field-type-submit{
        margin-top: 2px;
    }
    .shareIconsMbl .grad_news_share_icons .grad-share-icons a svg {
        width: 20px;
        height: 20px;
    }
    .relatedNewsWrapper .gn-post img {
        height: 84px !important;
    }
    .related-grad-news-wrapper.gn-posts {
        gap: 20px;
    }
    .related-grad-news-wrapper.gn-posts .gn-post {
        margin-bottom: 0;
    }
    .subscriptionForm .elementor-message {
        line-height: 1.5em;
    }
    .relatedNewsWrapper .gn-post-content .gn-title a {
        font-size: 16px;
    }
    .teamInnerWrapper {
        overflow: scroll !important;
        overflow-x: scroll;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .teamPhotoWrapper {
        width: 843px !important;
        height: 308px !important;
        min-height: 308px !important;
    } 
    .teamBtn svg {
        width: 15px !important;
        height: 15px !important;
    }
    .teamBtn  span.elementor-button-content-wrapper {
        gap: 4px !important;
    }
    .photoNavigation {
        display: flex;
        gap: 32px;
    }
    .meetTheTeam::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        height: 100% !important;
        width: 150px !important;
        pointer-events: none;
        z-index: 50; 
        background: linear-gradient(to right, 
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0) 80% 
        );
    }
    .meetTheTeam::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 150px; 
        pointer-events: none;
        z-index: 50; 
        background: linear-gradient(to left, 
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0) 80%
        );
    }
    .reportingteamWrapper {
        grid-template-columns: repeat(1, 1fr);
        max-height: 356px;
        overflow-y: scroll;
    }
    .teamLeadWrapper {
        padding: 0px 12px 20px;
    }
    .videoPopup .dialog-widget-content.dialog-lightbox-widget-content.animated {
        max-width: 90%;
    }
    .adviserCarousel .swiper-slide {
        position: relative;
        aspect-ratio: 9 / 11;
    }
    .claimIcon svg {
        fill: transparent !important;
    }

    .claimIcon .elementor-icon {
      animation: arrow-slide 1.4s ease-in-out infinite;
    }

    /* Keyframes */
    @keyframes arrow-slide {
      0% {
        transform: translateX(0);
        opacity: 1;
      }
      50% {
        transform: translateX(8px);
        opacity: 0.9;
      }
      100% {
        transform: translateX(0);
        opacity: 1;
      }
    }
    .claimOfferBtnMbl a.elementor-button:hover, .claimOfferBtnMbl a.elementor-button:focus {
        background-color: transparent;
    }
    .fontWeight500 {
        font-weight: 500;
    }
    .blogPopup.updated  .blgPopupWrapper .elementor-widget-image{
        width: 100%;
        top: -32px;
        left: 0;
        bottom: auto;
    }
    .blogPopup.updated .innerBlg {
        padding: 225px 15px 15px 15px;
    }
     .blogPopup.updated.australia .innerBlg {
        padding: 255px 15px 15px 15px;
    }
    .grad-post-meta {
        font-size: 12px;
    }
    .grad-post-meta svg {
        width: 18px;
        height: 18px;
    }
    .categoryList {
        width: 82%;
    }
 
    .blogSearch {
        margin-right: 0;
    }
    .cateFilters{
        align-items: center !important;
        top: 55px;
    }
    .MainCategoriesBlog .cateFilters{
       top: 55px; 
    }
    .blogCarousel .elementor-swiper-button {
        display: none !important;
    }
    .blogDetailTitle .elementor-heading-title {
        text-align: left;
    }
    .blogDetailHero a.grad-single-category {
        font-size: 12px;
    }
    .ReviewVideoTestimonials {
        left: 20px !important;
        bottom: 20px !important;
        right: 20px !important;
    }
    .cateFilters .categoryList {
        width: 100%;
    }
    .finderWrapper #scholarship-results {
        grid-template-columns: repeat(1, 1fr);
    }
    .filterSearchWrapper {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 0;
    }
    .scholarshipFinderFilters div#scholarship-filters.is-sticky, .admin-bar .scholarshipFinderFilters  div#scholarship-filters.is-sticky {
        top: 54px;
    }
    .customCalculator .calculator-grid {
        display: flex;
        flex-direction: column;
    }
    .customCalculator .result-section {
        order: 1;
    }
    .customCalculator .input-section {
        order: 2;
        padding: 24px 32px 56px;
        gap: 32px;
    }
    .calculator-container.customCalculator {
        margin: 0 auto;
        background: transparent;
        border: none;        
        padding: 0;
    }
    .emi-inner-wrapper {
        background: linear-gradient(90deg, #0C004B 0%, #974FF0 68.94%, #3BE0F9 145.86%);
        padding: 20px;
        min-height: 230px;
        padding-top: 75px;
    }
    .customCalculator .details-link {
        background: rgba(255, 255, 255, 0.20);
        border: 0;
    }
    .customCalculator .details-text {
        font-size: 12px;
        color: #fff;
    }
    .details-link path {
        stroke: #fff;
    }
    .customCalculator .emi-title {
        color: #EDEFF5C4;
        margin-bottom: 4px;
    }
    .customCalculator .emi-amount {
        background-image: none;
        color: #fff;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        font-size: 42px;
        margin-bottom: 16px
    }
    .customCalculator .result-section{
        gap:20px;
    }
    .customCalculator .summary-grid {
        margin-top: 0;
        padding: 0 20px;
    }
    .customCalculator .summary-item {
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 40px 100px 0 rgba(0, 0, 0, 0.05);
        padding: 12px;
    }
    .customCalculator .summary-label {
        font-size: 14px;
    }
    .customCalculator .summary-value {
        font-size: 16px;
    }
    .customCalculator .summary-content {
        gap: 4px;
    }
    .customCalculator .calculator-grid {
        gap: 16px;
    }
    .customCalculator .input-label {
        font-size: 14px;
    }
    .emiHeroSection {
        margin-top: -55px !important;
    }
    .page-id-34577 #headerMainLogo {
        display: none;
    }
    .page-id-34577 #headerWhiteLogo {
        display: block !important;
    }
    .page-id-34577 .MainHeader .elementor-motion-effects-layer {
        background: rgba(4, 6, 99, 0.23) !important;
        backdrop-filter: blur(40.95px) !important;
    }
    .page-id-34577 .HeaderNavigation .elementskit-menu-hamburger svg path {
        stroke: #fff;
    }
    #amortizationModal .modal-title {
        font-size: 12px;
    }
    #amortizationModal .modal-content {
        width: 100%;
    }
    #amortizationModal .amortization-table {
        width: 575px;
    }
    #amortizationModal .amortization-table th {
        font-size: 12px;
    }
    #amortizationModal .amortization-table td {
        font-family: "Roboto", Sans-serif;
        padding: 12px 14px;
    }
    #amortizationModal .modal-body, #amortizationModal .amortization-table thead {
        background: #fff;
    }
    #amortizationModal .modal-body {
        max-height: unset;
    }
    .relatedBlogContent h2{
        margin:0 !important;
    }
    .CarouselGalleryItem .e-con-inner div, .CarouselGalleryItem .e-con-inner a {
        height: 100% !important;
        object-fit: cover;
    }
    .bankTab{
        display: flex;
        padding: 12.078px 24px;
        justify-content: center;
        align-items: flex-start;
        align-self: stretch;
        border-radius: 147.354px;
        border: 2px solid rgba(255, 255, 255, 0);
        cursor: pointer;
    }
    .bankTab.active {
        border: 2px solid rgba(255, 255, 255, .5);
    }
    .avanseBox,
    .credilaBox {
        will-change: opacity, transform;
    }
    .bankBoxesWrapper .credilaBox {
        display: none;
    }
    .galleryCarousel .halfColumns img {
        height: 175px !important;
        object-fit: cover;
        width: 100%;
    }
    .galleryCarousel .halfColumns img {
        height: 175px !important;
        object-fit: cover;
        width: 100%;
    }
    .galleryCarousel .firstBigColumns img{
        height: 150px !important;
        object-fit: cover;
        width: 100%;
    }
      .galleryCarousel .firstBigColumns .e-con-full .elementor-widget-image:first-child img{
        height: 200px !important;
        object-fit: cover;
        width: 100%;
    }
    .galleryCarousel .OneColumns img{
        height: 360px !important;
    }
    .single-post .gdfaqs-question h3, .gdfaqs-answer p {
        font-size: 14px !important;
    }

    .programContentWrapper {
        flex-direction: column;
        gap: 0px;
        padding: 0px 0 40px 0;
    }
    .leftContentPDD {
        flex: 1 1 auto;
        width: 100%;
    }
    .rightContentPDD {
        flex: 1 1 auto;
        width: 100%;
    }
    .applicationDates {
        display: none;
    }
    img.uniLogo {
        bottom: -42px;
        left: 50%;
        max-width: 65px;
        transform: translateX(-50%);
    }
    h1.program-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 16px;
        text-align: center;
        max-width: 100%;
    }
    .uniInfo h3, .uniInfo p {
        text-align: center;
    }
    .uniButtons {
        justify-content: center;
    }
    .headerPdd {
        width: 100vw; 
        margin-left: calc(-50vw + 50%); 
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .headerPdd::-webkit-scrollbar {
        display: none;
    }
    .listPages {
        gap: 16px;
        width: max-content;
    }
    .listPages li a {
        font-size: 14px;
        padding: 12px 6px;
        display: block;
    }
    .admin-bar .headerPdd, .headerPdd {
        top: 54px;
    }
    .boxProgram, .admin-bar .headerPdd {
        margin-bottom: 16px;
    }
    #campusLife .aboutInnerInfo {
        padding: 20px 0px 20px 16px;
    }
    .CampusProfile  .campusInfo {
        gap: 32px;
        flex-direction: column;
    }
    .requirementsWrapper {
        gap: 20px;
        width: 100%;
        flex-direction: column;
    }
    section.ctaPDD.boxProgram {
        display: none;
    }
    .guidanceSection {
        width: 100%;
    }
    .guidanceWrapper {
        max-width: 202px;
    }
    .mobileSectionWrapper .headingROI {
        margin-bottom: 12px;
    }
    .feeExpensive span {
        color: #898B8C;
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        display: flex;
        gap: 14px;
    }
    .mobileSectionWrapper .totalExpenses .cusotmDivider, .desktopSection{
        display: none;
    }
    .mobileSectionWrapper {
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .mobileSectionWrapper .aboutInnerInfo {
        padding: 12px;
    }
    .qsWrapper .showDates {
        color: #2F6BE3;
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        display: flex;
        gap: 4px;
    }
    .qsWrapper {
        justify-content: center;
        margin-top: 12px;
        display: inline-flex;
        align-items: center;
        width: 100%;
        gap: 8px;
        margin-bottom: 8px;
    }
    .uniInfo p {
        margin-bottom: 16px;
    }
    .infoProgram .rank{
        margin-bottom: 0;
    }
    .guidanceSection svg {
        right: -26px;
    }
    .listProcessWrapper li {
        line-height: 24px;
    }
    .innerBoxProgram {
        margin-bottom: 4px;
    }
    .subHeadingWrapper h3 {
        margin-bottom: 0;
    }
    .popupAppOverlay, .popupCostBreakDown{
        display: none; 
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
        justify-content: center;
        align-items: center;
        background: rgba(27, 27, 27, 0.52);
    }
    .popupAppContent {
        border-radius: 8px;
        background: #F2F2F2;
        box-shadow: 0 4px 11.8px 0 rgba(0, 0, 0, 0.17), 0 0 3px 0 rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(20px);
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        left: 50%;
        display: flex;
        width: 326px;
        padding: 20px 16px;
        flex-direction: column;
        gap: 16px;
        position: relative;
    }
    .closePddPopup {
        position: absolute;
        right: 16px;
        top: 16px;
    }
    .popupAppContent ul.dateList {
        border-radius: 8px;
        border: 1.2px solid #FFF;
        background: #F7F7F7;
        box-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.05);
        width: 100%;
        border-left: 0;
        padding: 18px 12px;
        gap: 6px;
    }
    .popupAppContent span.applicationDatesHeadline {
        color: #23073591;
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
    .popupAppContent .seasonDate, .popupAppContent .applicationDate {
        font-size: 14px;
    }
    .costBreakDown {
        display: flex;
        align-items: center;
        color: #1D1917;
        text-align: center;
        font-family: "Poppins", sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
    }
    .popupCostBreakDown  .popupAppContent {
        width: 100%;
    }
    .popupCostBreakDown  section.totalExpenses.boxProgram {
        margin-bottom: 0;
    }
    .popupCostBreakDown .feeExpensive span {
        font-size: 14px;
    }
    .popupCostBreakDown .headingROI h2.boldROI {
        margin-bottom: 0;
    }
    .shorlistPrograms {
        border-radius: 8px 8px 0 0;
        background: #2F6BE3;
        box-shadow: 0 4px 11.8px 0 rgba(0, 0, 0, 0.17), 0 0 3px 0 rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(20px);
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
    }
    .shortlistText {
        color: #FFF;
        text-align: center;
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
    .innerShortlist {
        justify-content: space-between;
        display: flex;
        padding: 8px 16px;
        align-items: center;
        gap: 16px;
    }
    .grTransparentBtn.shortlistBtn {
        background: #fff;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .uniMoreDetails{
        padding: 0 16px 20px 20px;
    }
    .uniAboutFull {
        padding: 0;
    }
    .uniMoreDetails a.viewUnivMore {
        font-size: 12px;
    }

    .admissionGuideSwiper {
        width: 100%;
        padding: 20px 0 50px 0;
    }
    .admissionGuideSwiper .swiper-slide {
        border-radius: 12px;
        border: 1.2px solid #FFF;
        background: #FAFAFA;
        box-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.05);
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        height: auto;
        display: flex;
        flex-direction: column;
    }
    .admissionGuideSwiper .card-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
    .admissionGuideSwiper .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
   .admissionGuideSwiper .card-content {
        padding: 14px 16px 16px 16px;
    }
    .admissionGuideSwiper .card-title {
        color: #000;
        font-family: "Poppins", sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 550;
        line-height: 130%; 
        margin-bottom: 8px;
        max-width: 200px;
    }
    .admissionGuideSwiper .card-description {
        color: #757575;
        font-family: 'Poppins', sans-serif;
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; 
    }
    .admissionGuideSwiper .card-button:active {
        background: #5b6ef8;
        color: white;
    }
    .admissionGuideSwiper .swiper-pagination {
        bottom: 20px !important;
    }
    .admissionGuideSwiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #ccc;
        opacity: 1;
    }
    .admissionGuideSwiper .swiper-pagination-bullet-active {
        background: #5b6ef8;
        width: 24px;
        border-radius: 4px;
    }
    .tabsContainer{
        display: none;
    }
    a.grTransparentBtn.shortlistBtn:hover svg path {
        stroke: #fff;
    }
    a.grTransparentBtn.shortlistBtn:hover {
        background: #3255B0 !important;
        color: #fff !important;
    }
    .redBg {
        padding: 4px;
    }
    .MainCategoriesBlog  nav.elementor-pagination {
        background: transparent;
        line-height: 56px;
    }
    .grBlueBtn, .grTransparentBtn{
        font-size: 12px;
    }
    #admissionGuidance .aboutInnerInfo {
        padding: 20px 0px 20px 16px;
    }
    .uniInfoWrapper {
        padding: 5px 16px 0;
        position: relative;
    }

}

/* Hide mobile version on desktop */
@media (min-width: 768px) {
  .in-hide-destop {
    display: none;
  }
  .grTitle h2{
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        line-clamp: 3;
        overflow: hidden;
    }
    .uniTabTable {
      width: 100%;
      border-collapse: collapse; /* optional, cleaner borders */
    }

    .uniTabTable th:nth-child(1),
    .uniTabTable td:nth-child(1) {
      width: 18%;
    }

    .uniTabTable th:nth-child(2),
    .uniTabTable td:nth-child(2) {
      width: 30%;
    }

    .uniTabTable th:nth-child(3),
    .uniTabTable td:nth-child(3) {
      width: 20%;
    }

    .uniTabTable th:nth-child(4),
    .uniTabTable td:nth-child(4) {
      width: 32%;
    }
     .governTabTable th:nth-child(1),
    .governTabTable td:nth-child(1) {
      width: 38%;
    } 
      .governTabTable th:nth-child(2),
    .governTabTable td:nth-child(2) {
      width: 28%;
    } 
      .governTabTable th:nth-child(3),
    .governTabTable td:nth-child(3) {
      width: 35%;
    }
    .scholarCarousel .elementor-widget-text-editor {
        min-height: 110px;
    }
    .uniTabTable table td, .uniTabTable table th, .governTabTable table td, .governTabTable table th {
         border-bottom: 1px solid #EBEBEB !important;
    }
    .countersWrapper  > .elementor-column {
      position: relative;
    }

    /* Add right vertical line */
    .countersWrapper  > .e-con-full {
       position: relative;
    }
    .countersWrapper  > .e-con-full:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 0; 
      transform: translateY(-50%);
      width: 1.2px;
      height: 39px; /* fixed line height */
      background: linear-gradient(to bottom, #20B6CE, #B03DEB);
    }
    .countersWrapper  > .e-con-full:first-child::after {
        right: -40px !important;
    }
    .countersWrapper.fundRightCounters  > .e-con-full:not(:last-child)::after {
        right: -11px !important;
    }
     .countersWrapper.fundRightCounters  > .e-con-full:first-child::after {
        right: -11px !important;
    }
    .countersWrapper > .e-con-full:nth-child(3)::after {
        right: -20px !important;
    }

    .countersWrapper.homepage > .e.con-full::after{
        content: none;
    }
    .countersWrapper.homepage > .e-con-full:not(:last-child)::after{
        content: none;
    }

    .mbl_menu_item {
        display: none;
    }
    .subscriptionForm .elementor-field-type-submit {
        position: absolute;
        right: 11px;
        width: 108px;
        max-width: 108px;
        margin: 0 !important;
        top: 6px;
    }
    .blogLeftSidebar {
        position: sticky !important;
        height: fit-content !important;
        top: 40px !important;
    }
    .page-id-34577 .elementor-motion-effects-layer {
        background: #f5f7fc !important;
    }
    .mobileSectionWrapper, .mblSection {
        display: none;
    }
    .customPPDPopup, .admissionGuideSwiper{
        display: none !important; 
    }
    .one1-guidance.boxProgram {
        position: sticky;
        top: 100px;
    }
    .admin-bar .one1-guidance.boxProgram {
        top: 130px;
    }
    .grTransparentBtn.shortlistBtn:hover {
        background: #3255B0;
    }

    .grTransparentBtn.shortlistBtn:hover path {
        stroke: #fff;
    }
    .MainHeader.elementor-sticky--active {
        background-color: #FFFFFFE6;
        backdrop-filter: blur(10px);
    }
    .MainHeader.elementor-sticky--active div#headerMainLogo {
        display: block;
    }

    .MainHeader.elementor-sticky--active  div#headerWhiteLogo {
        display: none !important;
    }
    /*.MainHeader.elementor-sticky--active .HeaderNavigation a.ekit-menu-nav-link {
        color: #782BFF !important;
    }*/
    .MainHeader.elementor-sticky--active #headerUniLink a{
        color: #9F80FF;
    }

}



/* GradNews Media*/
@media (max-width: 640px) {
    .grBtn .elementor-button-icon{
        width: 48px;
        height: 48px;
    }
    .popup-content {
        width: 95%;
    }
     .accordion-image-mobile{
        width:100%;
    }
    .newsFeatured{
        margin-top: -56px;
        padding-top: 75px;
        padding-bottom: 0px;
    }
}

@media (max-width: 650px) {

    .folderItemSticky {
        position: sticky !important;
        top: 120px;
    }
    .headingSticky{
        position: sticky !important;
        top: 70px;
    }
    .videoReviewCarousel .swiper-slide {
        transition: transform 0.4s ease, opacity 0.4s ease;
        z-index: 1;
        opacity: 0.8;
        transform: scale(0.92) !important;
    }
    .videoReviewCarousel .swiper-slide.swiper-slide-active {
        z-index: 10;
        opacity: 1;
        transform: scale(1) !important;
    }

    .reviewsCircle.mbl-none{
        display: none !important;
    }
   .mblImageContainer {
        position: static;
    }
    .reviewsCircle.d-none{
        display: block !important;
    }
    .heroReviewSection::before {
        content: none !important;
    }
    .heroReviewSection::after {
        content: none;
    }
    .folderBack, .folderFront{
        left: 50% !important;
        transform: translateX(-50%);
        width: 90%;
    }
    .grad-news-cta {
        flex-direction: column;
        gap: 16px;
    }
    .grad-news-cta-text .grad-news-cta-content {
        text-align: center;
    }
    .folderImages{
        z-index: auto !important;
        position: relative !important;
        top: 0;
    }
    .folderBack {
        z-index: 5 !important; 
    }
    .folderFront {
        z-index: 15 !important;
    }

}


@media (max-width: 480px) {
  #preloader h2 {
    font-size: 22px;
    line-height: 30px;
    max-width: 100%;
    letter-spacing:.2px;
  }
}


.offer-label a {
    color: white;
}



/* ===============================
   MOBILE RESET — CRITICAL
================================ */
@media (max-width: 768px) {

    .timeLineCicularMobile{
        position: sticky;
        background: radial-gradient(44.47% 44.47% at 50% 81.87%, rgba(224, 160, 255, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), #010219;
        background-attachment: fixed;
        background-size: cover;
    }

  .m-timeline {
    height: 3300px;
    position: relative;
  }

  .m-pin {
        height: 100vh;
      display: flex;
      align-items: flex-start; /* ⬅️ prevents vertical centering */
  }

  /* MASK — controls visibility */
  .m-wheel-mask {
    position: absolute;
    top: -87px;
    left: 50%;
    width: 1100px;
    height: 82vh;
    transform: translateX(-50%);
    overflow: hidden;
    pointer-events: none;
    overflow: hidden;
  }

  /* WHEEL — ALWAYS TOP ANCHORED */
  .m-wheel {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1200px;
    transform: translate(-50%, -44%);
    transform-origin: center;
    will-change: transform;
  }

  .m-year-indicator {
    position: absolute;
    top: 18vh;
    width: 100%;
    text-align: center;
    z-index: 2;
  }

 .m-content {
    position: absolute;
    top: 75%;
    width: 100%;
    height: 150px;
    overflow: hidden;
    bottom: auto;
}

  .m-item {
    position: absolute;
    left: 50%;
    transform: translateX(150%);
    opacity: 0;
    width: 100%;
    padding: 0 20px;
    text-align: center;
  }
  .timeLineWrapperMbl {
        overflow-x: hidden;
  }
  .m-item h3 {
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }
  .m-item p{
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
  }
    .m-year-indicator {
      position: absolute;
      top: 32%;
      left: 50%;
      width: 260px;
      height: 210px;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .m-year {
      position: absolute;
      top: 40%;
      left: 50%;
      transform-origin: center -280px;
      font-size: 20px;
      opacity: 0.25;
      color: #aaa;
      transition: 0.3s ease;
      transform: translate(-50%, -50%);
      writing-mode: vertical-lr;
      text-orientation: mixed;
    }

    .siteLogoMobile {
        position: absolute;
        top: 100px;
        left: 50%;
        transform: translateX(-50%);
    }

    .m-year.active {
      opacity: 1;
      font-size: 20px;
      font-weight: 600;
      background: linear-gradient(90deg, #F37B51 0%, #E65C4F 75.48%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
     #stickyUniMenu {
        top: 34px !important;
    }
    .uniMenuList .elementor-widget-container{
            width: 100vw;
        margin-left: calc(-50vw + 50%);
        overflow-x: auto !important;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .uniMenuList .elementor-widget-container ul{
        width: max-content;
    }
    span.PerYear {
        color: #757575;
    }
    .bar-labels {
        font-size: 10px;
    }
    .GraddieSmiley {
        left: 60%;
        animation: moveXMbl 2.5s linear infinite alternate;
    }
    .HeroHeading .eael-fancy-text-container {
        min-height: 82px;
    }
    .grDefaultBtn {
        font-size: 14px;
        padding: 9px 22px 9px 22px !important;
    }
    .tableEssentials  table {
        width: 650px;
        border: 1px solid #2F6BE3;
    }
    .tableEssentials tr:first-child td b, .tableEssentials tr td span {
        font-size: 12px;
    }
    .tableEssentials  .elementor-widget-container {
        max-height: 283px;
        border-radius: 8px;
    }
    #elementor-popup-modal-38335 .dialog-widget-content, #elementor-popup-modal-38341 .dialog-widget-content {
        left: 5px;
        right: 5px;
    }
    .tableEssentials{
        padding-top: 0;
        background: transparent;
    }
    .appEngagementHeader.activeBtm {
        position: fixed;
        bottom: -2px;
        top: auto;
        left: 0;
        right: 0;
        z-index: 9999;
    }
    .mediaPhoneList .elementor-icon-list-text {
        display: flex;
        gap: 6px;
    }
    .graddie-search-box {
      max-width: 96%;
    }
    .graddie-search-box .bg-img {
        width: 100%;
        display: block;
        max-width: 97%;
    }
    span.askBtnWrapper {
        width: 55px;
        height: 55px;
        padding: 0;
        right: -18px;
    }
    .askBtnWrapper img {
        width: 53px !important;
        height: 53px !important;
    }
    .graddie-animated-placeholder {
        left: 8px;
        top: -8px;
    }

    .bankLoanSlider .e-n-carousel.swiper {
        overflow: visible !important;
    }

    .bankLoanSlider .swiper-wrapper {
        display: flex !important;
        flex-direction: column !important;
        transform: none !important;
        transition: none !important;
        gap: 0 !important;
    }

    .bankLoanSlider .swiper-slide-duplicate, .bankLoanSlider .elementor-swiper-button {
        display: none !important;
    }

    .bankLoanSlider .swiper-slide {
        width: 100% !important;
        margin-right: 0 !important;
        position: sticky !important;
        top: 120px !important;
        z-index: 1;
        margin-bottom:20px;
    }
    .carouselHeading{
        position: sticky !important;
        top: 72px !important;
    }
    
    .bankLoanSlider .swiper-slide:nth-child(1) { z-index: 1; top: 0px; }
    .bankLoanSlider .swiper-slide:nth-child(2) { z-index: 2; top: 0px; }
    .bankLoanSlider .swiper-slide:nth-child(3) { z-index: 3; top: 0px; }
    .bankLoanSlider .swiper-slide:nth-child(4) { z-index: 4; top: 0px; }
    .bankLoanSlider .swiper-slide:nth-child(5) { z-index: 5; top: 0px; }
    .bankLoanSlider .swiper-slide:nth-child(6) { z-index: 6; top: 0px; }
    .bankLoanSlider .swiper-slide:nth-child(7) { z-index: 7; top: 0px; }
    .bankLoanSlider .swiper-slide:nth-child(8) { z-index: 7; top: 0px; }
    
    .bankLoanSlider .swiper-slide .e-con-boxed {
        margin: 0 !important;
        border-radius: 16px !important;
    }
    .calculator-container.customCalculator.refiCalculator .input-section {
        padding: 0;
    }
     .calculator-container.customCalculator.refiCalculator .details-text {
        font-size: 12px;
        color: #000;
    }
    .calculator-container.customCalculator.refiCalculator .details-link {
        border: 1px solid #CFC8FF !important;
    }
    .calculator-container.customCalculator.refiCalculator {
        margin: 0 auto;
        background: #FBFBFF;
        border-radius: 8px;
        padding: 24px 16px !important;
        border: 1px solid #8E4BE6 !important;
    }
    #amortizationModalRefi .modal-content .modal-body {
        overflow: scroll;
    }
    #amortizationModalRefi table {
        width: 100%;
        min-width: 600px;
    }
    #amortizationModalRefi {
        padding: 10px;
    }
    span.askBtnWrapperHero {
        bottom: -10px;
    }
    img.graddieIconHero {
        right: -47px;
        top: -75px;
        width: 152px;
    }
    img.bg-img-hero-mbl {
        width: 100%;
    }
    .centerItems{
        width: 100%;
    }
    .homeHeroGraddie {
        margin-top: 52px !important;
        margin-bottom: 0px !important;
    }
    .tc-filter {
       flex-direction: column;
        padding: 20px;
        gap: 10px;
        margin-bottom: 20px;
    }
    .tc-filter h2 {
        font-size: 20px;
        line-height: 28px;
        text-align: center;
        max-width: 250px;
        margin-bottom: 20px;
    }
    .tc-wrapper {
        padding-bottom: 130px;
    }

    @keyframes scrollTransform {
      from {
        transform: perspective(1200px) translateY(218px) scale(0.9) rotateX(50deg);
      }
      to {
        transform: perspective(1200px) translateX(0px) translateY(351px) scale(1);
      }
    }

     .stickyHeadingBox {
        top: 80px;
        transform: none;
    }
    .stickyAppBox{
        top: 206px;
    }

    .graddieBtmDark::before, .graddieBtmDark::after {
        content: none !important;
    }
    .scrollingImageWrapper{
        overflow: hidden !important;
        max-width: 360px !important;
         animation-range: 0px 500px;
          height: 640px;
    }
    .scrollingImageWrapper img {
        /*width: 360px;*/
    }

     .mascotWrapper{
         bottom: 0;
        left: 0;
        opacity: 0;
        transform: scale(0.1) translateY(30px);
        animation-name: mascotPopupMobile;
        animation-duration: 1s;
        animation-timing-function: linear;
        animation-fill-mode: both;
        animation-timeline: scroll();
        animation-range: 700px 800px;
    }
    .googleReviewsCarousel .elementor-widget-container p {
        min-height: 100px;
    }
    .authorImgWrapper .elementor-author-box__avatar {
        margin-bottom: 0 !important;
    }
    .bankBoxesStack .bankBoxLogo {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.10);
        padding-bottom: 12px;
    }
    .bankBoxesStack .infoBankBox {
        background-color: transparent !important;
    }
    .eligibilityTabs  .e-n-tabs-heading {display: flex;flex-direction: row;justify-content: center;align-items: center;gap: 12px;margin-bottom: 32px;}
    .eligibilityTabs .e-n-tabs-heading .e-n-tab-title {margin-bottom: 0 !important;margin-top: 0 !important;}
    .cb-breadcrumbs__item { white-space: pre-wrap;}
    .cb-breadcrumbs__current, .cb-breadcrumbs__link {font-size: 13px !important;}
    .expert-banner__content {flex-direction: column;}
    .expert-banner {padding: 20px;}
    .expert-banner__avatars{max-width: 105px;}
    .expert-banner__heading-row span {font-size: 24px;}
    .expert-banner__text-group {gap: 12px;flex: 1 0 0;}
    p.expert-banner__description {margin-bottom: 0;}
    .expert-banner__content {flex-direction: column;gap: 24px;}
    .listingCTA .expert-banner__content{align-items: start;}
    .listingCTA .expert-banner__cta-group {width: 100%;}
    .onlineProgramsMenu a.ekit-menu-nav-link:before {right: auto;top: 18px;left: 114px;}
    .studyAnywhere  a.ekit-menu-nav-link:before {right: auto;top: 18px;left: 156px;}
    .newBadgeHeading .elementor-widget-container:before {right: -47px;top: 16px;display: none;}
    #onlineCourseTab span.title-main:before {right: auto;left: 180px;top: 12px;}
    #ekit-megamenu-main-menu .navBoxList.elementor-widget-elementskit-page-list .elementor-icon-list-items {display: flex;align-items: center;align-content: center;gap: 6px;align-self: stretch;flex-wrap: wrap;}
    #ekit-megamenu-main-menu .navBoxList.elementor-widget-elementskit-page-list .elementor-icon-list-items .ekit_badge_left {display: flex;padding: 6px 12px;justify-content: center;
        align-items: center;gap: 10px;border-radius: 8px;background: #F4F2FF;color: #782BFF !important;text-align: center;font-family: Poppins;
        font-size: 12px;font-style: normal;font-weight: 500;line-height: 16px;}
    #ekit-megamenu-main-menu .navBoxList.elementor-widget-elementskit-page-list .elementor-icon-list-items .ekit_badge_left span.ekit_page_list_title_title {color: #782BFF;}
    #ekit-megamenu-main-menu .headerMenuTabs .e-n-tab-title {border: 1px solid #F4F2FF !important;}
    #ekit-megamenu-main-menu .headerMenuTabs .e-n-tab-title[aria-selected="true"] {
        border: 1px solid #F4F2FF !important;
        border-bottom-left-radius: 0 !important;
        border-bottom: 0 !important;
        border-bottom-right-radius: 0 !important;
    }
    .MenuContentTab {
        border: 1px solid #F4F2FF !important;
    }
     .MenuContentTab.e-active {
         border-radius: 12px;
        border-top: 0 !important;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
     }
     .headerMenuTabWrapper{
        background-color: #fff !important;
     }
     .headerMenuTabs .e-n-tab-title[aria-selected="true"]:before {
        content: "";
        width: 90%;
        position: absolute;
        bottom: 0;
        height: 1px;
        background-color: #F4F2FF;
        margin: 0 auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .ekit_menu_responsive_tablet #ekit-megamenu-main-menu.active a.ekit-menu-nav-link {
        background-color: #fff;
        border-top: 1px solid #EDEDED;
        border-bottom: 0;
    }
    .withoutTabMenu {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .withoutTabMenu .e-con-inner:first-of-type {
        border: 1px solid #F4F2FF;
        border-radius: 12px;
        padding: 12px;
    }
     #ekit-megamenu-main-menu .e-n-tabs-content > .e-con {
        display: flex !important;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        padding-top: 0;
        padding-bottom: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
    }

    #ekit-megamenu-main-menu .e-n-tabs-content > .e-con.e-active {
        max-height: 2000px;
        opacity: 1;
        transition: max-height 0.5s ease, opacity 0.4s ease 0.1s, padding 0.4s ease;
        padding: 16px;
    }
    .headerMenuTabs {
        padding-bottom: 16px;
    }
    .title-main::after {
        transform: rotate(45deg);
        margin-left: 8px;
        position: absolute;
        right: 18px;
        top: 28px;
    }
    #ekit-megamenu-main-menu .headerMenuTabs .e-n-tab-title[aria-selected="true"] .title-main::after{
        transform: rotate(225deg);
    }
    .MainHeader.elementor-sticky--active {
        background: #fff;
    }
    .MainHeader.elementor-sticky--active .elementskit-menu-hamburger svg path {
        stroke: #000 !important;
    }
    .MainHeader.elementor-sticky--active #headerWhiteLogo{
        display: none !important;
    }
    .MainHeader.elementor-sticky--active #headerMainLogo{
        display: block !important;
    }

}



