*,
*:before,
*:after {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

body {
	width: 100vw;
	max-width: 100vw;
	min-width: 100vw;
	overflow-x: hidden;
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 400;
	font-size: 16px;
	position: relative;
	color: #373434
}

a {
	text-decoration: underline;
	color: #0e2dc9
}

a:hover {
	color: #ba2222;
	text-decoration: underline;
}

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

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

.primary-block {
	border-radius: 8px;
	display: inline-block;
	padding: 2px 8px;
	background: linear-gradient(90deg, red 0%, #e10000 100%);
	box-shadow: 1px 2px 3px rgba(0, 0, 0, .4);
	color: #fff;
	font-size: .85rem;
	transition: box-shadow .2s ease
}

.primary-block:hover {
	color: #fff;
	box-shadow: 1px 2px 8px rgba(0, 0, 0, .5)
}

.primary-btn {
	border-radius: 50px;
	padding: 8px 20px;
	background: red;
	color: #fff;
	box-shadow: 1px 2px 3px rgba(0, 0, 0, .3);
	text-transform: uppercase;
	font-weight: 600;
	transition: box-shadow .2s ease
}

.primary-btn:hover {
	color: #fff;
	box-shadow: 1px 2px 5px rgba(0, 0, 0, .6)
}

.page-type {
	text-transform: uppercase;
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
	display: inline-block;
	padding: 10px 50px;
	background: #373434;
	border-radius: 0 0 20px 20px;
	margin: auto;
	text-align: center;
	letter-spacing: 1px
}

/* From Uiverse.io by JkHuger */ 
.sparkle-btn {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    color: white;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: background 0.3s ease;
    text-decoration: none;
    font-weight: bold;
}

.sparkle-btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, white 10%, transparent 10.01%);
    background-size: 10px 10px;
    animation: sparkle 2s linear infinite;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

@keyframes sparkle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.sparkle-button {
	--active: 0;
	--bg: radial-gradient(
			  40% 50% at center 100%,
			  hsl(270 calc(var(--active) * 97%) 72% / var(--active)),
			  transparent
		  ),
		  radial-gradient(
			  80% 100% at center 120%,
			  hsl(260 calc(var(--active) * 97%) 70% / var(--active)),
			  transparent
		  ),
		  hsl(260 calc(var(--active) * 97%) calc((var(--active) * 44%) + 12%));
	background: var(--bg);
	font-size: 1.2rem;
	font-weight: 500;
	border: 1px solid red;
	cursor: pointer;
	padding: 1em 1em;
	display: flex;
	align-items: center;
	gap: 0.25em;
	white-space: nowrap;
	border-radius: 100px;
	position: relative;
	box-shadow: 0 0 calc(var(--active) * 3em) calc(var(--active) * 1em) hsl(260 97% 61% / 0.75),	
		  0 0em 0 0 hsl(260 calc(var(--active) * 97%) calc((var(--active) * 50%) + 30%)) inset,
		  0 -0.05em 0 0 hsl(260 calc(var(--active) * 97%) calc(var(--active) * 60%)) inset;
	transition: box-shadow var(--transition), scale var(--transition), background var(--transition);
	scale: calc(1 + (var(--active) * 0.1));
	transition: .3s;
  }

.sparkle-button:active {
  scale: 1;
  transition: .3s;
}

.sparkle path {
  color: hsl(0 0% calc((var(--active, 0) * 70%) + var(--base)));
  transform-box: fill-box;
  transform-origin: center;
  fill: currentColor;
  stroke: currentColor;
  animation-delay: calc((var(--transition) * 1.5) + (var(--delay) * 1s));
  animation-duration: 0.6s;
  transition: color var(--transition);
}

.sparkle-button:is(:hover, :focus-visible) path {
  animation-name: bounce;
}

@keyframes bounce {
  35%, 65% {
    scale: var(--scale);
  }
}

.sparkle path:nth-of-type(1) {
  --scale: 0.5;
  --delay: 0.1;
  --base: 40%;
}

.sparkle path:nth-of-type(2) {
  --scale: 1.5;
  --delay: 0.2;
  --base: 20%;
}

.sparkle path:nth-of-type(3) {
  --scale: 2.5;
  --delay: 0.35;
  --base: 30%;
}

.sparkle-button:before {
  content: "";
  position: absolute;
  inset: -0.2em;
  z-index: -1;
  border: 0.25em solid hsl(260 97% 50% / 0.5);
  border-radius: 100px;
  opacity: var(--active, 0);
  transition: opacity var(--transition);
}

.spark {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  rotate: 0deg;
  overflow: hidden;
  mask: linear-gradient(white, transparent 50%);
  animation: flip calc(var(--spark) * 2) infinite steps(2, end);
}

.sparkle-hover-only-btn {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: bold;
    color: red;
    background: transparent;
    border: 1px solid red;
    border-radius: 8px;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Hover style: gradient + sparkle */
.sparkle-hover-only-btn:hover {
    color: white;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    border-color: transparent;
}

/* Sparkle animation layer */
.sparkle-hover-only-btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, white 10%, transparent 11%);
    background-size: 12px 12px;
    opacity: 0.3;
    transform: scale(0);
    transition: transform 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.sparkle-hover-only-btn:hover::before {
    transform: scale(1);
    animation: sparkle-hover-loop 2s linear infinite;
}

/* Rotating sparkle pattern */
@keyframes sparkle-hover-loop {
    0% {
        transform: scale(1) rotate(0deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}


@keyframes flip {
  to {
    rotate: 360deg;
  }
}

.spark:before {
  content: "";
  position: absolute;
  width: 200%;
  aspect-ratio: 1;
  top: 0%;
  left: 50%;
  z-index: -1;
  translate: -50% -15%;
  rotate: 0;
  transform: rotate(-90deg);
  opacity: calc((var(--active)) + 0.4);
  background: conic-gradient(
		from 0deg,
		transparent 0 340deg,
		white 360deg
	);
  transition: opacity var(--transition);
  animation: rotate var(--spark) linear infinite both;
}

.spark:after {
  content: "";
  position: absolute;
  inset: var(--cut);
  border-radius: 100px;
}

.backdrop {
  position: absolute;
  inset: var(--cut);
  background: var(--bg);
  border-radius: 100px;
  transition: background var(--transition);
}

@keyframes rotate {
  to {
    transform: rotate(90deg);
  }
}

@supports(selector(:has(:is(+ *)))) {
  body:has(button:is(:hover, :focus-visible)) {
    --active: 1;
    --play-state: running;
  }

  .bodydrop {
    display: none;
  }
}

.sparkle-button:is(:hover, :focus-visible) ~ :is(.bodydrop, .particle-pen) {
  --active: 1;
  --play-state: runnin;
}

.sparkle-button:is(:hover, :focus-visible) {
  --active: 1;
  --play-state: running;
}

.sp {
  position: relative;
}

.particle-pen {
  position: absolute;
  width: 200%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  -webkit-mask: radial-gradient(white, transparent 65%);
  z-index: -1;
  opacity: var(--active, 0);
  transition: opacity var(--transition);
}

.particle {
  fill: white;
  width: calc(var(--size, 0.25) * 1rem);
  aspect-ratio: 1;
  position: absolute;
  top: calc(var(--y) * 1%);
  left: calc(var(--x) * 1%);
  opacity: var(--alpha, 1);
  animation: float-out calc(var(--duration, 1) * 1s) calc(var(--delay) * -1s) infinite linear;
  transform-origin: var(--origin-x, 1000%) var(--origin-y, 1000%);
  z-index: -1;
  animation-play-state: var(--play-state, paused);
}

.particle path {
  fill: hsl(0 0% 90%);
  stroke: none;
}

.particle:nth-of-type(even) {
  animation-direction: reverse;
}

@keyframes float-out {
  to {
    rotate: 360deg;
  }
}

.text {
  translate: 2% -6%;
  letter-spacing: 0.01ch;
  background: linear-gradient(90deg, hsl(0 0% calc((var(--active) * 100%) + 65%)), hsl(0 0% calc((var(--active) * 100%) + 26%)));
  -webkit-background-clip: text;
  color: transparent;
  transition: background var(--transition);
}

.sparkle-button svg {
  inline-size: 1.25em;
  translate: -25% -5%;
}


@media(min-width: 920px) {
	.page-type {
		padding: 10px 150px
	}
}

@media(max-width: 480px) {
	.modal .modal-dialog {
		max-width: 96vw
	}
}

header {
	position: relative
}

header .desktop-header {
	display: none
}

header .mobile-header {
	background: #FF0009;
	background: linear-gradient(180deg, #c11713 0%, #e90101 100%)
}

header .mobile-header #menu_button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px
}

header .mobile-header .main-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 1px;
	padding-bottom: 0
}

header .mobile-header .main-header .menu-button {
	color: #fff;
	font-size: 1.5rem
}

header .mobile-header .side-menu {
	position: fixed;
	width: 250px;
	max-width: 250px;
	min-width: 250px;
	top: 0;
	left: -100%;
	min-height: 100vh;
	height: 100vh;
	max-height: auto;
	overflow-y: scroll;
	background: #fff;
	transition: left .2s ease;
	box-shadow: 1px 0 5px rgba(0, 0, 0, .2);
	z-index: 9999
}

header .mobile-header .side-menu ul {
	width: 100%
}

header .mobile-header .side-menu ul li {
	width: 100%;
	border-bottom: 1px solid #c4c4c4
}

header .mobile-header .side-menu ul li ul {
	height: auto;
	max-height: 0;
	overflow: hidden;
	transition: max-height .5s ease
}

header .mobile-header .side-menu ul li ul.open-menu {
	max-height: 5000px;
	transition: max-height 3s ease
}

header .mobile-header .side-menu ul li a {
	text-transform: uppercase;
	display: block;
	padding: 8px
}

header .mobile-header .side-menu.show {
	left: 0
}

header .mobile-header .side-menu ul li a.have-dropdown {
	position: relative
}

header .mobile-header .side-menu ul li a.have-dropdown:after {
	content: "";
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 6px solid #373434;
	right: 15px;
	top: 0;
	bottom: 0;
	margin: auto;
	position: absolute;
	transition: transform .2s ease
}

header .mobile-header .side-menu ul li a.have-dropdown.open {
	background: red;
	color: #fff
}

header .mobile-header .side-menu ul li a.have-dropdown.open:after {
	transform: rotateZ(90deg);
	border-left: 6px solid #fff
}

@media(min-width: 992px) {
	header {
		display: block
	}

	header .mobile-header {
		display: none
	}

	header .desktop-header {
		display: block
	}

	header .desktop-header .top-header {
		background: #373434;
		display: block;
		width: 100%;
		padding: 8px 0
	}

	header .desktop-header .top-header-wrapper {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 4px 0;
		color: #fff !important
	}

	header .desktop-header .top-header-wrapper .contact a {
		margin-right: 22px;
		font-size: .85rem
	}

	header .desktop-header .top-header-wrapper .contact a i {
		margin-right: 8px
	}

	header .desktop-header .top-header-wrapper .social {
		display: flex;
		align-items: center
	}

	header .desktop-header .top-header-wrapper .social span,
	header .desktop-header .top-header-wrapper .social a {
		color: #fff;
		margin-right: 15px;
		font-size: .85rem
	}

	header .desktop-header .top-header-wrapper .social span a {
		border-radius: 0%;
		background: transparent;
		width: auto;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		font-size: .85rem
	}

	header .desktop-header .top-header-wrapper .social a {
		border-radius: 100%;
		background: #fff;
		width: 25px;
		height: 25px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #373434;
		font-size: .8rem
	}

	header .desktop-header .top-header-wrapper .social a:last-child {
		margin-right: 0
	}

	header .desktop-header .main-menu {
		background: #FF0009;
		position: sticky;
		top: 0;
		left: 0;
		z-index: 999;
		box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 0px 40px;
		height: 72px
	}

	header .desktop-header .main-menu.sticky {
		position: fixed;
		top: 0;
		width: 100%
	}

	header .desktop-header .main-menu .top-link a {
		display: flex;
		align-items: center;
		height: 100%;
		padding: 0 5px;
		position: relative
	}

	header .desktop-header .main-menu .top-link a:after {
		content: "";
		position: absolute;
		bottom: 0;
		width: 0%;
		background: #fff;
		height: 5px;
		left: 0;
		transition: width .2s ease
	}

	header .desktop-header .main-menu .top-link a:hover:after {
		width: 100%
	}

	header .desktop-header .main-menu .top-link a i {
		margin-left: 10px
	}

	header .desktop-header .main-menu .top-link:first-child a:after {
		display: none
	}

	header .desktop-header .main-menu ul {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		position: relative;
		width: 100%;
		height: 100%;
		gap: 20px
	}

	header .desktop-header .main-menu ul .logo {
		max-width: 100px;
		padding: 8px
	}

	header .desktop-header .main-menu ul .logo img {
		max-width: 100%
	}

	header .desktop-header .main-menu ul ul {
		display: none
	}

	header .desktop-header .main-menu ul a {
		text-transform: uppercase;
		font-size: 16px;
		color: #fff
	}

	header .desktop-header .main-menu ul .mega-menu:hover .mega-menu-container {
		display: flex;
		top: 100%;
		opacity: 1;
		height: auto;
		min-height: 547px;
		transition-delay: 0.1s;
	}

	header .desktop-header .main-menu ul .mega-menu .mega-menu-container {
		height: 0;
		overflow: hidden;
		opacity: 0;
		top: 150%;
		transition: opacity .3s ease, top .3s ease;
		padding-top: 10px;
	}

	header .desktop-header .main-menu ul .mega-menu ul {
		position: absolute;
		left: 0;
		width: 100%;
		display: flex;
		justify-content: space-around;
		background: #fff;
		box-shadow: 1px 2px 30px rgba(0, 0, 0, .3);
		padding: 0;
		height: auto;
		align-items: flex-start;
		list-style: none
	}

	header .desktop-header .main-menu ul .mega-menu ul .school-board {
		flex: 20%;
		width: 100%;
		position: relative;
		text-align: center;
		box-shadow: 0 0 1px rgba(0, 0, 0, .3)
	}

	header .desktop-header .main-menu ul .mega-menu ul .school-board li {
		width: 100%;
		box-shadow: 0 0 1px rgba(0, 0, 0, .3)
	}

	header .desktop-header .main-menu ul .mega-menu ul .school-board a {
		padding: 8px 12px;
		font-weight: 700;
		font-size: 0.9rem;
		letter-spacing: 0.5px;
		color: #555;
		white-space: nowrap;
	}

	header .desktop-header .main-menu ul .mega-menu ul .school-board a:after {
		display: none
	}

	header .desktop-header .main-menu ul .mega-menu ul .school-board ul {
		width: 100%;
		justify-content: flex-start
	}

	header .desktop-header .main-menu ul .mega-menu ul .school-board ul ul {
		flex-direction: column
	}

	header .desktop-header .main-menu ul .mega-menu ul .school-board .study-standard a {
		font-weight: 500
	}

	header .desktop-header .main-menu ul .mega-menu ul .school-board .study-standard ul {
		width: 100%
	}

	header .desktop-header .main-menu ul .mega-menu ul .school-board .study-standard ul li {
		width: 100%
	}

	header .desktop-header .main-menu ul .mega-menu ul .school-board .study-standard ul li a {
		font-weight: 400;
		font-size: 0.85rem;
		transition: padding .3s ease;
		padding: 6px 12px;
		white-space: nowrap;
	}

	header .desktop-header .main-menu ul .mega-menu ul .school-board .study-standard ul li a:hover {
		padding-left: 16px;
		background: red;
		color: #fff
	}

	header .desktop-header .main-menu ul .mega-menu ul .school-board:first-child {
		flex: 60%
	}

	header .desktop-header .main-menu ul .mega-menu ul .school-board:first-child a {
		display: flex;
		justify-content: center
	}

	header .desktop-header .main-menu ul .mega-menu ul .school-board:first-child ul {
		justify-content: space-around
	}

	header .desktop-header .main-menu ul .mega-menu ul .school-board:first-child ul li a {
		justify-content: flex-start
	}

	header .desktop-header .main-menu ul .mega-menu ul .school-board:first-child .study-standard {
		position: relative;
		width: 33.33%
	}

	header .desktop-header .main-menu ul .mega-menu ul .school-board:first-child .study-standard ul {
		flex: 33.33%;
		width: 100%
	}

	header .desktop-header .main-menu ul .mega-menu ul .school-board:first-child .study-standard ul li a {
		justify-content: flex-start
	}

	header .desktop-header .main-menu ul ul {
		box-shadow: none
	}

	header .desktop-header .main-menu ul .mega-menu ul a {
		color: #000
	}

	header .desktop-header .main-menu ul .dropdownmenu {
		position: relative
	}

	header .desktop-header .main-menu ul .dropdownmenu:hover ul {
		opacity: 1;
		top: 100%;
		height: auto
	}

	header .desktop-header .main-menu ul .dropdownmenu ul {
		position: absolute;
		display: flex;
		flex-direction: column;
		top: 150%;
		background: #fff;
		width: 100%;
		min-width: 250px;
		box-shadow: 1px 1px 30px rgba(0, 0, 0, .2);
		height: 0;
		overflow: hidden;
		opacity: 0;
		transition: opacity .2s ease, top .2s ease
	}

	header .desktop-header .main-menu ul .dropdownmenu ul li {
		width: 100%
	}

	header .desktop-header .main-menu ul .dropdownmenu ul li a {
		color: #555;
		padding: 6px 10px;
		position: relative;
		display: flex;
		align-items: center;
		transition: all .2s ease
	}

	header .desktop-header .main-menu ul .dropdownmenu ul li a:after {
		display: none
	}

	header .desktop-header .main-menu ul .dropdownmenu ul li a:hover {
		padding-left: 19px;
		color: #fff;
		background: red
	}

	header .desktop-header .main-menu ul .dropdownmenu ul li a:hover:before {
		width: 8px;
		height: 8px;
		background: #fff;
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 5px;
		display: none;
		margin: auto
	}

	header .desktop-header .main-menu ul .dropdownmenu .contain-submenu {
		overflow: unset;
		opacity: 0;
		height: 0;
		top: 100%
	}

	header .desktop-header .main-menu ul .cta {
		align-self: center
	}

	header .desktop-header .main-menu ul .cta a {
		background: #fff;
		padding: 5px 15px;
		color: #373434;
		font-weight: 900;
		height: auto;
		border-radius: 80px
	}

	header .desktop-header .main-menu ul .cta a:hover {
		background-color: #373434;
		color: #fff
	}

	header .desktop-header .main-menu ul .cta a:after {
		display: none
	}

	header .desktop-header .main-menu .have-submenu {
		position: relative
	}

	header .desktop-header .main-menu .have-submenu>ul.submenu {
		position: absolute;
		opacity: 0 !important;
		height: 0 !important;
		display: none
	}

	header .desktop-header .main-menu .have-submenu>ul.submenu.left {
		left: -100%
	}

	header .desktop-header .main-menu .have-submenu:hover>ul.submenu {
		opacity: 1 !important;
		height: auto !important;
		top: 0 !important;
		display: block
	}
}

footer {
	background-color: #f8f9fa;
	padding: 50px 0 30px 0;
	font-size: 14px;
	border-top: 1px solid #e9ecef;
}

footer .heading {
	font-weight: 700;
	font-size: 18px;
	margin: 0 0 25px 0;
	letter-spacing: 0.5px;
	color: #333333;
	text-transform: uppercase;
}

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

footer ul li {
	margin-bottom: 10px;
	padding-left: 0;
}

footer li a {
	color: #666666;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.5;
	transition: color 0.3s ease;
	font-weight: 400;
}

footer li a {
    color: #666666; /* Default color */
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    position: relative;
}

footer li a:hover {
    color: #333333;
    text-decoration: none;
    transform: translateX(5px); /* Slide effect */
}

/* Optional: Add underline slide effect */
footer li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #333333;
    transition: width 0.3s ease-in-out;
}

footer li a:hover::after {
    width: 100%;
}

footer .contact-info {
	margin-bottom: 25px;
}

footer .contact-info .contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	padding: 0;
}

footer .contact-info .contact-icon {
	color: #666666;
	margin-right: 12px;
	width: 18px;
	font-size: 16px;
	flex-shrink: 0;
}

footer .contact-info .contact-text {
	color: #666666;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

footer .contact-info .email-link {
	text-decoration: underline;
}

footer .contact-info .email-link:hover {
	color: #333333;
	transition: color 0.3s ease;
}

footer .social {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
}

footer .social a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-size: 18px;
	color: #fff;
	transition: transform 0.3s ease, opacity 0.3s ease;
	text-decoration: none;
}

footer .social a:hover {
	transform: translateY(-2px);
	opacity: 0.9;
}

footer .social a.facebook {
	background: #1877f2;
}

footer .social a.youtube {
	background: #ff0000;
}

footer .social a.twitter {
	background: #1da1f2;
}

footer .social a.instagram {
	background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

footer .social a.linkedin {
	background: #0077b5;
}

footer .social a.whatsapp {
	background: #25d366;
}

/* Bottom Footer */
.bottom-footer {
	background-color: #f1f3f4;
	padding: 25px 0;
	border-top: 1px solid #e0e0e0;
	margin-top: 30px;
}

.bottom-footer p {
	color: #666666;
	font-size: 13px;
	margin: 0;
	font-weight: 400;
}

.bottom-footer .footer-links {
	list-style: none;
	display: flex;
	justify-content: flex-end;
	gap: 25px;
	margin: 0;
	padding: 0;
}

.bottom-footer .footer-links li a {
	color: #666666;
	font-size: 13px;
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 400;
}

.bottom-footer .footer-links li a:hover {
	color: #333333;
	text-decoration: underline;
}

@media (max-width: 768px) {
	.bottom-footer {
		text-align: center;
	}
	
	.bottom-footer .footer-links {
		justify-content: center;
		margin-top: 15px;
		flex-wrap: wrap;
		gap: 20px;
	}
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px 40px;
    gap: 30px;
    width: 100%;
    max-width: 1440px;
    min-height: 450px;
    margin: 0 auto;
    background: #FFFFFF;
}

.hero .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    min-height: 350px;
}

.hero .content-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    width: 560px;
    min-height: 350px;
    flex-grow: 1;
}

.hero .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    width: 100%;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 38px;
    line-height: 48px;
    letter-spacing: -0.5px;
    color: rgba(0, 6, 38, 0.9);
    margin: 0;
}

.desktop-break {
    display: none;
}

@media (min-width: 992px) {
    .desktop-break {
        display: block;
    }
    
    .hero h1 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 991px) {
    .desktop-break {
        display: none;
    }
    
    .hero h1 {
        font-size: 24px;
        line-height: 32px;
    }
}

.hero h5 {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: rgba(0, 9, 51, 0.65);
    margin: 0;
}

.hero .actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 100%;
}

.hero .form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 100%;
}

.hero .text-input {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px;
    gap: 8px;
    width: 100%;
    height: 48px;
    border: 1px solid rgba(0, 13, 77, 0.45);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(0, 9, 51, 0.65);
}

.hero .submit-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 8px;
    width: 100%;
    height: 52px;
    background: #ED040B;
    border-radius: 8px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
    cursor: pointer;
}

.hero .terms {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: rgba(0, 9, 51, 0.65);
    width: 100%;
}

.hero .store-badges {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 100%;
}

.hero .app-store-badge {
    width: 144px;
    height: 48px;
    background: #0C0D10;
    border-radius: 7px;
}

.hero .play-store-badge {
    width: 162px;
    height: 48px;
    background: #000000;
    border-radius: 5px;
}

.hero .image-wrapper {
    width: 560px;
    height: 383.38px;
    flex-grow: 1;
}

.hero .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .hero {
        padding: 15px 10px;
        min-height: auto;
    }

    .hero .container {
        flex-direction: column;
        min-height: auto;
        gap: 20px;
    }

    .hero .content-column,
    .hero .image-wrapper {
        width: 100%;
        min-height: auto;
    }
}

.custom-swiper-slider {
	background: #eee
}

.custom-swiper-slider .swiper {
	width: 100%;
	max-width: 1140px;
	height: 230px
}

.custom-swiper-slider .swiper-slide {
	text-align: center;
	font-size: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center
}

.custom-swiper-slider .swiper-slide .slide {
	margin: 50px 0;
	width: 100%;
	padding: 0 40px
}

.custom-swiper-slider .swiper-slide .slide .h1 {
	color: red;
	font-weight: 600
}

.custom-swiper-slider .swiper-slide .slide p {
	padding: 0 45px
}

.custom-swiper-slider .swiper-button-next,
.custom-swiper-slider .swiper-button-prev {
	width: 15px;
	height: 15px;
	color: #000;
	opacity: .8
}

.custom-swiper-slider .swiper-button-next::after,
.custom-swiper-slider .swiper-button-prev::after {
	font-size: 28px
}

.services {
	padding: 30px 0;
}

.services .h2 {
	font-weight: 700;
	margin-bottom: 15px;
}

.services p {
	margin-bottom: 15px;
}

.services a {
	background: red;
	color: #fff;
	border-radius: 20px;
	padding: 4px 20px;
	display: inline-block;
	transition: box-shadow .2s ease
}

.services a:hover {
	box-shadow: 1px 2px 4px rgba(0, 0, 0, .2)
}

.services a.center {
	display: block;
	margin: auto;
	max-width: 130px
}

.services .download-links {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 15px 0;
	flex-wrap: wrap;
}

.services .download-links a {
	background: transparent;
	padding: 15px;
}

.services .download-links a img {
	max-height: 80px
}

.services .download-links a:hover {
	box-shadow: 1px 2px 4px rgba(0, 0, 0, .2)
}

.services .block {
	height: 100%;
	border-radius: 70px;
	background: #fff;
	box-shadow: 3px 3px 15px rgba(0, 0, 0, .1);
	padding-top: 0;
	overflow: hidden;
	position: relative
}

.services .block .block-title {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.2rem;
	padding: 0 20px;
	text-align: center;
	letter-spacing: 1px;
	background: #000;
	color: #fff
}

.services .block .block-body {
	display: flex;
	flex-direction: column;
	padding: 20px;
}

.services .block .block-body .block-body-content p {
	font-size: 1rem;
	display: flex;
	flex-direction: column;
}

.services .block .block-body .block-body-content p span {
	position: relative;
	display: block
}

.services .block .block-body .block-body-content p span:before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #9f1f98;
	position: absolute;
	top: .5rem;
	left: -1rem
}

.services .block .block-footer {
	display: flex;
	justify-content: center;
	padding-bottom: 30px;
	align-items: center;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.services .block.green .block-footer a,
.services .block.green .block-title {
	background: #00e0d9;
	background: linear-gradient(135deg, #00e0d9 0%, #03a5a0 100%)
}

.services .block.blue .block-title,
.services .block.blue .block-footer a {
	background: #2ec0fe;
	background: linear-gradient(135deg, #2ec0fe 0%, #0099df 100%)
}

.services .block.purple .block-title,
.services .block.purple .block-footer a {
	background: #e41fbd;
	background: linear-gradient(135deg, #bd1d9d 56%, #9f0796 100%)
}

.services .block.orange .block-title,
.services .block.orange .block-footer a {
	background: #ed5c1f;
	background: linear-gradient(135deg, #ed5c1f 0%, #f9321f 100%)
}

@media(min-width: 992px) {
	.services .block {
		border-radius: 40px
	}

	.services .block .block-body .block-body-img {
		flex: 1;
		min-height: 255px
	}

	.services .block .block-body .block-body-content {
		flex: 1;
		display: flex;
		padding: 0 10px;
		min-height: 220px
	}
}

#features {
	position: relative;
	background-size: cover;
	color: #fff !important;
	padding: 40px 0;
}

#features .overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 0;
	opacity: .95;
	background: #f23139;
	background: -moz-linear-gradient(30deg, #f23139 20%, #7c0a02 80%);
	background: -webkit-linear-gradient(30deg, #f23139 20%, #7c0a02 80%);
	background: linear-gradient(30deg, #f23139 20%, #7c0a02 80%)
}

#features i,
#features a,
#features p {
	color: inherit
}

#features .single-feature {
	padding: .5rem
}

#features .feature-left a {
	text-align: right
}

#features .feature-left a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: -20%;
	width: 0;
	height: 2px;
	background-color: #0a0e0a;
	opacity: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: width .4s ease-out;
	transition: width .4s ease-out
}

#features .feature-left a:before {
	content: "";
	position: absolute;
	top: 50%;
	right: -21%;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #0a0e0a;
	opacity: 0;
	-webkit-transform: translateY(-48%);
	transform: translateY(-48%);
	-webkit-transition: opacity .4s ease-out;
	transition: opacity .4s ease-out
}

#features .feature-right a {
	text-align: left;
	-webkit-transition: width .4s ease-out;
	transition: width .4s ease-out
}

#features .feature-right a:after {
	content: "";
	position: absolute;
	top: 50%;
	left: -20%;
	width: 0;
	height: 2px;
	background-color: #0a0e0a;
	opacity: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: width .4s ease-out;
	transition: width .4s ease-out
}

#features .feature-right a:before {
	content: "";
	position: absolute;
	top: 50%;
	left: -21%;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #0a0e0a;
	opacity: 0;
	-webkit-transform: translateY(-48%);
	transform: translateY(-48%);
	-webkit-transition: opacity .4s ease-out;
	transition: opacity .4s ease-out
}

#features .feature-link {
	cursor: pointer;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	border-radius: 10px;
	position: relative;
	z-index: 10;
	overflow: visible
}

#features .feature-link.active {
	box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .5), 0 6px 20px 0 rgba(0, 0, 0, .5)
}

#features .feature-link.active i:after {
	-webkit-animation: rotateEffect 8s linear infinite;
	animation: rotateEffect 8s linear infinite;
	display: block
}

#features .feature-link.active:after {
	opacity: 1;
	width: 30%
}

#features .feature-link.active:before {
	opacity: 1
}

#features .feature-link i {
	position: relative;
	margin: 0 1rem;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	box-shadow: 0 10px 10px rgba(0, 0, 0, .3);
	text-align: center;
	font-size: 2rem;
	line-height: 4rem;
	background: rgba(0, 0, 0, .42)
}

#features .feature-link i:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px dashed #fff;
	top: 0;
	left: 0;
	display: none
}

#features .images-slider .owl-features {
	max-width: 300px;
	margin: 0 auto
}

@media screen and (min-width: 600px) {
	#features {
		background: url("../images/background/header-bg-2.jpg") top center fixed;
		background-size: cover
	}

	#video {
		background: url("../images/background/video-bg.jpg") repeat center center fixed;
		background-size: cover
	}
}

@media screen and (max-width: 1120px) {

	#features .feature-link::after,
	#features .feature-link::before {
		display: none
	}
}

@media screen and (max-width: 992px) {
	.owl-nav {
		display: none
	}

	#features .single-feature {
		padding: 0
	}

	#features .owl-features {
		padding: 1rem 0
	}

	#features .feature-left .feature-link {
		-webkit-box-pack: end;
		-webkit-justify-content: flex-end;
		-ms-flex-pack: end;
		justify-content: flex-end
	}
}

.owl-nav {
	z-index: -1;
	position: absolute;
	top: 30%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	left: 0;
	margin: 0;
	color: #4e4e4e
}

.owl-nav i {
	font-size: 3rem;
	padding: 1rem
}

.owl-nav .disabled {
	opacity: .3;
	cursor: default !important
}

.owl-nav .owl-prev {
	position: absolute;
	left: -70px
}

.owl-nav .owl-next {
	position: absolute;
	right: -70px
}

.owl-dots {
	padding-top: 1rem;
	margin-top: .5rem;
	text-align: center
}

.owl-dots .owl-dot {
	display: inline-block;
	-webkit-transition: opacity .2s;
	transition: opacity .2s
}

.owl-dots .owl-dot:hover {
	opacity: .7
}

.owl-dots .owl-dot span {
	background-color: silver;
	display: inline-block;
	height: 2px;
	margin: 5px 7px;
	opacity: 1;
	width: 22px
}

.owl-dots .owl-dot.active span {
	background-color: #000
}

.reflection-text {
	position: relative;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 5px;
	font-weight: 500
}

.reflection-text:after {
	content: "";
	bottom: 0;
	position: absolute;
	width: 150px;
	left: calc(50% - 75px);
	height: 20px
}

@-webkit-keyframes rotateEffect {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@keyframes rotateEffect {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

.reflection-text {
	position: relative;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 5px;
	font-weight: 500;
	margin-bottom: 50px
}

.reflection-text::after {
	content: "";
	top: 40px;
	position: absolute;
	width: 150px;
	left: calc(50% - 75px);
	height: 20px
}

.reflection-text-white::after {
	background: url(../img/home/line-break/line-break-white.svg) no-repeat
}

.reflection-text:not(.reflection-text-white)::after {
	background: url(../img/home/line-break/line-break-10.svg) no-repeat
}

.testimonials {
	padding: 30px 0;
}

.testimonials .block {
	padding: 20px 0;
}

.testimonials .div1,
.testimonials .div2,
.testimonials .div3,
.testimonials .div4,
.testimonials .div5,
.testimonials .div6 {
	padding: 20px;
}

.testimonials .user {
	display: flex;
	align-items: center;
	margin-top: 20px;
}

.testimonials .user .avatar {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-right: 15px
}

.testimonials .user .info {
	font-size: .85rem
}

.testimonials .user .info .name {
	font-weight: 700
}

.testimonials .user .info .date {
	display: none
}

.testimonials .div1 {
	background: #fff3f3;
	background: linear-gradient(135deg, #fff3f3 0%, #fedfdf 100%);
	color: #ff4545;
	display: flex;
	flex-direction: column;
	justify-content: space-between
}

.testimonials .div1 .read-more {
	display: block;
	text-align: right
}

.testimonials .div1 .read-more a {
	color: #544b4b
}

.testimonials .div2 {
	background: #cd3cff;
	background: linear-gradient(135deg, #cd3cff 0%, #da72ff 51%, #d357ff 100%)
}

.testimonials .div2 .content {
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	font-size: 2rem;
	padding: 40px 0;
	text-align: center;
}

.testimonials .div3 {
	background: #53d35c;
	background: linear-gradient(135deg, #53d35c 0%, #b1f7b8 51%, #87ed92 100%)
}

.testimonials .div3 .content {
	color: #445f46;
	font-size: 1.9rem;
	font-weight: 700;
	text-align: center
}

.testimonials .div4 {
	background: #eff6ff;
	background: linear-gradient(135deg, #eff6ff 0%, #d1e6ff 51%, #eff6ff 100%)
}

.testimonials .div4 .content {
	color: #1d27ff
}

.testimonials .div5 {
	background: #fc9c06;
	background: linear-gradient(135deg, #fc9c06 0%, #fece84 51%, #ffbb56 100%);
	height: 100%
}

.testimonials .div5 .content {
	color: #fff;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	padding-top: 35px;
	padding-bottom: 35px;
	text-transform: uppercase;
	letter-spacing: 1px;
	word-break: break-all;
}

.testimonials .div6 {
	background: #affef5;
	background: linear-gradient(135deg, #affef5 0%, #06ffee 51%, #85fff6 100%)
}

.testimonials .div6 .content {
	color: #036363
}

.testimonials .home-testi-swiper-slider {
	padding: 10px;
}

.testimonials .home-testi-swiper-slider .home-testi-swiper {
	width: 100%;
	max-width: 1180px;
	height: 450px;
}

.testimonials .home-testi-swiper-slider .swiper-button-next,
.testimonials .home-testi-swiper-slider .swiper-button-prev {
	width: 15px;
	height: 15px;
	color: #000;
	opacity: .8
}

.testimonials .home-testi-swiper-slider .swiper-button-next::after,
.testimonials .home-testi-swiper-slider .swiper-button-prev::after {
	font-size: 28px
}

@media(min-width: 992px) {
	.block {
		padding: 20px 0;
	}

	.div1,
	.div2,
	.div3,
	.div4,
	.div5,
	.div6 {
		padding: 20px;
	}

	.user {
		display: flex;
		align-items: center;
		margin-top: 20px;
	}

	.user .avatar {
		width: 50px;
		height: 50px;
		border-radius: 100%;
		overflow: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		margin-right: 15px
	}

	.user .info {
		font-size: .85rem
	}

	.user .info .name {
		font-weight: 700
	}

	.div1 {
		background: #fff3f3;
		background: linear-gradient(135deg, #fff3f3 0%, #fedfdf 100%);
		color: #ff4545;
		display: flex;
		flex-direction: column;
		justify-content: space-between
	}

	.div1 .read-more {
		display: block;
		text-align: right
	}

	.div1 .read-more a {
		color: #544b4b
	}

	.div2 {
		background: #cd3cff;
		background: linear-gradient(135deg, #cd3cff 0%, #da72ff 51%, #d357ff 100%)
	}

	.div2 .content {
		color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		text-transform: uppercase;
		font-weight: 700;
		letter-spacing: 1px;
		font-size: 2rem;
		padding: 40px 0;
	}

	.div3 {
		background: #53d35c;
		background: linear-gradient(135deg, #53d35c 0%, #b1f7b8 51%, #87ed92 100%)
	}

	.div3 .content {
		color: #445f46;
		font-size: 1.9rem;
		font-weight: 700;
		text-align: center
	}

	.div4 {
		background: #eff6ff;
		background: linear-gradient(135deg, #eff6ff 0%, #d1e6ff 51%, #eff6ff 100%)
	}

	.div4 .content {
		color: #1d27ff
	}

	.div5 {
		background: #fc9c06;
		background: linear-gradient(135deg, #fc9c06 0%, #fece84 51%, #ffbb56 100%);
		height: 100%
	}

	.div5 .content {
		color: #fff;
		font-size: 2.4rem;
		font-weight: 700;
		text-align: center;
		padding-top: 35px;
		padding-bottom: 35px;
		text-transform: uppercase;
		letter-spacing: 1px;
		word-break: break-all;
	}

	.div6 {
		background: #affef5;
		background: linear-gradient(135deg, #affef5 0%, #06ffee 51%, #85fff6 100%)
	}

	.div6 .content {
		color: #036363
	}
}

@media(min-width: 1400px) {
	.div2 .content {
		padding: 35px 0;
	}
}

.clients_old {
	padding: 30px 0px;
}

.clients_old .client-logos {
	display: flex;
	flex-wrap: wrap
}

.clients_old .client-logos .client-logo {
	flex: 50%;
	width: 100%;
	margin: 8px;
	border-radius: 30px;
	padding: 10px;
	max-width: 150px;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 1px 2px 4px rgba(0, 0, 0, .3)
}

.clients_old .client-logos .client-logo img {
	width: 100%
}

.clients_old .client-sliders {
	display: flex;
	flex-wrap: wrap
}

.clients_old .client-sliders .client-logo-slider {
	max-width: 150px;
	max-height: 150px;
	box-shadow: 1px 2px 4px rgba(0, 0, 0, .3);
	border-radius: 30px;
	flex: 50%;
	width: 100%;
	margin: 8px
}

.clients_old .client-sliders .client-logo-slider .item {
	width: 150px;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px
}

.clients_old .h2 {
	font-weight: 800;
	font-size: 3rem
}

.clients_old .h3 {
	font-size: 2rem
}

.clients {
	padding: 30px 0;
	margin-bottom: 20px;
}

.clients .client-sliders .item {
	width: 150px;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 15px 0;
	box-shadow: 1px 2px 4px rgba(0, 0, 0, .3);
	border-radius: 30px;
	padding: 10px
}

.clients .client-sliders .owl-nav .owl-next,
.clients .client-sliders .owl-nav .owl-prev {
	font-size: 50px;
	top: 5px
}

.clients .h1 {
	text-transform: uppercase;
	color: red;
	font-size: 1.8rem;
	letter-spacing: 1px;
	font-weight: 700;
	padding: 20px 0 10px 0;
}

.blog {
	padding: 30px 0;
}

.blog .heading_old {
	display: block;
	padding: 10px 20px;
	background-color: red;
	color: #fff;
	font-size: 2rem;
	font-weight: 900;
	letter-spacing: 1px;
	border-radius: 50px;
	max-width: 200px;
	min-width: 200px;
	text-align: center;
	box-shadow: 1px 3px 10px rgba(0, 0, 0, .3);
	margin: auto;
	margin-bottom: 30px
}

.blog .heading {
	text-transform: uppercase;
	color: red;
	font-size: 1.8rem;
	letter-spacing: 1px;
	font-weight: 700;
	padding: 20px 0 10px 0;
	text-align: center;
}

.blog .img {
	position: relative;
	z-index: 9
}

.blog .block {
	height: 100%;
	margin-top: 15px;
	margin-bottom: 15px;
	box-shadow: 1px 1px 30px rgba(0, 0, 0, .2);
	border-radius: 35px;
	padding: 0;
	overflow: hidden;
	display: block
}

.blog .block .img {
	background-size: cover
}

.blog .block .body {
	padding: 15px 18px;
	padding-bottom: 0px
}

.blog .block .body .date {
	width: 80px;
	height: 80px;
	font-size: 1.4rem;
	text-align: center;
	line-height: 1.1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: red;
	color: #fff;
	border-radius: 20px;
	box-shadow: 1px 1px 15px rgba(0, 0, 0, .2);
	margin-top: -55px;
	position: relative;
	z-index: 100
}

.blog .block .body .title {
	font-weight: 700;
	font-size: 1.2rem;
	height: 58px;
	height: 58px;
	display: flex;
	align-items: center;
	margin: 5px 0
}

.blog .block .body .content {
	font-size: .84rem;
	margin-bottom: 15px
}

.blog .block .body .read-more {
	display: block;
	width: 100%;
	overflow-x: hidden
}

.blog .block .body .read-more span,
.blog .block .body .read-more a {
	color: red;
	font-size: .84rem;
	position: relative;
	cursor: pointer
}

.blog .block .body .read-more span:after,
.blog .block .body .read-more a:after {
	content: "";
	position: absolute;
	border-bottom: 2px dashed red;
	left: 105%;
	bottom: 0;
	width: 1000%
}

.blog .block .img {
	height: 200px;
	overflow: hidden;
	width: 100%
}

.insta {
	padding: 0;
	padding-top: 30px;
	padding-bottom: 24px
}

.insta .heading-2 {
	font-size: 2.3rem;
	text-align: center;
	margin-bottom: 20px;
	font-weight: 600
}

.insta .heading-2 a {
	color: red
}

.insta .instagram_feeds .instagram_feed a {
	position: relative;
	height: 100%;
	display: block;
	overflow: hidden
}

.insta .instagram_feeds .instagram_feed a .insta-overview {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff;
	display: flex;
	left: 0;
	opacity: .8;
	align-items: center;
	justify-content: center;
	color: #525252;
	font-size: 2rem;
	top: 100%;
	transition: top .2s ease
}

.insta .instagram_feeds .instagram_feed a:hover .insta-overview {
	top: 0
}


.study-material .heading {
	font-size: 2.4rem;
	text-align: center;
	font-weight: 600;
	margin: 40px 0 20px 0;
	color: #4c4c4c
}

.study-material .sub-text {
	font-size: 1.2rem;
	line-height: 1.3;
	margin-bottom: 30px;
	color: gray
}

.study-material .subjects {
	border-radius: 50px;
	padding: 8px 80px;
	background: #ec2222;
	color: #fff;
	box-shadow: 1px 2px 30px rgba(0, 0, 0, .2);
	font-weight: 400;
	transition: box-shadow .2s ease;
	font-size: 1.3rem
}

.study-material .nav-tabs {
	border: 0;
	display: flex;
	justify-content: center
}

.study-material .nav-tabs .nav-item button {
	color: #4c4c4c;
	font-size: 1.2rem;
	font-weight: 600;
	border-radius: 10px 10px 0 0;
	margin-left: 10px;
	margin-right: 10px
}

.study-material .nav-tabs .nav-item.show .nav-link,
.study-material .nav-tabs .nav-link.active {
	background-color: #4c4c4c;
	color: #fff
}

.study-material .custom-swiper-slider-testimonial {
	padding: 10px 0;
	background-color: #fff
}

.study-material .custom-swiper-slider-testimonial .testimonial-swiper {
	width: 100%;
	max-width: 1140px;
	height: 400px
}

.study-material .custom-swiper-slider-testimonial .swiper-slide {
	text-align: center;
	font-size: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center
}

.study-material .custom-swiper-slider-testimonial .swiper-slide .slide {
	margin: 50px 0;
	width: 100%;
	padding: 0 40px
}

.study-material .custom-swiper-slider-testimonial .swiper-slide .slide .block {
	background: #fff;
	border-radius: 20px;
	box-shadow: 1px 2px 20px rgba(0, 0, 0, .2);
	padding: 20px 15px
}

.study-material .custom-swiper-slider-testimonial .swiper-slide .slide .block .avatar {
	border-radius: 100%;
	border: 8px solid #fff;
	overflow: hidden;
	display: flex;
	align-items: center;
	width: 100px;
	height: 100px;
	justify-content: center;
	margin: auto;
	margin-top: -60px;
	margin-bottom: 40px;
	box-shadow: 0 0 15px rgba(0, 0, 0, .2)
}

.study-material .custom-swiper-slider-testimonial .swiper-slide .slide .block .name {
	text-align: left;
	color: red;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 15px
}

.study-material .custom-swiper-slider-testimonial .swiper-slide .slide .block .review {
	text-align: left;
	font-size: 1rem
}

.study-material .custom-swiper-slider-testimonial .swiper-slide .slide .block .read-more {
	text-align: left;
	margin-top: 25px
}

.study-material .custom-swiper-slider-testimonial .swiper-slide .slide .block .read-more a {
	color: #555;
	text-decoration: underline
}

.study-material .custom-swiper-slider-testimonial .swiper-button-next,
.study-material .custom-swiper-slider-testimonial .swiper-button-prev {
	width: 15px;
	height: 15px;
	color: #000;
	opacity: .8
}

.study-material .custom-swiper-slider-testimonial .swiper-button-next::after,
.study-material .custom-swiper-slider-testimonial .swiper-button-prev::after {
	font-size: 28px
}

.study-material .booking-form {
	padding: 10px 0
}

.study-material .booking-form .cta {
	background-color: red;
	background: linear-gradient(180deg, #9e120f 0%, #e80101 100%);
	color: #fff;
	font-size: 2rem;
	box-shadow: 1px 2px 5px rgba(0, 0, 0, .3);
	border-radius: 50px;
	max-width: 300px;
	margin: auto;
	margin-top: 10px;
	text-align: center;
	overflow: hidden;
	transition: box-shadow .2s ease, top .2s ease;
	position: relative;
	margin-bottom: 10px
}

.study-material .booking-form .cta:hover {
	box-shadow: 1px 2px 5px rgba(0, 0, 0, .3);
	top: -1px
}

.study-material .booking-form .cta a {
	color: #fff;
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px 20px
}

.study-material .booking-form form {
	display: flex;
	flex-direction: column;
	padding: 25px;
	border-radius: 20px;
	box-shadow: 1px 2px 40px rgba(107, 106, 106, .3);
	position: relative;
	overflow: hidden
}

.study-material .booking-form form #response_message {
	display: block;
	text-align: center;
	margin: 5px auto;
	color: red
}

.study-material .booking-form form .title {
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 20px
}

.study-material .booking-form form input,
.study-material .booking-form form select {
	margin-bottom: 20px;
	outline: 0;
	border: 0;
	border: 1px solid #c2c2c2;
	height: 35px;
	padding: 0 10px;
	border-radius: 5px;
	background: #fff
}

.study-material .booking-form form button {
	max-width: 180px;
	border-radius: 100px;
	padding: 6px 20px;
	border: 0;
	border: 2px solid red;
	outline: 0;
	background: #fff;
	color: red;
	cursor: pointer;
	align-self: center
}

.study-material .booking-form form button:hover {
	background: red;
	color: #fff
}

.study-material .booking-form form .form-process-overlay {
	display: none;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, .8);
	justify-content: center;
	align-items: center;
	display: none
}

.study-material .booking-form form .form-process-overlay.active {
	display: flex
}

.study-material .tab-content .title {
	color: red;
	font-size: 1.3rem;
	margin-bottom: 10px
}

.study-material .tab-content table {
	width: 100%
}

.study-material .tab-content table td {
	padding: 15px;
	text-align: center
}

.study-material .tab-content table td.thead {
	font-weight: 700
}

.study-material .tab-content .no-table {
	display: flex;
	flex-direction: column;
	justify-content: space-between
}

.study-material .tab-content .no-table div {
	display: block;
	flex: 100%;
	margin-bottom: 30px
}

.study-material .tab-content .no-table ul {
	width: 100%
}

.study-material .tab-content .no-table ul li {
	padding: 15px;
	border: 1px solid #eee
}

@media(min-width: 992px) {
	.study-material .tab-content .no-table {
		flex-direction: row
	}

	.study-material .tab-content .no-table h3,
	.study-material .tab-content .no-table h4 {
		font-size: 1.1rem;
		font-weight: 700;
		height: 55px
	}

	.study-material .tab-content .no-table div {
		flex: 1;
		width: 100%
	}
}

.study-material #subjectContents .container .row .col-12.col-md-4 {
	position: relative;
	cursor: pointer
}

.study-material #subjectContents .container .row .col-12.col-md-4:after {
	content: "";
	position: absolute;
	background: rgba(0, 0, 0, 0);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: -2
}

.about-us .hero .primary-block {
	min-width: 300px
}

.about-us .hero h1,
.about-us .hero p,
.about-us .hero h4 {
	text-align: left;
	padding: 0
}

.about-us .hero h4 {
	font-size: 1.1rem
}

.about-us .principles {
	padding-bottom: 50px
}

.about-us .principles .avatar {
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.4rem;
	text-align: center;
	background: #790501;
	background: linear-gradient(225deg, #790501 0%, #f22e36 100%);
	color: #fff;
	border-radius: 100%;
	overflow: hidden;
	margin: auto;
	box-shadow: 0 3px 10px rgba(0, 0, 0, .3);
	margin-bottom: 30px
}

.about-us .principles .title {
	font-size: 1.7rem;
	text-align: center;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 20px
}

.about-us .principles .content {
	text-align: center;
	font-size: 1.2rem;
	padding: 0 20px
}

.about-us .principles .content.text-left {
	text-align: left
}

.about-us .who-what {
	padding: 50px 0
}

.about-us .who-what .title {
	display: inline-block;
	max-width: 230px;
	margin: auto;
	background: red;
	color: #fff;
	padding: 10px 20px;
	border-radius: 100px;
	box-shadow: 1px 8px 10px rgba(0, 0, 0, .2);
	font-weight: 700;
	letter-spacing: 1px;
	font-size: 1.4rem;
	margin-bottom: 30px
}

.about-us .who-what p {
	font-size: 1.3rem
}

.about-us .hiring {
	padding: 50px 0
}

.about-us .hiring .block {
	width: 100%;
	background: #ff7f83;
	background: linear-gradient(135deg, #ff7f83 0%, #ff7477 100%);
	position: relative;
	padding: 30px;
	border-radius: 30px;
	box-shadow: 1px 2px 3px rgba(0, 0, 0, .2);
	overflow: hidden
}

.about-us .hiring .block img {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 350px;
	display: none
}

@media(min-width: 992px) {
	.about-us .hiring .block img {
		display: block
	}
}

.about-us .hiring .block .sub-title {
	color: #6e0c18;
	font-size: 2rem
}

.about-us .hiring .block .title {
	color: #fff;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 5rem
}

.about-us .hiring .block .cta {
	display: block;
	margin-top: 30px
}

.about-us .hiring .block .cta a {
	color: #6e0c18;
	background-color: #fff;
	box-shadow: 1px 2px 3px rgba(0, 0, 0, .2);
	padding: 10px 30px;
	font-size: 2rem;
	border-radius: 30px;
	margin-top: 30px
}

.about-us .contact {
	color: #fff;
	padding: 50px 0
}

.about-us .contact .block {
	background-size: cover;
	padding: 80px 0;
	overflow: hidden;
	border-radius: 20px
}

.about-us .contact .block .custom-col {
	background: #054375;
	background: linear-gradient(90deg, #054375 90%, rgba(5, 67, 117, 0) 100%);
	height: 100%
}

.about-us .contact .block .title {
	display: block;
	font-size: 3.4rem;
	text-transform: uppercase;
	font-weight: 800
}

.about-us .contact .block .sub-title {
	display: block;
	font-size: 1.3rem;
	font-weight: 800
}

@media(min-width: 992px) {
	.about-us .contact .block .sub-title {
		font-size: 2.1rem
	}
}

.founder .text-wall {
	padding: 80px 0 50px 0
}

.founder .text-wall .title {
	font-weight: 800;
	letter-spacing: 1px;
	font-size: 2rem;
	margin-bottom: 20px
}

.founder .text-wall p {
	font-size: 1.2rem
}

.founder .intro {
	padding: 50px 0
}

.founder .intro .title {
	color: red;
	font-size: 2rem;
	margin-bottom: 15px
}

.founder .intro .sub-title {
	font-size: 1.3rem
}

.founder .intro p {
	font-size: 1.2rem;
	margin: 15px
}

.live-classes #timings.nav-tabs {
	border: 0;
	display: flex;
	justify-content: center
}

.live-classes #timings.nav-tabs .nav-item button {
	color: #4c4c4c;
	font-size: 1.2rem;
	font-weight: 600;
	margin-left: 10px;
	margin-right: 10px;
	border: 0;
	padding-bottom: 8px;
	position: relative
}

.live-classes #timings.nav-tabs .nav-item button:after {
	content: "";
	position: absolute;
	width: 0%;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: red;
	height: 3px;
	margin: auto;
	transition: width .2s ease
}

.live-classes #timings.nav-tabs .nav-item.show .nav-link,
.live-classes #timings.nav-tabs .nav-link.active {
	background-color: transparent
}

.live-classes #timings.nav-tabs .nav-item.show .nav-link:after,
.live-classes #timings.nav-tabs .nav-link.active:after {
	width: 60%
}

.live-classes #timingsContent {
	background: #ff5050;
	padding-bottom: 40px;
	position: relative
}

@media(min-width: 992px) {
	.live-classes #timingsContent {
		margin-top: 150px;
		padding-bottom: 180px
	}
}

.live-classes #timingsContent .overlay {
	display: none
}

@media(min-width: 992px) {
	.live-classes #timingsContent .overlay {
		display: block;
		width: 100%;
		height: 65%;
		bottom: 0;
		left: 0;
		position: absolute;
		background-repeat: no-repeat;
		background-position: bottom;
		background-size: cover
	}
}

.live-classes #timingsContent .lecture-slider.top-ones {
	margin-top: 40px
}

@media(min-width: 992px) {
	.live-classes #timingsContent .lecture-slider.top-ones {
		margin-top: -100px
	}
}

.live-classes #timingsContent .lecture-slider.top-ones .item {
	background: #fff;
	padding: 10px;
	border-radius: 5px;
	box-shadow: 1px 2px 3px rgba(0, 0, 0, .3)
}

@media(min-width: 992px) {
	.live-classes #timingsContent .lecture-slider.top-ones .item {
		padding: 20px
	}
}

.live-classes #timingsContent .lecture-slider.top-ones .item .image {
	display: block;
	width: 100%;
	margin-bottom: 5px;
	position: relative;
	padding-bottom: 56.25%
}

.live-classes #timingsContent .lecture-slider.top-ones .item .image .iframe {
	min-width: 322px;
	min-height: 214px
}

.live-classes #timingsContent .lecture-slider.top-ones .item .image iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	min-width: 322px
}

.live-classes #timingsContent .lecture-slider.top-ones .item .level {
	display: flex;
	color: #646464;
	font-size: .9rem
}

.live-classes #timingsContent .lecture-slider.top-ones .item .level .class {
	margin-right: 3px
}

.live-classes #timingsContent .lecture-slider.top-ones .item .title {
	font-size: 1.3rem;
	display: flex;
	height: 115px;
	overflow-y: hidden;
	margin-bottom: 5px;
	align-items: center
}

.live-classes #timingsContent .lecture-slider.top-ones .item .footer {
	display: flex;
	justify-content: space-between
}

.live-classes #timingsContent .lecture-slider.top-ones .item .footer .author {
	color: #a4a4a4;
	font-size: .95rem
}

.live-classes #timingsContent .lecture-slider.top-ones .item .footer .join-link a {
	display: block;
	background-color: #1f0b2e;
	color: #fff;
	padding: 2px 20px;
	border-radius: 20px
}

.live-classes #timingsContent .lecture-slider.top-ones .owl-nav.disabled {
	display: flex
}

.live-classes #timingsContent .lecture-slider.top-ones .owl-nav button span {
	font-size: 60px;
	color: #fff
}

.live-classes #gradesContent {
	padding: 30px 0
}

.live-classes #gradesContent .lecture-slider.class-ones .item {
	background-color: #f6f6f6
}

.live-classes #gradesContent .lecture-slider.class-ones .item .image {
	max-width: 100%;
	display: block;
	position: relative;
	padding-bottom: 56.25%
}

.live-classes #gradesContent .lecture-slider.class-ones .item .image .iframe {
	max-width: 100%;
	min-width: 322px;
	min-height: 234px
}

.live-classes #gradesContent .lecture-slider.class-ones .item .image iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	min-width: 322px
}

.live-classes #gradesContent .lecture-slider.class-ones .item .title {
	color: #2e2e2e;
	padding-right: 40px;
	font-size: 1.1rem;
	padding-left: 25px;
	height: 80px;
	display: flex;
	align-items: center;
	margin-bottom: 15px
}

.live-classes #gradesContent .lecture-slider.class-ones .item .footer {
	display: block;
	width: 100%
}

.live-classes #gradesContent .lecture-slider.class-ones .item .footer a {
	display: block;
	width: 100%;
	background: #b8b8b8;
	padding: 10px;
	color: #000;
	text-align: center;
	font-size: 1.1rem;
	letter-spacing: 1px;
	font-weight: 600
}

.live-classes #gradesContent .lecture-slider.class-ones .owl-nav.disabled {
	display: flex
}

.live-classes #gradesContent .lecture-slider.class-ones .owl-nav button span {
	font-size: 60px;
	color: #010101
}

.live-classes #grades {
	margin-top: 25px
}

@media(min-width: 992px) {
	.live-classes #grades {
		margin-top: -49px
	}
}

.live-classes #grades.nav-tabs {
	border: 0;
	display: flex;
	justify-content: space-between
}

.live-classes #grades.nav-tabs .nav-item button {
	color: #4c4c4c;
	font-size: 1.2rem;
	font-weight: 600;
	margin-left: 10px;
	margin-right: 10px;
	border: 0;
	padding-bottom: 10px;
	padding-top: 10px;
	position: relative;
	background: rgba(255, 255, 255, .5);
	border-top-left-radius: 15px;
	border-top-right-radius: 15px
}

.live-classes #grades.nav-tabs .nav-item.show .nav-link,
.live-classes #grades.nav-tabs .nav-link.active {
	background-color: #2e2e2e;
	color: #fff
}

@media(min-width: 992px) {

	.live-classes #grades.nav-tabs .nav-item.show .nav-link,
	.live-classes #grades.nav-tabs .nav-link.active {
		background-color: #fff;
		color: #4c4c4c
	}
}

.live-classes .revision {
	background-color: red;
	background: linear-gradient(180deg, #9e120f 0%, #e80101 100%);
	color: #fff;
	font-size: 2rem;
	box-shadow: 1px 2px 5px rgba(0, 0, 0, .3);
	border-radius: 50px;
	max-width: 300px;
	margin: auto;
	margin-top: 10px;
	text-align: center;
	overflow: hidden;
	transition: box-shadow .2s ease, top .2s ease;
	position: relative;
	margin-bottom: 10px
}

.live-classes .revision:hover {
	box-shadow: 1px 2px 5px rgba(0, 0, 0, .3);
	top: -1px
}

.live-classes .revision a {
	color: #fff;
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px 20px
}

section.cta-section {
	background-color: #eff0ef
}

section.cta-section .blue-block {
	position: relative;
	border-bottom-left-radius: 50px;
	color: #fff;
	background-color: #1f0b2e
}

section.cta-section .blue-block .overlay-1 {
	display: none
}

@media(min-width: 992px) {
	section.cta-section .blue-block .overlay-1 {
		display: block;
		width: 100%;
		height: 35%;
		bottom: 0;
		left: 0;
		position: absolute;
		background-repeat: no-repeat;
		background-position: bottom;
		background-size: cover;
		z-index: 1
	}
}

section.cta-section .blue-block .overlay-2 {
	display: none
}

@media(min-width: 992px) {
	section.cta-section .blue-block .overlay-2 {
		display: block;
		width: 100%;
		height: 35%;
		bottom: 0;
		left: 0;
		position: absolute;
		background-repeat: no-repeat;
		background-position: bottom left;
		background-size: cover;
		z-index: 1
	}
}

section.cta-section .blue-block .title {
	color: #fff;
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 1px
}

section.cta-section .blue-block .block {
	background-color: #ff6d6d;
	display: flex;
	align-items: center;
	margin-bottom: 35px;
	padding: 15px;
	border-radius: 5px 30px;
	padding-bottom: 40px;
	position: relative;
	z-index: 2
}

section.cta-section .blue-block .block .avatar {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	border: 4px solid #fff;
	overflow: hidden;
	margin-right: 8px
}

section.cta-section .blue-block .block .teacher .name {
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px
}

section.cta-section .blue-block .red-block {
	position: relative;
	padding: 60px 0;
	background-color: #ff5050;
	color: #fff;
	border-bottom-left-radius: 50px;
	overflow-x: hidden
}

section.cta-section .blue-block .red-block .overlay {
	display: none
}

@media(min-width: 992px) {
	section.cta-section .blue-block .red-block .overlay {
		display: block;
		width: 100%;
		height: 65%;
		bottom: 0;
		left: 0;
		position: absolute;
		background-repeat: no-repeat;
		background-position: bottom;
		background-size: cover;
		z-index: 1
	}
}

section.cta-section .blue-block .red-block .row {
	z-index: 2;
	position: relative
}

section.cta-section .blue-block .red-block .title {
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 1px
}

section.cta-section .blue-block .red-block .sub-title {
	font-size: 1.4rem
}

section.cta-section .blue-block .red-block .subscribe {
	max-width: 200px;
	margin: auto;
	margin-top: 5px;
	display: block
}

section.cta-section .blue-block .red-block .subscribe img {
	animation: buttonScale 1s infinite alternate
}

section.cta-section .blue-block .red-block .head-1 {
	margin-top: 15px;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 1px
}

section.cta-section .blue-block .red-block .head-2 {
	font-size: 1.1rem;
	font-weight: 600
}

section.cta-section .title {
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 1px;
	color: #1f0b2e
}

section.cta-section .grey-block {
	border-radius: 20px;
	box-shadow: 1px 2px 5px rgba(0, 0, 0, .4);
	height: 160px;
	margin-bottom: 30px;
	background: #fff
}

@keyframes buttonScale {
	from {
		transform: scale(1)
	}

	to {
		transform: scale(1.1)
	}
}

.csr .top-heading-1 {
	background: #3a3737;
	width: auto;
	color: #fff;
	text-transform: uppercase;
	border-radius: 0 0 30px 30px;
	margin: 0 auto;
	text-align: center;
	font-size: 22px;
	font-weight: 500;
	display: inline-block
}

.csr .top-heading-2 {
	display: block;
	color: #ef2828;
	font-size: 22px;
	margin: 30px;
	text-align: center;
	font-size: 24px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px
}

.csr .clients .client-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	min-width: 150px;
	max-width: 150px;
	height: 150px;
	max-height: 150px;
	min-height: 150px;
	margin-top: 15px;
	margin-bottom: 15px;
	border-radius: 20px;
	padding: 5px;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, .3)
}

.csr .clients .client-logo img {
	width: 100%
}

.csr section {
	margin: 50px 0;
	display: block
}

.csr section .title {
	background: #2d2d2d;
	color: #fff;
	text-transform: uppercase;
	font-size: 24px;
	letter-spacing: 1px;
	font-weight: 500;
	text-align: center;
	padding: 10px;
	margin-bottom: 20px
}

.csr section ul {
	list-style-type: circle
}

.csr .case ol li {
	flex: 33.33%
}

.csr section img {
	max-width: 100%
}

.csr section .sub-title {
	font-size: 20px;
	font-weight: 600;
	color: #ff0303;
	margin-bottom: 20px
}

.csr section.role form {
	padding: 15px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .3);
	border-radius: 25px
}

.csr section.role form label {
	margin-bottom: 0;
	padding: 0;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #666
}

.csr section.role form input {
	width: 100%;
	max-width: 100%;
	height: 40px;
	margin-bottom: 20px;
	padding-left: 15px;
	border-radius: 5px;
	border: 0;
	outline: none;
	border: 1px solid #dedede
}

.csr section.role form input::placeholder {
	color: #666
}

.csr section.role form .btn-primary {
	background: #ea1a47;
	border-color: #ea1a47;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	font-weight: 700;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
	padding: 10px 20px
}

.csr section.role form .btn-primary:hover {
	opacity: .9;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .3)
}

.csr .custom-video {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 56.25%;
	display: block
}

.csr .custom-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%
}

.csr .img-caption span {
	display: block;
	margin-top: 15px
}

.outsource .title {
	font-size: 2rem;
	color: red;
	font-weight: 700;
	margin-bottom: 20px
}

.outsource ul,
.outsource p {
	max-width: 600px;
	margin-bottom: 20px
}

.outsource ul {
	list-style: initial
}

.outsource ul li {
	position: relative;
	margin-left: 15px;
	margin-bottom: 10px
}

.single-blog a {
	transition: all .2s ease
}

.single-blog .blog-post .title {
	font-size: 2rem;
	font-weight: 700;
	color: #001b3c
}

.single-blog .blog-post .date {
	color: red;
	letter-spacing: 2px
}

.single-blog .blog-post .banner {
	margin-bottom: 15px;
	display: block;
	height: 20rem;
	background-size: cover
}

.single-blog .blog-post .content {
	color: #292929
}

.single-blog .blog-post .content .heading {
	font-weight: 600;
	font-size: 1.1rem
}

.single-blog .blog-post .content .heading-2 {
	font-size: 1.5rem;
	font-weight: 600
}

.single-blog .blog-post .content a {
	font-style: italic;
	font-weight: 600;
	color: red
}

.single-blog .blog-post .blog-meta_ {
	display: flex;
	justify-content: space-between;
	flex-direction: column
}

@media(min-width: 992px) {
	.single-blog .blog-post .blog-meta_ {
		flex-direction: row
	}
}

.single-blog .blog-post .blog-meta_ .tags,
.single-blog .blog-post .blog-meta_ .share {
	display: flex;
	margin-bottom: 10px
}

@media(min-width: 992px) {

	.single-blog .blog-post .blog-meta_ .tags,
	.single-blog .blog-post .blog-meta_ .share {
		justify-content: space-between
	}
}

.single-blog .blog-post .blog-meta_ .tags div,
.single-blog .blog-post .blog-meta_ .share div {
	color: #001b3c;
	font-weight: 700;
	font-size: 1.2rem;
	margin-right: 8px
}

.single-blog .blog-post .blog-meta_ .tags a,
.single-blog .blog-post .blog-meta_ .share a {
	border: 1px solid #001b3c;
	margin-right: 8px;
	padding: 2px 10px;
	font-size: 1rem
}

.single-blog .blog-post .blog-meta_ .tags a:hover {
	border: 1px solid #ff4f1c;
	color: #fff;
	background: #ff4f1c
}

.single-blog .blog-post .blog-meta_ .share a {
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ff4f1c;
	border-color: #ff4f1c;
	background: #fff;
	font-size: .9rem
}

.single-blog .blog-post .blog-meta_ .share a:hover {
	color: #fff;
	background: #ff4f1c
}

.single-blog .blog-post .blog-meta {
	background-color: #f5f5f5;
	padding: 15px 20px
}

.single-blog .blog-post .blog-meta .review-share {
	display: flex;
	flex-direction: column
}

@media(min-width: 992px) {
	.single-blog .blog-post .blog-meta .review-share {
		justify-content: space-between;
		flex-direction: row;
		align-items: center
	}
}

.single-blog .blog-post .blog-meta .review-share .review {
	display: flex;
	align-items: center;
	margin: 14px 0
}

@media(min-width: 992px) {
	.single-blog .blog-post .blog-meta .review-share .review {
		margin: 0
	}
}

.single-blog .blog-post .blog-meta .review-share .review span {
	display: flex;
	align-items: center;
	margin-right: 10px
}

.single-blog .blog-post .blog-meta .review-share .review span i,
.single-blog .blog-post .blog-meta .review-share .review span .icon-image {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #292929;
	border-radius: 50%;
	padding: 5px;
	margin-right: 5px;
	cursor: pointer
}

.single-blog .blog-post .blog-meta .review-share .review span i img,
.single-blog .blog-post .blog-meta .review-share .review span .icon-image img {
	transform: rotateY(180deg)
}

.single-blog .blog-post .blog-meta .review-share .review span i:hover,
.single-blog .blog-post .blog-meta .review-share .review span .icon-image:hover {
	background: #ff4f1c;
	border-color: #ff4f1c;
	color: #fff
}

.single-blog .blog-post .blog-meta .review-share .review span i:hover img,
.single-blog .blog-post .blog-meta .review-share .review span .icon-image:hover img {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1)
}

.single-blog .blog-post .blog-meta .review-share .share {
	display: flex;
	align-items: center
}

.single-blog .blog-post .blog-meta .review-share .share div {
	font-weight: 600;
	margin-right: 5px
}

.single-blog .blog-post .blog-meta .review-share .share a {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #292929;
	border-radius: 50%;
	padding: 5px;
	margin-right: 5px
}

.single-blog .blog-post .blog-meta .review-share .share a:hover {
	background: #ff4f1c;
	border-color: #ff4f1c;
	color: #fff
}

.single-blog .blog-post .blog-meta .tags {
	display: flex;
	margin-top: 10px;
	flex-direction: column
}

@media(min-width: 992px) {
	.single-blog .blog-post .blog-meta .tags {
		flex-direction: row
	}
}

.single-blog .blog-post .blog-meta .tags div,
.single-blog .blog-post .blog-meta .tags a {
	margin: 5px 0
}

@media(min-width: 992px) {

	.single-blog .blog-post .blog-meta .tags div,
	.single-blog .blog-post .blog-meta .tags a {
		margin-top: 0;
		margin-bottom: 0
	}
}

.single-blog .blog-post .blog-meta .tags div {
	color: #001b3c;
	font-weight: 400;
	font-size: 1.2rem;
	margin-right: 8px
}

.single-blog .blog-post .blog-meta .tags a {
	border: 1px solid #001b3c;
	margin-right: 8px;
	padding: 2px 10px;
	font-size: 1rem
}

.single-blog .blog-post .blog-meta .tags a:hover {
	border: 1px solid #ff4f1c;
	color: #fff;
	background: #ff4f1c
}

.single-blog .blog-post .about-author {
	border: 2px solid #e9e9e9;
	margin: 25px 0;
	padding: 25px;
	display: flex;
	align-items: flex-start;
	flex-direction: column
}

@media(min-width: 992px) {
	.single-blog .blog-post .about-author {
		flex-direction: row;
		align-items: center
	}
}

.single-blog .blog-post .about-author .author-image {
	margin-right: 15px;
	width: 150px;
	min-width: 150px;
	max-width: 150px
}

.single-blog .blog-post .about-author .author-info .name {
	font-weight: 700;
	color: #001b3c;
	font-size: 1.5rem;
	margin-bottom: 15px
}

.single-blog .blog-post .about-author .author-info .about {
	color: #797979
}

.single-blog .blog-post .about-author .author-info .social {
	display: flex
}

.single-blog .blog-post .about-author .author-info .social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid #001b3c;
	color: #001b3c;
	border-radius: 50%;
	margin-right: 8px;
	font-size: .9rem
}

.single-blog .blog-post .about-author .author-info .social a:hover {
	border-color: #ff4f1c;
	background-color: #ff4f1c;
	color: #fff
}

.single-blog .blog-post .blog-form .heading {
	color: #001b3c;
	font-size: 1.7rem;
	font-weight: 700
}

.single-blog .blog-post .blog-form .sub-heading {
	font-size: .9rem;
	color: #797979;
	margin-bottom: 15px
}

.single-blog .blog-post .blog-form label {
	display: block;
	color: #001b3c;
	font-weight: 700;
	margin-bottom: 5px
}

.single-blog .blog-post .blog-form textarea,
.single-blog .blog-post .blog-form input {
	border: 0;
	display: block;
	padding: 5px 10px;
	outline: 0;
	background: #e9e9e9;
	border: 1px solid #e9e9e9;
	width: 100%;
	margin-bottom: 10px
}

.single-blog .blog-post .blog-form textarea:valid,
.single-blog .blog-post .blog-form textarea:focus,
.single-blog .blog-post .blog-form input:valid,
.single-blog .blog-post .blog-form input:focus {
	background: #fff;
	border-color: #797979
}

.single-blog .blog-post .blog-form input {
	height: 40px
}

.single-blog .blog-post .blog-form button {
	margin-top: 10px;
	display: block;
	width: 100%;
	background: #ff4f1c;
	color: #fff;
	text-align: center;
	border: 0;
	opacity: .9;
	padding: 10px;
	font-weight: 700;
	letter-spacing: 1px;
	transition: opacity .2s ease
}

.single-blog .blog-post .blog-form button:hover {
	opacity: 1
}

.single-blog .sidebar .sidebar-heading {
	position: relative;
	font-size: 1.1rem;
	color: #001b3c;
	padding-bottom: 8px;
	margin-bottom: 18px;
	display: block;
	font-weight: 600;
	letter-spacing: 1px
}

.single-blog .sidebar .sidebar-heading:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 180px;
	height: 2px;
	background: #ff4f1c;
	display: block
}

.single-blog .sidebar .popular-posts .popular-post {
	padding: 15px;
	display: flex;
	box-shadow: 1px 2px 9px rgba(0, 0, 0, .2);
	background: #fff;
	align-items: center;
	margin-bottom: 25px;
	border-radius: 5px;
	cursor: pointer
}

.single-blog .sidebar .popular-posts .popular-post .image {
	min-width: 86px;
	margin-right: 10px;
	border-radius: 5px;
	overflow: hidden
}

.single-blog .sidebar .popular-posts .popular-post .post .date {
	font-size: .85rem;
	color: #c2c2c2;
	font-weight: 700
}

.single-blog .sidebar .popular-posts .popular-post .post .title {
	color: #364e6b;
	font-weight: 700;
	letter-spacing: 1px;
	font-size: .9rem;
	transition: color .2s ease
}

.single-blog .sidebar .popular-posts .popular-post:hover .post .title {
	color: #ff4f1c
}

.single-blog .sidebar .category {
	padding: 15px;
	box-shadow: 1px 2px 9px rgba(0, 0, 0, .2);
	margin-bottom: 25px
}

.single-blog .sidebar .category ul {
	list-style: initial;
	color: #ff4f1c;
	padding-left: 15px
}

.single-blog .sidebar .category ul li {
	margin: 5px 0
}

.single-blog .sidebar .category ul li a {
	color: #292929;
	font-size: 1.1rem
}

.single-blog .sidebar .category ul li a:hover {
	color: #ff4f1c
}

.single-blog .sidebar .category .title {
	text-align: center;
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 5px
}

.single-blog .sidebar .category form {
	padding: 10px
}

.single-blog .sidebar .category form label {
	display: none
}

.single-blog .sidebar .category form input {
	display: block;
	width: 100%;
	border: 0;
	outline: 0;
	border-radius: 5px;
	border: 1px solid #828282;
	padding: 0 10px;
	margin-bottom: 20px;
	height: 30px
}

.single-blog .sidebar .category form button {
	border: 0;
	background: #fff;
	outline: none;
	border: 2px solid red;
	padding: 3px 30px;
	border-radius: 20px;
	box-shadow: 1px 2px 3px rgba(0, 0, 0, .3);
	margin: auto;
	display: block
}

.single-blog .sidebar .category form button:hover {
	background: red;
	color: #fff
}

.success-stories section .title {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 10px 0
}

.success-stories section .owl-nav.disabled {
	display: flex
}

.success-stories section .owl-nav button span {
	font-size: 60px;
	color: #373434
}

.success-stories section #students.nav-tabs {
	border: 0;
	display: flex;
	justify-content: center;
	margin: 20px 0
}

.success-stories section #students.nav-tabs .nav-item button {
	color: #4c4c4c;
	font-size: 1rem;
	font-weight: 600;
	margin-left: 10px;
	margin-right: 10px;
	border: 0;
	padding-bottom: 8px;
	position: relative;
	border: 2px solid red;
	border-radius: 40px;
	padding: 2px 10px;
	border-color: transparent
}

.success-stories section #students.nav-tabs .nav-item button:after {
	content: "";
	position: absolute;
	width: 0%;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: red;
	height: 3px;
	margin: auto;
	transition: width .2s ease
}

.success-stories section #students.nav-tabs .nav-item.show .nav-link,
.success-stories section #students.nav-tabs .nav-link.active {
	border-color: red;
	box-shadow: 1px 2px 3px rgba(0, 0, 0, .3)
}

.success-stories section a.block,
.success-stories section .block {
	background: #fff;
	border-radius: 20px;
	box-shadow: 1px 2px 20px rgba(0, 0, 0, .2);
	padding: 20px 15px;
	display: block;
	height: 100%
}

.success-stories section a.block .avatar,
.success-stories section .block .avatar {
	border-radius: 100%;
	border: 8px solid #fff;
	overflow: hidden;
	display: flex;
	align-items: center;
	width: 100px;
	height: 100px;
	justify-content: center;
	margin: auto;
	margin-top: -60px;
	margin-bottom: 40px;
	box-shadow: 0 0 15px rgba(0, 0, 0, .2)
}

.success-stories section a.block .name,
.success-stories section .block .name {
	text-align: left;
	color: red;
	font-weight: 600;
	letter-spacing: 1px;
	margin-top: 15px;
	margin-bottom: 15px
}

.success-stories section a.block .review,
.success-stories section .block .review {
	text-align: left;
	font-size: 1rem
}

.success-stories section a.block .read-more,
.success-stories section .block .read-more {
	text-align: left;
	margin-top: 15px
}

.success-stories section a.block .read-more span,
.success-stories section a.block .read-more a,
.success-stories section .block .read-more span,
.success-stories section .block .read-more a {
	color: red;
	text-decoration: underline
}

.success-stories .view-all {
	font-size: 1.3rem
}

.success-stories .students .title span {
	position: relative;
	padding-bottom: 10px;
	overflow: hidden
}

.success-stories .tips,
.success-stories .users {
	margin-bottom: 25px
}

.success-stories .tips .title,
.success-stories .tips .view-all,
.success-stories .users .title,
.success-stories .users .view-all {
	padding: 0 10px
}

.success-stories .tips .item,
.success-stories .users .item {
	background-color: #f6f6f6
}

.success-stories .tips .item .image,
.success-stories .users .item .image {
	max-width: 100%;
	display: block;
	position: relative;
	padding-bottom: 56.25%;
	min-height: 234px
}

.success-stories .tips .item .image .iframe,
.success-stories .users .item .image .iframe {
	max-width: 100%;
	min-width: 322px;
	min-height: 234px
}

.success-stories .tips .item .image iframe,
.success-stories .users .item .image iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	min-width: 322px
}

.success-stories section .title {
	margin-top: 40px
}

.faqs .title {
	font-size: 2rem;
	margin: 10px 0;
	display: block;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700
}

.faqs .title .red {
	color: red
}

.faqs section {
	padding: 10px 0
}

.faqs section .accordion .accordion-item .accordion-header .accordion-button {
	font-weight: 600;
	outline: none;
	border: 0;
	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
	padding: 10px 1.25rem;
	background-color: red;
	color: #fff
}

.faqs section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
	color: #373434;
	background: #fff
}

.branched-network .maps {
	width: 100%;
	margin-top: 30px
}

.branched-network .maps .map {
	width: 100%
}

.branched-network .maps .map .mapouter {
	width: 100%
}

.branched-network .maps .map .mapouter .gmap_canvas {
	width: 100%
}

.branched-network .maps .map .mapouter .gmap_canvas iframe {
	width: 100%
}

.branched-network .addresses {
	background: #fbfbfb
}

.branched-network .addresses .addresses-wrapper {
	background: #fff;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, .3);
	position: relative;
	margin-bottom: 15px;
	z-index: 3
}

@media(min-width: 922px) {
	.branched-network .addresses .addresses-wrapper {
		margin-top: -15px;
		padding: 20px 25px
	}

	.branched-network .addresses .addresses-wrapper:before {
		height: 0px;
		width: 0;
		top: -5rem;
		left: 0;
		right: 0;
		margin: auto;
		content: "";
		position: absolute;
		border-left: 5rem solid transparent;
		border-right: 5rem solid transparent;
		border-bottom: 5rem solid #fff
	}
}

.branched-network .addresses .address {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	box-shadow: 1px 2px 3px rgba(0, 0, 0, .3);
	padding: 25px;
	background-color: #fbfbfb;
	cursor: pointer;
	transition: background-color .2s ease
}

.branched-network .addresses .address:hover {
	background: red;
	color: #fff
}

.branched-network .addresses .address:hover .location,
.branched-network .addresses .address:hover .contact,
.branched-network .addresses .address:hover .person,
.branched-network .addresses .address:hover .email {
	color: #fff
}

.branched-network .addresses .address .title {
	font-size: 1.4rem;
	margin-bottom: 25px;
	font-weight: 700
}

.branched-network .addresses .address .location,
.branched-network .addresses .address .contact,
.branched-network .addresses .address .person,
.branched-network .addresses .address .email {
	color: #5f5f5f
}

.my-blog .blog .my-blog-wrapper {
	margin-bottom: 60px
}

.my-blog .blog .my-blog-wrapper .block {
	display: block
}

.my-blog .blog .my-blog-wrapper .block .img {
	background-size: cover
}

.my-blog .blog .my-blog-wrapper .block .body .title {
	height: 58px;
	display: flex;
	align-items: center;
	margin: 5px 0
}

.revision #classes.nav-tabs {
	border: 0;
	display: flex;
	justify-content: center
}

.revision #classes.nav-tabs .nav-item button {
	color: #4c4c4c;
	font-size: 1.2rem;
	font-weight: 600;
	margin-left: 10px;
	margin-right: 10px;
	border: 0;
	padding-bottom: 8px;
	position: relative
}

.revision #classes.nav-tabs .nav-item button:after {
	content: "";
	position: absolute;
	width: 0%;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: red;
	height: 3px;
	margin: auto;
	transition: width .2s ease
}

.revision #classes.nav-tabs .nav-item.show .nav-link,
.revision #classes.nav-tabs .nav-link.active {
	background-color: transparent
}

.revision #classes.nav-tabs .nav-item.show .nav-link:after,
.revision #classes.nav-tabs .nav-link.active:after {
	width: 60%
}

.revision #classesContent .block {
	padding: 15px;
	background: #fff9f9;
	background: linear-gradient(180deg, #fff9f9 0%, #ffe8e9 100%);
	box-shadow: 0 0 15px rgba(0, 0, 0, .3);
	margin-bottom: 30px;
	display: block
}

.revision #classesContent .block .img {
	max-height: 326px;
	min-height: 326px;
	height: 326px;
	overflow: hidden
}

.revision #classesContent .block .title {
	display: block;
	text-align: center;
	font-size: 1.1rem;
	margin: 10px 0;
	overflow: hidden
}

.revision #classesContent .block .download button {
	display: block;
	background: #fff;
	border: 2px solid red;
	box-shadow: 1px 2px 13px rgba(0, 0, 0, .3);
	padding: 5px 25px;
	border-radius: 40px;
	margin: auto
}

.revision #classesContent .block .download button i {
	margin-right: 5px
}

.ec-demo section {
	margin-top: 30px
}

.ec-demo h1 {
	font-weight: 700;
	margin-bottom: 30px;
	text-align: center
}

.ec-demo .block {
	padding: 15px;
	display: block;
	margin-bottom: 20px
}

.ec-demo .block .img {
	display: block;
	margin-bottom: 10px
}

.ec-demo .block .title {
	text-align: center;
	font-weight: 600
}

.copyright {
    text-align: center; /* Center-align the text */
    padding: 5px 0; /* Add some vertical padding for spacing */
    font-size: 15px; /* Smaller font size */
    color: #6c757d; /* Light gray color for subtlety */
    background-color: #f8f9fa; /* Optional: light background color */
    border-top: 1px solid #e9ecef; /* Optional: subtle top border */
}
.modal-1 {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Reduced space between form elements */
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.label {
  font-weight: bold;
  color: #333;
  font-size: 0.9rem; /* Slightly smaller font size for labels */
}

input,
select {
  padding: 8px 10px; /* Reduced padding */
  border: 1px solid #ccc;
  border-radius: 4px; /* Slightly smaller border radius */
  font-size: 14px; /* Reduced font size */
  height: 35px; /* Fixed height for consistency */
}

button.btn-submit {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 15px; /* Reduced padding */
  border-radius: 4px; /* Slightly smaller border radius */
  cursor: pointer;
  font-size: 14px; /* Reduced font size */
  max-width: 150px; /* Limited width for better alignment */
  align-self: center; /* Center-align the button */
}

button.btn-submit:hover {
  background-color: #0056b3;
}

/* Style for the date picker */
input[type="date"] {
  appearance: none; /* Remove default browser styling */
  padding: 8px 10px; /* Reduced padding */
  border: 1px solid #ccc;
  border-radius: 4px; /* Slightly smaller border radius */
  font-size: 14px; /* Reduced font size */
  cursor: pointer;
  height: 35px; /* Fixed height for consistency */
}

input[type="date"]:focus {
  border-color: #007bff;
  box-shadow: 0 0 4px rgba(0, 123, 255, 0.5); /* Reduced shadow intensity */
}

.form-process-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal.homepage .modal-header,
.modal.homepage .modal-footer {
  border: none; /* Remove borders for cleaner look */
}

.modal.homepage span#processingStep1 {
  text-align: center;
  color: red;
  font-size: 0.9rem; /* Reduced font size */
  margin: 5px 0; /* Reduced margin */
}
/* Common modal styles */
.modal.homepage .modal-content,
.modal.live-classes .modal-content,
footer .modal .modal-content {
	border-radius: 1.3rem;
	box-shadow: 1px 2px 3px rgba(0, 0, 0, .3);
	background: linear-gradient(135deg, white 0%, #d9d9d9 50%, white 100%);
}

.modal.homepage .modal-header,
.modal.homepage .modal-footer,
.modal.live-classes .modal-header,
.modal.live-classes .modal-footer {
	border: 0;
}

/* Common processing step span */
.modal.homepage span#processingStep1,
.modal.homepage span#processingStep2,
.modal.homepage span#processingStep3,
.modal.homepage span#processingStep4,
.modal.live-classes span#processingStep1 {
	text-align: center;
	color: red;
	display: block;
	margin: 5px auto;
	font-size: 1.1rem;
	padding: 5px;
}

/* Common form-1 structure */
.modal.homepage form.modal-1,
.modal.live-classes form.modal-1 {
	display: flex;
	flex-direction: column;
	padding: 25px;
	border-radius: 20px;
	box-shadow: 1px 2px 40px rgba(0, 0, 0, .3);
	background: #fff;
	position: relative;
	overflow: hidden;
}

/* Titles */
.modal.homepage form.modal-1 .title,
.modal.live-classes form.modal-1 .title {
	text-align: center;
	font-weight: 1000;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.modal.live-classes form.modal-1 .title {
	margin-bottom: 0px; /* specific to live-classes */
}

/* Common form input/select styles */
.modal.homepage form.modal-1 input,
.modal.homepage form.modal-1 select,
.modal.live-classes form.modal-1 input,
.modal.live-classes form.modal-1 select {
	margin-bottom: 5px;
	outline: 0;
	border: 1px solid #c2c2c2;
	height: 35px;
	padding: 0 10px;
	border-radius: 5px;
	background: #fff;
}

/* Common button styles */
.modal.homepage form.modal-1 button,
footer .modal .row button,
.modal.live-classes form.modal-1 button {
	border-radius: 100px;
	border: 2px solid red;
	outline: 0;
	background: #fff;
	color: red;
	cursor: pointer;
	align-self: center;
}

.modal.homepage form.modal-1 button,
footer .modal .row button {
	max-width: 180px;
	padding: 6px 20px;
}

.modal.live-classes form.modal-1 button {
	max-width: 180px;
	padding: 6px 60px;
	box-shadow: 1px 2px 3px rgba(0, 0, 0, .3);
}

/* Button hover effect */
.modal.homepage form button:hover,
footer .modal .row button:hover,
.modal.live-classes form button:hover {
	background: red;
	color: #fff;
}

/* Modal footer images */
footer .modal img {
	margin: 20px 0;
	max-width: 150px;
}

/* Form processing overlay */
.modal.homepage form .form-process-overlay,
.modal.live-classes form .form-process-overlay {
	display: none;
	height: 100%;
	width: 120%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, .8);
	justify-content: center;
	align-items: center;
}

.modal.homepage form .form-process-overlay.active,
.modal.live-classes form .form-process-overlay.active {
	display: flex;
}

/* Modal 2 specific (homepage) */
.modal.homepage form.modal-2 {
	display: flex;
	flex-direction: column;
}

.modal.homepage form.modal-2 .title,
.modal.homepage form.modal-3 .title {
	text-align: center;
	font-size: 2.4rem;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.modal.homepage form.modal-2 .sub-title,
.modal.homepage form.modal-3 .sub-title {
	text-align: center;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 40px;
}

.modal.homepage form.modal-2 .input-boxes {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.modal.homepage form.modal-2 .input-boxes input {
	width: 40px;
	height: 40px;
	border: 0;
	outline: 0;
	box-shadow: 1px 1px 30px rgba(0, 0, 0, .3);
	padding: 5px;
	font-size: 1.2rem;
	text-align: center;
}

@media(min-width: 992px) {
	.modal.homepage form.modal-2 .input-boxes input {
		width: 60px;
		height: 60px;
	}
}

.modal.homepage form.modal-2 .error a {
	color: red;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.modal.homepage form.modal-2 button {
	margin-top: 40px;
	max-width: 280px;
	border-radius: 100px;
	padding: 4px 60px;
	border: 2px solid red;
	background: #fff;
	color: red;
	cursor: pointer;
	margin-left: auto;
	margin-right: auto;
	display: inline-block;
	align-self: center;
}

/* Modal 3 specific (homepage) */
.modal.homepage form.modal-3 {
	display: flex;
	flex-direction: column;
}

.modal.homepage form.modal-3 label {
	color: red;
	text-align: center;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 8px;
	text-transform: capitalize;
}

.modal.homepage form.modal-3 input {
	margin-bottom: 20px;
}

.modal.homepage form.modal-3 .times {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 15px;
	margin-bottom: 20px;
}

.modal.homepage form.modal-3 .times .time {
	text-align: center;
	background: #fff;
	box-shadow: 2px 3px 30px rgba(0, 0, 0, .2);
	padding: 3px 10px;
	border-radius: 40px;
	width: 130px;
	cursor: pointer;
	transition: background-color .2s ease;
	margin: 10px 0;
}

.modal.homepage form.modal-3 .times .time:hover {
	background-color: #373434;
	color: #fff;
}

.modal.homepage form.modal-3 .times .time.selected {
	background-color: red;
	color: #fff;
}

.modal.homepage form.modal-3 button {
	margin-top: 40px;
	max-width: 280px;
	border-radius: 100px;
	padding: 4px 60px;
	border: 2px solid red;
	background: #fff;
	color: red;
	cursor: pointer;
	margin-left: auto;
	margin-right: auto;
	display: inline-block;
	align-self: center;
	text-transform: uppercase;
}

/* Modal Step Two */
.modal.homepage#modalStepTwo h1 {
	font-weight: 700;
	letter-spacing: 1px;
	color: #2a2a2a;
}

.modal.homepage#modalStepTwo h3 {
	letter-spacing: 1px;
	font-weight: 600;
	color: #818181;
}

.modal.homepage#modalStepTwo .answer {
	margin-top: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal.homepage#modalStepTwo .answer button {
	border-radius: 15px;
	width: 200px;
	border: 3px solid red;
	padding: 5px;
	text-align: center;
	background: #fff;
	box-shadow: 1px 2px 3px rgba(0, 0, 0, .2);
	font-weight: 600;
	letter-spacing: 1px;
	color: #949292;
	font-size: 1.1rem;
}

.modal.homepage#modalStepTwo .answer button:first-child {
	margin-right: 20px;
}

.modal.homepage#modalStepTwo .answer button:hover {
	background-color: red;
	color: #fff;
}

.client-logo img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo img:hover {
    transform: scale(1.2) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Board 2026 Styles */
.board-2026 {
  position: relative;
  width: 100%;
  background: #FFFFFF;
}

.board-2026 .primary-nav {
  position: relative;
  width: 100%;
  height: 80px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.board-2026 .primary-nav .logo {
  width: 64px;
  height: 49px;
  margin-right: 40px;
}

.board-2026 .primary-nav .menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px;
  gap: 8px;
  width: 793px;
}

.board-2026 .primary-nav .menu-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px;
  gap: 4px;
  height: 40px;
}

.board-2026 .primary-nav .menu-item a {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 6, 38, 0.9);
  text-decoration: none;
}

.board-2026 .primary-nav .menu-item.active a {
  font-weight: 700;
}

.board-2026 .primary-nav .menu-item .chevron {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 13, 77, 0.45);
}

.board-2026 .primary-nav .cta-buttons {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.board-2026 .primary-nav .cta-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px 12px;
  height: 32px;
  border-radius: 8px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.board-2026 .primary-nav .cta-button.primary {
  background: #ED040B;
  color: #FFFFFF;
  border: none;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.08), 0px 4px 8px -2px rgba(0, 0, 0, 0.04);
}

.board-2026 .primary-nav .cta-button.secondary {
  background: rgba(0, 6, 38, 0.9);
  color: #FFFFFF;
}

.board-2026 .primary-nav .cta-button.outline {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid #ED040B;
  color: #ED040B;
}

/* Board 2026 Hero Section */
.board-2026 .hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 120px;
  gap: 80px;
  background: rgba(0, 21, 128, 0.02);
  margin-top: 80px;
}

.board-2026 .hero-section .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.board-2026 .hero-section .section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 8px;
  width: 789px;
}

.board-2026 .hero-section .tagline-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  width: 300px;
}

.board-2026 .hero-section .tagline {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #ED040B;
}

.board-2026 .hero-section .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 16px;
  width: 100%;
}

.board-2026 .hero-section .heading {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.5px;
  color: #000000;
  margin: 0;
}

.board-2026 .hero-section .text {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: rgba(0, 9, 51, 0.65);
  margin: 0;
}

.board-2026 .hero-section .cta-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 24px;
  margin-top: 16px;
}

.board-2026 .hero-section .cta-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  gap: 4px;
  height: 48px;
  background: #ED040B;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.08), 0px 4px 8px -2px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
}

@media (max-width: 992px) {
  .board-2026 .hero-section {
    padding: 40px 20px;
  }
  
  .board-2026 .hero-section .section-title {
    width: 100%;
  }
  
  .board-2026 .hero-section .heading {
    font-size: 32px;
    line-height: 40px;
  }
  
  .board-2026 .hero-section .text {
    font-size: 18px;
    line-height: 26px;
  }
}

/* Board 2026 Content Section */
.board-2026 .content-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 112px 120px;
  gap: 40px;
  background: #FFFFFF;
}

.board-2026 .content-section .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.board-2026 .content-section .content-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 16px;
  width: 584px;
  flex: 1;
}

.board-2026 .content-section .tagline-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  width: 389px;
}

.board-2026 .content-section .tagline {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #ED040B;
}

.board-2026 .content-section .heading {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: rgba(0, 6, 38, 0.9);
  margin-bottom: 16px;
}

.board-2026 .content-section .feature-image {
  width: 100%;
  height: auto;
  max-height: 452.6px;
  object-fit: cover;
}

.board-2026 .content-section .text {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: rgba(0, 9, 51, 0.65);
  margin-bottom: 32px;
}

.board-2026 .content-section .text-bold {
  font-weight: 600;
}

.board-2026 .content-section .feature-list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 8px 0;
  gap: 32px;
  width: 100%;
}

.board-2026 .content-section .feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 16px;
  width: 276px;
  flex: 1;
}

.board-2026 .content-section .feature-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
}

.board-2026 .content-section .feature-title {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 6, 38, 0.9);
  margin-bottom: 16px;
}

.board-2026 .content-section .feature-text {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 6, 38, 0.9);
}

.board-2026 .content-section .cta-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  gap: 8px;
  width: 331px;
  height: 48px;
  background: #ED040B;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.08), 0px 4px 8px -2px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-top: 32px;
}

.board-2026 .content-section .cta-button span {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
}

@media (max-width: 992px) {
  .board-2026 .content-section {
    padding: 60px 20px;
  }
  
  .board-2026 .content-section .content-wrapper {
    flex-direction: column;
  }
  
  .board-2026 .content-section .content-column {
    width: 100%;
  }
  
  .board-2026 .content-section .feature-list {
    flex-direction: column;
  }
  
  .board-2026 .content-section .feature-item {
    width: 100%;
  }
}

/* Board 2026 Features List Section */
.board-2026 .features-list-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 112px 120px;
  gap: 32px;
  width: 100%;
  background: rgba(0, 21, 128, 0.02);
}

.board-2026 .features-list-section .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.board-2026 .features-list-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.board-2026 .features-list-section .tagline {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #ED040B;
  margin-bottom: 16px;
}

.board-2026 .features-list-section .heading {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: rgba(0, 6, 38, 0.9);
  margin-bottom: 24px;
}

.board-2026 .features-list-section .description {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: rgba(0, 6, 38, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

.board-2026 .features-list-section .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

.board-2026 .features-list-section .feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px;
}

.board-2026 .features-list-section .feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.board-2026 .features-list-section .feature-title {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: rgba(0, 6, 38, 0.9);
  margin-bottom: 16px;
}

.board-2026 .features-list-section .feature-description {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 6, 38, 0.9);
}

@media (max-width: 992px) {
  .board-2026 .features-list-section {
    padding: 60px 20px;
  }
  
  .board-2026 .features-list-section .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Board 2026 Testimonials Section */
.board-2026 .testimonials-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 120px;
  gap: 80px;
  width: 100%;
  background: #FFFFFF;
}

.board-2026 .testimonials-section .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.board-2026 .testimonials-section .section-header {
  margin-bottom: 60px;
}

.board-2026 .testimonials-section .heading {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: rgba(0, 6, 38, 0.9);
  margin-bottom: 16px;
}

.board-2026 .testimonials-section .subheading {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #ED040B;
}

.board-2026 .testimonials-section .testimonials-slider {
  position: relative;
  width: 100%;
  padding: 0 60px;
  overflow: hidden;
}

.board-2026 .testimonials-section .testimonial-content {
  position: relative;
  width: 100%;
  height: 400px;
}

.board-2026 .testimonials-section .testimonial-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  text-align: center;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.board-2026 .testimonials-section .testimonial-item.active {
  opacity: 1;
  visibility: visible;
}

.board-2026 .testimonials-section .testimonial-text {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: rgba(0, 6, 38, 0.9);
  margin-bottom: 32px;
  max-width: 800px;
  font-style: italic;
}

.board-2026 .testimonials-section .student-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  object-fit: cover;
  border: 3px solid #ED040B;
}

.board-2026 .testimonials-section .student-name {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: rgba(0, 6, 38, 0.9);
  margin-bottom: 4px;
}

.board-2026 .testimonials-section .student-details {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 6, 38, 0.65);
}

.board-2026 .testimonials-section .slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 6, 38, 0.2);
  border-radius: 50%;
  background: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.board-2026 .testimonials-section .slider-nav:hover {
  border-color: #ED040B;
  box-shadow: 0 4px 12px rgba(237, 4, 11, 0.15);
}

.board-2026 .testimonials-section .slider-nav:hover svg path {
  stroke: #ED040B;
}

.board-2026 .testimonials-section .slider-prev {
  left: 0;
}

.board-2026 .testimonials-section .slider-next {
  right: 0;
}

.board-2026 .testimonials-section .slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.board-2026 .testimonials-section .slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 6, 38, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.board-2026 .testimonials-section .slider-dot:hover {
  background: rgba(237, 4, 11, 0.5);
}

.board-2026 .testimonials-section .slider-dot.active {
  background: #ED040B;
  transform: scale(1.2);
}

@media (max-width: 992px) {
  .board-2026 .testimonials-section {
    padding: 60px 20px;
  }
  
  .board-2026 .testimonials-section .testimonials-slider {
    padding: 0 40px;
  }

  .board-2026 .testimonials-section .testimonial-content {
    height: 450px;
  }

  .board-2026 .testimonials-section .testimonial-text {
    font-size: 16px;
    line-height: 26px;
  }

  .board-2026 .testimonials-section .slider-nav {
    width: 40px;
    height: 40px;
  }
}

/* Board 2026 App Showcase CTA Section */
.board-2026 .app-showcase-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 120px;
  gap: 80px;
  width: 100%;
  background: rgba(237, 4, 11, 0.05);
}

.board-2026 .app-showcase-section .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.board-2026 .app-showcase-section .content-column {
  flex: 1;
  max-width: 560px;
}

.board-2026 .app-showcase-section .heading {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -0.02em;
  color: rgba(0, 6, 38, 0.9);
  margin-bottom: 24px;
}

.board-2026 .app-showcase-section .description {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: rgba(0, 6, 38, 0.9);
  margin-bottom: 32px;
}

.board-2026 .app-showcase-section .cta-button {
  display: inline-flex;
  padding: 16px 32px;
  background: #ED040B;
  border-radius: 8px;
  font-family: 'Inter';
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  margin-bottom: 40px;
  transition: background-color 0.3s ease;
}

.board-2026 .app-showcase-section .cta-button:hover {
  background: #D00309;
}

.board-2026 .app-showcase-section .store-badges {
  display: flex;
  gap: 16px;
}

.board-2026 .app-showcase-section .store-badge {
  height: 48px;
  width: auto;
}

.board-2026 .app-showcase-section .app-preview {
  flex: 1;
  max-width: 400px;
}

.board-2026 .app-showcase-section .app-preview img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .board-2026 .app-showcase-section {
    padding: 60px 20px;
  }

  .board-2026 .app-showcase-section .container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .board-2026 .app-showcase-section .content-column {
    align-items: center;
  }

  .board-2026 .app-showcase-section .heading {
    font-size: 36px;
    line-height: 44px;
  }

  .board-2026 .app-showcase-section .store-badges {
    justify-content: center;
  }
}

/* Board 2026 Counselor CTA Section */
.board-2026 .counselor-cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 120px;
  gap: 80px;
  width: 100%;
  background: #FFFFFF;
  text-align: center;
}

.board-2026 .counselor-cta-section .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.board-2026 .counselor-cta-section .heading {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  text-align: center;
  letter-spacing: -0.02em;
  color: rgba(0, 6, 38, 0.9);
  margin-bottom: 24px;
}

.board-2026 .counselor-cta-section .description {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  color: rgba(0, 6, 38, 0.9);
  max-width: 840px;
  margin: 0 auto 40px;
}

.board-2026 .counselor-cta-section .cta-button {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  gap: 8px;
  background: #ED040B;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.board-2026 .counselor-cta-section .cta-button:hover {
  background: #D00309;
}

.board-2026 .counselor-cta-section .cta-button span {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
}

.board-2026 .counselor-cta-section .cta-button .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .board-2026 .counselor-cta-section {
    padding: 60px 20px;
  }

  .board-2026 .counselor-cta-section .heading {
    font-size: 36px;
    line-height: 44px;
  }

  .board-2026 .counselor-cta-section .description {
    font-size: 18px;
    line-height: 28px;
  }
}

/* Board 2026 Why Self-Study Section */
.board-2026 .why-self-study-section {
  padding: 80px 120px;
  background: #FFFFFF;
}

.board-2026 .why-self-study-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.board-2026 .why-self-study-section .content-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}

.board-2026 .why-self-study-section .content-column {
  flex: 1;
}

.board-2026 .why-self-study-section .tagline {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #ED040B;
  margin-bottom: 16px;
}

.board-2026 .why-self-study-section .heading {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  color: rgba(0, 6, 38, 0.9);
  margin-bottom: 40px;
}

.board-2026 .why-self-study-section .feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.board-2026 .why-self-study-section .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.board-2026 .why-self-study-section .feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.board-2026 .why-self-study-section .feature-content p {
  font-family: 'Inter';
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 6, 38, 0.9);
  margin: 0;
}

.board-2026 .why-self-study-section .cta-button {
  display: inline-flex;
  padding: 16px 32px;
  background: #ED040B;
  border-radius: 8px;
  font-family: 'Inter';
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.board-2026 .why-self-study-section .cta-button:hover {
  background: #D00309;
}

.board-2026 .why-self-study-section .image-column {
  flex: 1;
}

.board-2026 .why-self-study-section .feature-image {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .board-2026 .why-self-study-section {
    padding: 60px 20px;
  }

  .board-2026 .why-self-study-section .content-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .board-2026 .why-self-study-section .heading {
    font-size: 28px;
    line-height: 36px;
  }
}

.book-consultation-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 32px;
  gap: 8px;
  background: #ED040B;
  border-radius: 8px;
  color: #fff;
  font-family: 'Inter', 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  border: none;
  cursor: pointer;
  width: 322px;
  height: 52px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0px 2px 4px -2px rgba(0,0,0,0.08), 0px 4px 8px -2px rgba(0,0,0,0.04);
}

.book-consultation-btn:hover, .book-consultation-btn:focus {
  background: #d00309;
  color: #fff;
}

@media (max-width: 400px) {
  .book-consultation-btn {
    /* REMOVE width: 100%; */
    min-width: 160px;
    max-width: 100%;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 8px;
}

.google-play-btn {
  height: 52px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0px 2px 4px -2px rgba(0,0,0,0.08), 0px 4px 8px -2px rgba(0,0,0,0.04);
  border-radius: 8px;
}

@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }
}

/* Responsive Hero Title */
.hero-responsive-title {
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: rgba(0, 6, 38, 0.9);
    margin: 0;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .hero-responsive-title {
        font-size: 1.75rem;
        line-height: 1.2;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .hero-responsive-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .hero-responsive-title {
        font-size: 1.3rem;
        line-height: 1.15;
    }
}

@media (max-width: 360px) {
    .hero-responsive-title {
        font-size: 1.2rem;
        line-height: 1.1;
    }
}

/* Actions Container Styles */
header .desktop-header .main-menu ul .actions-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0px;
	gap: 16px;
	width: 354px;
	height: 48px;
	flex: none;
	flex-grow: 0;
	margin-left: auto;
}

header .desktop-header .main-menu ul .actions-container .need-help-btn {
	background: #fff;
	color: #333;
	border-radius: 8px;
	padding: 12px 20px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

header .desktop-header .main-menu ul .actions-container .need-help-btn:hover {
	background: #f0f0f0;
	color: #333;
}

header .desktop-header .main-menu ul .actions-container .talk-counselor-btn {
	background: #333;
	color: #fff;
	border-radius: 8px;
	padding: 12px 20px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

header .desktop-header .main-menu ul .actions-container .talk-counselor-btn:hover {
	background: #555;
	color: #fff;
}

header .desktop-header .main-menu ul .actions-container .talk-counselor-btn i {
	margin-left: 8px;
}
header .desktop-header .main-menu ul .actions-container .need-help-btn,
header .desktop-header .main-menu ul .actions-container .talk-counselor-btn {
	white-space: nowrap;
}
header .desktop-header .main-menu ul .top-link a {
	white-space: nowrap;
}
header .desktop-header .main-menu ul .logo {
	max-width: 100px !important;
	flex-shrink: 0;
}
.book-consultation-btn {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0px 24px;
	gap: 8px;
	width: 259px;
	height: 56px;
	background: rgba(255, 255, 255, 0.01);
	border: 1px solid rgba(0, 13, 77, 0.45);
	box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.08), 0px 4px 8px -2px rgba(0, 0, 0, 0.04);
	border-radius: 12px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
	text-align: center;
	color: rgba(0, 6, 38, 0.9);
	cursor: pointer;
	transition: all 0.3s ease;
}
/* Stats Section */
.stats-section {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 112px 120px;
	gap: 80px;
	background: #FFFFFF;
}

.stats-content {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0px;
	gap: 80px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.content-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0px;
	gap: 32px;
	width: 400px;
}

.content-left .tagline {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #000000;
}

.content-left .heading {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 32px;
	line-height: 40px;
	color: #000000;
	margin: 0;
}

.content-left .description {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	color: #000000;
	margin: 0;
}

.content-left .actions {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0px;
	gap: 16px;
}

.content-left .google-play-badge {
	width: 162px;
	height: 48px;
}

.content-left .google-play-badge img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.content-left .demo-btn {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0px 24px;
	gap: 8px;
	width: 211px;
	height: 56px;
	background: rgba(255, 255, 255, 0.01);
	border: 1px solid rgba(76, 100, 217, 0.8);
	box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.08), 0px 4px 8px -2px rgba(0, 0, 0, 0.04);
	border-radius: 12px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
	text-align: center;
	color: #4C64D9;
	cursor: pointer;
}

.stats-grid {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0px;
	gap: 32px;
	width: 720px;
	flex-grow: 1;
}

.stats-row {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding: 0px;
	gap: 32px;
	width: 100%;
}

.stat-card {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 32px;
	gap: 24px;
	width: 344px;
	height: 236px;
	border: 1px solid #000000;
	border-radius: 8px;
	flex-grow: 1;
}

.stat-number {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 56px;
	line-height: 64px;
	letter-spacing: -1px;
	color: #000000;
}

.stat-title {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 140%;
	color: #000000;
}

.stat-desc {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #000000;
}

@media (max-width: 992px) {
	.stats-section {
		padding: 60px 20px;
	}
	
	.stats-content {
		flex-direction: column;
		gap: 40px;
	}
	
	.content-left {
		width: 100%;
		text-align: center;
	}
	
	.stats-grid {
		width: 100%;
	}
	
	.stats-row {
		flex-direction: column;
		gap: 20px;
	}
	
	.stat-card {
		width: 100%;
		height: auto;
	}
}
/* Features Section */
.features-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 112px 64px;
	gap: 80px;
	background: #FFFFFF;
	margin: 0 auto;
}

.features-section .section-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0px;
	gap: 16px;
	width: 768px;
	text-align: center;
}

.features-section .tagline {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #000000;
}

.features-section .heading {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 32px;
	line-height: 40px;
	color: #000000;
	margin: 0;
}

.features-section .description {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	color: #000000;
	margin: 0;
}

.features-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0px;
	gap: 80px;
	width: 100%;
	max-width: 1312px;
}

.feature-card {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding: 0px;
	width: 100%;
	height: 628px;
	background: #FFFFFF;
}

.feature-card.reverse {
	flex-direction: row-reverse;
}

.feature-image {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0px;
	width: 656px;
	height: 628px;
	flex-grow: 1;
}

.feature-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.feature-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 48px;
	gap: 32px;
	width: 656px;
	height: 628px;
	flex-grow: 1;
}

.feature-tagline {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #000000;
}

.feature-heading {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 32px;
	line-height: 40px;
	color: #000000;
	margin: 0;
}

.feature-text {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	color: #000000;
	margin: 0;
}

.feature-actions {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0px;
	gap: 24px;
}

.feature-btn-primary {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 12px 24px;
	gap: 8px;
	border: 1px solid #000000;
	background: transparent;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #000000;
	cursor: pointer;
	transition: all 0.3s ease;
}

.feature-btn-primary:hover {
	background: #000000;
	color: #FFFFFF;
}

.feature-btn-secondary {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0px;
	gap: 8px;
	background: transparent;
	border: none;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #000000;
	cursor: pointer;
	transition: all 0.3s ease;
}

.feature-btn-secondary:hover {
	color: #666666;
}

.feature-btn-secondary i {
	width: 24px;
	height: 24px;
}

@media (max-width: 992px) {
	.features-section {
		padding: 60px 20px;
	}
	
	.features-section .section-title {
		width: 100%;
	}
	
	.feature-card {
		flex-direction: column !important;
		height: auto;
	}
	
	.feature-card.reverse {
		flex-direction: column !important;
	}
	
	.feature-image,
	.feature-content {
		width: 100%;
		height: auto;
	}
	
	.feature-content {
		padding: 24px;
	}
	
	.feature-actions {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
}