/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */


/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

	/**
   * colors
   */

	--selective-yellow: hsl(42, 94%, 55%);
	--eerie-black-1: hsl(0, 0%, 9%);
	--eerie-black-2: hsl(180, 3%, 7%);
	--quick-silver: hsl(0, 0%, 65%);
	--radical-red: hsl(351, 83%, 61%);
	--light-gray: hsl(0, 0%, 80%);
	--isabelline: hsl(36, 33%, 94%);
	--gray-x-11: hsl(0, 0%, 73%);
	--kappel_15: hsla(170, 75%, 41%, 0.15);
	--platinum: hsl(0, 0%, 90%);
	--gray-web: hsl(0, 0%, 50%);
	--black_80: hsla(0, 0%, 0%, 0.8);
	--white_50: hsla(0, 0%, 100%, 0.5);
	--black_50: hsla(0, 0%, 0%, 0.5);
	--black_30: hsla(0, 0%, 0%, 0.3);
	--kappel: hsl(170, 75%, 41%);
	--white: hsl(0, 0%, 100%);

	/**
   * gradient color
   */

	--gradient: linear-gradient(-90deg, hsl(151, 58%, 46%) 0%, hsl(170, 75%, 41%) 100%);

	/**
   * typography
   */

	--ff-league_spartan: 'League Spartan', sans-serif;
	--ff-poppins: 'Poppins', sans-serif;

	--fs-1: 4.2rem;
	--fs-2: 3.2rem;
	--fs-3: 2.3rem;
	--fs-4: 1.8rem;
	--fs-5: 1.5rem;
	--fs-6: 1.4rem;
	--fs-7: 1.3rem;

	--fw-500: 500;
	--fw-600: 600;

	/**
   * spacing
   */

	--section-padding: 75px;

	/**
   * shadow
   */

	--shadow-1: 0 6px 15px 0 hsla(0, 0%, 0%, 0.05);
	--shadow-2: 0 10px 30px hsla(0, 0%, 0%, 0.06);
	--shadow-3: 0 10px 50px 0 hsla(220, 53%, 22%, 0.1);

	/**
   * radius
   */

	--radius-pill: 500px;
	--radius-circle: 50%;
	--radius-3: 3px;
	--radius-5: 5px;
	--radius-10: 10px;

	/**
   * transition
   */

	--transition-1: 0.25s ease;
	--transition-2: 0.5s ease;
	--cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
	--cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}


/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li {
	list-style: none;
}

a,
img,
span,
data,
input,
button,
ion-icon {
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	height: auto;
}

input,
button {
	background: none;
	border: none;
	font: inherit;
}

input {
	width: 100%;
}

button {
	cursor: pointer;
}

ion-icon {
	pointer-events: none;
}

address {
	font-style: normal;
}

html {
	font-family: var(--ff-poppins);
	font-size: 10px;
	scroll-behavior: smooth;
}

body {
	background-color: var(--white);
	color: var(--gray-web);
	font-size: 1.6rem;
	line-height: 1.75;
	/* font-family: 'Noto Sans', sans-serif; */
}

li.navbar-item a {
	font-size: 17px;
}

:focus-visible {
	outline-offset: 4px;
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background-color: hsl(0, 0%, 98%);
}

::-webkit-scrollbar-thumb {
	background-color: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
	background-color: hsl(0, 0%, 70%);
}


/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
	padding-inline: 15px;
}

.section {
	padding-block: var(--section-padding);
}

.shape {
	position: absolute;
	display: none;
}

.has-bg-image {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.h1,
.h2,
.h3 {
	color: var(--eerie-black-1);
	font-family: var(--ff-league_spartan);
	line-height: 1;
}

.h1,
.h2 {
	font-weight: var(--fw-600);
}

.h1 {
	font-size: var(--fs-1);
}

.h2 {
	font-size: var(--fs-2);
}

.h3 {
	font-size: var(--fs-3);
	font-weight: var(--fw-500);
}

.section-title {
	--color: var(--radical-red);
	text-align: center;
}

.section-title .span {
	display: inline-block;
	color: var(--color);
}

.btn {
	background-color: var(--kappel);
	color: var(--white);
	font-family: var(--ff-league_spartan);
	font-size: var(--fs-4);
	display: flex;
	align-items: center;
	gap: 7px;
	max-width: max-content;
	padding: 10px 20px;
	border-radius: var(--radius-10);
	overflow: hidden;
}

.has-before,
.has-after {
	position: relative;
	z-index: 1;
}

.has-before::before,
.has-after::after {
	position: absolute;
	content: "";
}

.btn::before {
	inset: 0;
	background-image: var(--gradient);
	z-index: -1;
	border-radius: inherit;
	transform: translateX(-100%);
	transition: var(--transition-2);
}

.btn:is(:hover, :focus)::before {
	transform: translateX(0);
}

.img-holder {
	aspect-ratio: var(--width) / var(--height);
	background-color: var(--light-gray);
	overflow: hidden;
}

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

.section-subtitle {
	font-size: var(--fs-5);
	text-transform: uppercase;
	font-weight: var(--fw-500);
	letter-spacing: 1px;
	text-align: center;
	margin-block-end: 15px;
}

.section-text {
	font-size: var(--fs-5);
	text-align: center;
	margin-block: 15px 25px;
}

.grid-list {
	display: grid;
	gap: 30px;
}

.category-card,
.stats-card {
	background-color: hsla(var(--color), 0.1);
}

:is(.course, .blog) .section-title {
	margin-block-end: 40px;
}


/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn {
	display: none;
}

.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--white);
	padding-block: 12px;
	box-shadow: var(--shadow-1);
	z-index: 4;
}

.header.active {
	position: fixed;
}

.header .container,
.header-actions,
.navbar .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.header-action-btn,
.nav-close-btn {
	position: relative;
	color: var(--eerie-black-1);
	font-size: 24px;
	transition: var(--transition-1);
}

.header-action-btn:is(:hover, :focus) {
	color: var(--kappel);
}

.header-action-btn .btn-badge {
	position: absolute;
	top: -10px;
	right: -10px;
	background-color: var(--kappel);
	color: var(--white);
	font-family: var(--ff-league_spartan);
	font-size: var(--fs-6);
	min-width: 20px;
	height: 20px;
	border-radius: var(--radius-circle);
}

.navbar {
	position: fixed;
	top: 0;
	left: -320px;
	background-color: var(--white);
	width: 100%;
	max-width: 320px;
	height: 100%;
	z-index: 2;
	transition: 0.25s var(--cubic-in);
}

.navbar.active {
	transform: translateX(320px);
	transition: 0.5s var(--cubic-out);
}

.navbar .wrapper {
	padding: 15px 20px;
	border-block-end: 1px solid var(--platinum);
}

.nav-close-btn {
	background-color: var(--white);
	box-shadow: var(--shadow-2);
	padding: 8px;
	border-radius: var(--radius-circle);
}

.nav-close-btn:is(:hover, :focus) {
	background-color: var(--kappel);
	color: var(--white);
}

.navbar-list {
	padding: 15px 20px;
}

.navbar-item:not(:last-child) {
	border-block-end: 1px solid var(--platinum);
}

.navbar-link {
	padding-block: 8px;
	font-weight: var(--fw-500);
	transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) {
	color: var(--kappel);
}

.overlay {
	position: fixed;
	inset: 0;
	background-color: var(--black_80);
	pointer-events: none;
	opacity: 0;
	z-index: 1;
	transition: var(--transition-1);
}

.overlay.active {
	opacity: 1;
	pointer-events: all;
}


/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
	padding-block-start: calc(var(--section-padding) + 80px);
}

.hero .container {
	display: grid;
	gap: 40px;
}

.hero-text {
	color: var(--eerie-black-1);
	font-size: var(--fs-4);
	text-align: center;
	margin-block: 18px 20px;
}

.hero .btn {
	margin-inline: auto;
}

.hero-banner {
	display: grid;
	grid-template-columns: 1fr 0.8fr;
	align-items: flex-start;
	gap: 30px;
}

.hero-banner .img-holder.one {
	border-top-right-radius: 70px;
	border-bottom-left-radius: 110px;
}

.hero-banner .img-holder.two {
	border-top-left-radius: 50px;
	border-bottom-right-radius: 90px;
}


/*-----------------------------------*\
  #CATEGORY
\*-----------------------------------*/

.category .section-subtitle {
	color: var(--radical-red);
}

.category .section-title {
	--color: var(--kappel);
}

.category .section-text {
	margin-block-end: 40px;
}

.category-card {
	padding: 50px 30px;
	text-align: center;
	border-radius: var(--radius-5);
	height: 350px;
}

.category-card .card-icon {
	background-color: hsla(var(--color), 0.1);
	width: 80px;
	height: 80px;
	display: grid;
	place-items: center;
	border-radius: var(--radius-circle);
	margin-inline: auto;
	margin-block-end: 30px;
}

.category-card .card-text {
	color: var(--eerie-black-1);
	font-size: var(--fs-5);
	margin-block: 15px 25px;
}

.category-card .card-badge {
	background-color: hsla(var(--color), 0.1);
	color: hsl(var(--color));
	font-size: var(--fs-5);
	font-weight: var(--fw-500);
	padding: 2px 18px;
	max-width: max-content;
	margin-inline: auto;
	border-radius: var(--radius-5);
}


/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
	padding-block-start: 0;
	overflow: hidden;
}

.about .container {
	display: grid;
	gap: 30px;
	/* margin-top: 150px; */
	margin-top: 50px;
}

.about-banner {
	position: relative;
	z-index: 1;
}

.about-banner .img-holder {
	border-radius: var(--radius-10);
}

.about-shape-2 {
	display: block;
	bottom: -100px;
	left: -60px;
	animation: bounce 2.5s infinite;
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-30px);
	}

	60% {
		transform: translateY(-15px);
	}
}

.about :is(.section-subtitle, .section-title, .section-text) {
	text-align: left;
	/* margin-top: 15px; */
}

.about-item {
	margin-block: 15px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.about-item ion-icon {
	color: var(--selective-yellow);
	font-size: 20px;
	--ionicon-stroke-width: 50px;
}

.about-item .span {
	color: var(--eerie-black-1);
	font-family: var(--ff-league_spartan);
}

.about-title {
	text-align: center;
	font-size: 4.5rem;
	color: rgb(50, 50, 50);
}

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

section.section.category {
	margin-top: -150px;
}


/*-----------------------------------*\
  #COURSE
\*-----------------------------------*/

.course {
	background-color: var(--isabelline);
}

.course-card {
	position: relative;
	background-color: var(--white);
	border-radius: var(--radius-5);
	overflow: hidden;
}

.course-card .img-cover {
	transition: var(--transition-2);
}

.course-card:is(:hover, :focus-within) .img-cover {
	transform: scale(1.1);
}

.course-card :is(.abs-badge, .badge) {
	font-family: var(--ff-league_spartan);
	border-radius: var(--radius-3);
}

.course-card .abs-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: var(--selective-yellow);
	color: var(--white);
	display: flex;
	align-items: center;
	gap: 5px;
	line-height: 1;
	padding: 6px 8px;
	padding-block-end: 3px;
}

.course-card .abs-badge ion-icon {
	font-size: 18px;
	margin-block-end: 5px;
	--ionicon-stroke-width: 50px;
}

.course-card .card-content {
	padding: 25px;
}

.course-card .badge {
	background-color: var(--kappel_15);
	max-width: max-content;
	color: var(--kappel);
	line-height: 25px;
	padding-inline: 10px;
}

.course-card .card-title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin-block: 15px 8px;
	transition: var(--transition-1);
}

.course-card .card-title:is(:hover, :focus) {
	color: var(--kappel);
}

.course-card :is(.wrapper, .rating-wrapper, .card-meta-list, .card-meta-item) {
	display: flex;
	align-items: center;
}

.course-card .wrapper {
	gap: 10px;
}

.course-card .rating-wrapper {
	gap: 3px;
}

.course-card .rating-wrapper ion-icon {
	color: var(--selective-yellow);
}

.course-card .rating-text {
	color: var(--eerie-black-1);
	font-size: var(--fs-6);
	font-weight: var(--fw-500);
}

.course-card .price {
	color: var(--radical-red);
	font-family: var(--ff-league_spartan);
	font-size: var(--fs-4);
	font-weight: var(--fw-600);
	margin-block: 8px 15px;
}

.course-card .card-meta-list {
	flex-wrap: wrap;
}

.course-card .card-meta-item {
	position: relative;
	gap: 5px;
}

.course-card .card-meta-item:not(:last-child)::after {
	content: "|";
	display: inline-block;
	color: var(--platinum);
	padding-inline: 10px;
}

.course-card .card-meta-item ion-icon {
	color: var(--quick-silver);
	--ionicon-stroke-width: 50px;
}

.course-card .card-meta-item .span {
	color: var(--eerie-black-1);
	font-size: var(--fs-7);
}

.course .btn {
	/* margin-inline: auto; */
	margin-block-start: 20px;
	padding: 5px 20px;
	border-radius: 5px;
}


/*-----------------------------------*\
  #VIDEO
\*-----------------------------------*/

.video {
	background-size: contain;
	background-position: center top;
}

.video-banner {
	position: relative;
	border-top-right-radius: 80px;
	border-bottom-left-radius: 120px;
}

.video .play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--radical-red);
	font-size: 30px;
	padding: 16px;
	color: var(--white);
	border-radius: var(--radius-circle);
	box-shadow: 0 0 0 0 var(--white_50);
	z-index: 1;
	animation: pulse 3s ease infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 var(--white_50);
	}

	100% {
		box-shadow: 0 0 0 20px transparent;
	}
}

.video-banner::after {
	inset: 0;
	background-color: var(--black_30);
}


/*-----------------------------------*\
  #STATS
\*-----------------------------------*/

.stats-card {
	text-align: center;
	padding: 25px;
	border-radius: var(--radius-10);
}

.stats-card :is(.card-title, .card-text) {
	font-family: var(--ff-league_spartan);
}

.stats-card .card-title {
	color: hsl(var(--color));
	font-size: var(--fs-2);
	line-height: 1.1;
}

.stats-card .card-text {
	color: var(--eerie-black-1);
	text-transform: uppercase;
}


/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog-card .card-banner {
	border-radius: var(--radius-10);
}

.blog-card .card-banner .img-cover {
	transition: var(--transition-2);
}

.blog-card .card-banner::after {
	inset: 0;
	background-color: var(--black_50);
	opacity: 0;
	transition: var(--transition-1);
}

.blog-card:is(:hover, :focus-within) .card-banner .img-cover {
	transform: scale(1.1);
}

.blog-card:is(:hover, :focus-within) .card-banner::after {
	opacity: 1;
}

.blog-card .card-content {
	position: relative;
	margin-inline: 15px;
	background-color: var(--white);
	padding: 20px;
	border-radius: var(--radius-10);
	box-shadow: var(--shadow-3);
	margin-block-start: -100px;
	z-index: 1;
}

.blog-card .card-btn {
	position: absolute;
	top: -40px;
	right: 30px;
	background-color: var(--kappel);
	color: var(--white);
	font-size: 20px;
	padding: 20px;
	border-radius: var(--radius-circle);
	transition: var(--transition-1);
	opacity: 0;
}

.blog-card .card-btn:is(:hover, :focus) {
	background-color: var(--radical-red);
}

.blog-card:is(:hover, :focus-within) .card-btn {
	opacity: 1;
	transform: translateY(10px);
}

.blog-card :is(.card-meta-item, .card-text, .card-subtitle) {
	font-size: var(--fs-5);
}

.blog-card .card-subtitle {
	text-transform: uppercase;
}

.blog-card .card-title {
	margin-block: 10px 15px;
	transition: var(--transition-1);
}

.blog-card .card-title:is(:hover, :focus) {
	color: var(--kappel);
}

.blog-card :is(.card-meta-list, .card-meta-item) {
	display: flex;
}

.blog-card .card-meta-list {
	flex-wrap: wrap;
	gap: 10px 20px;
	margin-block-end: 20px;
}

.blog-card .card-meta-item {
	gap: 10px;
	align-items: center;
	color: var(--eerie-black-1);
}

.blog-card .card-meta-item ion-icon {
	color: var(--kappel);
	font-size: 18px;
	--ionicon-stroke-width: 40px;
}


/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
	background-repeat: no-repeat;
	background-color: var(--eerie-black-2);
	color: var(--gray-x-11);
	font-size: var(--fs-5);
}

.footer-top {
	display: grid;
	gap: 30px;
}

.footer-brand-text {
	margin-block: 20px;
}

.footer-brand .wrapper {
	display: flex;
	gap: 5px;
}

.footer-brand .wrapper .span {
	font-weight: var(--fw-500);
}

.footer-link {
	transition: var(--transition-1);
}

.footer-link:is(:hover, :focus) {
	color: var(--kappel);
}

.footer-list-title {
	color: var(--white);
	font-family: var(--ff-league_spartan);
	font-size: var(--fs-3);
	font-weight: var(--fw-600);
	margin-block-end: 10px;
}

.footer-list .footer-link {
	padding-block: 5px;
}

.newsletter-form {
	margin-block: 20px 35px;
}

.newsletter-form .input-field {
	background-color: var(--white);
	padding: 12px;
	border-radius: var(--radius-5);
	margin-block-end: 20px;
}

.newsletter-form .btn {
	min-width: 100%;
	justify-content: center;
}

.social-list {
	display: flex;
	justify-content: center;
	gap: 25px;
	margin-bottom: 10px;
}

.social-link {
	font-size: 30px;
}

/* a.social-link.facebook {
	color: #1877F2;
	background: white;
	border-radius: 15px;
}

a.social-link.linkedin {
	color: #0077b5;
	background: white;
	border-radius: 4px;
}

a.social-link.instagram {
	color: #ee2a7b;
	background-color: white;
	border-radius: 8px;
}

a.social-link.whatsapp {
	background-color: #25D366;
	border-radius: 20px;
	color: white;
} */
.social-link :hover {
	opacity: 0.7;
}

.footer-bottom {
	border-block-start: 1px solid var(--eerie-black-1);
	padding-block: 30px;
}

.copyright {
	text-align: center;
}

.copyright-link {
	color: var(--kappel);
	display: inline-block;
}

.container.grid-list.grids {
	grid-template-columns: 5fr 5fr;
	margin-top: -100px;
}


/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
	position: fixed;
	bottom: 40px;
	right: 30px;
	background-color: var(--kappel);
	color: var(--white);
	font-size: 20px;
	padding: 15px;
	border-radius: var(--radius-circle);
	z-index: 3;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition-1);
}

.back-top-btn.active {
	transform: translateY(10px);
	opacity: 1;
	pointer-events: all;
}


/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {

	/**
   * REUSED STYLE
   */

	.container {
		max-width: 520px;
		width: 100%;
		margin-inline: auto;
	}

	.grid-list {
		grid-template-columns: 1fr 1fr;
	}

	:is(.course, .blog) .grid-list {
		grid-template-columns: 1fr;
	}


	/**
   * HEADER
   */

	.header .container {
		max-width: unset;
	}

	.header-actions {
		gap: 30px;
	}


	/**
   * HERO
   */

	.hero-banner {
		grid-template-columns: 1fr 0.9fr;
	}


	/**
   * VIDEO
   */

	.video .play-btn {
		padding: 25px;
	}


	/**
   * STATS
   */

	.stats-card {
		padding: 40px 30px;
	}


	/**
   * FOOTER
   */

	.footer-brand,
	.footer-list:last-child {
		grid-column: 1 / 3;
	}

	.newsletter-form {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.newsletter-form .input-field {
		margin-block-end: 0;
	}

	.newsletter-form .btn {
		min-width: max-content;
	}

	section.section.category {
		margin-top: -180px;
	}

}


/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

	/**
   * CUSTOM PROPERTY
   */

	:root {

		/**
     * typography
     */

		--fs-1: 4.6rem;
		--fs-2: 3.8rem;

	}


	/**
   * REUSED STYLE
   */

	.container {
		max-width: 720px;
	}

	.btn {
		padding: 15px 30px;
	}

	:is(.course, .blog) .grid-list {
		grid-template-columns: 1fr 1fr;
	}


	/**
   * HEADER
   */

	.header .container {
		padding-inline: 30px;
	}

	.header .btn {
		display: flex;
		padding: 10px 30px;
		margin-inline: 20px;
	}


	/**
   * HERO
   */

	.hero {
		padding-block-start: calc(var(--section-padding) + 90px);
	}

	.hero .container {
		gap: 50px;
	}

	.hero-text {
		margin-block-end: 30px;
	}

	.hero-banner {
		position: relative;
		z-index: 1;
	}

	.hero-banner .img-holder {
		max-width: max-content;
	}

	.hero-banner .img-holder.one {
		justify-self: flex-end;
	}

	.hero-banner .img-holder.two {
		margin-block-start: 100px;
	}

	.hero-shape-1 {
		display: block;
		position: absolute;
		bottom: -40px;
		left: -10px;
	}


	/**
   * ABOUT
   */

	.about {
		padding-block-start: 50px;
	}

	.about-banner {
		padding: 60px;
		padding-inline-end: 0;
	}

	.about-banner .img-holder {
		max-width: max-content;
		margin-inline: auto;
	}

	.about-shape-1 {
		display: block;
		top: -40px;
		right: -70px;
	}

	/* @media (max-width: 575px){
    .about-content-text {
      margin: 10px 25px;
    }
  } */


	/**
   * FOOTER
   */

	.footer-brand,
	.footer-list:last-child {
		grid-column: auto;
	}

	.newsletter-form .btn {
		padding-block: 10px;
	}

}


/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

	/**
   * CUSTOM PROPERTY
   */

	:root {

		/**
     * typography
     */

		--fs-1: 5.5rem;
		--fs-2: 4.5rem;

	}


	/**
   * REUSED STYLE
   */

	.container {
		max-width: 960px;
	}

	.grid-list {
		grid-template-columns: repeat(4, 1fr);
	}

	:is(.course, .blog) .grid-list {
		grid-template-columns: repeat(3, 1fr);
	}


	/**
   * HERO
   */

	.hero .container {
		grid-template-columns: 1fr 1fr;
		align-items: center;
	}

	.hero .section-title,
	.hero-text {
		text-align: left;
	}

	.hero .btn {
		margin-inline: 0;
	}


	/**
   * ABOUT
   */

	.about .container {
		grid-template-columns: 1fr 0.6fr;
		align-items: center;
		gap: 60px;
	}


	/**
   * VIDEO
   */

	.video-banner {
		max-width: 75%;
		margin-inline: auto;
	}


	/**
   * FOOTER
   */

	.footer .grid-list {
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	}

}


/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

	/**
   * CUSTOM PROPERTY
   */

	:root {

		/**
     * typography
     */

		--fs-1: 6.5rem;

		/**
     * spacing
     */

		--section-padding: 120px;

	}


	/**
   * REUSED STYLE
   */

	.container {
		max-width: 1185px;
	}

	.shape {
		display: block;
	}

	.about-content,
	.video-card,
	.blog {
		position: relative;
	}


	/**
   * HEADER
   */

	.header-action-btn:last-child,
	.navbar .wrapper,
	.overlay {
		display: none;
	}

	.header.active {
		transform: translateY(-100%);
		animation: slideIn 0.5s ease forwards;
	}

	@keyframes slideIn {
		0% {
			transform: translateY(-100%);
		}

		100% {
			transform: translateY(0);
		}
	}

	.navbar,
	.navbar.active {
		all: unset;
	}

	.navbar-list {
		display: flex;
		gap: 50px;
		padding: 0;
	}

	.navbar-item:not(:last-child) {
		border-block-end: none;
	}

	.navbar-link {
		color: var(--eerie-black-1);
		padding-block: 20px;
	}

	.header .btn {
		margin-inline-end: 0;
	}


	/**
   * HERO
   */

	.hero {
		padding-block-start: calc(var(--section-padding) + 120px);
	}

	.hero .container {
		gap: 80px;
	}

	.hero-shape-2 {
		top: -80px;
		z-index: -1;
	}


	/**
   * ABOUT
   */

	.about .container {
		gap: 50px;
		margin-top: 60px;
	}

	.about-banner .img-holder {
		margin-inline: 0;
	}

	.about-shape-3 {
		top: -20px;
		left: -100px;
		z-index: -1;
	}

	.about-content {
		z-index: 1;
	}

	.about-shape-4 {
		top: 30px;
		right: -60px;
		z-index: -1;
	}

	p.section-text.ast {
		text-align: justify;
	}


	/**
   * VIDEO
   */

	.video-shape-1 {
		top: -50px;
		left: 0;
	}

	.video-shape-2 {
		top: -80px;
		right: 120px;
		z-index: 1;
	}


	/**
   * BLOG
   */

	.blog-shape {
		top: 0;
		left: 0;
	}

}


.rrev-section {
	margin: auto;
	padding: 0 1rem;
	max-width: 1100px;
	text-align: center;
	font-style: "poppins";
}

.rtitle {
	font-size: 4.5rem;

	color: rgb(50, 50, 50);
	margin-bottom: .5rem;
}

.rnote {
	font-size: 2.1rem;
	color: rgb(150, 150, 150);
	font-style: "poppins";
	color: black;


}

.rreviews {
	margin: 2rem auto;
	display: flex;
	flex-wrap: wrap;
}

.rreview {
	margin: 0 1rem;
	min-width: 300px;
	flex: 1;
}

.rhead-review {
	margin: 1.75rem auto;
	width: 150px;
	height: 150px;
}

.rimg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

.rbody-review {
	background-color: transparent;
	padding: 2.5rem;
	box-shadow: 2px 2px 10px 3px rgb(225, 225, 225);
	border-radius: 8px;
}

.rname-review {
	font-size: 2rem;
	color: rgb(50, 50, 50);
	margin-bottom: .25rem;
	font-style: "poppins";
	font-weight: 600;

}

.rplace-review {
	color: black;
	font-style: "poppins";
}

.rrating {
	color: hsl(170, 75%, 41%);
	margin: 1rem 0;
}

.rdesc-review {
	line-height: 1.5rem;
	letter-spacing: 1px;
	color: rgb(150, 150, 150);
}

@media (max-width: 678px) {
	.rreview {
		margin-top: 1.5rem;
	}

}

/* Logo Carousel Design */
.slider {
	overflow: hidden;
}

.slide-track {
	display: inline-block;
	animation: move 20s linear infinite;
	white-space: nowrap;
}

.slide-track>* {
	padding: 2vw;
	display: inline-block;
}

@keyframes move {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

p.service-text {
	font-size: 12px;
}

.flex-grow-1.country-text {
	color: var(--eerie-black-1);
	margin-top: 10px;
}

p.section-text.Country {
	text-align: justify;
}

/* # Mobile */
@media (min-width: 480px) {}

/* # Tablet */
@media (min-width: 768px) {}

/* # Desktop */
@media (min-width: 992px) {}

/* # Huge */
@media (min-width: 1280px) {}

section.Country {
	margin: 0px 25px;
}

.ratio-1x1 img {
	border-radius: 5px;
}

.about-content-text {
	margin: 25px 35px;
}

.about-content-text h2 {
	text-align: center;
}

/* FAQs */
.accordion {
	background: linear-gradient(to right bottom, #83bfb5, rgba(255, 255, 255, 0.5));
	color: #444;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 18px;
	transition: 0.4s;
	margin-top: 10px;
	border-radius: 10px;
	font-weight: bold;
	display: flex;
	gap: 10px;
}

.active,
.accordion:hover {
	background-color: #ccc;
}

.panel {
	padding: 15px 30px;
	display: none;
	background-color: white;
	overflow: hidden;
	transition: max-height 0.5s ease;
}

.FAQs {
	/* margin-top:150px; */
	margin: 150px 50px 50px 50px;
}

.Exams {
	margin: 150px 50px 50px 50px;
}

/* About Countries */
.about-content-text ul li {
	list-style-type: disc;
}

.about-content-text ol li {
	list-style-type: decimal;
}

.about-content-text {
	margin: 50px 100px;
	color: black;
}

.about-content-text p {
	color: black;

}

.about-content-text h3 {
	margin-top: 25px;
}


.about-content-text.Cbtns {
	display: flex;
	justify-content: space-around;
}

.about-content-text.Cbtns a {
	padding: 15px 30px;
}

@media (max-width: 575px) {
	.about-content-text {
		margin: 10px 25px;
	}

	.logo img {
		height: auto;
		width: 50px;
	}

	.about-content-text.Cbtns {
		display: block;
		/* justify-content: space-around; */
	}

	.FAQs {
		/* margin-top:150px; */
		margin: 150px 20px 50px 20px;
	}

	.Exams {
		margin: 150px 20px 50px 20px;
	}
}

ul.loan li {
	list-style-type: decimal;
	font-size: 18px;
	color: black;
	/* font-weight: bold; */
}

/* Testimonial */
.testimonial-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	/* height: 100vh; */
	overflow: hidden;
	/* Prevents any overflow from the carousel */
}

.testimonial-wrapper .owl-carousel .item {
	text-align: center;
	padding: 20px;
	display: flex;
	/* Aligns children (img and content) vertically and horizontally in the center */
	flex-direction: column;
	/* Stack image and text vertically */
	justify-content: center;
	/* Center align vertically */
	align-items: center;
	/* Center align horizontally */
	background-color: #1ab79d33;
}

.testimonial-image {
	width: 100px;
	/* Fixed width */
	height: 100px;
	/* Fixed height */
	border-radius: 50%;
	margin: 0 auto 10px;
	/* Automatically margins side and adds space between image and text */
	display: block;
	/* Ensures image is treated as block level for margin auto to work */
	object-fit: cover;
	/* Ensures the image aspect ratio is maintained */
}

.testimonial-content {
	background: #f0f0f0;
	padding: 20px;
	border-radius: 5px;
	width: 80%;
	/* Limits the width of the text content to not exceed 80% of carousel width */
	max-width: 500px;
	/* Ensures content does not get too wide on larger screens */
}

.testimonial-text {
	font-size: 14px;
	color: #333;
	margin-bottom: 5px;
}

.testimonial-author {
	font-size: 12px;
	color: #666;
}

.testimonial-wrapper .owl-carousel .owl-item img {
	display: block;
	width: inherit;
}

@media (max-width: 767px) {
	.testimonial-content {
		padding: 15px;
		width: 90%;
		/* More width percentage for smaller screens */
	}

	.testimonial-image {
		width: 70px;
		/* Smaller image on smaller screens */
		height: 70px;
	}

	.testimonial-text,
	.testimonial-author {
		font-size: 12px;
		/* Smaller font size on smaller screens */
	}
}

@media (min-width: 992px) {
	.testimonial-content {
		width: 80%;
		/* Adjust width for larger displays */
	}
}

.testimonial-image {
	width: 100px;
	/* Adjust size as needed */
	height: 100px;
	border-radius: 50%;
	margin: 0 auto 10px;
	display: block;
	object-fit: cover;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.10);
	/* Soft shadow */
	transition: all 0.3s ease-in-out;
	/* Smooth transition for hover effect */
}

.testimonial-image:hover {
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 6px 10px rgba(0, 0, 0, 0.15);
	/* Stronger shadow on hover */
	transform: scale(1.05);
	/* Slight scale up on hover */
}

/* Work With Us */
.card-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: 20px;
}

.detail-card {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: 0.3s;
	width: calc(50% - 40px);
	/* Adjust width and spacing between cards for larger screens */
	margin: 20px;
	border-radius: 10px;
	overflow: hidden;
}

.detail-card-header {
	background: linear-gradient(to right bottom, #1ab79d, rgba(255, 255, 255, 0.5));
	color: black;
	padding: 1px;
	text-align: center;
}

.detail-card-header img {
	width: 50px;
	height: auto;
	vertical-align: middle;
}

.detail-card-body {
	padding: 20px;
	background-color: #f8f9fa;
	text-align: left;
}

.detail-card-body ul {
	list-style-type: none;
	padding: 6px 25px;
}

.detail-card-body ul li {
	padding: 5px 0;
}

.btn-apply {
	text-decoration: none;
	color: white;
	background-color: #1ab79d;
	padding: 10px 20px;
	border-radius: 5px;
	display: block;
	width: fit-content;
	margin-top: 10px;
	margin-left: auto;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
	.detail-card {
		width: 100%;
		/* Full width on smaller screens */
		margin: 10px 0;
		/* Reduce margin for small screens */
	}

	.card-container {
		padding: 10px;
	}
}

/* Work with us Hiring Banner */
.hiring-banner {
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #e8edec42;
	/* Blue background, you can use an image or color gradient */
}

.hiring-banner-img {
	width: 100%;
	height: 100vh;
	opacity: 0.7;
	/* Making the image slightly transparent to allow text to stand out */
}

.hiring-banner-text {
	position: absolute;
	color: black;
	text-align: center;
	padding: 20px;
}

.hiring-banner-text h1 {
	font-size: 2.5em;
	/* Adjust size for larger displays */
	margin-bottom: 0.5em;
}

.hiring-banner-text p {
	font-size: 1.2em;
	margin-bottom: 1em;
}

.hiring-apply-btn {
	text-decoration: none;
	background-color: #FFD700;
	/* Golden color for visibility */
	color: black;
	padding: 10px 20px;
	border-radius: 5px;
	font-weight: bold;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
	.hiring-banner-text h1 {
		font-size: 1.5em;
	}

	.hiring-banner-text p {
		font-size: 1em;
	}

	.hiring-apply-btn {
		padding: 8px 16px;
	}

	.hiring-banner {
		margin-top: 86px;
	}

	.hiring-banner-img {
		height: 80vh;
	}
}

/* Country */
.country-carousel .country-item {
	display: block;
	padding: 10px;
	background-color: #f5f1eb;
}

.country-card {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.country-image {
	position: relative;
	width: 100%;
}

.country-image img {
	width: 100%;
	height: auto;
	display: block;
}

.country-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, 0.5);
	/* Semi-transparent overlay */
	color: white;
	text-align: center;
}

.country-btn {
	display: inline-block;
	padding: 10px 20px;
	color: white;
	background-color: #1ab79d;
	text-decoration: none;
	border-radius: 4px;
	margin-top: 10px;
	transition: background-color 0.3s ease;
}

.country-btn:hover {
	background-color: #739f97;
}

/* WhatsApp Link Styles */
.whatsapp-link {
	display: none;
	/* Start with the button hidden */
	position: fixed;
	/* Fixed position */
	bottom: 100px;
	/* Position from the bottom */
	right: 30px;
	/* Position from the right */
	background-color: #25D366;
	/* WhatsApp brand green color */
	z-index: 1000;
	/* High z-index to ensure it is on top of other content */
	padding: 10px 15px;
	/* Space around the icon */
	border-radius: 50%;
	/* Rounded shape */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	/* Shadow for depth */
	transition: background-color 0.3s;
	/* Smooth transition on hover */
}


.whatsapp-link:hover {
	background-color: #1da851;
	/* Darker green on hover */
}

.whatsapp-link i {
	color: white;
	/* White icon color */
	font-size: 40px;
	/* Icon size */
}

/* Exam Information */

.breadcrumb-banner {
	background-image: url('../images/bread.jpg');
	/* Link to your banner image */
	background-size: cover;
	background-position: center;
	height: 300px;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 20px;
	margin-top: 112px;
}

/* Responsive container for content */
.Examcontent {
	padding: 20px;
	text-align: left;
}

.breadcrumb-banner h1 {
	background-color: #b90000;
	padding: 15px;
	border-radius: 5px;
}

/* Media queries for responsive adjustments */
@media (max-width: 768px) {
	.breadcrumb-banner {
		height: 150px;
		padding-left: 10px;
	}

	.Examcontent {
		padding: 10px;
	}

	.breadcrumb-banner h1 {
		padding: 5px;
	}
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 575px) {
	.breadcrumb-banner {
		background-image: url('assets/images/bread.jpg');
		/* Link to your banner image */
		background-size: cover;
		background-position: center;
		height: 200px;
		color: white;
		display: flex;
		align-items: center;
		justify-content: center;
		padding-left: 20px;
		margin-top: 85px;
	}

	.breadcrumb-banner h1 {
		padding: 5px;
	}
}

.exam-table {
	width: 90%;
	/* Responsive width */
	/* max-width: 600px;  */
	border-collapse: collapse;
	margin: 20px 0;
	/* Top and bottom margin */
	background-color: #fff;
	/* White background for the table */
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	/* Subtle shadow for 3D effect */
}

.exam-table th,
.exam-table td {
	text-align: left;
	/* Aligns text to the left */
	padding: 12px 15px;
	/* Padding inside cells */
	border-bottom: 1px solid #ddd;
	/* Light grey border for separation */
}

.exam-table th {
	background-color: #1ab79d;
	color: white;
	/* White text for headers */
}

.exam-table tr:hover {
	background-color: #f5f5f5;
	/* Light grey background on row hover */
}

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

	.exam-table th,
	.exam-table td {
		padding: 10px;
		/* Smaller padding for smaller screens */
	}
}

.table-section {
	display: flex;
	justify-content: center;
}

.Examcontent h1,
h2,
h3 {
	margin-top: 50px;
	margin-bottom: 25px;
}

.ExamHead {
	color: #1ab79d;
	font-weight: bold;
}

.Examcontent p {
	text-align: justify;
}

.Examcontent ul li {
	text-align: justify;
}

.custom-slider-container {
	overflow: hidden;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 10px; 
	}
	.custom-slider {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory; 
	scrollbar-width: none;
	-ms-overflow-style: none; 
	padding: 20px;
	border-radius: 10px; 
	}
	.custom-card {
	flex: 0 0 auto; 
	scroll-snap-align: start; 
	width: 300px;
	display: flex; 
	flex-direction: column; 
	align-items: center; 
	/* background: #c586d959;  */
	padding: 20px; 
	margin-right: 20px; 
	border-radius: 10px; 
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}
	/* .alt-card {
	background: #86d98959; 
	} */
	.custom-card:nth-child(odd) {
		background: #86d98959;
		}
		.custom-card:nth-child(even) {
		background: #c586d959;
	}
	.advisor-img:hover {
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 6px 10px rgba(0, 0, 0, 0.15);
	transform: scale(1.05);}
	.custom-card img {
	border-radius: 50%;
	width: 150px;
	height: 150px;
	margin-bottom: 10px;
	}
	.custom-slide-content {
	text-align: center;
	color: black;
	}
	.custom-slide-content h3, p {
	margin: 0;
	}
	.arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	color: black;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	z-index: 100;
	}
	.left-arrow {
	left: -40px;
	}
	.right-arrow {
	right: -40px;
	}
	.slider-container-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;}
	@media (max-width: 768px) {
	.arrow {
	display: none;
	}
	}

	/* Popup */
	.popup {
		display: none; 
		position: fixed;
		z-index: 9999;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		overflow: auto;
		background-color: rgba(0, 0, 0, 0.5); 
	}
	
	.popup-content {
		position: relative;
		margin: 8% auto;
		padding: 20px;
		width: 80%;
		max-width: 800px;
		background: white;
		border-radius: 10px;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
		text-align: center;
	}
	
	.close-btn {
		position: absolute;
		top: 10px;
		right: 20px;
		font-size: 24px;
		cursor: pointer;
	}
	
	.banner-image {
		width: 100%;
		height: auto;
		border-radius: 10px 10px 0 0;
		cursor: pointer;
	}
	
	.enquiry-btn {
		display: inline-block;
		margin-top: 20px;
		padding: 10px 20px;
		font-size: 16px;
		color: white;
		background-color: var(--kappel);
		border: none;
		border-radius: 5px;
		cursor: pointer;
		text-decoration: none;
		width: 50%;
	}
	
	.enquiry-btn:hover {
		background-color: #5c998f;
	}
	
	@media (max-width: 600px) {
		.popup-content {
			width: 90%;
			margin: 30% auto;
		}
	
		.close-btn {
			top: 5px;
			right: 10px;
		}
	}