@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --yellow-pentone-116c: #FFD600;
	--primary-yellow: #FFD600;
	--primary-yellow-20: #ffd60033;
	--primary-yellow-5: rgb(255, 214, 0, 0.05);
    --primary-yellow-10: rgb(255, 214, 0, 0.10);
	--primary-black: #000;
	--body-bg: #fafafa;

	--h1-line-height: 78.02px;
	--h1-letter-spacing: -2px;
	--h1-font-size: 64px;
	--h1-weight: 700;
	--headings-text-transform: capitalize;

	--h2-line-height: 58.51px;
	--h2-letter-spacing: -2px;
	--h2-font-size: 48px;
	--h2-weight: 500;

	--h3-letter-spacing: -2px;
	--h3-font-size: 32px;
	--h3-weight: 700;

	--h4-line-height: 29.26px;
	--h4-font-size: 24px;
	--h4-weight: 700;

	--h5-line-height: 24.38px;
	--h5-font-size: 20px;
	--h5-weight: 600;

	--h6-line-height: 21.94px;
	--h6-font-size: 18px;
	--h6-weight: 600;

	--section-padding-desktop: 60px 20px;
	--text-large: 24px;
	--text-18: 18px;
	--text-18-line-height: 21.94px;
	--text-16: 16px;
	--text-16-line-height: 19.5px;

	--box-shadow: 8px 8px 40px 0px #0000000D;
	--header-shadow: 0px 4px 40px 0px #0000000D;


	--border-radius-20: 20px;

    --bs-primary-bg-subtle: #e9e9e9;
    

}

* {
	font-family: "montserrat", sans-serif;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	text-decoration: none;
}

ul {
    list-style: none;
}

body {
	overflow-x: hidden;
	font-family: "montserrat", sans-serif;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-color: var(--body-bg);
}

a{
	text-decoration: none;
}

h1{
	font-size: var(--h1-font-size);
	font-weight: var(--h1-weight);
	line-height: var(--h1-line-height);
	letter-spacing: var(--h1-letter-spacing);
	/*text-transform: var(--headings-text-transform);*/
	margin-bottom: 40px;
}



h2{
	font-size: var(--h2-font-size);
	font-weight: var(--h2-weight);
	line-height: var(--h2-line-height);
	letter-spacing: var(--h2-letter-spacing);
	text-transform: var(--headings-text-transform);
}

@media(max-width:600px){
	h1{
		font-size: var(--h2-font-size);
	}

	h2{
		font-size: 32px;
		line-height: normal;
	}

	img.out-window-icon{
		width: 50px;
		height: 50px;
		object-fit: cover;
	}
}

h3{
	font-size: var(--h3-font-size);
	font-weight: var(--h3-weight);
	/*text-transform: var(--headings-text-transform);*/
	}

h4{
	font-size: var(--h4-font-size);
	font-weight: var(--h4-weight);
	line-height: var(--h4-line-height);
	/*text-transform: var(--headings-text-transform);*/
}

h5{
	font-size: var(--h5-font-size);
	font-weight: var(--h5-weight);
	line-height: var(--h5-line-height);
	/*text-transform: var(--headings-text-transform);*/
}

h6{
	font-size: var(--h6-font-size);
	font-weight: var(--h6-weight);
	line-height: var(--h6-line-height);
	/*text-transform: var(--headings-text-transform);*/
	margin-bottom: 0;
}

h1,h2,h3,h4,h5,h6{
		margin-bottom: 0;
}

.text-medium{
	font-size: var(--text-18);
	line-height: var(--text-18-line-height);
}

.text-16-regular{
	font-size: var(--text-16);
	line-height: var(--text-16-line-height);
}

.row, .col, .col-sm-6, .col-sm-12, .col-md-6, .col-lg-4, .col-xl, .container, .container-fluid, p{
	margin: 0;
	padding: 0;
}

.container{
	max-width: 1640px;
	margin: auto !important;
	padding: 60px 50px;

    @media(max-width:1500px){padding: 50px;}
    @media(max-width:1299px){padding: 40px;}
    @media(max-width:575px){padding: 30px 20px;}
}

.container.padding-less{
    padding-top: 20px;
}

.row {
	justify-content: center;
}

.text-large{
	font-size: var(--text-large);
}

img{
	max-width: 100%;
}

.home-body-mobile {
	display: none;
}

.general-btn-16{
    background-color: var(--primary-yellow);
    color: black;
    border-radius: 8px;
    padding: 5px 10px;
    box-shadow: var(--header-shadow);
    border: none;
    font-weight: 500;
    display: inline-block;

    &:hover{
        background-color: #000;
        color: white !important;
    }
}

.general-btn {
	display: block;
	text-decoration: none;
	color: white;
	background-color: #ffb800;
	width: -moz-fit-content;
	width: fit-content;
	border-radius: 30px;
	padding: 5px 15px;
	font-size: 14px;
}

.general-btn:hover {
	background-color: #d49800;
}

.btn-black{
	background-color: var(--primary-black);
	color: white;
	border-radius: 7px;
	padding: 10px 20px;
	font-size: 20px;
	font-weight: 500;

    &:hover{
        background-color: var(--primary-yellow);
        color: black;
    }
}

.btn-black-normal{
	background-color: var(--primary-black);
	color: white;
	border-radius: 10px;
	border: 2px solid #000000;
	padding: 20px 50px;
	font-size: 18px;
	font-weight: 600;
	line-height: 21.94px;
}

.btn-black-small{
	background-color: var(--primary-black);
	color: white !important;
	border-radius: 7px;
	border: 1px solid #000000;
	padding: 5px 8px;
	font-size: 14px;
	font-weight: 500;
	line-height: 21.94px;
    display: inline-block;
}

.btn-black-small:hover{
    background-color: transparent;
    color: #000 !important;
}

.btn-black-outline-normal{
	background-color: transparent;
	color: var(--primary-black);
	border-radius: 10px;
	border: 2px solid #000000;
	padding: 20px 50px;
	font-size: 18px;
	font-weight: 600;
	line-height: 21.94px;
}

.btn-black-outline-normal:hover{
	background-color: var(--primary-yellow);
	border-color: var(--primary-yellow);
	color: white;
}

.btn-black-outline-small{
	background-color: transparent;
	color: black;
	border-radius: 7px;
	border: 1px solid #000000;
	padding: 5px 8px;
	font-size: 14px;
	font-weight: 500;
	line-height: 21.94px;
    display: inline-block;

}

.btn-black-outline-small:hover{
    background-color: #000;
    color: white !important;
}

@media(max-width:500px){
	.btn-black-normal{
		background-color: var(--primary-black);
		color: white;
		border-radius: 10px;
		border: 1px solid #000000;
		padding: 10px 20px;
		font-size: 14px;
		font-weight: 500;
		line-height: 21.94px;
	}
	
	.btn-black-outline-normal{
		background-color: transparent;
		color: var(--primary-black);
		border-radius: 10px;
		border: 1px solid #000000;
		padding: 10px 20px;
		font-size: 14px;
		font-weight: 500;
		line-height: 21.94px;
	}
}

.text-highlight {
	color: #ffb800;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-hiding::-webkit-scrollbar {
	display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-hiding {
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */
}

.line{
		height: 1px;
		width: 100%;
		background-color: #c2c2c2;
}

.course-detail-div{
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 10px;

	span.bullet{
		background-color: #c2c2c2;
		width: 7px;
		height: 7px;
		border-radius: 7px;
		flex-shrink: 0;
	}
    span{
        font-size: 12px;
        flex-shrink: 1;
    }

    img{
        width: 15px;
    }
}



.general-flex-title{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 32px;

	@media(max-width: 600px){
		h2{
			font-size: 32px;
			font-weight: 600;
		}

		margin-bottom: 32px;
	}
}

.general-flex-row{
    border-radius:0.625rem;
    border:1px solid #f1f1f1;
    padding:10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.general-flex-start-start{
	display: flex;
	justify-content: start;
	align-items: start;
}

.general-flex-start-center{
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 10px;
}

.flipped {
		transform: scaleY(-1);
}

.white-card{
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--box-shadow);
}
.fs-14{
    font-size: 14px;
}

.fs-12{
    font-size: 12px;
}

.fs-10{
    font-size: 10px;
}

/*----------------------------------- navbar ------------------------------------- */
/*----------------------------------- navbar ------------------------------------- */
/*----------------------------------- navbar ------------------------------------- */
/*----------------------------------- navbar ------------------------------------- */

#navLinks .resources > .dropdown {
    position: absolute;
}

header{
	/* background-color: var(--yellow-pentone-116c); */
    background-color: white;
	box-shadow: var(--header-shadow);
	position: sticky;
	top: 0;
	left: 0;
	z-index: 1000;

	nav{
        background-color: white;
		max-width: 1640px;
		margin: auto;
		padding: 13px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		
	
		ul.main-nav-ul{
			padding: 0;
			margin: 0;
			display: flex;
			justify-content: start;
			align-items: center;
			gap: 10px;
			

			li{
				a:not(.btn-black-small){
					color: var(--primary-black);
				}
			}

            li, li a{
                @media(max-width: 1400px){
                    font-size: 12px;
                }
            }

            
		}
	}
}

.js-lang-title{
    @media(max-width: 1400px){
        font-size: 12px;
    }
}

li a.book-demo{
    /* background-color: #00d440; */
    background-color: #ff8f00;
    display: inline-block;
    padding: 8px 10px;
    border-radius: 8px;
    animation: book-demo 2s infinite;
}

@keyframes book-demo {
    0%   {background-color:#ff8f00; color: white;}
    50% {background-color:#fff; color: black;}
    100% {background-color:#ff8f00; color: white;}
}

li.resources{
    position: relative;
}

li.resources:hover{
    cursor: pointer;
}


.brand-logo {
	flex-shrink: 0;
	img {
		width: 150px;
		height: auto;
	}
}

.dropdown {
	/* display: none; */
	
	background-color: white;
	padding: 10px;
    padding-right: 0;
	min-width: 120px;
	width: 100%;
	z-index: 1;
	transition: all 0.5s ease-in;

	@media(min-width: 992px){
		position: absolute;
		top: calc(100% + 20px);
		left: 0;
        width: 280px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	}

    @media(min-width:640px){width: 280px;}

    .container{
        padding: 10px;
        padding-right: 0;
    }

}

li.show .dropdown {
    display: block;
}

.categories-wrapper{
	display: flex;
	flex-direction: column;
	gap: 30px;
	
	
	

	@media(min-width: 992px){
		/* max-height: calc(100vh - 200px); */
		/* overflow: auto; */
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	}

    .category{
        width: 100%;
        position: relative;
    }

	.category-title{
		display: flex;
		justify-content: flex-start;
		align-items: start;
        flex-direction: column;
		gap: 10px;
        cursor: pointer;

        a{
            width: 100%;
        }

        .category-title-wrap{
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding-right: 10px;

            @media(max-width:639px){
                svg{
                    transform: rotate(90deg);
                }
            }
        }

        .category-title-sub-div{
            display: flex;
            gap: 10px;
            align-items: center;
            justify-content: start;

            h6{
                font-weight: 400;
            }
        }

	}

	ul{
		display: flex;
		flex-direction: column;
		text-align: left;
		padding: 20px 20px 20px 40px;
        /* display: none; */
		

		li{
			width: 100%;

			a{
				text-transform: capitalize;
			}
		}
	}

    .category-title:hover{
        color: var(--primary-yellow);
    }

    /* .category-title:hover ul.sub-category-list{

        @media(min-width: 992px){
            display: flex !important;
            position: absolute;
            left: 85%;
            top: 0px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            z-index: 2000;
            width: 300px;
            gap: 20px;
        }
        
    } */

    ul.sub-category-list{
        gap: 10px;
        position: relative;
        padding: 10px;

        @media(min-width: 640px){
            /* display: flex !important; */
            position: absolute;
            left: 99%;
            top: 0px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            z-index: 2000;
            width: 300px;
            gap: 20px;
        }
    }

    ul.sub-category-list li:hover a{
        color: var(--primary-yellow);
    }
}


.hidden{display: none !important;}

.category-title:hover ul.sub-category-list{
    display: flex !important;
}

.menu-btn {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: fit-content;
	height: fit-content;
	display: none;
	cursor: pointer;
}

.menu-bar {
	width: 22px;
	height: 2px;
	background-color: black;
	border-radius: 1px;
	margin: 2.5px 0;
}

nav div form{
	border: 1px #adadad solid;
	padding: 7px 15px;
	border-radius: 7px;

	input{
		border: none;
        width: 90%;

		&:focus{
			outline: none;
		}
	}

    /* @media(min-width: 1226px){display: none;} */
}


@media(max-width: 1225px){
	header{
		nav{
			ul.main-nav-ul{
				position: absolute;
				top: 78px;
				left: 0;
				background-color: white;
				flex-direction: column;
				width: 100%;
				height: calc(100vh - 78px);
				padding: 40px 20px;
				overflow: auto;

				li{
					width: 100%;
				}
			}
		}
	}

	.menu-btn{
		display: flex;
	}

	nav div form input{
		display: none;
	}

	nav div form{
		border: none;
	}

	ul.hide{
		display: none !important;
	}
}

.currency, .language {
    form{
        border: none !important;
        padding: 0;
    }
}

.user-profile{
    a{
        color: black;
    }
}



/* hero section ------------------------------------ */
.hero-section{
	position: relative;
	@media(max-width:920px){overflow: hidden;}

	.container{
		position: relative;
		z-index: 2;
	}
}

.home-page-hero-section-row{
    /*height: calc(100vh - 238px);*/
}


.hero-slider-container {
    position: relative;
    /* width: 300px; 
    height: 200px;  */
    width: 100%;
    height: 100%;

    overflow: unset;
    @media(max-width:767px){height: 550px;}
    @media(max-width:575px){height: 400px;}
    @media(max-width:400px){height: 300px;}
}

.slider-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: -54px;
    left: 0;
    transition: opacity 1s;
    opacity: 0;
}

.slider-image.active {
    opacity: 1;
}




.yellow-shade{
	width: 989px;
	height: 989px;
	position: absolute;
	top: -50px;
	left: -260px;
	z-index: 1;
	background-color: var(--primary-yellow-5);
	border-radius: 989px;
	filter: blur(50px);

}
.learners-div{
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 10px;
	margin: 30px 0;

	p{
		font-size: 18px;
		font-weight: 500;
		line-height: 21.94px;
		text-align: left;    
	}
}

.hero-section-btn{
	display: block;
	width: fit-content;
}

.hero-title-col{
	padding-top: 5vw;

	p{
		max-width: 650px;
	}
}
/* hero section ------------------------------------ */

/* latest webinar slider */
.latest-webinars-slider {
    max-height: 462.988px;
    overflow: hidden;
}

.latest-webinars-slider .swiper-slide img {
    width: 100% !important;
    border-radius: 15px;
}
/* End latest webinar slider */

/* slider section ----------------------------------- */
.slider-container{
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 40px;

	video{
		height: 400px;
		width: 600px;
		object-fit: cover;
		border-radius: 20px;
	}

	img{
		border-radius: 20px;
		/*height: 400px;*/
		/*width: 600px;*/
		object-fit: cover;
	}
}


/* newest courses ------------------------------ */
.new-courses-title{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0px;
}

.new-courses-banner{
	background-image: url(../images/new-course-banner.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 412px;
	max-height: 412px;
	border-radius: 20px;
	padding: 20px;
	color: white;
	position: relative;
    margin-top: 20px;
    display: none;

	div.free, div.description span, div.description-right span{
		background-color: rgb(30, 30, 30, 0.4);
		width: fit-content;
		padding: 5px 10px;
		border-radius: 7px;
		border: 1px rgb(255, 255, 255, 0.5) solid;
		text-wrap: wrap;
	}

	div.description{
		position: absolute;
		bottom: 20px;
		left: 20px;
	}

	div.description-right{
		position: absolute;
		bottom: 20px;
		right: 20px;
	}
}



.course-section{
    .container{
        padding-bottom: 20px;
    }
	.row-2{
		margin-top: 40px;
		/* gap: 40px; */
        justify-content: start;

		.col-sm-12{
			/* flex-grow: 1; */
            padding: 20px 10px;

		}

		.course-wrapper{
			display: flex;
			flex-direction: column;
			align-items: start;
			justify-content: start;
			gap: 15px;

            a{
                color: #000;
                h5{margin-top: 10px;}
                width: 100%;
            }

			span.bullet{
				width: 8px;
				height: 8px;
				border-radius: 8px;
				background-color: #808080;
				display: inline-block;
			}

			.course-img{
				width: 100%;
				border-radius: 20px;
                object-fit: cover;

                @media(min-width: 768px){
                    max-height: 200px;  
                }

                @media(min-width: 992px){
                    max-height: 185px;  
                }

                @media(min-width: 1330px){
                    max-height: 255px;  
                }

                @media(min-width: 1440px){
                    max-height: 340px;  
                }
			}
		}
	}
}

/* tutor section -------------------------- */

.tutor-section{
	.container{
		
		.row{
			box-shadow: var(--box-shadow);
			border-radius: var(--border-radius-20);
			background-color: white;
			padding: 60px 20px 16px;

			.tutor-top-col{
				display: flex;
				flex-direction: column;
				align-items: center;
				justify-content: start;
				gap: 40px;
			}

			p{
				max-width: 737px;
			}

			.tutor-btn-div{
				display: flex;
				justify-content: space-between;
				align-items: center;
				width: fit-content;
				gap: 30px;
			}

			@media(max-width:500px){
				.tutor-btn-div{
					gap: 20px;
				}
			}



			.map{
				width: 100%;
				height: fit-content;
				iframe{
					width: 100%;
					height: 450px;
					border-radius: 10px;
				}
			}
			
		}
	}
}

/* blog posts section -------------------------- */

.blog-post-section{
    .container{
        padding-top: 0px;
    }
	.blog-post-title{
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 20px;
	}

	.row-2{
		gap: 40px;
	}

	.col-md-3{
		flex-grow: 1;
	}

	.col-md-3:first-child .blog-label{
		background-color: var(--primary-yellow);
	}

	.col-md-3:not(:first-child) .blog-label{
		background-color: var(--primary-yellow);
	}

	.blog-label{
		color: black;
		text-transform: uppercase;
		font-size: 14px;
		font-weight: 700;
		padding: 7px 10px;
		border-radius: 5px;
		display: block;
		width: fit-content;
	}

	.post-writer{
		display: flex;
		justify-content: start;
		align-items: center;
		gap: 10px;
	}

	.post-wrapper{
	    overflow-wrap: anywhere;
		background-color: white;
		border-radius: var(--border-radius-20);
		box-shadow: var(--box-shadow);
        height: 100%;

        &:hover {
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            position: relative;
            transform: translateY(-15px);
            transition: all linear 0.3s;
        }

		.post-img{
			width: 100%;
			height: 263px;
            @media(min-width:768px){
                height: 140px;
            }
            @media(min-width:900px){
                height: 170px;
            }
            @media(min-width:1050px){
                height: 206px;
            }
            @media(min-width:1200px){
                height: 242px;
            }
            @media(min-width:1300px){
                height: 262px;
            }
            @media(min-width:1440px){
                height: 300px;
            }
            @media(min-width:1536px){
                height: 315px;
            }
			object-fit: cover;
			border-radius: 20px 20px 0 0;
            object-position: top;
		}
	}

	.post-content{
		padding: 20px;
		display: flex;
		flex-direction: column;
		justify-content: start;
		align-items: start;
		gap: 30px;
	}
}

/* Features Mentors */
.instructors-swiper-container .instructors-card .instructors-card-avatar {
    width: 135px;
    height: 135px;
}

.instructors-swiper-container .swiper-slide {
    margin-top: 33px;
}

.instructors-swiper-container .swiper-slide.swiper-slide-active {
    margin-top: 0;
}

.instructors-swiper-container .swiper-slide.swiper-slide-active .instructors-card .instructors-card-avatar {
    width: 200px;
    height: 200px;
}

.instructors-swiper-container .swiper-slide.swiper-slide-active .instructors-card .instructors-card-avatar img {
    opacity: 1;
}

.instructors-swiper-container .swiper-slide.swiper-slide-active .instructors-card .instructors-card-info {
    display: block;
}

.instructors-swiper-container .shadow-effect p {
    font-family: inherit;
    font-size: 15px;
    line-height: 1.5;
    margin: 5px 0 17px 0;
    font-weight: 300;
}

.instructors-swiper-container .item {
    text-align: center;
    margin-bottom: 70px;
    opacity: 0.65;
    transform: scale3d(0.8, 0.8, 1);
    transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
    .instructors-swiper-container .item {
        padding: 0 15px;
    }
}

.instructors-swiper-container .owl-item.active.center .item {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

.instructors-swiper-container.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.instructors-swiper-container.owl-carousel .owl-dots .owl-dot.active span {
    background: #00c84b;
    transform: translate3d(0px, -50%, 0px);
    border-width: 3px;
}

.instructors-swiper-container.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}

.instructors-swiper-container.owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--primary);
    transform: translate3d(0px, -50%, 0px);
    border-width: 3px;
}

.instructors-swiper-container.owl-carousel .owl-dots .owl-dot span {
    border-radius: 50px;
    background: #ffffff;
    border: solid 1px #d4d4d4;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
}

@media (max-width: 767px) {
    .instructors-swiper-container.owl-carousel .owl-dots .owl-dot span {
        width: 15px;
        height: 15px;
    }
}

.stars-card svg.active {
    color: #ffc600;
    fill: #ffc600;
}

.stars-card svg {
    margin-right: 3px;
    color: #818894;
}

/* Testimonial */
.testimonials-container .testimonials-card {
    margin-top: 105px;
    margin-bottom: 30px;
    pointer-events: none;
    padding: 30px 20px;
    border-radius: 15px;
}

.testimonials-container .testimonials-card .bottom-gradient {
    position: absolute;
    top: unset;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 10px 10px;
    height: 11px;
    background: linear-gradient(to left, #9effc1, var(--primary));
}

.testimonials-container .testimonials-card .testimonials-user-avatar {
    position: absolute;
    top: -40px;
    width: 80px;
    height: 80px;
}

.testimonials-container .testimonials-card .stars-card {
    margin-top: 15px;
}

.testimonials-container .testimonials-card .stars-card svg.active {
    color: #ffc600;
    fill: #ffc600;
}

.testimonials-container .testimonials-card p {
    margin-top: 25px;
    height: 50px;
    min-height: 50px;
    text-overflow: ellipsis;
    /*overflow-y: hidden;*/
}

/* footer ------------------------------- */
footer{
	background-color: var(--primary-black);
	color: white;

	.row-1{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.row-2{
		gap: 38px;
		margin-top: 50px;
	}

	.col-md-6{
		flex-grow: 1;
	}

	form{
		background-color: #1e1e1e;
		width: fit-content;
		border-radius: 10px;
		padding-left: 20px;
		margin-top: 32px;
		width: 50%;
		display: flex;
		justify-content: space-between;
		align-items: center;

		input{
			background-color: transparent;
			border: none;
			color: white;

			&:focus{
				outline: none;
			}
		}

		button{
			background-color: var(--primary-yellow);
			color: white;
			padding: 10px 20px;
			border-radius: 10px;
			font-size: 18px;
			font-weight: 700;
		}
	}

	.footer-cols{
		flex-grow: 1;

		h6{
			margin-bottom: 32px;
		}
	}

	.social-icons{
		display: flex;
		justify-content: start;
		align-items: center;
		gap: 10px;

		span{
			background-color: black;
			border-radius: 40px;
			width: 40px;
			height: 40px;
			display: flex;
			justify-content: center;
			text-align: center;
			align-items: center;
		}
	}

	.footer-logo-div{
		margin-bottom: 80px;
		img{
			margin-bottom: 32px;
		}
	}

	ul{
		padding-left: 0;
	}

	ul li{
		margin-bottom: 18px;
	}

	ul li a{
		font-size: var(--text-18);
		color: white;
		font-weight: 300;
		text-transform: capitalize;
	}

	.row-3{
		margin-top: 80px;

		.copyright{ 
			display: flex;
			justify-content: space-between;
			align-items: start;
			p{
				font-size: var(--text-16);
				font-weight: 300;
			}

			a{
				color: white;
				text-transform: capitalize;
			}
		} 
	}

	.footer-line{
		width: 100%;
		height: 0.5px;
		background-color: rgb(255, 255, 255, 0.35);
		margin-bottom: 30px;
	}
}

@media(max-width:500px){
	footer form{
		width: 100%;
		border-radius: 7px;

		button{
			background-color: var(--primary-yellow);
			color: white;
			padding: 5px 10px;
			border-radius: 7px;
			font-size: 14px;
			font-weight: 500;
		}
	}

	.footer-circle{
		width: 130px;
	}

	footer .row-1 .col-sm-12:last-child{
		position: relative;
		img.footer-circle{
			position: relative;
			left: -32px;
		}
	}
}

/* payment gateway page ------------------------------ */
.checkout-section{

	.row-1{
		margin-bottom: 28px;
	}

	.row-2{
		gap: 40px;
	}

	.checkout-cols{
		flex-grow: 1;
		box-shadow: var(--box-shadow);
		border-radius: 20px;
		background-color: white;
		padding: 30px;

		h4{
			margin-bottom: 64px;
		}
	}

	.line{
		height: 1px;
		width: 100%;
		background-color: #adadad;
		margin: 16px auto;
	}

	form{

		select{
			width: 100%;
			padding: 20px;
			border-radius: 10px;
			margin-top: 32px;
			border: 1px #adadad solid;
		}
		.title-div{
			display: flex;
			justify-content: space-between;
			align-items: center;

			h5{
				margin-bottom: 0;
			}
		}

		.title-div-2{
			margin-bottom: 32px;
		}

		

		.form-p{
			margin-bottom: 64px;
			margin-top: 24px;
		}

		.radio-select-wrapper{
			display: flex;
			justify-content: space-between;
			align-items: center;
		}

		

		.radio-select{
			display: flex;
			justify-content: start;
			align-items: center;
			gap: 20px;
		}

		.card-details{
			padding: 24px;
			display: flex;
			justify-content: start;
			align-items: start;
			flex-direction: column;
			gap: 32px;

			input{
				width: 100%;
				padding: 20px;
				border-radius: 10px;
				border: 1px #adadad solid;
			}
			div{
				display: flex;
				justify-content: space-between;
				align-items: center;
				gap: 32px;
				width: 100%;

				input{
					flex-grow: 1;
				}
			}
		}
	}

	.summary-title-div{
		display: flex;
		justify-content: start;
		align-items: start;
		gap: 20px;

		img{
				width: 145px;
				height: 75px;
				object-fit: cover;
				border-radius: 6px;
		}
	}

	@media(max-width: 600px){
		.summary-title-div{
				flex-direction: column;
				align-items: start;
		}
	}

	.bill-amounts-flex{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.bill-amounts-flex:first-child{
		margin-bottom: 32px;
	}

	.check-remember{
		display: flex;
		justify-content: start;
		align-items: start;
		margin-top: 64px;

		input{
				margin: 5px 15px 0 9px;
				transform: scale(1.7);
		}
	}

	button.checkout-submit{
		width: 100%;
		font-size: 18px;
		font-weight: 700;
		line-height: 24.38px;
		color: white;
		background-color: var(--primary-yellow);
		border-radius: 8px;
		border: 1px var(--primary-yellow) solid;
		padding: 20px;
		margin: 32px auto;
	}


	.checkout-cols:last-child{
		height: fit-content;

		.line{
				margin: 32px auto;
		}
	}
}

@media(max-width:600px){
	.card-details{
		div{
			flex-direction: column;
		}
	}

	.checkout-section{
		button.checkout-submit{
				font-size: 16px;
				font-weight: 600;
				padding: 10px;
		}
	}
	
	.radio-select-wrapper-2{
		flex-direction: column;
		align-items: start !important;
	}
}

/* courses page -------------------------------------- */
.courses-title-large{
		margin-bottom: 20px;

		span{
				display: inline-block;
				border: 1px solid #DFDFDF80;
				padding: 10px;
				border-radius: 10px;
		}

		h1{
				margin: 10px 0 !important;
		}
}

/* slider section ----------------------- */
.card-slider-section{
    .container{
        padding-top: 20px;
    }
		h2{
				margin-bottom: 30px;
		}
}

/* slider style --------------------------- */
.slider {
		position: relative;
		width: 100%;
		overflow: hidden;
}

.slides {
		display: flex;
		/* gap: 10px; */
		transition: transform 0.5s ease-in-out;
		
}

.slide {
		box-sizing: border-box;
		background-size: cover;
		background-position: center;
		height: 200px;
		display: flex;
		align-items: flex-end;
		flex: 0 0 100%;
		border-radius: 10px;
        cursor: pointer;
        justify-content:center;
}

.caption {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 41%, #000 100%);
    color: white;
    padding: 10px 10px 20px 20px;
    width: 100%;
    height: 100%;
    text-align: left;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;

    a h5{
        color: white;
    }
}

.progress-navigation{
		display: flex; 
		justify-content: space-between; 
		align-items: center;
		margin-top: 20px;
		padding-right: 20px;
}

.progress-bar-container {
		width: 150px;
		background-color: var(--primary-yellow-20);
		height: 10px;
		margin-top: 10px;
		border-radius: 5px;
		overflow: hidden;
}

.progress-bar {
		height: 100%;
		background-color: var(--primary-yellow);
		width: 0%;
		transition: width 0.5s;
}

.navigation {
		/* position: absolute; */
		/* top: 50%; */
		width: fit-content;
		display: flex;
		justify-content: space-between;
		gap: 10px;
		/* transform: translateY(-50%); */
}

.prev,
.next {
    padding-left:5px;
		background: #D9D9D980;
		color: black;
		font-size: 20px;
		border: none;
		/* padding: 10px; */
		cursor: pointer;
		/*width: 50px;*/
		/*height: 50px;*/
		width: 31px;
    height: 31px;
		border-radius: 50px;
}
.prev:hover, .next:hover{
		background: rgb(217, 217, 217);
}

@media (min-width: 1024px) {
		.slide {
				flex: 0 0 calc(25% - 20px);
				margin-right: 20px; 
		}
}

@media (min-width: 768px) and (max-width: 1023px) {
		.slide {
				flex: 0 0 calc(33.33% - 20px);
				margin-right: 20px; 
		}
}

@media (min-width: 600px) and (max-width: 767px) {
		.slide {
				flex: 0 0 calc(50% - 20px);
				margin-right: 20px; 
		}
}
/* slider style --------------------------- */

/* all courses section ---------------------- */
.all-courses-section{

    .container{
        padding-top: 0;
    }

	.row{
		gap: 40px;
	}

		.all-courses-col{
				flex-grow: 1;
		}

		h2{
				margin-bottom: 0px;
		}

		.filter-head{
				display: flex;
				justify-content: space-between;
				align-items: center;
				width: 100%;
				/* border: 1px #dfdfdf solid; */
				border-radius: 10px;
				padding: 20px;
				background-color: white;
				margin-bottom: 32px;
				box-shadow: var(--box-shadow);
		}

		.filters-wrapper{
				background-color: white;
				padding: 20px;
				border-radius: 10px;
				box-shadow: var(--box-shadow);
				display: flex;
				flex-direction: column;
				justify-content: start;
				align-items: start;
				gap: 20px;
		}

		.filters{
				width: 100%;

		}

		a.rating{
				display: flex;
				justify-content: space-between;
				align-items: center;
				width: 100%;
				color: black;
		}

		#rating, #duration, #topic, #language, #price, #features{
				ul {
						padding: 0;
						margin: 0;
						padding-top: 10px;

						li{
								display: flex;
								justify-content: start;
								align-items: center;
								gap: 10px;

								&:not(:last-child){
										margin-bottom: 5px;
								}

								div,span{
										flex-shrink: 0;
								}
						}
				}
		}

		.filter-col{
				min-width: fit-content;
		}

	.course-detail-col{
		.line{
			margin: 32px auto;
		}
	}

	.course-detail-wrapper{
	    
	    background: white;
        padding: 15px;
        border: 1px solid #efefef;
    	display: flex;
		justify-content: start;
		align-items: start;
		gap: 20px;

		img.course-img{
			border-radius: 10px;
			width: 100%;
			max-width: 400px;
            min-width: 170px;
			/*max-height: 250px;*/
			object-fit: cover;
            transition: all ease 0.2s;

            &:hover{
                position: relative;
                transform: scale(1.03);
            }
		}

		.courses-title{
			margin-bottom: 8px;
			display: flex;
			justify-content: space-between;
			align-items: start;

            a{
                color: black;
                &:hover{
                    color: var(--primary-yellow);
                }
            }

		}

		.rating-star-div{
			margin-bottom: 8px;
		}

		.course-detail-div{
			margin-bottom: 32px;
		}
	}

    .course-detail-wrapper:not(:last-child){
        margin-bottom: 20px;
    }

	.course-pagination{
		display: flex;
		align-items: center;
		gap: 20px;
		margin: auto;
		width: fit-content;

		span{
			background-color: #c2c2c2;
			width: 30px;
			height: 30px;
			border-radius: 30px;
			text-align: center;
			display: flex;
			justify-content: center;
			align-items: center;

			&:hover{
				background-color: var(--primary-yellow);
				cursor: pointer;
			}
		}

		ul{
			display: flex;
			gap: 20px;
			padding-left: 0;
			margin-bottom: 0;

			li:hover{
				color: var(--primary-yellow);
				cursor: pointer;
			}
		}
	}

}

@media(max-width: 1200px){
	.all-courses-section{
		.course-detail-wrapper{
			flex-direction: column;
		}
	}
}
/* all courses section ---------------------- */

/* single course page ----------------------------------------------------- */
/* hero section ----------------------------- */
.single-course-hero-section{
	background-color: #1e1e1e;
	color: white;
	
	.row{
		gap: 40px;
	}

	span.bullet{
		background-color: white;
	}

	.col-sm-12{
		flex-grow: 1;
        h2{
            font-weight: 700;
        }

        p{
            color: #adadad;
            margin-top: 20px;
        }

        .rating-wrap{
            display: flex;
            justify-content: start;
            align-items: center;
            gap: 10px;
            margin-top: 30px;
            margin-bottom: 20px;

            p{
                margin: 0;
            }
        }

        .instructor-div{
            display: flex;
            justify-content: start;
            align-items: center;
            gap: 10px;
            margin-bottom: 32px;

            p{
                margin: 0;
            }
        }

        span.path{
            border: 1px rgb(129, 129, 129) solid;
            border-radius: 7px;
            padding: 5px 10px;
            font-size: 14px;
            color: #adadad;
            margin-bottom: 8px;
            display: inline-block
        }

		&:last-child{
            background-color: white;
            color: black;
            border-radius: 20px;
            padding: 40px;
            height: fit-content;

            h2{
                margin-bottom: 32px;
                font-weight: 600;
            }

            span.bullet{
                background-color: #adadad;
            }

            button.btn-black-outline-normal{
                display: block;
                width: 100%;
                text-align: center;
                border-width: 1px;
            }

            .purchasing-div{
                a{
                    border-radius: 10px;
                    padding: 20px;
                }
                div{
                    display: flex;
                    gap: 24px;
                    margin-bottom: 24px;
                    margin-top: 100px;

                    button.add-to-cart{
                        background-color: var(--primary-yellow);
                        color: white;
                        flex-grow: 1;
                        text-align: center;
                        font-size: 18px;
                        font-weight: 600;
                        border: none;
                        border-radius: 10px;

                        &:hover{
                            background-color: black;
                            color: white;
                        }
                    }
                }
            }
		}
	}

	.status-div .course-detail-div{
		span{
			color: #adadad;
		}
	}
}

@media(max-width: 1391px) {
	.single-course-hero-section{
		.col-sm-12{
			&:last-child{
				padding: 20px;
				height: fit-content;
				.course-detail-div{
					span{
						font-size: 14px;
					}
				}

				.purchasing-div{
					div{
						margin-top: 64px;
					}
				}
			}
		}

		
	}
}

@media(max-width: 600px) {
	.single-course-hero-section{
		.course-detail-div{
			span{
				font-size: 10px;
			}
		}

		.col-sm-12{
			&:last-child{
				padding: 20px;

				.course-detail-div{
					span{
						font-size: 9px;
					}
				}

				.purchasing-div{
					div{
						margin-top: 64px;
					}
				}
			}
		}

		
	}
}

/* learning outcome section --------------------------------- */
.learning-outcome-section{

	.row{
		gap: 40px;
	}

	.col-sm-12{
		flex-grow: 1;

		&:first-child{
			background-color: white;
			border-radius: 20px;
			padding: 32px;
			box-shadow: var(--box-shadow);
		}

		&:last-child{

			.review-note-wrapper{
			    overflow-wrap:anywhere;
				position: relative;
				background-color: white;
				padding: 32px;
				border-radius: 20px;
				display: flex;
				flex-direction: column;
				justify-content: start;
				align-items: start;
				gap: 32px;
				box-shadow: var(--box-shadow);

				img.comment-icon{
					position: absolute;
					right: 20px;
					top: -40px;
				}

				h5{
					margin-bottom: 20px;
				}

				.feature-review-div{
					display: flex;
					justify-content: start;
					align-items: center;
					gap: 10px;
					h6{
						margin-top: 5px;
					}
				}

				&:first-child{
					margin-bottom: 40px;
				}
			}
		}
	}

	.learning-title{
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 100px;
	}

	.outcomes-wrapper{
		display: flex;
		justify-content: start;
		align-items: start;
		gap: 32px;
	}

	@media(max-width: 600px){

		.learning-title{
			margin-bottom: 50px;
		}
		.col-sm-12{

			h2{
				font-size: 32px;
				line-height: normal;
				font-weight: 600;
			}

			&:first-child{
				padding: 20px;
			}

			&:last-child{

				.review-note-wrapper{
					padding: 20px;

					img.comment-icon{
						width: 50px;
						height: auto;
						top: -20px;
					}
				}
			}
		}
		.outcomes-wrapper{
			p{
				font-size: 16px;
			}

			flex-direction: column;
		}
	}

	.outcomes{
		div{
			display: flex;
			justify-content: start;
			align-items: start;
			gap: 20px;

			svg{
				flex-shrink: 0;
			}

			&:not(:last-child){
				margin-bottom: 32px;
			}
		}
	}
}

/* course-content-section -------------------------------- */
.course-content-section{

	.btn-black-outline-normal{
		padding: 15px 30px;
	}

	#contentIcon {
		transition: transform 0.5s;
	}

	.content-col{
		margin-top: 32px;
		border-radius: 20px;
		background-color: white;
		box-shadow: var(--box-shadow);
	}

	.course-content-chapter-wrapper{
		color: black;

		.content-header{
			padding: 32px;
			border-bottom: 1px #a4a4a4 solid;

			svg{
				transition: transform 0.5s;
				flex-shrink: 0;
			}

			h4{
				font-weight: 600;
				color: black;
			}
			
			a div{
				gap:20px;

				@media(max-width: 500px){
					align-items: start;
					svg{
						margin-top: 8px;
					}

					h4{
						font-size: 20px;
					}
				}
			}

			@media(max-width: 900px){
				flex-direction: column;
				align-items: start;
				gap: 10px;
				padding: 20px;

				.course-detail-div{
					svg{
						width: 15px;
						height: auto;
					}

					span{
						font-size: 9px;
					}
				}
			}
		}

		.content-body{
			padding: 32px 32px 0;

			@media(max-width: 600px){
				padding: 20px;
			}

			ul {
				li{
					a div p{
						color: black;
					}

					&:not(:last-child){
						margin-bottom: 24px;
					}
				}

				@media(max-width: 600px){
					padding-left: 0;

					li{
						justify-content: space-between;
						align-items: start;
						gap: 10px;

						div.time{
							
							flex-basis: 0;
							width: fit-content;
						}

						p, span,a{
							font-size: 14px;
						}
					}

					div.title{
						align-items: start;

						svg{
							margin-top: 3px;
							flex-shrink: 0;
						}
					}
				}
			}
		}

		&:last-child{
			.content-header{
				border-bottom: none;
			}
		}
	}

	@media(max-width:900px){
		.expand-all{
			flex-direction: column;
			justify-content: start;
			align-items: start;
			gap: 10px;

			svg{
				width: 15px;
				height: auto;
				flex-shrink: 0;
			}

			span{
				font-size: 11px;
			}
		}

		.general-flex-title{
			h2{
				font-size: 32px;
				font-weight: 600;
				line-height: normal;
			}
		}

		.btn-black-outline-normal{
			padding: 10px 20px;
			flex-shrink: 0;
		}
	}
}

.des-req-section{
	.row{
		gap: 40px;
	}

	.col-sm-12{
		flex-grow: 1;
		padding: 32px;
		border-radius: 20px;
		background-color: white;
		box-shadow: var(--box-shadow);

		@media(max-width:1050px){
			.general-flex-title{
				h2{
					font-size: 40px;
				}

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

		@media(max-width:870px){
			.general-flex-title{
				h2{
					font-size: 35px;
				}

				img{
					width: 35px;
					height: auto;
				}
			}
		}

		@media(max-width:600px){
			padding: 20px;
			.general-flex-title{
				h2{
					font-size: 32px;
				}
			}
		}

		&:last-child{
			div{

				&:not(:last-child){
					margin-bottom: 32px;
				}

				&:not(:first-child){
					display: flex;
					justify-content: start;
					align-items: start;
					gap: 20px;

					svg{
						flex-shrink: 0;
						margin-top: 5px;
					}
				}
			}
		}
	}
}

.courses-like-this{
	.row-2{
		margin-top: 0;
	}
}
/* single course page ---------------------------------------------------- */

/* signup page ------------------------------------------------------------- */
.signup-section{
	.container, .row{
        width: fit-content;
    }
	.col-sm-12{
		flex-grow: 1;

		&:first-child{
			flex-shrink: 0;
			min-width: 300px;

			@media(max-width:950px){
				display: none;
			}

			img{
				height: auto;
				width: 100%;
				object-fit: cover;
                border-radius: 10px;
			}
		}

		&:last-child {
			display: flex;
			justify-content: start;
			align-items: start;
			padding-left: 50px;

			.logo{
				margin-bottom: 20px;
				width: 100px;
				height: auto;
			}

			.col-wrapper{
				display: flex;
				flex-direction: column;
				justify-content: start;
				align-items: start;
				width: 500px;

				a.back-btn{
					margin-bottom: 10px;
				}
	
				h3{
					margin-bottom: 20px;
					flex-basis: 1;
					text-align: left;
				}
				a.google-signup{
					border-radius: 10px;
					background-color: white !important;
					padding: 10px;
					display: flex;
					justify-content: center;
					align-items: center;
					gap: 20px;
					color: black;
					font-size: 20px;
					font-weight: 600;
					width: 100%;
                    border: 1px #c2c2c2 solid;
				}
	
				.or-div{
					display: flex;
					justify-content: start;
					align-items: center;
					gap: 20px;
					margin: 20px auto;
					width: 100%;
	
					p{
						font-size: 14px;
					}
				}
	
				.btn-black-outline-normal{
					display: block;
					width: 100%;
					font-size: 20px;
					font-weight: 600;
					padding: 10px;
					text-align: center;
					margin-bottom: 80px;
				}

				p{
					text-align: center;
				}

				p{
					&:last-child{
						margin: 50px auto 0;
					}
				}
			}

			@media(max-width:950px){
				justify-content: center;
				padding-left: 0;
				

				.col-wrapper{
					width: 100%;
				}
			}

			@media(max-width: 600px){
				.col-wrapper{
					h3{
						margin-bottom: 40px;
						font-size: 24px;
					}
					a.google-signup{
						padding: 20px;
						font-size: 20px;
					}
		
					.or-div{
						margin: 30px auto;
		
						p{
							font-size: 14px;
						}
					}
		
					a.btn-black-outline-normal{
						font-size: 20px;
						padding: 20px;
						margin-bottom: 40px;
					}
	
					p{
						&:last-child{
							margin: 30px auto 0;
						}
					}
				}
			}
		}
	}

	
}

.signup-section-with-email{

    span.select2-selection--single{
        height: 34px !important;
        display: block;
        @media(max-width:600px){
            width: 100%;
        }

        span.select2-selection__rendered{
            line-height: 34px !important;
        }
    }

	form{
		width: 100%;
		button{
			background-color: #000;
			color: white;
			margin-bottom: 40px !important;
		}
		div{
			display: flex;
			flex-direction: column;
			justify-content: start;
			align-items: start;
			margin-bottom: 10px;

			&.checkbox{
				flex-direction: row;
				align-items: start;
				gap: 20px;

				input{
					width: 26px;
					height: 26px;
					margin-top: 2px;

				}
			}

			input{
				width: 100%;
				height: 34px;
				border-radius: 8px;
				padding: 5px 10px;
				font-size: 16px;
				border-width: 1px;
			}

            select{
                height: 34px;
            }
		}

		.phone-div{
			display: flex;
			flex-direction: row;
			gap: 20px;
			margin-bottom: 0;

            @media(max-width:600px){
                flex-direction: column;
            }

			div{
				flex-grow: 1;
                @media(max-width:600px){
                    width: 100%;
                }
				select{
					width: 100%;
					height: 44px !important;
					border-radius: 5px;
				}
			}

            .select2-selection__arrow{
                top: 4px !important;
            }
		}	
		
		.timezone{
			select{
				padding: 5px;
				width: 100%;
                height: 44px;
				border-radius: 10px;

			}
		}

        input, select{
            border-color: #c2c2c2 !important;
            border-radius: 5px !important;
            height: 44px;
        }
	}

	.col-sm-12{
		&:last-child {
			
			.col-wrapper{
				p{
					&:last-child{
						margin: 30px auto 0;
					}
				}
			}

		}
	}


}


.sign-in-section{
    
	a.google-signup{
		background-color: transparent !important;
		color: black !important;
		border: 1px #c2c2c2 solid;
	}

	div.forgot-password{
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		width: 100%;
		margin-bottom: 5px;
	}

	@media(max-width: 600px){
		a.google-signup{
			font-size: 20px !important;
		}

		form button{
			font-size: 20px !important;
		}
	}
}

.login-img{
    max-height: 600px;
}

.register-img{
    max-height: 600px;
}

/* course delivery page --------------------------------- */
.course-delivery-section{

	

	.col-sm-12{
		flex-grow: 1;
		
	}

	.col-sm-12:nth-child(2){
		padding-left: 30px;
		max-width: fit-content;
		transition: all 0.3s ease-in;

		#sidebar-btn{
			display: flex;
			flex-direction: column;
			gap: 1px;
			margin-bottom: 20px;
			cursor: pointer;

			.menu-bar{
				width: 24px;
			}
		}

		.sidebar-wrapper{
			transition: all 0.3s ease-in;

			select{
				width: 100%;
			}	
			
			.progress-bar-container{
				width: 100%;
			}
			
			.progress-bar{
				width: 20%;
			}

			.course-sections-wrapper{
				margin-top: 30px;
				.course-box{

					display: flex;
					gap: 10px;
					
					padding: 20px  30px 20px 20px;
					position: relative;

					svg.course-status{
						flex-shrink: 0;
						position: absolute;
						right: 10px;
						top: 50%;
						transform: translateY(-50%);
					}

					h6, span{
						font-size: 14px;
						font-weight: 400;
					}

					img{
						max-width: 120px;
						max-height: 68px;
						object-fit: cover;
						border-radius: 10px;
					}
				}

				.course-box.active{
					border-left: #c9c9c9 5px solid;
					background-color: white;
				}
			}
		}

		#sidebar{
			display: none;
		}
		
		.hide{
			display: block !important;
			
		}

		.about-instructor{
			display: flex;
			justify-content: start;
			align-items: start;
			gap: 10px;
			border-bottom: 1px #adadad solid;
			padding-bottom: 20px;
			margin-bottom: 20px;
		}

		@media(max-width: 767px){
			padding-left: 0;
			margin-bottom: 30px;
			max-width: 100%;
		}

	}

	video.main-video{
		width: 100%;
		height: auto;
		max-height: 700px;
		object-fit: cover;
		margin-bottom: 30px;
		border-radius: 20px;
	}

	.video-title{
		display: flex;
		justify-content: space-between;
		align-items: start;
	}

	.video-detail-wrapper{
		margin-top: 50px;
		ul{
			background-color: #1e1e1e0d;
			padding: 8px;
			border-radius: 10px;

			li{
				a{
					color: black;
					border-radius: 7px;
				}

				a.active{
					background-color: white;
				}
			}
		}

		.tab-content {
			margin-top: 40px;

			h4{
				font-weight: 500;
				margin-bottom: 32px;
			}

			p{
				font-size: 18px;
			}

			.instructor-box{
				display: flex;
				flex-direction: column;
				gap: 16px;
				justify-content: start;
				align-items: start;
				margin-top: 32px;

				.rating-wrap, .instructor-div{
					display: flex;
					gap: 10px;
					justify-content: start;
					align-items: center;
				}

				.instructor-div a{
					font-weight: 600;
				}
			}

			
		}
	}
}

/* mentors page --------------------------------------- */
.courses-title-large-mb-0{
	margin-bottom: 0;
}

.mentor-btn-box{
	display: flex;
	gap: 20px;
	
	a{
		width: 150px;
		padding: 10px;
		text-align: center;
		font-size: 18px;
		font-weight: 400;

		&:hover{
			background-color: var(--primary-yellow);	
			color: black;
			border-color: var(--primary-yellow);
		}

		@media(max-width:600px){
			font-size: 14px;
		}
	}
}

.mentor-description{
	margin: 20px auto;
}

/* communities page ------------------------------------------ */
.all-communities-section{
	.blog-post-title{
		display: flex;
		justify-content: space-between;
		align-items: start;
		gap: 20px;


		h2{
			margin-bottom: auto0;
		}
	}

	.post-content{
		span{
			background-color: #e4e4e4;
			padding: 3px 7px;
			border-radius: 7px;
			font-weight: 500;
		}

		h5{
			margin-top: 12px;
		}

		p:not(:last-child){
			margin: 20px 0;
		}

		.post-writer{
			display: flex;
			justify-content: start;
			gap: 10px;
			align-items: center;
		}
	}
}

/* student profile page ----------------------------------- */
.profile-top-section{
	img.dp{
		width: 300px;
		max-width: 300px;
		height: 300px;
		object-fit: cover;
		border-radius: 100%;
	}

	.dp-col{
		display: flex;
		gap: 40px;

		@media(max-width:820px){
			flex-direction: column;
		}
	}

	.dp-box{
		position: relative;
		max-width: fit-content;
		align-self: flex-start;

		svg{
			position: absolute;
			right: 10px;
			bottom: 10px;
			cursor: pointer;
		}
		input{
			position: absolute;
			right: 10px;
			bottom: 10px;
			width: 60px;
			height: 60px;
			opacity: 0;
			font-size: 0;
			cursor: pointer;
		}
	}

	.profile-description-wrapper{
		background-color: white;
		display: flex;
		justify-content: space-between;
		flex-grow: 1;
		position: relative;
		overflow: hidden;
		border-radius: 20px;
		padding: 30px;
		box-shadow: var(--box-shadow);

		svg.jigsa-vector{
			position: absolute;
			top: -10px;
			right: -65px;

			@media(max-width: 1200px){
				height: 120px;
				width: 120px;
				top: 0px;
				right: -25px;
			}

			@media(max-width:500px){
				display: none;
			}
		}
	}

	.profile-description{
		
		
		h3{
			font-weight: 700;

			img{
				width: 40px;
				margin-bottom: 5px;
			}
		}

		span{
			font-size: 18px;
		}

		div.profile-counter{
			display: flex;
			justify-content: start;
			align-items: start;
			gap: 20px;
			margin-top: 70px;

			div.line{
				width: 1px;
				height: 70px;
				margin: auto;
				background-color: #c9c9c9;
			}
		}	
		
		@media(max-width:600px){
			width: 100%;
			
			h3{
				font-size: 24px;
			}

			span{
				font-size: 16px;
			}

			div.profile-counter{
				flex-direction: column;
				div.line{
					height: 1px;
					width: 100%;
				}
			}
		}
	}
}
.container-p-0{
	padding: 0;
}

.student-profile-ul{
	display: flex;
	justify-content: space-between;
	align-items: center;

	@media(max-width: 767px){
		justify-content: start;
	}
}

.nth-child-2-p-0{
	.col-sm-12:nth-child(2){
		padding-left: 0;
		max-width: initial;
	}

	.video-detail-wrapper{
		margin-top: 0;
	}
}

.progress-bar-green{
	background: #179B5B1A;
	width: 100%;
	
	.progress-bar{
		background: #179B5B;
		width: 30%;
	}
}

/* mentor profile page --------------------------------- */
.tab-content{
	h5{
		font-weight: 700;
		margin-bottom: 20px;

		&:not(:first-child){
			margin-top: 40px;
		}
	}
}

/* shop page ---------------------------------------- */
.product-row{
    gap: 0 !important;
	margin-bottom: 50px;
    justify-content: start !important;
    margin-top: -15px;

	.col-12{
		padding: 15px;

        @media(max-width:767px){
            padding-left: 0;
            padding-right: 0;
        }

		.product-wrap{
            border-radius: 10px;
            box-shadow: var(--box-shadow);
            background-color: white;
            height: 100%;
            overflow: hidden;
            position: relative;
            transition: all ease 0.2s;

            .product-img-wrap{
                position: relative;

                img{
                    width: 100%;
                    height: 300px;
                    object-fit: cover;

                    @media(min-width: 576px){
                        height: 350px;
                    }
                    @media(min-width: 992px){
                        height: 200px;
                    }

                    @media(min-width: 1560px){
                        height: 250px;
                    }
                }

                div{
                    position: absolute;
                    bottom: -40px;
                    opacity: 0;
                    right: 20px;
                    transform: translateY(50%);
                    background-color: var(--primary-yellow);
                    border-radius: 50%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 40px;
                    height: 40px;
                    box-shadow: var(--box-shadow);
                    color: #000;
                    transition: all ease 0.2s;


                    a{
                        svg{
                            color: black;
                        }
                    }

                    &:hover{
                        background-color: #000;
                        color: white;

                        a svg{
                            color: white;
                        }
                    }
                }
            }

            .product-body-content{
                padding: 20px;

                .admin-div{
                    display: flex;
                    justify-content: start;
                    align-items: center;
                    gap: 10px;
                    color: black;

                    img{
                        width: 35px;
                        height: 35px;
                        border-radius: 50%;
                        object-fit: cover;
                    }

                    h6{
                        font-weight: 400;
                    }
                }

                .product-title{
                    margin: 10px 0;

                    a{
                        color: black;
                    }
                }

                .product-availability{
                    display: block;
                    margin-bottom: 10px;
                    a{
                        text-decoration: underline;
                        color: black;
                    }
                }

                .rating-stars-div{
                    display: flex;
                    justify-content: start;
                    align-items: center;
                    gap: 10px;

                    span{
                        background-color: var(--primary-yellow);
                        color: white;
                        border-radius: 3px;
                        display: block;
                        padding: 2px 5px;
                        font-size: 12px;
                    }
                }
            }

            .flex{
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-top: 20px;

                div{
                    flex-shrink: 0;
                }

                span{
                    color: #43d477;
                    font-weight: 700;
                    font-size: 18px;
                }
            }

            p{
                margin: 30px 0;
            }

            &:hover{
                margin-top: -10px;

                .product-img-wrap{
                    div{
                        bottom: 0;
                        opacity: 1;
                    }
                }
            }
        }
	}

	@media(max-width:1370px){
		/* gap: 20px !important; */
		
		.flex{

			h6{
				font-size: 16px;
			}

			div{
				svg{
					width: 16px;
				}
			}

		}
	}
}

.shrink-0{
	flex-grow: 0;
	min-width: 280px !important;
}

.ebook-hero-section {
    background-image: url(../ebook/hero-bg.png);
    background-blend-mode: luminosity;

    .hero-col{
        color: white;
        text-align: center;
        min-height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}
.ebook-cards-section {
    background-color: white;
    min-height: 500px;
}

.ebook-card-col {
    margin-bottom: 50px;
    padding: 0 20px !important;
}

.ebook-description {
    color: #FFF;
    text-align: center;

    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 25.63px; /* 117.718% */
    background-color: var(--primary-yellow);
    border-top: 4px rgb(241, 241, 241) solid;
    border-bottom: 4px rgb(241, 241, 241) solid;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 50px;
    padding: 40px 10vw;
}

.ebook-card-wrap {
border: 4px white solid;
border-radius: 10px;
filter: drop-shadow(1px 4px 18px rgba(0, 0, 0, 0.25));
height: 100%;
background-color: white;
}
.ebook-card-wrap .top {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    min-height: 144px;
}
.ebook-card-wrap .top h1 {
color: #FFF;
letter-spacing: normal;
font-size: 21.034px;

font-weight: 600;
line-height: 24.761px; /* 117.718% */
margin-top: 20px;
}
.ebook-card-wrap .team {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 20px;
background-color: white;
color: #444;
min-height: 150px;
font-size: 16.985px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.ebook-card-wrap .team .download-lock {
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
}
.ebook-card-wrap .team .download-lock img {
width: 32px;
margin-left: 10px;
}
.ebook-card-wrap .team a {
background-color: var(--primary-yellow);
color: white;
padding: 5px 10px;
border-radius: 5px;
display: block;
}
.ebook-card-wrap .team a:hover {
background-color: var(--primary-black);
color: white;
cursor: pointer;
}

.ebook-form-row {
position: fixed;
z-index: 100;
background-color: rgba(0, 0, 0, 0.5);
-webkit-backdrop-filter: blur(7px);
        backdrop-filter: blur(7px);
width: 100%;
height: calc(100vh - 60px);
align-items: center;
justify-content: center;
top: 60px;
left: 0;
display: none;
}

.ebook-form-col {
height: 100%;
}

.dialogue-wrap {
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}

.dialogue-wrap form {
max-width: 900px;
display: flex;
flex-direction: column;
background-color: white;
border-radius: 20px;
padding: 40px;
}
.dialogue-wrap form input {
    margin-bottom: 20px;
    padding: 3px 10px;
    color: #000;
    border-radius: 5px;
    border: 1px solid #bbbbbb;
}

.ebook-form-btns {
display: flex;
justify-content: space-between;
align-items: center;
}
.ebook-form-btns a {
    text-decoration: none;
    color: white;
    padding: 5px 15px;
    background-color: #ff5b1b;
    &:hover{background-color: #b63401;}
    border-radius: 5px;
    font-size: 16px;
    font-weight: normal;
}
.ebook-form-btns button {
    font-size: 16px;
    font-weight: normal;
    padding: 5px 15px;
    margin-right: 26px;
    border-radius: 5px;
    background-color: var(--primary-yellow);
    border: none;

    &:hover{
        background-color: black;
        color: white;
    }
}

.tradify-large-icon{
    background-color: #000;
    text-align: center;
    padding: 100px 20px 250px;

    @media(max-width:450px){padding: 50px 20px 200px;}
}

.table-talk-div{
    text-align: center;
    position: relative;
    margin-bottom: 100px;
    background-color: #fafafa;
    @media(max-width:450px){margin-bottom: 50px;}

    img{
        position: relative;
        margin-top: -200px;
    }
}

.login-container{
    justify-content: start;
}

.verification-col-1{
    max-width: fit-content;
}

.verification-img{
    border-radius: 10px;
}

.login-card{
    margin-top: 30px;
    @media(min-width: 768px){padding-left: 40px; margin-top: 0;}

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;

    h1{
        @media(max-width:900px){font-size: 40px; line-height: normal;}
    }

    form{
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        gap: 20px;
    }
}


/* blog page ------------------------------------ */
.blog-wrapper-grid-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.content-left{
    grid-column: span 3;
    @media(min-width: 992px){
        grid-column: span 2;
    }

    .blog-banner{
        border-radius: 10px;
        margin-bottom: 40px;
    }

    h4{
        margin-top: 30px;
    }

    h5{
        margin: 20px 0 10px;
    }

    .comments-heading{
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 10px;
        margin-top: 30px;
        width: 100%;

        h5{
            margin: 0;
        }

        div{
            height: 1px;
            flex-grow: 1;
            background-color: #c9c9c9;
        }
    }

    form{
        margin: 20px 0;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 20px;
        width: 100%;

        textarea{
            width: 100%;
            height: 170px;
            border-radius: 10px;
            padding: 10px;
            border: 1px #e0e0e0 solid;
        }

        button{
            background-color: var(--primary-yellow);
            color: #000;
            border: none;
            font-weight: 500;
            padding: 10px;
            border-radius: 8px;
            box-shadow: var(--header-shadow);

            &:hover{
                background-color: #000;
                color: white;
            }
        }
    }

    .single-comment-wrap{
        background-color: white;
        border-radius: 10px;
        border: 1px #ebebeb solid;
        box-shadow: var(--box-shadow);
        padding: 20px;
        position: relative;

        .reply-report{
            display: none;
            position: absolute;
            right: 50px;
            top: 35px;
            background-color: white;
            box-shadow: var(--box-shadow);
            border: 1px #ebebeb solid;
            padding: 15px;
            z-index: 10;
            flex-direction: column;
            align-items: start;
            justify-content: start;
            gap: 10px;
            border-radius: 5px;

            a{
                padding: 3px;
                flex-grow: 1;
                width: 100%;
                border-radius: 3px;

                &:hover{
                    background-color: #c9c9c9;
                }
            }
            
        }

        a{
            color: #000;
        }

        .comment-header{
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;

            
        }

        .comment-header > div:nth-child(2){
            display: flex;
            justify-content: space-between;
            align-items: start;
            gap: 2px;
            flex-grow: 1;

            @media(max-width:575px){
                flex-direction: column;
                justify-content: start;
                align-items: start;
                font-size: 14px;

                .comment-time-date{
                    font-size: 12px;
                }
            }
        }

        .comment-header > div:first-child{
            flex-shrink: 0;
            img{
                width: 70px;
                height: 70px;
                border-radius: 50%;
                object-fit: cover;
            }
        }

        .comment-header > div:nth-child(2) > div:last-child{
            display: flex;
            justify-content: start;
            align-items: center;
            gap: 5px;
        }

        .comment-header > div:last-child{
            position: relative;
            margin-top: -20px;
            border-radius: 50%;
            cursor: pointer;
        }

        .comment-text{
            margin-top: 20px;
        }
    }
}

.content-right{
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 30px;

    @media(min-width: 992px){
        grid-column: span 1;
    }

    .admin-div, .categories, .recent-posts{
        padding: 20px;
        border-radius: 10px;
        box-shadow: var(--box-shadow);
        background-color: white;
        border: 1px #ebebeb solid;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        gap: 10px;
    }

    .admin-div{
        align-items: center;

        img{
            border-radius: 50%;
            max-width: 100px;
            max-height: 100px;
            object-fit: cover;
        }

        
    }

    .categories{
        a{
            color: #000;
            &:hover{
                color: var(--primary-yellow);
            }
        }
    }

    .categories, .recent-posts{
        h5{
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }

        h5::after{
            content: '';
            position: absolute;
            left: 2px;
            bottom: -5px;
            width: 100px;
            height: 3px; /* Adjust the thickness of the underline */
            background-color: var(--primary-yellow);
        }
    }

    .admin-div, .recent-posts{
        a:last-child{
            background-color: var(--primary-yellow);
            color: #000;
            font-weight: 500;
            padding: 10px;
            display: block;
            width: 100%;
            text-align: center;
            border-radius: 8px;

            &:hover{
                background-color: #000;
                color: white;
            }
        }
    }

    .recent-posts{
        gap: 15px;

        a{
            color: #000;
            padding: 5px 0;
            width: 100%;

            &:hover{
                background-color: #f0f0f0;
            }
        }

        div.blog-post{
            display: flex;
            justify-content: start;
            align-items: start;
            gap: 10px;
        }

        div.blog-post > div:first-child{
            width: 110px;
            height: 78px;
            flex-shrink: 0;

            img{
                object-fit: cover;
                border-radius: 5px;
            }
        }

        div.blog-post > div:last-child{
            h6{
                font-size: 16px;
                font-weight: 400;
            }

            span{
                font-size: 12px;
                color: #808080;
            }
        }
    }
}

.glossary-col{
    .glossary-title{
        margin-bottom: 20px;
    }

    .glossary-description{
        max-width: 800px;
    }

    .accordion-button:focus{
        outline: none; 
        box-shadow: none;
        border-bottom: 2px black solid;
    }

    .accordion-header button{
        font-size: 18px;
        font-weight: 600;
    }

    .accordion-body{
        h6{
            font-size: 16px;
            font-weight: 600;

            &:not(:first-child){
                margin-top: 20px;
            }
        }
    }
}

/* category page ---------------------------------------------------- */
.search-bar-section{
    .container{
        padding-bottom: 0;
    }
}
.search-bar-wrap{
    form{
        background-color: white;
        box-shadow: var(--box-shadow);
        border-radius: 50px;
        padding: 10px;
        max-width: 600px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        margin: auto;

        input{
            flex: 1;
            padding: 10px;
            border: none;
            min-width: 150px;

            &:focus{
                outline: none;
            }
        }

        button{
            border-radius: 50px;
            padding: 10px 20px;
            border: none;
            box-shadow: var(--box-shadow);
            background-color: var(--primary-yellow);
            font-weight: 500;

            &:hover{
                background-color: #000;
                color: white;
            }
        }
    }
}

.categories-grid-container{
    display: grid;
    
    @media(min-width: 700px){
        grid-template-columns: repeat(2, 1fr);
    }
    @media(min-width: 1050px){
        grid-template-columns: repeat(3, 1fr);
    }
    
    gap: 40px;

    .categories-sub-grid{
        @media(min-width: 1050px){
            grid-column: span 2;
            grid-template-columns: auto auto;
        }
        
        display: grid;
        gap: 40px;

        .category{
            background-color: white;
            box-shadow: var(--box-shadow);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid #eeeeee;
            height: fit-content;

            &:hover{
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
                position: relative;
                transform: translateY(-15px);
                transition: all linear 0.3s;
            }

            img{
                border-bottom: 1px solid #f5f5f5;
            }

            a{
                color: #000;
            }

            .category-content{
                padding: 20px 15px;

                .time-date{
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin: 50px 0 20px;

                    div{
                        display: flex;
                        justify-content: start;
                        align-items: center;
                        gap: 10px;
                    }
                }

                .time-date > span{
                    color: #a5a5a5;
                }

                h5{
                    font-size: 18px;
                    font-weight: 700;
                    margin-bottom: 10px;
                }

                h4{
                    font-size: 20px;
                    font-weight: 700;
                    color: var(--primary-yellow);
                }
            }

            .category-content > div:first-child{
                display: flex;
                justify-content: start;
                align-items: center;
                gap: 10px;
                margin-bottom: 20px;

                img{
                    width: 50px;
                    height: 50px;
                    object-fit: cover;
                    border-radius: 50%;
                }

                h6{
                    font-size: 16px;
                    font-weight: 500;
                }
            }

            .category-content > p a{
                text-decoration: underline;
                
                &:hover{
                    color: var(--primary-yellow);
                }
            }
        }
    }

    .filters{
        padding: 20px;
        background-color: white;
        box-shadow: var(--box-shadow);
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid #eeeeee;
        height: fit-content;

        .types, .more-options{
            h5{
                position: relative;
                margin-bottom: 20px;
                font-size: 18px;
                font-weight: 700;
            }
            h5::after{
                content: '';
                
                position: absolute;
                left: 0;
                bottom: -5px;
                width: 40px;
                height: 3px;
                background-color: var(--primary-yellow);
            }
            div{
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin: 20px 0;

                input{
                    width: 20px;
                    height: 20px;
                }
            }
        }

        a.filter-btn{
            background-color: var(--primary-yellow);
            width: 100%;
            padding: 10px;
            border-radius: 10px;
            box-shadow: var(--box-shadow);
            margin-top: 40px;
            display: block;
            text-align: center;
            color: black;
            font-weight: 600;
            
            &:hover{
                background-color: black;
                color: white;
            }
        }
    }
}

/* view all blogs page ------------------------------------ */
.view-all-blogs{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    @media(min-width:700px){
        grid-template-columns: repeat(2, 1fr);
    }
    @media(min-width:992px){
        grid-template-columns: repeat(3, 1fr);
    }
    
    .content-left{
        grid-column: span 1;
        height: fit-content;

        @media(min-width:992px){
            grid-column: span 2;
        }

        display: grid;
        gap: 30px;

        @media(min-width:992px){
            grid-template-columns: repeat(2, 1fr);
        }

        .blog{
            /* height: fit-content; */
            background-color: white;
            border-radius: 10px;
            box-shadow: var(--box-shadow);
            overflow: hidden;

            .blog-thumbnail{
                position: relative;

                img{
                    display: block;
                    width: 100%;
                    object-fit: cover;

                    @media(min-width: 992px){
                        height: 230px;
                    }

                    @media(min-width: 1100px){
                        height: 250px;
                    }

                    @media(min-width: 1240px){
                        height: 270px;
                    }

                    @media(min-width: 1350px){
                        height: 300px;
                    }

                    @media(min-width: 1536px){
                        height: 350px;
                    }
                }

                div.calendar{
                    background-color: var(--primary-black);
                    color: white;
                    border-radius: 30px;
                    padding: 10px;
                    position: absolute;
                    right: 20px;
                    bottom: 0;
                    transform: translateY(50%);
                    display: flex;
                    justify-content: start;
                    align-items: center;
                    gap: 10px;
                    font-size: 14px;

                    &:hover{
                        background-color: var(--primary-yellow);
                        color: black;
                        cursor: initial;
                    }
                }
            }

            a{
                color: black;
            }

            &:hover{
                position: relative;
                transform: translateY(-5px);
                transition: all linear 0.3s;
            }

            .blog-card-body{
                padding: 20px;

                h5 a:hover{
                    color: var(--primary-yellow);
                }
            }

            .blog-card-body > div:last-child{
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-top: 20px;
                padding-top: 20px;
                border-top: 1px solid #ececec;
                
                div a{
                    color: #000;
                }
            }
        }
    }

    .content-right{
        grid-column: span 1;
    }
}

/* top nav ----------------------------------------------------- */
.top-nav-container{
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    

    @media(max-width:800px){
        flex-direction: column;
        align-items: start;
        justify-content: start;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 10px;
    }
}
.top-nav{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #f5f5f5;
    background-color: white;
    width: fit-content;
    /* margin: auto; */
    gap: 20px;

    @media(max-width:800px){
        justify-content: space-between;
        width: 100%;
        padding: 10px 0;
        border-top: 1px solid #f3f3f3;
    }

    a{
        color: #000;
    }

    a.general-btn-16:hover{
        color: white;
    }

    

    .btn-black-outline-small, .btn-black-small{
        padding: 3px 10px;
        border-width: 1px;
        border-radius: 5px;
    }

    .login-register-btns{
        flex-shrink: 0;
        flex-basis: 1;
    }
}

.shopping-cart{
    border-right: 1px solid #e2e2e2;
    padding-right: 20px;
    
    position: relative;
    
    a{
        color: black;
    }

    span{
        background-color: #00df73;
        color: white;
        border-radius: 50%;
        padding: 2px;
        font-size: 12px;
        font-weight: 500;
        width: 25px;
        height: 25px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        text-align: center;


    }

}

.shopping-cart-dropdown{
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
    padding: 20px;
    position: absolute;
    /*width: max-content;*/
    right: 0;
    top: calc(100% + 20px);
    z-index: 9999;
    min-width: 320px;
    @media(max-width:640px){
        min-width: 260px;
        right: -211px;
        width: 290px;
    }

    display: none;

    .tool-tip{
        position:absolute; 
        width:20px; 
        height: 20px; 
        right:26px; 
        top:-18px;

        @media(max-width:640px){
            left: 26px;
        }
    }

    h6{
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 10px;
    }

    h5{
        color: var(--primary-yellow);
        font-size: 16px;
        font-weight: 600;
    }

    .added-items{
        max-height: 250px;
        overflow-y: scroll;
    }

    /* WebKit browsers */
    .added-items {
        overflow-y: scroll;
        
    }

    .added-items::-webkit-scrollbar {
        width: 6px;
        height: 30px;
    }

    .added-items::-webkit-scrollbar-track {
        background: transparent; /* Make track transparent */
    }

    .added-items::-webkit-scrollbar-thumb {
        background: #d4d4d4;
        border-radius: 6px;
        opacity: 0; /* Initially invisible */
        transition: opacity 0.3s;
        height: 50px;
    }

    .added-items::-webkit-scrollbar-thumb:hover {
        background: #c9c9c9;
    }

    /* Show the scrollbar thumb when scrolling */
    .added-items:hover::-webkit-scrollbar-thumb {
        opacity: 1;
    }

    .added-to-cart-item{
        display: flex;
        justify-content: start;
        align-items: start;
        gap: 10px;
        margin-bottom: 20px;

        &:hover{
            background-color: #ececec;
            
        }

        img{
            width: 105px;
            height: 75px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: var(--box-shadow);
        }
    }

    .total-bill{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

    a.general-btn-16{
        display: block;
        text-align: center;
    }
}

.shopping-cart-dropdown.show{
    display: block;
}

.notifications{
    position: relative;
    
    a.notify-head{
        color: black;

        span{
            background-color: red;
            color: white;
            border-radius: 50%;
            padding: 2px;
            font-size: 12px;
            font-weight: 500;
            width: 25px;
            height: 25px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
    }

    .notification-list{
        position: absolute;
        right: 0;
        @media(max-width:450px){right: -130px;}
        top: calc(100% + 20px);
        z-index: 9999;
        background-color: white;
        border-radius: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
        padding: 20px;
        width: max-content;
        min-width: 280px;
        display: none;

        .tool-tip{
            position:absolute; width:20px; height: 20px; right:26px; top:-18px;
            @media(max-width:640px){
                left: 120px;
            }
        }

        .notify-description{
            padding: 10px;
            border-radius: 10px;
            border: 1px solid #dfdfdf;
            margin-bottom: 20px;
            display: flex;
            justify-content: start;
            align-items: center;
            gap: 10px;

            h6{
                font-size: 16px;
                font-weight: 600;
            }

            a.notify-icon{
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: #f3f3f3;
                border-radius: 50%;
                width: fit-content;
                padding: 5px;
            }

            a{
                font-size: 13px;
                color: #818894;
            }
        }

        ul{
            padding-left: 0;
            height: 200px;
            overflow-y: auto;

            li{
                &:not(:last-child){
                    margin-bottom: 15px;
                }
                
                a{
                    display: block;

                    h6{
                        font-size: 16px;
                        font-weight: 600;
                    }
                    p{
                        font-size: 13px;
                        color: #818894;
                    }
                }
            }

            
        }

        /* WebKit browsers */
        ul {
            overflow-y: scroll;
            
        }

        ul::-webkit-scrollbar {
            width: 6px;
            height: 30px;
        }

        ul::-webkit-scrollbar-track {
            background: transparent; /* Make track transparent */
        }

        ul::-webkit-scrollbar-thumb {
            background: #d4d4d4;
            border-radius: 6px;
            opacity: 0; /* Initially invisible */
            transition: opacity 0.3s;
            height: 50px;
        }

        ul::-webkit-scrollbar-thumb:hover {
            background: #c9c9c9;
        }

        /* Show the scrollbar thumb when scrolling */
        ul:hover::-webkit-scrollbar-thumb {
            opacity: 1;
        }

        a.all-notifications{
            background-color: #f63c3c;
            padding: 8px;
            font-size: 14px;
            font-weight: 500;
            border-radius: 010px;
            width: 100%;
            display: block;
            text-align: center;
            color: white;

            &:hover{
                background-color: black;
                color: white;
            }
        }

    }

    /* .notify-head:focus-within ~ .notification-list{
        display: block;
    } */

    .notification-list.show {
        display: block;
    }
}

.user-profile{
    
    position: relative;

    a.user-dp{
        width: 100%;
        display: inline-block;
        
        span{
            display: inline-block;
            height: 100%;
        }

        img{
            width: 40px;
            height: 40px;
            object-fit: cover;
            border-radius: 50%;
        }
    }

    .user-menu{
        position: absolute;
        right: 0;
        top: 102%;
        z-index: 9999;
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: var(--header-shadow);
        display: none;
        width: max-content;
        min-width: 250px;

        .user-description{
            padding: 10px;
            border-radius: 10px;
            border: 1px solid #f1f1f1;
            margin-bottom: 20px;

            h6{
                font-size: 16px;
            }
        }

        ul{
            padding-left: 0;


            li{
                transition: all ease 0.2s;
                &:hover{
                    padding-left: 10px;
                    background-color: #f1f1f1;
                    border-radius: 5px;
                }
                &:not(:last-child){
                    margin-bottom: 10px;
                }
                a{
                    display: flex;
                    justify-content: start;
                    align-items: center;
                    gap: 15px;
                    padding: 5px;

                }
            }
        }
    }

    .user-dp:hover ~ .user-menu,
    .user-menu:hover,
    .user-dp:focus-within ~ .user-menu {
        display: block;
    }
}

/* cart page ------------------------------- */
.cart-item-wrap{
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--header-shadow);
    margin-top: 20px;

    @media(max-width:575px){
        overflow-x: scroll;
    }

    a{
        color: #000;
    }

    .continue-shopping{
        background-color: var(--primary-yellow);
        border-radius: 8px;
        padding: 7px 15px;
        font-weight: 500;
        display: inline-block;
        box-shadow: var(--box-shadow);
        margin-top: 20px;

        &:hover{
            background-color: #000;
            color: white;
        }
    }
    

    table{
        width: 100%;

        tr{
            border-bottom: 1px solid #f3f3f3;

            &:first-child{
                border-bottom: 2px solid #e7e7e7;
            }

            &:not(:first-child):hover{
                background-color: #f3f3f3;
            }
        }
        th{
            padding: 20px 0;
            &:not(:last-child){
                padding-right: 20px;
            }
        }
        td{
            padding: 20px 0;
            &:not(:last-child){
                padding-right: 20px;
            }
            vertical-align: top;

            img.item-img{
                width: 200px;
                height: 120px;
                min-width: 120px;
                @media(max-width:767px){height: 80px;}
                object-fit: cover;
                border-radius: 10px;
                border: 1px solid #f3f3f3;
            }

            .remove-item-btn{
                background-color: #ececec;
                padding: 5px;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                width: fit-content;

                &:hover{
                    background-color: #ff3636;
                }
            }

            .remove-item-btn:hover svg{
                color: white;
            }
        }

        td.item-cell{
            display: flex;
            justify-content: start;
            align-items: start;
            gap: 20px;

            @media(max-width:767px){flex-direction: column;}

            div{
                h6{
                    margin-bottom: 10px;
                }
            }
        }

        td.price-cell{
            color: var(--primary-yellow);
        }
    }
}

.coupon-cart-total-section{
    .container{
        padding-top: 0;

        .coupon-cart-total-grid-container{
            display: grid;
            gap: 40px;
            @media(min-width:768px){
                grid-template-columns: 1fr 1fr;
            }
        
            .coupon, .cart-total{
                background-color: white;
                padding: 20px;
                border-radius: 10px;
                box-shadow: var(--box-shadow);
                margin-top: 20px;
            }
        
            .coupon{
                
        
                p{
                    margin-bottom: 30px;
                }

                input{
                    margin-bottom: 30px;
                }
                form{
                    background-color: greenyellow;

                    input, .general-btn-16{
                        display: block;
                    }
        
                    input{
                        margin-bottom: 30px !important;
                        border-radius: 5px;
                        border: 1px solid #ebebeb;
                        padding: 10px;
                        font-size: 14px;
                        width: 300px;

                        @media(max-width:640px){
                            width: 100%;
                        }
                    }
                }
            }
        
            .cart-total-wrap{
        
                .cart-total{
                    table{
                        width: 100%;
            
                        tr{
                            border-bottom: 1px solid #f3f3f3;
        
                            td{
                                padding: 10px 0;
        
                                &:last-child{
                                    text-align: right;
                                }
                            }
                        }
                    }
            
                    button.general-btn-16{
                        margin-top: 30px;
                    }
                }
            }
        }
    }
}


/* checkout page --------------------------------- */
.payment-method-grid{
    display: grid;
    gap: 20px;
    margin-top: 30px;
    
    /* @media(min-width: 640px){
        grid-template-columns: repeat(2, 1fr);
    }
    @media(min-width: 800px){
        grid-template-columns: repeat(3, 1fr);
    }
    @media(min-width: 1100px){
        grid-template-columns: repeat(4, 1fr);
    }
    @media(min-width: 1300px){
        grid-template-columns: repeat(5, 1fr);
    } */
    

    div{
        transition: all ease 0.2s;
        a{
            display: flex;
            justify-content: start;
            align-items: center;
            gap: 10px;
            color: #000;

            img{
                width: 70px;
                height: 70px;
                object-fit: cover;
            }
    
            p{
                span{
                    font-weight: 600;
                }
            }
        }
    }

    form{
        .row{
            justify-content: start;

            
        }
    }

    .pay-wrap{
        cursor: pointer;

        &:hover{
            position: relative;
            transform: translateY(-5px);
        }
    }
}

.pay-bill{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    p{
        font-weight: 600;
    }

    span{
        font-weight: 600;
    }

    .general-btn-16{
        cursor: pointer;
    }
}


/* mentor page ----------------------- */
.time-filter{
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 10px;
    margin-bottom: 10px;

    input{
        width: 20px;
        height: 20px;
    }

    label{
        margin-bottom: 5px;
    }
}

.category-filters-mentor-page{
    .form-group{
        margin-bottom: 10px;

        .input-label, .catg-label{
            font-weight: 600;
        }
    }
}

.filters-wrapper{
    h4{
        margin-bottom: 20px;
    }

    .general-btn-16{
        display: block;
        width: 100%;
        margin-top: 20px;
    }
}


/* forgot password page --------------------------- */
.forgot-password-img, .reset-password-img{
    border-radius: 10px;
    @media(max-width: 767px){
        display: none;
    }
}

.login-card{
    width: 100%;

    @media(min-width: 900px){
        width: 400px;
    }

    .reset-pass-form{
        width: 100%;

        .form-group{
            width: 100% !important;
        }
    }

    .forgot-pass-form{
        width: 100%;
        
    }

    .general-btn-16{
        border-radius: 5px;
        padding: 10px 20px;
        display: block;
        width: 100%;
    }
}



.wizard-custom-radio{
    width: 100%;
}

.wizard-radio-button {
    display: none;
}

.wizard-radio-label {
    display: block;
    padding: 10px 20px;
    background-color: #f2f2f2;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.label-mail{
    border-radius: 5px 0 0 5px;
}

.label-phone{
    border-radius: 0 5px 5px 0;
}

.input-fields{
    width: 100%;
    input{
        padding: 10px;
        border: 1px solid #e6e6e6;
        border-radius: 5px;
        width: 100%;
    }

    .phone-input-field{
        justify-content: start;
        align-items: start;
        gap: 10px;

        select{
            border: 1px solid #e6e6e6;
            border-radius: 5px;
            padding: 12px 5px;
        }
    }
}

.wizard-radio-button:checked + .wizard-radio-label {
    background-color: var(--primary-yellow);
    color: black;
}

.forgot-pass-page-login-btn:hover{
    
        color: #000 !important;
  
}


/* filter on product page header ---------------------------- */
.padding-less{
    .row{
        justify-content: space-between;

        .col-sm-12{
            &:last-child{
                display: flex;
                justify-content: end;
                align-items: end;
                padding: 20px;

                @media(max-width: 767px){
                    padding: 20px 0 0 0;
                }

                select{
                    width: 250px;
                    padding: 7px;
                    border-radius: 5px;
                    border: 1px solid #e7e7e7;
                    background-color: white;
                    box-shadow: var(--box-shadow);
                    flex-shrink: 0;

                    @media(max-width: 767px){
                        width: 100%;
                    }
                }
            }
        }
    }
}


/* prdoct page extra style on left filter side -------------------------------- */

.product-page-section{
    .col-grow{
        @media(max-width:807px){
            width: 100% !important;
            max-width: 100%;
        }
    }
}
.product-page-left-filters{
    form{
        width: 100%;
    }
    .recent-posts{
        margin-bottom: 20px;

        .general-btn-16{
            width: 100%;
        }
        div{
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;

            label, input{
                cursor: pointer;
                display: block;
            }

            input{
                width: 20px;
                height: 20px;
            }
        }
    }
}

.max-280{
    max-width: 280px;
}


/* product detail page ---------------------------------- */
/* product detail page --------------------------------- */
.product-header-section{
    .container{
        padding-bottom: 20px;
    }
    .col-sm-12{
        padding: 15px;

        @media(max-width:575px){
            padding: 0px;
        }

        &:first-child{
            @media(max-width:575px){
                margin-bottom: 20px;
            }

            img{
                border-radius: 10px;
                box-shadow: var(--box-shadow);
                width: 100%;
                max-height: 530px;
                object-fit: cover;
            }

            .product-showcase-images{
                display: flex;
                justify-content: start;
                align-items: center;
                gap: 20px;
                margin-top: 20px;
                padding-top: 20px;
                border-top: 1px solid #ececec;

                img{
                    width: 70px;
                    height: 70px;
                    border: 1px solid #cfcfcf;
                }
            }
        }
    }

    .product-detail-wrap{
        border-radius: 10px;
        box-shadow: var(--box-shadow);
        overflow: hidden;
        padding: 15px;
        background-color: var(--primary-yellow-10);
        border: 2px solid rgb(255, 230, 87);

        form{
            display: flex;
            flex-direction: column;
            justify-content: start;
            align-items: start;
            gap: 20px;

            a.ebook{
                color: #000;
                text-decoration: underline;

                &:hover{
                    text-decoration: none;
                }
            }
        }

        .rating-stars-div{
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            width: 100%;

            @media(max-width: 1050px){
                flex-direction: column;
                align-items: start;
                justify-content: start;
            }

            span{
                background-color: var(--primary-yellow);
                color: white;
                border-radius: 3px;
                display: block;
                padding: 2px 5px;
                font-size: 12px;
            }
        }

        .rating-stars-div > div:first-child{
            display: flex;
            justify-content: start;
            align-items: center;
            gap: 10px;
        }

        .availability{
            flex-basis: 1;

            span{
                background-color: var(--primary-yellow);
                color: white;
                border-radius: 3px;
                margin-left: 10px;
                padding: 2px 5px;
                font-size: 12px;
                text-align: center;
                display: inline;
            }
        }

        h4{
            color: #43d477;
        }

        .quantifier{
            display: flex;
            justify-content: start;
            align-items: center;
            border: 1px solid rgb(247, 238, 187);
            width: fit-content;
            height: 44px;
            border-radius: 7px;
            overflow: hidden;

            @media(max-width: 575px){
                width: 100%;
            }

            span, input{
                border: none;
                background-color: white;
                padding: 10px;
                height: 100%;
            }
            
            span{
                min-width: 30px;
                cursor: pointer;
                padding: 4px 20px;
                font-size: 24px;
            }

            input{
                border-left: 1px solid rgb(247, 238, 187);
                border-right: 1px solid rgb(247, 238, 187);
                min-width: 150px;
                flex-grow: 1;
            }

            /* Hide the arrow buttons in WebKit browsers (Chrome, Safari, Edge) */
            input[type="number"]::-webkit-outer-spin-button,
            input[type="number"]::-webkit-inner-spin-button {
                -webkit-appearance: none;
                margin: 0;
            }

            /* Hide the arrow buttons in Firefox */
            input[type="number"] {
                -moz-appearance: textfield;
            }
        }

        .buttons-div{
            display: flex;
            gap: 20px;
            align-items: center;
            justify-content: start;

            @media(max-width: 575px){
                display: flex;
                flex-direction: column;
                align-items: start;
                justify-content: start;
                width: 100%;
                gap: 20px;

                button{
                    width: 100%;
                    border-radius: 5px;
                    box-shadow: var(--box-shadow);

                    &:last-child{
                        background-color: #000;
                        border: 1px solid #000;
                        color: white;

                        &:hover{
                           background-color: transparent;
                           color: black;
                        }
                    }
                }
            }
        }

        .download-share{
            display: flex;
            justify-content: start;
            align-items: start;
            gap: 20px;

            @media(max-width:1310px){
                flex-direction: column;
            }

            h6{
                font-size: 16px;
            }

            p{
                font-size: 14px;
            }

        }

        .download-share > div > div:first-child{
            display: flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #ffffff;
        }

        .download-share > div:first-child, .download-share > div:last-child{
            display: flex;
            justify-content: start;
            align-items: center;
            gap: 10px;
        }
    }
}

.product-detail-section{

    .container{
        padding-top: 0;
    }

    .row-1{
        .col-sm-12{
            padding: 15px;
            display: flex;
            justify-content: start;
            align-items: start;
            min-height: 120px;
        }
    }

    .token-head{
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 10px;
        background-color: white;
        border-right: 1px dashed #e2e2e2;
        width: 168px;
        flex-shrink: 0;
        height: 100%;
        padding: 20px;
        border-radius: 10px;
        position: relative;
        box-shadow: var(--box-shadow);

        @media(max-width:575px){
            width: 144px;
        }

        &::before{
            content: "";
            position: absolute;
            right: -8px;
            top: -8px;
            width: 20px;
            height: 20px;
            background-color: #f5f5f5;
            border-radius: 50%;
            z-index: 1;
        }

        &::after{
            content: "";
            position: absolute;
            right: -8px;
            bottom: -8px;
            width: 20px;
            height: 20px;
            background-color: #f5f5f5;
            border-radius: 50%;
            z-index: 1;
        }

        h5{
            @media(max-width:575px){
                font-size: 16px;
            }
        }
    }

    .token-body{
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: white;
        height: 100%;
        padding: 20px;
        border-radius: 10px;
        box-shadow: var(--box-shadow);
        flex-grow: 1;

        &::before{
            content: "";
            position: absolute;
            left: -8px;
            top: -8px;
            width: 20px;
            height: 20px;
            background-color: #f5f5f5;
            border-radius: 50%;
            z-index: 1;
        }

        &::after{
            content: "";
            position: absolute;
            left: -8px;
            bottom: -8px;
            width: 20px;
            height: 20px;
            background-color: #f5f5f5;
            border-radius: 50%;
            z-index: 1;
        }

        h6{
            font-weight: 400;
            position: relative;
            z-index: 1;

            @media(max-width:575px){
                font-size: 16px;
            }
        }

        img{
            position: absolute;
            right: 15px;
            z-index: 0;
        }
    }

    .tooltip-container{
        .tooltip {
            visibility: hidden;
            width: 60px;
            background-color: black;
            color: #fff;
            text-align: center;
            border-radius: 5px;
            padding: 5px;
            position: absolute;
            z-index: 1;
            bottom: 125%; /* Position the tooltip above the icon */
            left: 50%;
            margin-left: -30px; /* Use half of the width to center-align */
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .tooltip::after {
            content: "";
            position: absolute;
            top: 100%; /* At the bottom of the tooltip */
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: black transparent transparent transparent;
        }

        button{
            position: relative;
            border: none;
            background-color: transparent;

            svg{
                width: 25px;
                height: 25px;
                color: #929292;
            }

            &:hover{
                .tooltip {
                    visibility: visible;
                    opacity: 1;
                }
            }
        }

        
    }
}

.product-detail-nav-tabs{
    .student-profile-ul{
        flex-wrap: nowrap;
        overflow-x: scroll;
        justify-content: start;

        &::-webkit-scrollbar {
            display: none;
        }
    }

    .seller-wrap{
        .seller{
            display: flex;
            gap: 20px;
            flex-direction: column;
            align-items: start;
            justify-content: start;
            background-color: white;
            box-shadow: var(--box-shadow);
            border-radius: 10px;
            padding: 20px;
            width: fit-content;

            @media(max-width:575px){
                width: 100%;
            }

            .dp{
                position: relative;
                width: fit-content;
                border-radius: 50%;
                div{
                    border-radius: 50%;
                    width: 80px;
                    height: 80px;
                    box-shadow: var(--box-shadow);
                    overflow: hidden;
                }

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

                span{
                    position: absolute;
                    bottom: -1px;
                    right: -1px;
                    background-color: var(--primary-yellow);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 25px;
                    height: 25px;
                    border-radius: 50%;
                }
            }

            .seller-content{
                display: flex;
                gap: 20px;
                flex-direction: column; 

                @media(max-width:575px){
                    width: 100%;
                }


                .follower-following{
                    display: flex;
                    gap: 40px;
                    padding: 0 10px;

                    p{
                        font-size: 14px;
                    }
                }

                .membership-article{
                    display: flex;
                    gap: 20px;
                    justify-content: start;
                    align-items: center;
                    padding: 0 10px;

                    div{
                        position: relative;
                        width: fit-content;

                        img{
                            width: 30px;
                            height: 30px;
                            border-radius: 50%;
                            object-fit: cover;
                        }

                        .tooltip {
                            visibility: hidden;
                            width: max-content;
                            background-color: black;
                            color: #fff;
                            text-align: center;
                            border-radius: 5px;
                            padding: 5px;
                            position: absolute;
                            z-index: 1;
                            bottom: 125%; /* Position the tooltip above the icon */
                            left: 100%;
                            margin-left: -30px; /* Use half of the width to center-align */
                            opacity: 0;
                            transition: opacity 0.3s;
                        }
                        
                        .tooltip::after {
                            content: "";
                            position: absolute;
                            top: 100%; /* At the bottom of the tooltip */
                            left: 15px;
                            margin-left: -5px;
                            border-width: 5px;
                            border-style: solid;
                            border-color: black transparent transparent transparent;
                        }

                        &:hover{
                            .tooltip{
                                visibility: visible;
                                opacity: 1;
                            }
                        }
                    }
                }

                .general-btn-16{
                    @media(max-width:575px){
                        width: 100%;
                    }
                }
            }
        }

        .seller > div:first-child{
            display: flex;
            justify-content: start;
            align-items: center;
            gap: 20px;
        }
    }

    #specifications > div:first-child{
        display: flex;
        margin-bottom: 20px;
        @media(max-width:575px){
            display: block;
        }

        div:first-child{
            width: 150px;
            flex-shrink: 0;
        }

    }

    #specifications > div:last-child{
        display: flex;
        @media(max-width:575px){
            display: block;
        }

        div:first-child{
            width: 150px;
            flex-shrink: 0;
        }
        
    }

    #reviews{
        .rating-showcase-section{
            .rating-value-div{
                
                .stars-div{
                    flex-shrink: 0;
                    width: max-content;
                }
            }
            .rating-bars-div{
                width: 60%;
                @media(max-width:991px){
                    width: 100%;
                }
                .rating-bar{
                    &:not(:last-child){
                        margin-bottom: 10px;
                    }

                    .progress{
                        width: 70%;
                        @media(max-width:720px){
                            width: 50%;
                        }
                    }

                    .text-end{
                        @media(max-width:575px){
                            font-size: 14px;
                        }
                    }
                }
                
            }
        }

        .rating-section{
            margin-top: 30px;
            div{
                hr{
                    width: 100%;
                }
            }

            .stars-div{
                svg{
                    &:hover{
                        cursor: pointer;
                        path{
                            fill: var(--primary-yellow) !important;
                            stroke: var(--primary-yellow) !important;
                        }
                    }
                }
            }

            .stars-div-wrap {
                p{
                    @media(max-width:575px){
                        font-size: 14px;
                    }
                }
            }

            .divider{
                display: block;
                width: 1px;
                height: 40px;
                background-color: #cfcfcf;
                @media(max-width:767px){
                    display: none;
                }
            }

            form{
                .rating-stars{
                    width: 100%;

                    @media(max-width:767px){
                        flex-direction: column !important;
                        align-items: start !important;
                    }
                }

                textarea{
                    width: 100%;
                    padding: 10px;
                    border-radius: 10px;
                    border: 1px solid #dfdfdf;
                    min-height: 250px;

                    @media(max-width:575px){
                        min-height: 180px;
                    }
                }
            }


        }

        .comment-section{
            margin-top: 40px;

            .comment-wrap{
                padding: 20px;
                background-color: white;
                border-radius: 10px;
                box-shadow: var(--box-shadow);
                border: 1px solid #dfdfdf;

                .comment-header{
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    position: relative;

                    @media(max-width:575px){
                        align-items: start;
                        flex-direction: column;
                    }

                    .option{
                        position: absolute;
                        right: 0;
                        top: 0px;

                        .reply-btn{
                            position: absolute;
                            right: 10px;
                            top: -50px;
                            background-color: #cac9c9;
                            padding: 5px 10px;
                            border-radius: 5px;

                            a{
                                color: #000;
                            }
                        }

                        &:hover{
                            cursor: pointer;
                        }
                    }

                    .user{
                        display: flex;
                        align-items: center;
                        justify-content: start;
                        gap: 10px;

                        img{
                            width: 50px;
                            height: 50px;
                            object-fit: cover;
                            border-radius: 50%;
                            flex-shrink: 0;
                        }
                    }

                    .user > div:first-child{
                        flex-shrink: 0;
                    }

                    .date-time{
                        display: flex;
                        align-items: center;
                        justify-content: start;
                        gap: 10px;
                        margin-right: 30px;

                        @media(max-width:575px){
                            font-size: 14px;
                            margin-top: 10px;
                        }
                        
                    }
                }

                .comment-body{
                    margin-top: 20px;
                    p{
                        font-size: 16px;
                    }
                }
            }
        }
    }
}

.product-footer-img{
    img{
        width: 100%;
        max-height: 400px;
        object-fit: cover;
        box-shadow: var(--box-shadow);
        border-radius: 10px;
        border: 1px solid #f3f3f3;
    }
}

/* forum page addition -------------------------------------------- */
.forum-counter{
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 20px;

    .row{
        width: 100%;
    }

    .count{
        b{
            color: #a5a5a5;
            font-weight: 500;
        }
    }
}

.search-wrap{
    height: 100%;
    padding-left: 20px;
    .search-div{
        background-color: white;
        border-radius: 50px;
        box-shadow: var(--box-shadow);
        padding: 10px;
        padding-left: 20px;

        

        input{
            border: none;
            flex-grow: 1;

            &:focus{
                outline: none;
            }
        }

        .general-btn-16{
            border-radius: 50px;
        }
    }

    @media(max-width:991px){
        padding-top: 40px;
        padding-left: 0;
    }
}

.search-wrap > div:first-child{
    text-align: center;
    margin-bottom: 20px;
}


/* featured topics section ----------------------------- */
.topic-card{
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 20px;
    text-align: center;

    a{
        color: black;
        &:hover{
            color: var(--primary-yellow);
        }
    }

    &:not(:last-child){
        margin-bottom: 20px;
    }

    @media(min-width:768px){
        text-align: left;
    }

    .col-sm-12:first-child{
        width: fit-content;
        padding-right: 20px;

        @media(max-width:767px){
            margin-bottom: 20px !important;
            padding-right: 0;
        }
    }

    .col-sm-12:last-child{
        img{
            width: 35px;
            height: 35px;
            border-radius: 50%;
            object-fit: cover;
        }
    }
}

.lifestyle{
    /* background-color: white; */
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    border: #e2e2e2 1px solid;
    padding: 20px;

    &:not(:last-child){
        margin-bottom: 30px;
    }

    a{
        color: black;
        &:hover{
            color: var(--primary-yellow);
        }
    }

    p{
        font-size: 14px;
        font-weight: 400;
    }

    .row{

        &:not(:last-child){
            border-bottom: #e2e2e2 1px solid;
            padding-bottom: 20px;
        }

        .col-sm-12{
            
            @media(min-width: 768px){
                &:not(:last-child){
                    padding-right: 15px;
                }
            }

            @media(max-width: 767px){
                &:not(:last-child){
                    margin-bottom: 20px;

                }
            }

            &:first-child{
                h6{
                    font-size: 16px;
                }
                img{
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                    object-fit: cover;
                    flex-shrink: 0;
                }

                a.img-shrink-0{
                    flex-shrink: 0;
                }
                
            }

            &:last-child{
                img{
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    object-fit: cover;
                    flex-shrink: 0;
                }
                a.img-shrink-0{
                    flex-shrink: 0;
                }
            }

            &:nth-child(2){
                h6{
                    font-size: 16px;
                    color: #9c9c9c;
                }
            }
        }
    }
}

.topics-grid-container{
    display: grid;
    grid-gap: 30px;

    @media(min-width:576px){
        grid-template-columns: repeat(2, 1fr);
    }

    @media(min-width:768px){
        grid-template-columns: repeat(3, 1fr);
    }

    @media(min-width:1160px){
        grid-template-columns: repeat(4, 1fr);
    }

    div{
        background-color: white;
        border-radius: 10px;
        padding: 20px;
        box-shadow: var(--box-shadow);
        border: #eeeeee 1px solid;
        transition: all 0.3s ease-in-out;

        &:hover{
            position: relative;
            transform: translateY(-5px);
        }

        img{
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        ul{
            padding-left: 0;
            li{

                &:not(:last-child){
                    margin-bottom: 10px;
                }
                a{
                    color: #818894;

                    svg{
                        color: var(--primary-yellow);
                    }

                    &:hover{
                        color: black;
                    }
                }
            }
        }
    }
}

/* faq page ------------------------------------------ */
.faq-section{
    .container{
        max-width: 1000px;
        box-shadow: var(--box-shadow);
        background-color: white;
        border-radius: 10px;
        margin: 30px auto !important;

        .faq-element{
            
            padding-bottom: 20px;
            

            ul,ol{
                margin-bottom: 0;
            }

            ul{
                list-style-type: disc !important;
            }

            ol{
                list-style-type: decimal !important;
            }

            &:not(:last-child){
                border-bottom: 1px solid #e4e4e4;
                margin-bottom: 20px;
            }
        }
    }
}
.question{
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flip-icon {
    transition: transform 0.3s ease;
}

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

.faq-body{
    padding-top: 20px;
}

/* top nav left section -------------------------------------- */
.top-nav-left-section{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 30px;

    @media(max-width:800px){
        gap: 10px;
        padding-bottom: 10px;
    }

    .currency{
        position: relative;

        .currency-header{
            a{
                color: #000;
            }
        }

        .currency-dropdown{
            display: none;
            position: absolute;
            
            top: 100%;
            z-index: 9999;
            width: 300px;

            ul{
                padding-left: 0;
                margin-bottom: 0;
                background-color: white;
                padding: 10px;
                border-radius: 10px;
                box-shadow: var(--box-shadow);

                li{
                    &:not(:last-child){
                        margin-bottom: 5px;
                    }
                }

                a{
                    color: #000;
                    font-size: 14px;
                    text-transform: capitalize;
                    padding: 5px;
                    display: block;

                    span{
                        background-color: #f3f3f3;
                        display: inline-flex;
                        justify-content: center;
                        align-items: center;
                        padding: 5px;
                        width: 34px;
                        height: 34px;
                        border-radius: 5px;
                        font-size: 16px;
                        margin-right: 5px;
                    }

                    &:hover{
                        background-color: #f3f3f3;
                        span{
                            background-color: var(--primary-yellow);
                        }
                    }
                }
            }
        }

        .currency-header:hover ~ .currency-dropdown, .currency-dropdown:hover{
            display: block;
            cursor: pointer;
        }

        .custom-dropdown-body{
            background-color: white;
            z-index: 9999 !important;
        }

        .custom-dropdown-body__item{
            padding: 5px !important;
        }

        .cursor-pointer{
            cursor: pointer;
        }

        .size-32{
            margin-right: 10px;
            background-color: #f3f3f3;
            width: 25px;
            height: 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 5px;
        }
    }

    .language{
        position: relative;

        .language-header{
            a{
                color: #000;
            }
        }

        .language-dropdown{
            position: absolute;
            top: 100%;
            z-index: 9999;
            left: -30px;
            display: none;

            .tool-tip{
                margin-bottom: -5px;
                margin-left: 40px;
            }

            .white-card{
                width: 250px;

                ul{
                    padding-left: 0;
                    margin-bottom: 0;
                    margin-top: 10px;

                    li{
                        &:not(:last-child){
                            margin-bottom: 5px;
                        }
                        a{
                            display: flex;
                            justify-content: start;
                            align-items: center;
                            gap: 10px;
                            color: #000;
                            padding: 5px;
                            border-radius: 5px;

                            &:hover{
                                background-color: #f3f3f3;
                            }
                        }
                    }
                }
            }
        }

        .language-dropdown.show {
            display: block;
        }

        ul li a{
            cursor: pointer;
        }
    }

    .search-box{
        border: 1px solid #c0c0c0;
        border-radius: 7px;
        overflow: hidden;
        padding: 5px 10px;
        flex-shrink: 1;

        &:focus-within{
            border-color: var(--primary-yellow);
        }

        input{
            border: none;

            @media(max-width:500px){
                flex-shrink: 1;
                width: calc(100% - 5px);
            }

            &:focus{
                outline: none;
            }
        }

        button{
            border: none;
            background-color: transparent;

            svg{
                color: #c0c0c0;
            }
        }
    }

}


/* forum page ----------------------------------------- */
.forum-hero-search:focus-within {
	outline: 2px solid var(--primary-yellow);
}

.forum-hero-search input{
	&:focus{
		outline: none;
	}
}

.fs-36px{
	font-size: 36px;
}

.feature-title{
	max-width: 750px;
}

.feature-block-1{
	background-color: #eeeeee;
	border-radius: 20px 0 0 20px;
}

.feature-block-2{
	background-color: #eeeeee;
	border-radius: 0 20px 20px 0;
}

.max-w-1280px{
	max-width: 1280px;
}

.row.max-w-1280px{
	.col-sm-12{
		max-height: 350px;
	}
}

.fs-14{
	font-size: 14px;
}

.shrink{
	flex-shrink: 1;
}

.grow{
	flex-grow: 1;
}

.marquee {
    width: 100%; 
    overflow: hidden; 
    white-space: nowrap; 

	.slider-container {
		display: inline-flex; 
		justify-content: start;
		align-items: center;
		gap: 30px;
		animation: marquee 15s ease-in-out infinite; 
	}
	
	.slider-container a {
		width: 500px; 
		height: 300px;
		
		@media(max-width:991px){
			width: 400px; 
			height: 250px;
		}

		@media(max-width:767px){
			width: 300px; 
			height: 200px;
		}

		@media(max-width:575px){
			width: 250px; 
			height: 150px;
		}
	}
}



/* Keyframes for back-and-forth animation */
@keyframes marquee {
    0% {
        transform: translateX(20px); 
    }
    50% {
        transform: translateX(calc(-100% + 100vw - 100px)); 
    }
    100% {
        transform: translateX(20px); 
    }
}

.absolute{
	position: absolute;
}

.relative{
	position: relative;
}


.have-a-question-section{
	background-image: url(../forum/have-a-question-img.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 80vh;
}


/*ebook Pages*/

.ebooks-section {
    .ebook-item {
        background-image: url(../ebook/book-1.png);
    }
}

.ebooks-section {
    .ebook-item, .ebook-item-2, .ebook-item-3 {
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        overflow: hidden;
        min-height: 250px;
    }
}


.ebooks-section {
    .ebook-item-2 {
        background-image: url(../ebook/book-2.png);
    }


    .ebook-item-3 {
        background-image: url(../ebook/book-3.png);
    }
}

.out-of-stock-badge, .badge{
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px !important;
    padding: 5px 10px !important;
}

.badge{
    border-radius: 2px 15px !important;
    margin-top: 8px;
    justify-content: center;
    padding: 10px !important;
}

.badge .badge-danger {
    background: red;
}

.badge .badge-secondary {
    background: black !important;
}

.badge .badge-warning {
    background: gold;
    color: black;
}

.badge .badge-primary {
    background: gold;
    color: black;
}

.badges-lists.selling-badge.position-absolute {
    right: 0;
}

.badge.badge-danger{
    background:red;
}

.badge.badge-secondary{
    background:black !important;
}

.badge.badge-warning{
    background:gold;
    color:black;
}

.badge.badge-primary{
     background:gold;
     color:black;
}

/* Notification*/
.mt-30, .my-30 {
    margin-top: 30px !important;
}
.ml-10, .mx-10 {
    margin-left: 10px !important;
}

.btn-sm, .btn-group-sm > .btn {
    padding-right: 16px;
    padding-left: 16px;
    height: 36px;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/*Closed Notification*/


/*Media Query*/
@media screen and (min-width: 768px) {
    .mobile-scroll{
        margin-bottom:5% !important;
    }
}

 .chapter-icon.chapter-content-icon {
    background-color: #f1f1f1;
}
.chapter-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    width: 40px;
    max-width: 40px;
    min-height: 40px;
    height: 40px;
    max-height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
}

.blog-grid-card{
    overflow-wrap: anywhere;
}

.stars-card d-flex{
   height: 0px; 
}

.course-detail-wrapper{
   overflow-wrap: anywhere; 
}


.py-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.custom-dropdown .custom-dropdown-body {
    background:white !important;
  
}

.custom-dropdown .custom-dropdown-body__item.active {
  border-left: 2px solid #43d477 !important;
  color: #43d477 !important;
}

.d-flex-center {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.size-32 {
    width: 32px !important;
    min-width: 32px !important;
    height: 32px !important;
}
.position-relative {
    position: relative !important;
}
.rounded-sm {
    border-radius: 0.625rem !important;
}
.bg-gray100 {
    background-color: #f9f9f9 !important;
}

@font-face {
  font-family: 'UAESymbol';
  src: url('/assets/uae-symbol.ttf') format('truetype');
}
.uae-symbol {
    font-family: 'UAESymbol' !important;
    display: inline-block;
    font-size: 0.75em; /* adjust as needed */
    line-height: 1; 
    vertical-align: middle; /* ensures vertical alignment */
    /* margin-right: 5px; */
    color: var(--text-color);
    transform: translateY(-1px); /* fine-tune vertical position */
} 