@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Bengali:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mooli&display=swap');

:root {
	--primary-color: #b1d4f1;
	--overlay-color: #e6dcd3;
	--black-color: #141414;
	--front-color: #f1ddcf;
	--white-color: #ffffff;
	--menu-speed: 1.5s;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	width: 100vw;
	height: fit-content;
	font-family: "Noto Serif Bengali", serif;
	font-family: "Mooli", sans-serif;
	overflow-x: hidden;
	background-color: var(--primary-color);
	scroll-behavior: smooth;

}

body {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
}

.main {
	width: 100%;
	overflow-x: hidden;
	height: auto;
}

/* ANIMATIONS-------------------------------------------------------------------------------- */

/* Navbar------------------------------------------------------------------------------------- */
.navbar {
	width: 100%;
	height: 6em;
	padding: 2em;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Navbar Right Side Logo------------------------------------------------------------------- */
.logo img {
	cursor: pointer;
	width: 7rem;
	height: auto;
	transition: all 0.4s ease-in-out;
}

.logo img:hover {
	scale: 1.2;
}

/* MENU STYLES----------------------------------------------------------------------------- */
.menu-wrap {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 1;
}

.menu-wrap .toggler {
	position: fixed;
	z-index: 9999999;
	cursor: pointer;
	width: 5.5em;
	height: 5em;
	opacity: 0;
}

.menu-wrap .hamburger {
	position: fixed;
	z-index: 999999;
	width: 4.5em;
	height: 4.5em;
	padding: 1em;
	background: transparent;
	display: flex;
	cursor: pointer;
	align-items: center;
	justify-content: center;
}

/* Hamburger Line------------------------------------------------------------------------------ */
.menu-wrap .hamburger>div {
	position: relative;
	flex: none;
	width: 100%;
	height: 2px;
	background: var(--black-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
.menu-wrap .hamburger>div::before,
.menu-wrap .hamburger>div::after {
	content: '';
	position: absolute;
	z-index: 999;
	top: -10px;
	width: 150%;
	height: 2px;
	background: inherit;
}

/* Moves Line Down---------------------------------------------------------------------------- */
.menu-wrap .hamburger>div::after {
	top: 10px;
}

/* Toggler Animation--------------------------------------------------------------------------- */
.menu-wrap .toggler:checked+.hamburger>div {
	transform: rotate(135deg);
}

/* Turns Lines Into X----------------------------------------------------------------------------- */
.menu-wrap .toggler:checked+.hamburger>div:before,
.menu-wrap .toggler:checked+.hamburger>div:after {
	top: 0;
	transform: rotate(90deg);
}

/* Rotate On Hover When Checked------------------------------------------------------------- */
.menu-wrap .toggler:checked:hover+.hamburger>div {
	transform: rotate(225deg);
}

/* Show Menu----------------------------------------------------------------------------------- */
.menu-wrap .toggler:checked~.menu {
	visibility: visible;
}

.menu-wrap .toggler:checked~.menu>div {
	transform: scale(1);
	transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked~.menu>div>div {
	opacity: 1;
	transition: opacity 0.4s ease 0.4s;
}

.menu-wrap .menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	visibility: hidden;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-wrap .menu>div {
	position: fixed;
	z-index: 9999999;
	width: 100%;
	height: 100%;
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	transform: scale(0);
	transition: all 0.4s ease;
}

.menu-wrap .menu>div>div {
	position: absolute;
	z-index: 9999;
	text-align: center;
	width: 100%;
	height: 100%;
	opacity: 0;
	background-image: url(./Assets/Images/Working/Image\ -\ 34.jpg);
	background-position: center;
	background-size: cover;
	transition: opacity 0.4s ease;
}

.menu-wrap .menu>div>div>ul {
	margin-top: 5em;
}

.menu-wrap .menu>div>div>ul>li {
	list-style: none;
	color: #ffffff;
	font-weight: 500;
	font-size: 2.2em;
	padding: 0.1em;
	margin-left: -20em;
}

.menu-wrap .menu>div>div>ul>li>a {
	color: inherit;
	text-decoration: none;
	transition: color 0.4s ease;
	letter-spacing: 7px;
	transition: 0.4s ease-in-out;
}

.menu-wrap .menu>div>div>ul>li>a:hover {
	letter-spacing: 0;
	text-shadow: 0.5px 0.5px 1px var(--black-color);
}

/* Menu Part End-------------------------------------------------------------------------------- */



header {
    text-align: center;
    padding: 1em 4em;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 1em;
    color: #664242;
    animation: Color 2s linear infinite;
    -webkit-animation: Color 2s ease-in-out infinite;
    text-shadow: 2px 2px var(--black-color);
}

@keyframes Color {
    0% {
        color: #935727;
    }

    25% {
        color: #cfc4b1;
    }

    50% {
        color: #141414;
    }

    75% {
        color: #676127;
    }

    100% {
        color: #803407;
    }
}


.resource-body {
    width: 100%;
    height: auto;
    padding: 0 2em;
    position: relative;
}

.top-container {
    width: 100%;

}

.top-container p {
    width: 90%;
    height: fit-content;
    padding: 2em;
    margin: 0 auto;
    margin-bottom: 1em;
    font-size: 1.2em;
    text-align: justify;
    transition: all 0.4s ease-in-out;
    -webkit-box-shadow: 0 0 88px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 88px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 88px 5px rgba(0, 0, 0, 0.1);
    border-radius: 0.5em;
}

.main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    min-height: 100vh;
}



.container {
    border-radius: 0.5em;
    background-color: #ffffff;
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
    height: 90vh;
    width: 90vw;
    margin: auto;
    display: flex;
}

.header {
    background-color: var(--black-color);
    color: #ffffff;
    display: flex;
    flex: 3;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 3%;
    border-top-left-radius: 0.5em;
    border-bottom-left-radius: 0.5em;
}

.header1 {
    background-image: url(./Assets/Images/poster.jpg);
    background-size: cover;
    background-position: bottom;
    color: #ffffff;
    display: flex;
    flex: 3;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 3%;
    border-top-left-radius: 0.5em;
    border-bottom-left-radius: 0.5em;
}


.header h1 {
    position: relative;
}

.header h1::after {
    background-color: #EECDA3;
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 6px;
    width: 60%;
}

.author {
    display: flex;
    align-items: center;
}

.author p {
    font-size: 1.2em;
}

.author img {
    border-radius: 50%;
    box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
    -webkit-box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
    -moz-box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
    margin-right: 5%;
    height: 100px;
}

.content {
    flex: 4;
    padding: 1% 2% 3% 2%;
    position: relative;
}

.content::-webkit-scrollbar {
    display: none;
}

.text {
    position: relative;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    height: 80vh;
    color: #3e3e3e;
}

.text::-webkit-scrollbar {
    display: none;
}

.field {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-around;
    right: 1em;
}

.arrow {
    width: 0;
    height: 40px;
    border: 1px solid #333;
    position: relative;
    animation: scroll 1.5s infinite;
    -webkit-animation: scroll 1.5s infinite;
}

.arrow::after {
    content: '';
    display: block;
    position: absolute;
    top: 100%;
    left: -5px;
    width: 1px;
    height: 10px;

    border-top: 10px solid #333;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

@keyframes scroll {
    0% {
        height: 40px;
    }

    30% {
        height: 70px;
    }

    60% {
        height: 40px;
    }
}

@-webkit-keyframes scroll {
    0% {
        height: 40px;
    }

    30% {
        height: 70px;
    }

    60% {
        height: 40px;
    }
}


.text h1 {
    font-size: 1.5em;
    text-align: center;
}

.text p {
    margin: 1em 0;
    text-align: justify;
}


.text p::first-letter {
    font-size: 150%;
    font-weight: bold;
}

.text span {
    font-size: 1.2em;
    font-weight: 600;
}

.text ul {
    margin: 1em;
    list-style: none;
}

.text ul li {
    margin: 0.7em 0;
}


/* Footer Part Start---------------------------------------------------------------------------------- */
.footer {
	width: 100%;
	background-color: #141414;
	color: var(--primary-color);
	padding: 2em 4em;
}

.footer-logo img {
	cursor: pointer;
	width: 7em;
	transition: all 0.4s ease-in-out;
}

.footer-logo img:hover {
	scale: 1.2;
}

.footer-container {
	width: 100%;
	margin: 0;
	padding: 0;
}

.footer-content {
	margin: 2em 0;
	display: flex;
	justify-content: space-between;
}

.footer-menu {
	justify-content: space-between;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.footer-menu li {
	align-items: center;
	display: inline-block;
	margin-top: 1em;
	margin-right: 3em;
	color: var(--primary-color);
}

.footer-menu li:last-child {
	margin-right: 0;
}

.footer-menu a {
	text-decoration: none;
	color: var(--primary-color);
	transition: all 0.4s ease-in-out;
}

.footer-menu a:hover {
	color: var(--overlay-color);
	text-shadow: 0px 0px 5px var(--overlay-color);
}

.social-icons {
	list-style: none;
	padding: 0;
	margin: 0;
}

.social-icons li {
	margin-top: 1em;
	display: inline-block;
	margin-right: 2em;
}

.social-icons li:last-child {
	margin-right: 0;
}

.social-icons a {
	color: var(--primary-color);
	text-decoration: none;
	font-size: 1.5em;
	transition: all 0.4s ease-in-out;
}

.social-icons a:hover {
	color: var(--overlay-color);
	text-shadow: 0px 0px 8px var(--overlay-color);
}

.footer-bottom {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
}

.footer-bottom p {
	color: var(--front-color);
	font-size: 0.8em;
}

.footer-bottom p a {
	text-decoration: none;
	color: var(--front-color);
}

.footer-bottom p a:hover {
	color: var(--primary-color);
}

/* Footer Part End------------------------------------------------------------------------------- */



@media only screen and (min-width:200px) and (max-width:321px) {

	/* CSS styles for extra small devices */
	/* Navbar------------------------------------------------------------------------------------- */
	.navbar {
		width: 100%;
		height: 4em;
		padding: 0.5em;
		position: relative;
	}

	/* Navbar Right Side Logo------------------------------------------------------------------- */
	.logo img {
		position: fixed;
		right: 1rem;
		top: 1.5em;
		width: 4em;
		height: 2em;
	}

	/* MENU STYLES----------------------------------------------------------------------------- */
	.menu-wrap .toggler {
		position: fixed;
		top: 1.7em;
		left: 1.2em;
		width: 3em;
		height: 2.8em;
		opacity: 0;
	}

	/* Hamburger Line------------------------------------------------------------------------------ */
	.menu-wrap .hamburger {
		position: fixed;
		top: 1em;
		left: 0.5em;
		width: 3.5em;
		height: 3.5em;
	}

	/* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
	.menu-wrap .hamburger>div::before,
	.menu-wrap .hamburger>div::after {
		top: -8px;
		width: 150%;
		height: 1.5px;
	}

	/* Moves Line Down---------------------------------------------------------------------------- */
	.menu-wrap .hamburger>div::after {
		top: 8px;
	}

	.menu-wrap .menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.menu-wrap .menu>div {
		position: fixed;
		z-index: 9999999;
		border-radius: 50%;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		transform: scale(0);
		transition: all 0.4s ease;
	}

	.menu-wrap .menu>div>div {
		text-align: center;
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		opacity: 0;
		position: fixed;
		background-image: url(./Assets/Images/Working/Image\ -\ 48.JPG);
		background-position: center;
		background-size: cover;
		transition: opacity 0.4s ease;
	}

	.menu-wrap .menu>div>div>ul {
		width: 100%;
		margin: 6.5em 15em;
		text-align: center;
	}

	.menu-wrap .menu>div>div>ul>li {
		list-style: none;
		color: #ffffff;
		font-weight: 500;
		padding: 0.1em;
		font-size: 1.5em;
	}

	/* Menu Part End-------------------------------------------------------------------------------- */



    header {
        padding: 1em;
    }
    
    header h1 {
        font-size: 2rem;
        margin-bottom: 0;
        text-shadow: 0.5px 0.5px var(--black-color);
    }    
    
    .resource-body {
        width: 100%;
        height: auto;
        padding: 0.5em;
        position: relative;
    }
    
    .top-container {
        width: 100%;
    }
    
    .top-container p {
        width: 100%;
        padding: 1em;
        margin-bottom: 0.5em;
        font-size: 0.8em;
    }
       
    .main-content {
        padding: 0.5em;
        height: auto;
    }

    .container {
        height: 125vh;
        width: 100%;
        margin: 0 auto;
        flex-direction: column;
    }
    
    .header {
        height: 30vh;
        width: 100%;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 5%;
        border-top-left-radius: 0.5em;
        border-top-right-radius: 0.5em;
        border-bottom-left-radius: 0;
    }
    
    .header1 {
        height: 80vh;
        width: 100%;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 5%;
        background-image: url(./Assets/Images/poster.jpg);
        background-size: cover;
        background-position: bottom;
        border-top-left-radius: 0.5em;
        border-top-right-radius: 0.5em;
        border-bottom-left-radius: 0;
     
    }
    
    
    .header h1 {
        position: relative;
        font-size: 1.5em;
    }
    
    .header h1::after {
        height: 4px;
    }
    
    .author {
        justify-content: space-between;
    }
    
    .author p {
        font-size: 1em;
    }
    
    .author img {
        border-radius: 50%;
        box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
        -webkit-box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
        -moz-box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
        margin-right: 5%;
        height: 80px;
    }
    
    .content {
        flex: 4;
        padding: 1% 2% 3% 2%;
        position: relative;
        overflow-y: scroll;

    }
    
    
    .text {
        position: relative;
        overflow-y: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        width: 100%;
        height: 70vh;
        color: #3e3e3e;
    }
    
    .text::-webkit-scrollbar {
        display: none;
    }
    
    .field {
        flex-direction: column;
    }
    
    .arrow {
        width: 0;
        height: 10px;
    }
    
    .arrow::after {
        content: '';
        display: block;
        position: absolute;
        top: 100%;
        left: -5px;
        width: 1px;
        height: 10px;
    }

    
    .text h1 {
        font-size: 1em;
        text-align: center;
    }
    
    .text p {
        margin: 1em;
        font-size: 0.8em;
        text-align: justify;
    }
    
    
    .text span {
        font-size: 0.8em;
        font-weight: 500;
    }
    
    .text ul {
        margin: 1em;
        list-style: none;
    }
    
    .text ul li {
        font-size: 0.8em;
        margin: 0.7em 0;
    }
    
    

	/* Footer Part================================ */

	.footer {
		background-color: #141414;
		padding: 1em;
	}

	.footer-logo {
		align-self: center;
		padding-bottom: 1rem;
	}

	.footer-logo img {
		width: 7em;
	}

	.footer-content {
		margin: 0;
		display: flex;
		flex-direction: column;
	}

	.footer-menu {
		padding-bottom: 2rem;
		justify-content: center;
		display: flex;
		flex-direction: column;
		gap: 1em;
	}

	.footer-menu li {
		align-items: center;
		display: block;
		margin: 0em;
		padding: 0;
	}

	.footer-menu a {
		padding: 0;
		margin: 0;
		font-size: 1rem;
	}

	.social-icons {
		padding-bottom: 2rem;
		align-items: center;
		justify-content: space-around;
		display: flex;
	}

	.social-icons li {
		margin: 0em;
		display: block;
	}

	.social-icons li:last-child {
		margin-right: 0;
	}

	.footer-bottom {
		display: flex;
		flex-direction: column-reverse;
		justify-content: center;
		align-items: center;
		gap: 1em;
	}

	.footer-bottom p {
		color: var(--front-color);
		font-size: 0.8em;
		font-weight: 500;
		text-align: center;
	}

}

@media only screen and (min-width:321px) and (max-width:376px) {

	/* CSS styles for small devices */
	/* Navbar------------------------------------------------------------------------------------- */
	.navbar {
		width: 100%;
		height: 4em;
		padding: 0.5em;
		position: relative;
	}

	/* Navbar Right Side Logo------------------------------------------------------------------- */
	.logo img {
		position: fixed;
		right: 1rem;
		top: 1.5em;
		width: 4em;
		height: 2em;
	}

	/* MENU STYLES----------------------------------------------------------------------------- */
	.menu-wrap .toggler {
		position: fixed;
		top: 1.7em;
		left: 1.2em;
		width: 3em;
		height: 2.8em;
		opacity: 0;
	}

	/* Hamburger Line------------------------------------------------------------------------------ */
	.menu-wrap .hamburger {
		position: fixed;
		top: 1em;
		left: 0.5em;
		width: 3.5em;
		height: 3.5em;
	}

	/* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
	.menu-wrap .hamburger>div::before,
	.menu-wrap .hamburger>div::after {
		top: -8px;
		width: 150%;
		height: 1.5px;
	}

	/* Moves Line Down---------------------------------------------------------------------------- */
	.menu-wrap .hamburger>div::after {
		top: 8px;
	}

	.menu-wrap .menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.menu-wrap .menu>div {
		position: fixed;
		z-index: 9999999;
		border-radius: 50%;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		transform: scale(0);
		transition: all 0.4s ease;
	}

	.menu-wrap .menu>div>div {
		text-align: center;
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		opacity: 0;
		position: fixed;
		background-image: url(./Assets/Images/Working/Image\ -\ 48.JPG);
		background-position: center;
		background-size: cover;
		transition: opacity 0.4s ease;
	}

    .menu-wrap .menu>div>div>ul {
        width: 100%;
        margin: 9em 15em;
        text-align: center;
    }

    .menu-wrap .menu>div>div>ul>li {
        list-style: none;
        color: #ffffff;
        font-weight: 500;
        padding: 0.2em;
        font-size: 1.8em;
    }

	/* Menu Part End-------------------------------------------------------------------------------- */



    header {
        padding: 1em;
    }
    
    header h1 {
        font-size: 2rem;
        margin-bottom: 0;
        text-shadow: 0.5px 0.5px var(--black-color);
    }    
    
    .resource-body {
        width: 100%;
        height: auto;
        padding: 0.5em;
        position: relative;
    }
    
    .top-container {
        width: 100%;
    }
    
    .top-container p {
        width: 100%;
        padding: 1em;
        margin-bottom: 0.5em;
        font-size: 1rem;
    }
       
    .main-content {
        padding: 0.5em;
        height: auto;
		margin-bottom: 1em;
    }

    .container {
        height: 125vh;
        width: 100%;
        margin: 0 auto;
        flex-direction: column;
    }
    
    .header {
        height: 30vh;
        width: 100%;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 5%;
        border-top-left-radius: 0.5em;
        border-top-right-radius: 0.5em;
        border-bottom-left-radius: 0;
    }
    
    .header1 {
        height: 80vh;
        width: 100%;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 5%;
        background-image: url(./Assets/Images/poster.jpg);
        background-size: cover;
        background-position: bottom;
        border-top-left-radius: 0.5em;
        border-top-right-radius: 0.5em;
        border-bottom-left-radius: 0;
     
    }
    
    
    .header h1 {
        position: relative;
        font-size: 1.5em;
    }
    
    .header h1::after {
        height: 4px;
    }
    
    .author {
        justify-content: space-between;
    }
    
    .author p {
        font-size: 1em;
    }
    
    .author img {
        border-radius: 50%;
        box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
        -webkit-box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
        -moz-box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
        margin-right: 5%;
        height: 80px;
    }
    
    .content {
        flex: 4;
        padding: 1% 2% 3% 2%;
        position: relative;
        overflow-y: scroll;

    }
    
    
    .text {
        position: relative;
        overflow-y: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        width: 100%;
        height: 70vh;
        color: #3e3e3e;
    }
    
    .text::-webkit-scrollbar {
        display: none;
    }
    
    .field {
        flex-direction: column;
    }
    
    .arrow {
        width: 0;
        height: 10px;
    }
    
    .arrow::after {
        content: '';
        display: block;
        position: absolute;
        top: 100%;
        left: -5px;
        width: 1px;
        height: 10px;
    }

    
    .text h1 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .text p {
        margin: 1em;
        font-size: 1rem;
        text-align: justify;
    }
    
    
    .text span {
        font-size: 1rem;
        font-weight: 500;
    }
    
    .text ul {
        margin: 1em;
        list-style: none;
    }
    
    .text ul li {
        font-size: 1rem;
        margin: 0.7em 0;
    }

    

	/* Footer Part================================ */

	.footer {
		background-color: #141414;
		padding: 1em;
	}

	.footer-logo {
		align-self: center;
		padding-bottom: 1rem;
	}

	.footer-logo img {
		width: 7em;
	}

	.footer-content {
		margin: 0;
		display: flex;
		flex-direction: column;
	}

	.footer-menu {
		padding-bottom: 2rem;
		justify-content: center;
		display: flex;
		flex-direction: column;
		gap: 1em;
	}

	.footer-menu li {
		align-items: center;
		display: block;
		margin: 0em;
		padding: 0;
	}

	.footer-menu a {
		padding: 0;
		margin: 0;
		font-size: 1rem;
	}

	.social-icons {
		padding-bottom: 2rem;
		align-items: center;
		justify-content: space-around;
		display: flex;
	}

	.social-icons li {
		margin: 0em;
		display: block;
	}

	.social-icons li:last-child {
		margin-right: 0;
	}

	.footer-bottom {
		display: flex;
		flex-direction: column-reverse;
		justify-content: center;
		align-items: center;
		gap: 1em;
	}

	.footer-bottom p {
		color: var(--front-color);
		font-size: 0.8em;
		font-weight: 500;
		text-align: center;
	}

}

@media only screen and (min-width:377px) and (max-width:426px) {

	/* CSS styles for small devices */
	/* Navbar------------------------------------------------------------------------------------- */
	.navbar {
		width: 100%;
		height: 4em;
		padding: 0.5em;
		position: relative;
	}

	/* Navbar Right Side Logo------------------------------------------------------------------- */
	.logo img {
		position: fixed;
		right: 1rem;
		top: 1.5em;
		width: 5em;
		height: 2.5em;
	}

	/* MENU STYLES----------------------------------------------------------------------------- */
	.menu-wrap .toggler {
		position: fixed;
		top: 1.7em;
		left: 1.2em;
		width: 3em;
		height: 2.8em;
		opacity: 0;
	}

	/* Hamburger Line------------------------------------------------------------------------------ */
	.menu-wrap .hamburger {
		position: fixed;
		top: 1em;
		left: 0.5em;
		width: 4em;
		height: 3.5em;
	}

	/* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
	.menu-wrap .hamburger>div::before,
	.menu-wrap .hamburger>div::after {
		top: -9px;
		width: 150%;
		height: 1.5px;
	}

	/* Moves Line Down---------------------------------------------------------------------------- */
	.menu-wrap .hamburger>div::after {
		top: 9px;
	}

	.menu-wrap .menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.menu-wrap .menu>div {
		position: fixed;
		z-index: 9999999;
		border-radius: 50%;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		transform: scale(0);
		transition: all 0.4s ease;
	}

	.menu-wrap .menu>div>div {
		text-align: center;
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		opacity: 0;
		position: fixed;
		background-image: url(./Assets/Images/Working/Image\ -\ 48.JPG);
		background-position: center;
		background-size: cover;
		transition: opacity 0.4s ease;
	}

    .menu-wrap .menu>div>div>ul {
        width: 100%;
        margin: 10em 18em;
        text-align: center;
    }

    .menu-wrap .menu>div>div>ul>li {
        list-style: none;
        color: #ffffff;
        font-weight: 500;
        padding: 0.2em;
        font-size: 2em;
    }

	/* Menu Part End-------------------------------------------------------------------------------- */



    header {
        padding: 1em;
    }
    
    header h1 {
        font-size: 2.5rem;
        margin-bottom: 0;
        text-shadow: 0.5px 0.5px var(--black-color);
    }    
    
    .resource-body {
        width: 100%;
        height: auto;
        padding: 1em;
        position: relative;
    }
    
    .top-container {
        width: 100%;
    }
    
    .top-container p {
        width: 100%;
        padding: 1em;
        margin-bottom: 0.5em;
        font-size: 1rem;
    }
       
    .main-content {
        padding: 1em;
        height: auto;
    }

    .container {
        height: 135vh;
        width: 100%;
        margin: 0 auto;
        flex-direction: column;
    }
    
    .header {
        height: 30vh;
        width: 100%;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 5%;
        border-top-left-radius: 0.5em;
        border-top-right-radius: 0.5em;
        border-bottom-left-radius: 0;
    }
    
    .header1 {
        height: 80vh;
        width: 100%;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 5%;
        background-image: url(./Assets/Images/poster.jpg);
        background-size: cover;
        background-position: bottom;
        border-top-left-radius: 0.5em;
        border-top-right-radius: 0.5em;
        border-bottom-left-radius: 0;
     
    }
    
    
    .header h1 {
        position: relative;
        font-size: 1.5rem;
    }
    
    .header h1::after {
        height: 4px;
    }
    
    .author {
        justify-content: space-between;
    }
    
    .author p {
        font-size: 1.5rem;
    }
    
    .author img {
        border-radius: 50%;
        box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
        -webkit-box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
        -moz-box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
        margin-right: 5%;
        height: 100px;
    }
    
    .content {
        flex: 4;
        padding: 1% 2% 3% 2%;
        position: relative;
        overflow-y: scroll;
    }
    
    
    .text {
        position: relative;
        overflow-y: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        width: 100%;
        height: 70vh;
        color: #3e3e3e;
    }
    
    .text::-webkit-scrollbar {
        display: none;
    }
    
    .field {
        flex-direction: column;
    }
    
    .arrow {
        width: 0;
        height: 10px;
    }
    
    .arrow::after {
        content: '';
        display: block;
        position: absolute;
        top: 100%;
        left: -5px;
        width: 1px;
        height: 10px;
    }

    
    .text h1 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .text p {
        margin: 1em;
        font-size: 1rem;
        text-align: justify;
    }
    
    
    .text span {
        font-size: 1rem;
        font-weight: 500;
    }
    
    .text ul {
        margin: 1em;
        list-style: none;
    }
    
    .text ul li {
        font-size: 1rem;
        margin: 0.7em 0;
    }

    

	/* Footer Part================================ */

	.footer {
		background-color: #141414;
		padding: 1em;
	}

	.footer-logo {
		align-self: center;
		padding-bottom: 1rem;
	}

	.footer-logo img {
		width: 7em;
	}

	.footer-content {
		margin: 0;
		display: flex;
		flex-direction: column;
	}

	.footer-menu {
		padding-bottom: 2rem;
		justify-content: center;
		display: flex;
		flex-direction: column;
		gap: 1em;
	}

	.footer-menu li {
		align-items: center;
		display: block;
		margin: 0em;
		padding: 0;
	}

	.footer-menu a {
		padding: 0;
		margin: 0;
		font-size: 1rem;
	}

	.social-icons {
		padding-bottom: 2rem;
		align-items: center;
		justify-content: space-around;
		display: flex;
	}

	.social-icons li {
		margin: 0em;
		display: block;
	}

	.social-icons li:last-child {
		margin-right: 0;
	}

	.footer-bottom {
		display: flex;
		flex-direction: column-reverse;
		justify-content: center;
		align-items: center;
		gap: 1em;
	}

	.footer-bottom p {
		color: var(--front-color);
		font-size: 0.8em;
		font-weight: 500;
		text-align: center;
	}

}

@media only screen and (min-width: 426px) and (max-width:597px) {

	/* CSS styles for minitab devices */
	/* Navbar------------------------------------------------------------------------------------- */
	.navbar {
		width: 100%;
		height: 4em;
		padding: 0.5em;
		position: relative;
	}

	/* Navbar Right Side Logo------------------------------------------------------------------- */
	.logo img {
		position: fixed;
		right: 1rem;
		top: 1.5em;
		width: 5em;
		height: 2.5em;
	}

	/* MENU STYLES----------------------------------------------------------------------------- */
	.menu-wrap .toggler {
		position: fixed;
		top: 1.7em;
		left: 1.2em;
		width: 3em;
		height: 2.8em;
		opacity: 0;
	}

	/* Hamburger Line------------------------------------------------------------------------------ */
	.menu-wrap .hamburger {
		position: fixed;
		top: 1em;
		left: 0.5em;
		width: 4em;
		height: 3.5em;
	}

	/* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
	.menu-wrap .hamburger>div::before,
	.menu-wrap .hamburger>div::after {
		top: -9px;
		width: 150%;
		height: 1.5px;
	}

	/* Moves Line Down---------------------------------------------------------------------------- */
	.menu-wrap .hamburger>div::after {
		top: 9px;
	}

	.menu-wrap .menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.menu-wrap .menu>div {
		position: fixed;
		z-index: 9999999;
		border-radius: 50%;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		transform: scale(0);
		transition: all 0.4s ease;
	}

	.menu-wrap .menu>div>div {
		text-align: center;
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		opacity: 0;
		position: fixed;
		background-image: url(./Assets/Images/Working/Image\ -\ 48.JPG);
		background-position: center;
		background-size: cover;
		transition: opacity 0.4s ease;
	}

	.menu-wrap .menu>div>div>ul {
		width: 100%;
		margin: 6.5em 15em;
		text-align: center;
	}

	.menu-wrap .menu>div>div>ul>li {
		list-style: none;
		color: #ffffff;
		font-weight: 500;
		padding: 0.1em;
		font-size: 1.5em;
	}

	/* Menu Part End-------------------------------------------------------------------------------- */




    header {
        padding: 1em;
    }
    
    header h1 {
        font-size: 2rem;
        margin-bottom: 0;
        margin: 0;
        text-shadow: 1px 1px var(--black-color);
    }    
    
    .resource-body {
        width: 100%;
        height: auto;
        padding: 1em;
        position: relative;
    }
    
    .top-container {
        width: 100%;
    }
    
    .top-container p {
        width: 100%;
        padding: 1.2em;
        margin-bottom: 0;
        font-size: 0.8em;
    }
       
    .main-content {
        padding: 1em;
        height: auto;
    }

    .container {
        height: 140vh;
        width: 100%;
        margin: 0 auto;
        flex-direction: column;
    }
    
    .header {
        height: 30vh;
        width: 100%;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 5%;
        border-top-left-radius: 0.5em;
        border-top-right-radius: 0.5em;
        border-bottom-left-radius: 0;
    }
    
    .header1 {
        height: 60vh;
        width: 100%;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 5%;
        background-image: url(./Assets/Images/poster.jpg);
        background-size: cover;
        background-position: bottom;
        border-top-left-radius: 0.5em;
        border-top-right-radius: 0.5em;
        border-bottom-left-radius: 0;
     
    }
    
    
    .header h1 {
        position: relative;
        font-size: 1.8em;
    }
    
    .header h1::after {
        height: 4px;
    }
    

    
    .author p {
        font-size: 1.2em;
    }
    
    .author img {
        border-radius: 50%;
        box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
        -webkit-box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
        -moz-box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
        margin-right: 5%;
        height: 100px;
    }

    .content {
        flex: 4;
        padding: 1% 2% 3% 2%;
        position: relative;
        overflow-y: scroll;
    }
    
    
    .text {
        position: relative;
        overflow-y: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        width: 100%;
        height: 70vh;
        color: #3e3e3e;
    }
    
    .text::-webkit-scrollbar {
        display: none;
    }


    .field {
        flex-direction: column;
    }
    
    .arrow {
        width: 0;
        height: 10px;
    }
    
    .arrow::after {
        content: '';
        display: block;
        position: absolute;
        top: 100%;
        left: -5px;
        width: 1px;
        height: 10px;
    }

    
    .text h1 {
        font-size: 1.2em;
        text-align: center;
    }
    
    .text p {
        margin: 1em;
        font-size: 0.8em;
        text-align: justify;
    }
    
    
    .text span {
        font-size: 0.8em;
        font-weight: 500;
    }
    
    .text ul {
        margin: 1em;
        list-style: none;
    }
    
    .text ul li {
        font-size: 0.8em;
        margin: 0.7em 0;
    }

    


    

	/* Footer Part================================ */

	.footer {
		background-color: #141414;
		padding: 1em;
	}

	.footer-logo {
		align-self: center;
		padding-bottom: 1rem;
	}

	.footer-logo img {
		width: 7em;
	}

	.footer-content {
		margin: 0;
		display: flex;
		flex-direction: column;
	}

	.footer-menu {
		padding-bottom: 2rem;
		justify-content: center;
		display: flex;
		flex-direction: row;
		gap: 1em;
	}

	.footer-menu li {
		align-items: center;
		display: block;
		margin: 0em;
		padding: 0;
	}

	.footer-menu a {
		padding: 0;
		margin: 0;
		font-size: 1rem;
	}

	.social-icons {
		padding-bottom: 2rem;
		align-items: center;
		justify-content: space-around;
		display: flex;
	}

	.social-icons li {
		margin: 0em;
		display: block;
	}

	.social-icons li:last-child {
		margin-right: 0;
	}

	.footer-bottom {
		display: flex;
		flex-direction: column-reverse;
		justify-content: center;
		align-items: center;
		gap: 1em;
	}

	.footer-bottom p {
		color: var(--front-color);
		font-size: 0.8em;
		font-weight: 500;
		text-align: center;
	}

}

@media only screen and (min-width: 598px) and (max-width:769px) {

	/* CSS styles for tablet devices */
	/* Navbar------------------------------------------------------------------------------------- */
	.navbar {
		width: 100%;
		height: 4em;
		padding: 0.5em;
		position: relative;
	}

	/* Navbar Right Side Logo------------------------------------------------------------------- */
	.logo img {
		position: fixed;
		right: 1rem;
		top: 1.5em;
		width: 5em;
		height: 2.5em;
	}

	/* MENU STYLES----------------------------------------------------------------------------- */
	.menu-wrap .toggler {
		position: fixed;
		top: 1.7em;
		left: 1.2em;
		width: 3em;
		height: 2.8em;
		opacity: 0;
	}

	/* Hamburger Line------------------------------------------------------------------------------ */
	.menu-wrap .hamburger {
		position: fixed;
		top: 1em;
		left: 0.5em;
		width: 4em;
		height: 3.5em;
	}

	/* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
	.menu-wrap .hamburger>div::before,
	.menu-wrap .hamburger>div::after {
		top: -9px;
		width: 150%;
		height: 1.5px;
	}

	/* Moves Line Down---------------------------------------------------------------------------- */
	.menu-wrap .hamburger>div::after {
		top: 9px;
	}

	.menu-wrap .menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.menu-wrap .menu>div {
		position: fixed;
		z-index: 9999999;
		border-radius: 50%;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		transform: scale(0);
		transition: all 0.4s ease;
	}

	.menu-wrap .menu>div>div {
		text-align: center;
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		opacity: 0;
		position: fixed;
		background-image: url(./Assets/Images/Working/Image\ -\ 34.jpg);
		background-position: center;
		background-size: cover;
		transition: opacity 0.4s ease;
	}

	.menu-wrap .menu>div>div>ul {
		width: 100%;
		margin: 5em;
		text-align: center;
	}

	.menu-wrap .menu>div>div>ul>li {
		list-style: none;
		color: #ffffff;
		font-weight: 500;
		padding: 0.1em;
		font-size: 1.5em;
	}

	/* Menu Part End-------------------------------------------------------------------------------- */




    header {
        padding: 1em;
    }
    
    header h1 {
        font-size: 2.5rem;
        margin-bottom: 0;
        margin: 0;
        text-shadow: 1px 1px var(--black-color);
    }    
    
    .resource-body {
        width: 100%;
        height: auto;
        padding: 0 1.5em;
        position: relative;
    }
    
    .top-container {
        width: 100%;
    }
    
    .top-container p {
        width: 100%;
        padding: 1.5em;
        margin-bottom: 0;
        font-size: 0.8em;
    }
       
    .main-content {
        padding: 0 1.5em;
        height: auto;
    }

    .container {
        height: 85vh;
        width: 100%;
        margin: 0 auto;
    }
    
    .header {
        width: 100%;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 5%;

    }
    
    .header1 {
        width: 100%;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 5%;
        background-image: url(./Assets/Images/poster.jpg);
        background-size: cover;
        background-position: bottom;

     
    }
    
    
    .header h1 {
        position: relative;
        font-size: 1.5em;
    }
    
    .header h1::after {
        height: 4px;
    }
    

    
    .author p {
        font-size: 1.2em;
    }
    
    .author img {
        border-radius: 50%;
        box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
        -webkit-box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
        -moz-box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
        margin-right: 5%;
        height: 100px;
    }
    
        .content {
        flex: 4;
        padding: 1% 2% 3% 2%;
        position: relative;
        overflow-y: scroll;
    }
    
    
    .text {
        position: relative;
        overflow-y: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        width: 100%;
        height: 79vh;
        color: #3e3e3e;
    }
    
    .text::-webkit-scrollbar {
        display: none;
    }
    
    .field {
        flex-direction: column;
    }
    
    .arrow {
        width: 0;
        height: 10px;
    }
    
    .arrow::after {
        content: '';
        display: block;
        position: absolute;
        top: 100%;
        left: -5px;
        width: 1px;
        height: 10px;
    }

    
    .text h1 {
        font-size: 1.2em;
        text-align: center;
    }
    
    .text p {
        margin: 1em;
        font-size: 0.8em;
        text-align: justify;
    }
    
    
    .text span {
        font-size: 0.8em;
        font-weight: 500;
    }
    
    .text ul {
        margin: 1em;
        list-style: none;
    }
    
    .text ul li {
        font-size: 0.8em;
        margin: 0.7em 0;
    }

    



    
	/* Footer Part================================ */

	.footer {
		background-color: #141414;
		padding: 1em;
	}

	.footer-logo {
		align-self: center;
		padding-bottom: 1rem;
	}

	.footer-logo img {
		width: 7em;
	}

	.footer-content {
		margin: 0;
		display: flex;
		flex-direction: column;
	}

	.footer-menu {
		padding-bottom: 2rem;
		justify-content: center;
		display: flex;
		flex-direction: row;
		gap: 3em;
	}

	.footer-menu li {
		align-items: center;
		display: block;
		margin: 0em;
		padding: 0;
	}

	.footer-menu a {
		padding: 0;
		margin: 0;
		font-size: 1rem;
	}

	.social-icons {
		padding-bottom: 2rem;
		align-items: center;
		justify-content: space-around;
		display: flex;
	}

	.social-icons li {
		margin: 0em;
		display: block;
	}

	.social-icons li:last-child {
		margin-right: 0;
	}

	.footer-bottom {
		display: flex;
		flex-direction: column-reverse;
		justify-content: center;
		align-items: center;
		gap: 1em;
	}

	.footer-bottom p {
		color: var(--front-color);
		font-size: 0.8em;
		font-weight: 500;
		text-align: center;
	}

}

@media only screen and (min-width: 769px) and (max-width:1024px) {

	/* CSS styles for laptop devices */
	/* Navbar------------------------------------------------------------------------------------- */
	.navbar {
		width: 100%;
		height: 4em;
		padding: 0.5em;
		position: relative;
	}

	/* Navbar Right Side Logo------------------------------------------------------------------- */
	.logo img {
		position: fixed;
		right: 1rem;
		top: 1.5em;
		width: 6em;
		height: 3em;
	}

	/* MENU STYLES----------------------------------------------------------------------------- */
	.menu-wrap .toggler {
		position: fixed;
		top: 1.7em;
		left: 1.2em;
		width: 3em;
		height: 2.8em;
		opacity: 0;
	}

	/* Hamburger Line------------------------------------------------------------------------------ */
	.menu-wrap .hamburger {
		position: fixed;
		top: 1em;
		left: 0.5em;
		width: 4em;
		height: 3.5em;
	}

	/* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
	.menu-wrap .hamburger>div::before,
	.menu-wrap .hamburger>div::after {
		top: -9px;
		width: 150%;
		height: 1.5px;
	}

	/* Moves Line Down---------------------------------------------------------------------------- */
	.menu-wrap .hamburger>div::after {
		top: 9px;
	}

	.menu-wrap .menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.menu-wrap .menu>div {
		position: fixed;
		z-index: 9999999;
		border-radius: 50%;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		transform: scale(0);
		transition: all 0.4s ease;
	}

	.menu-wrap .menu>div>div {
		text-align: center;
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		opacity: 0;
		position: fixed;
		background-image: url(./Assets/Images/Working/Image\ -\ 34.jpg);
		background-position: center;
		background-size: cover;
		transition: opacity 0.4s ease;
	}

	.menu-wrap .menu>div>div>ul {
		width: 100%;
		margin: 4em 3em;
		text-align: center;
	}

	.menu-wrap .menu>div>div>ul>li {
		list-style: none;
		color: #ffffff;
		font-weight: 500;
		padding: 0.1em;
		font-size: 1.7em;
	}

	/* Menu Part End-------------------------------------------------------------------------------- */




    header {
        padding: 1em;
    }
    
    header h1 {
        font-size: 2.5rem;
        margin-bottom: 0;
        margin: 0;
        text-shadow: 1px 1px var(--black-color);
    }    
    
    .resource-body {
        width: 100%;
        height: auto;
        padding: 1em 4em;
        position: relative;
    }
    
    .top-container {
        width: 100%;
    }
    
    .top-container p {
        width: 100%;
        padding: 1.5em;
        margin-bottom: 0;
        font-size: 0.8em;
    }
       
    .main-content {
        padding: 0 4em;
        height: auto;
    }

    .container {
        height: 85vh;
        width: 100%;
        margin: 0 auto;
    }
    
    .header {
        width: 100%;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 5%;

    }
    
    .header1 {
        width: 100%;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 5%;
        background-image: url(./Assets/Images/poster.jpg);
        background-size: cover;
        background-position: bottom;

     
    }
    
    
    .header h1 {
        position: relative;
        font-size: 1.8em;
    }
    
    .header h1::after {
        height: 4px;
    }
    

    
    .author p {
        font-size: 1.5em;
    }
    
    .author img {
        border-radius: 50%;
        box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
        -webkit-box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
        -moz-box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
        margin-right: 5%;
        height: 100px;
    }
    
    .content {
        flex: 4;
        padding: 1% 2% 3% 2%;
        position: relative;
        overflow-y: scroll;
    }
    
    
    .text {
        position: relative;
        overflow-y: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        width: 100%;
        height: 78vh;
        color: #3e3e3e;
    }
    
    .text::-webkit-scrollbar {
        display: none;
    }
    
    .field {
        flex-direction: column;
    }
    
    .arrow {
        width: 0;
        height: 10px;
    }
    
    .arrow::after {
        content: '';
        display: block;
        position: absolute;
        top: 100%;
        left: -5px;
        width: 1px;
        height: 10px;
    }

    
    .text h1 {
        font-size: 1.2em;
        text-align: center;
    }
    
    .text p {
        margin: 1em;
        font-size: 0.8em;
        text-align: justify;
    }
    
    
    .text span {
        font-size: 0.8em;
        font-weight: 500;
    }
    
    .text ul {
        margin: 1em;
        list-style: none;
    }
    
    .text ul li {
        font-size: 0.8em;
        margin: 0.7em 0;
    }


    

	/* Footer Part================================ */

	.footer {
		background-color: #141414;
		padding: 1em;
	}

	.footer-logo {
		align-self: center;
		padding-bottom: 1rem;
	}

	.footer-logo img {
		width: 7em;
	}

	.footer-content {
		margin: 0;
		display: flex;
		flex-direction: row;
		gap: 1.5em;
		justify-content: space-evenly;
	}

	.footer-menu {
		padding-top: 1rem;
		justify-content: center;
		display: flex;
		flex-direction: row;
		gap: 1.5em;
	}

	.footer-menu li {
		align-items: center;
		display: block;
		margin: 0em;
		padding: 0;
	}

	.footer-menu a {
		padding: 0;
		margin: 0;
		font-size: 1rem;
	}

	.social-icons {
		padding-top: 1rem;
		align-items: center;
		gap: 1em;
		display: flex;
	}

	.social-icons li {
		margin: 0em;
		display: block;
	}

	.social-icons li:last-child {
		margin-right: 0;
	}

	.footer-bottom {
		display: flex;
		flex-direction: row-reverse;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 2em;
	}

	.footer-bottom p {
		color: var(--front-color);
		font-size: 0.8em;
		font-weight: 500;
		text-align: center;
	}

}

@media only screen and (min-width: 1025px) and (max-width:1440px) {

		/* CSS styles for large laptop devices */
	/* Navbar------------------------------------------------------------------------------------- */
	.navbar {
		width: 100%;
		height: 6em;
		padding: 0.5em;
		position: relative;
	}

	/* Navbar Right Side Logo------------------------------------------------------------------- */
	.logo img {
		position: fixed;
		right: 1rem;
		top: 1.5em;
		width: 7em;
		height: 4em;
	}

	/* MENU STYLES----------------------------------------------------------------------------- */
	.menu-wrap .toggler {
		position: fixed;
		top: 0.7em;
		left: 1.1em;
		width: 4.5em;
		height: 5em;
		opacity: 0;
	}

	/* Hamburger Line------------------------------------------------------------------------------ */
	.menu-wrap .hamburger {
		position: fixed;
		top: 1em;
		left: 0.5em;
		width: 4.5em;
		height: 3.5em;
	}

	/* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
	.menu-wrap .hamburger>div::before,
	.menu-wrap .hamburger>div::after {
		top: -10px;
		width: 150%;
		height: 1.5px;
	}

	/* Moves Line Down---------------------------------------------------------------------------- */
	.menu-wrap .hamburger>div::after {
		top: 10px;
	}

	.menu-wrap .menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.menu-wrap .menu>div {
		position: fixed;
		z-index: 9999999;
		border-radius: 50%;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		transform: scale(0);
		transition: all 0.4s ease;
	}

	.menu-wrap .menu>div>div {
		text-align: center;
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		opacity: 0;
		position: fixed;
		background-image: url(./Assets/Images/Working/Image\ -\ 34.jpg);
		background-position: center;
		background-size: cover;
		transition: opacity 0.4s ease;
	}

	.menu-wrap .menu>div>div>ul {
		width: 100%;
		margin: 6em 3em;
		text-align: center;
	}

	.menu-wrap .menu>div>div>ul>li {
		list-style: none;
		color: #ffffff;
		font-weight: 500;
		padding: 0.15em;
		font-size: 2.2em;
	}

	/* Menu Part End-------------------------------------------------------------------------------- */






    header {
        padding: 1em;
    }
    
    header h1 {
        font-size: 3.5rem;
        margin-bottom: 0;
        margin: 0;
        text-shadow: 1px 1px var(--black-color);
    }    
    
    .resource-body {
        width: 100%;
        height: auto;
        padding: 0 4em;
        position: relative;
    }
    
    .top-container {
        width: 100%;
    }
    
    .top-container p {
        width: 100%;
        padding: 1.5em;
        margin-bottom: 0;
        font-size: 1.2em;
    }
       
    .main-content {
        padding: 0 4em;
        height: auto;
    }

    .container {
        height: 85vh;
        width: 100%;
        margin: 0 auto;
    }
    
    .header {
        width: 100%;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 5%;

    }
    
    .header1 {
        width: 100%;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 5%;
        background-image: url(./Assets/Images/poster.jpg);
        background-size: cover;
        background-position: bottom;

     
    }
    
    
    .header h1 {
        position: relative;
        font-size: 2em;
    }
    
    .header h1::after {
        height: 4px;
    }
    

    
    .author p {
        font-size: 1.5em;
    }
    
    .author img {
        border-radius: 50%;
        box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
        -webkit-box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
        -moz-box-shadow: 10px 8px 5px 0px rgba(0, 0, 0, 0.63);
        margin-right: 8%;
        height: 150px;
    }
    
    .content {
        flex: 4;
        padding: 1% 2% 3% 2%;
        position: relative;
        overflow-y: scroll;
    }
    
    
    .text {
        position: relative;
        overflow-y: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        width: 100%;
        height: 100%;
        color: #3e3e3e;
    }
    
    .text::-webkit-scrollbar {
        display: none;
    }

    .field {
        flex-direction: column;
    }
    
    .arrow {
        width: 0;
        height: 10px;
    }
    
    .arrow::after {
        content: '';
        display: block;
        position: absolute;
        top: 100%;
        left: -5px;
        width: 1px;
        height: 10px;
    }

    
    .text h1 {
        font-size: 1.8em;
        text-align: center;
    }
    
    .text p {
        margin: 1em;
        font-size: 1em;
        text-align: justify;
    }
    
    
    .text span {
        font-size: 1em;
        font-weight: 500;
    }
    
    .text ul {
        margin: 1em;
        list-style: none;
    }
    
    .text ul li {
        font-size: 1em;
        margin: 0.7em 0;
    }


    

	/* Footer Part================================ */

	.footer {
		background-color: #141414;
		padding: 1em;
	}

	.footer-logo {
		align-self: center;
		padding-bottom: 1rem;
	}

	.footer-logo img {
		width: 7em;
	}

	.footer-content {
		margin: 0;
		display: flex;
		flex-direction: row;
		padding: 1em 3em;
		justify-content: space-between;
	}

	.footer-menu {
		padding-top: 1rem;
		justify-content: center;
		display: flex;
		flex-direction: row;
		gap: 3em;
	}

	.footer-menu li {
		align-items: center;
		display: block;
		margin: 0em;
		padding: 0;
	}

	.footer-menu a {
		padding: 0;
		margin: 0;
		font-size: 1.1rem;
	}

	.social-icons {
		padding-top: 1rem;
		align-items: center;
		gap: 3em;
		display: flex;
	}

	.social-icons li {
		margin: 0em;
		display: block;
	}

	.social-icons li:last-child {
		margin-right: 0;
	}

	.footer-bottom {
		display: flex;
		flex-direction: row-reverse;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 2em;
	}

	.footer-bottom p {
		color: var(--front-color);
		font-size: 1em;
		font-weight: 500;
		text-align: center;
	}

}

@media only screen and (min-width: 1441px) and (max-width:2561px) {

			/* CSS styles for 4k devices */
	/* Navbar------------------------------------------------------------------------------------- */
	.navbar {
		width: 100%;
		height: 10em;
		padding: 2em 5em;
		position: relative;
	}

	/* Navbar Right Side Logo------------------------------------------------------------------- */
	.logo img {
		position: fixed;
		right: 8rem;
		top: 2em;
		width: 12em;
		height: 7em;
	}

	/* MENU STYLES----------------------------------------------------------------------------- */
	.menu-wrap .toggler {
		position: fixed;
		top: 1em;
		left: 5em;
		width: 9.5em;
		height: 9em;
		opacity: 0;
	}

	/* Hamburger Line------------------------------------------------------------------------------ */
	.menu-wrap .hamburger {
		position: fixed;
		top: 3em;
		left: 5em;
		width: 6.5em;
		height: 3.5em;
	}

	/* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
	.menu-wrap .hamburger>div::before,
	.menu-wrap .hamburger>div::after {
		top: -20px;
		width: 150%;
		height: 3px;
	}

	/* Moves Line Down---------------------------------------------------------------------------- */
	.menu-wrap .hamburger>div::after {
		top: 20px;
	}

	.menu-wrap .menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.menu-wrap .menu>div {
		position: fixed;
		z-index: 9999999;
		border-radius: 50%;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		transform: scale(0);
		transition: all 0.4s ease;
	}

	.menu-wrap .menu>div>div {
		text-align: center;
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		opacity: 0;
		position: fixed;
		background-image: url(./Assets/Images/Working/Image\ -\ 34.jpg);
		background-position: center;
		background-size: cover;
		transition: opacity 0.4s ease;
	}

	.menu-wrap .menu>div>div>ul {
		width: 100%;
		margin: 8em 4em;
		text-align: center;
	}

	.menu-wrap .menu>div>div>ul>li {
		list-style: none;
		color: #ffffff;
		font-weight: 500;
		padding: 0.15em;
		font-size: 4em;
	}

	/* Menu Part End-------------------------------------------------------------------------------- */






    header {
        padding: 1em;
    }
    
    header h1 {
        font-size: 5.5rem;
        margin-bottom: 0;
        margin: 0;
        text-shadow: 2px 2px var(--black-color);
    }    
    
    .resource-body {
        width: 100%;
        height: auto;
        padding: 0 5em;
        position: relative;
    }
    
    .top-container {
        width: 100%;
    }
    
    .top-container p {
        width: 100%;
        padding: 1.5em;
        margin-bottom: 1em;
        font-size: 2.2em;
    }
       
    .main-content {
        padding: 0 4em;
        height: auto;
    }

    .container {
        height: 95vh;
        width: 100%;
        margin: 0 auto;
    }
    
    .header {
        width: 100%;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 5%;

    }
    
    .header1 {
        width: 100%;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 5%;
        background-image: url(./Assets/Images/poster.jpg);
        background-size: cover;
        background-position: bottom;

     
    }
    
    
    .header h1 {
        position: relative;
        font-size: 5em;
    }
    
    .header h1::after {
        height: 10px;
    }
    

    
    .author p {
        font-size: 3.5em;
    }
    
    .author img {
        border-radius: 50%;
        box-shadow: 20px 18px 15px 15px rgba(0, 0, 0, 0.63);
        -webkit-box-shadow: 20px 18px 15px 15px rgba(0, 0, 0, 0.63);
        -moz-box-shadow: 20px 18px 15px 15px rgba(0, 0, 0, 0.63);
        margin-right: 8%;
        height: 350px;
    }
    
        .content {
        flex: 4;
        padding: 1% 2% 3% 2%;
        position: relative;
        overflow-y: scroll;
    }
    
    
    .text {
        position: relative;
        overflow-y: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        width: 100%;
        height: 90vh;
        color: #3e3e3e;
    }
    
    .text::-webkit-scrollbar {
        display: none;
    }
    
    .field {
        flex-direction: column;
    }
    

    .arrow {
        width: 0;
        height: 40px;
    }
    
    .arrow::after {
        content: '';
        display: block;
        position: absolute;
        top: 100%;
        left: -5px;
        width: 5px;
        height: 10px;
    }
    
    
    .text h1 {
        font-size: 3em;
        text-align: center;
    }
    
    .text p {
        margin: 1em;
        font-size: 2em;
        text-align: justify;
    }
    
    
    .text span {
        font-size: 2em;
        font-weight: 500;
    }
    
    .text ul {
        margin: 1em;
        list-style: none;
    }
    
    .text ul li {
        font-size: 2em;
        margin: 0.7em 0;
    }




    

	/* Footer Part================================ */

	.footer {
		background-color: #141414;
		padding: 2em 3em;
	}

	.footer-logo {
		align-self: center;
		padding-bottom: 1rem;
	}

	.footer-logo img {
		width: 17em;
	}

	.footer-content {
		margin: 0;
		display: flex;
		flex-direction: row;
		padding: 1em;
		justify-content: space-between;
	}

	.footer-menu {
		padding-top: 2rem;
		justify-content: center;
		display: flex;
		flex-direction: row;
		gap: 4em;
	}

	.footer-menu li {
		align-items: center;
		display: block;
		margin: 0em;
		padding: 0;
	}

	.footer-menu a {
		padding: 0;
		margin: 0;
		font-size: 2.8rem;
	}

	.social-icons {
		padding-top: 3rem;
		align-items: center;
		gap: 4em;
		display: flex;
	}

	.social-icons li {
		margin: 0em;
		display: block;
	}

	.social-icons li:last-child {
		margin-right: 0;
	}

	.social-icons li a {
		font-size: 3em;
	}

	.footer-bottom {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap-reverse;
		justify-content: center;
		align-items: center;
		gap: 2em;
	}

	.footer-bottom p {
		margin: 0.5em;
		color: var(--front-color);
		font-size: 2.2em;
		font-weight: 500;
		text-align: center;
	}

}