@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: 2rem;
    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;
    }
}



.blog {
	padding: 1em 2em;
	justify-content: center;
	align-items: center;
	text-align: justify;
}

.content {
	width: 100%;
	gap: 1em;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.content img {
	width: 30vw;
	height: 40vh;
	box-shadow: 1px 1px 5px 2px #000;
    border-radius: 0.5em;
}

.content p {
	font-size: 1em;
	padding: 0.5em 1em;
	color: #000000;
    text-align: center;
}

.paragraph {
	padding: 0.5em 1em;
	font-size: 1em;
	color: #000000;
	width: 100%;
	justify-content: center;
	align-items: center;
}

.paragraph p {
	margin: 1em 0;
}

.container-table {
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    color: var(--overlay-color);
    backdrop-filter: blur(20px);
	border: 2px solid #fff;
	width: fit-content;
	padding: 1em 4em;
    margin-bottom: 2em;
    box-shadow: 0 0 10px #000;
    border-radius: 0.5em;
}

.container-table ul {
	list-style:circle;
}





/* 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 {
        text-align: center;
        padding: 0.5em;
    }
    
    header h1 {
        font-size: 0.8rem;
        margin-bottom: 0;
        text-shadow: 0.5px 0.5px var(--black-color);
    }

    .blog {
        padding: 1em;
        display: flex;
        flex-direction: column;
    }
    
    .content {
        flex-direction: column;

    }
    
    .content img {
        width: 80vw;
        height: 40vh;
        box-shadow: 1px 1px 5px 2px #000;
        border-radius: 0.5em;
    }
    
    .content p {
        font-size: 0.8em;
        padding: 0.5em;
        text-align: center;
    }
    
    .paragraph {
        padding: 0.5em;
        font-size: 0.8em;
    }
    
    .paragraph p {
        margin: 1em 0;
    }
 
    .container-table {
        padding: 1em 2em;
    }

    

	/* 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 {
        text-align: center;
        padding: 0.5em;
    }
    
    header h1 {
        font-size: 1rem;
        margin-bottom: 0;
        text-shadow: 0.5px 0.5px var(--black-color);
    }

    .blog {
        padding: 1em;
        display: flex;
        flex-direction: column;
    }
    
    .content {
        flex-direction: column;

    }
    
    .content img {
        width: 80vw;
        height: 30vh;
        box-shadow: 1px 1px 5px 2px #000;
        border-radius: 0.5em;
    }
    
    .content p {
        font-size: 1rem;
        padding: 0.5em;
        text-align: center;
    }
    
    .paragraph {
        padding: 0.5em;
        font-size: 1rem;
    }
    
    .paragraph p {
        margin: 1em 0;
    }
 
    .container-table {
        padding: 1em 2em;
    }



    

	/* 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 {
        text-align: center;
        padding: 0.5em;
    }
    
    header h1 {
        font-size: 1.2rem;
        margin-bottom: 0;
        text-shadow: 0.5px 0.5px var(--black-color);
    }

    .blog {
        padding: 1em;
        display: flex;
        flex-direction: column;
    }
    
    .content {
        flex-direction: column;

    }
    
    .content img {
        width: 80vw;
        height: 30vh;
        box-shadow: 1px 1px 5px 2px #000;
        border-radius: 0.5em;
    }
    
    .content p {
        font-size: 0.8em;
        padding: 0.5em;
        text-align: center;
    }
    
    .paragraph {
        padding: 0.5em;
        font-size: 0.8em;
    }
    
    .paragraph p {
        margin: 1em 0;
    }
 
    .container-table {
        padding: 1em 2em;
    }


    

	/* 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 {
        text-align: center;
        padding: 0.5em;
    }
    
    header h1 {
        font-size: 1.5rem;
        margin-bottom: 0;
        text-shadow: 0.5px 0.5px var(--black-color);
    }

    .blog {
        padding: 1em;
        display: flex;
        flex-direction: column;
    }
    
    .content {
        flex-direction: column;

    }
    
    .content img {
        width: 80vw;
        height: 50vh;
        box-shadow: 1px 1px 5px 2px #000;
        border-radius: 0.5em;
    }
    
    .content p {
        font-size: 1em;
        padding: 0.5em;
        text-align: center;
    }
    
    .paragraph {
        padding: 0.5em;
        font-size: 1em;
    }
    
    .paragraph p {
        margin: 1em 0;
    }
 
    .container-table {
        padding: 1em 2em;
    }



    

	/* 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 {
        text-align: center;
        padding: 0.5em;
    }
    
    header h1 {
        font-size: 1.8rem;
        margin-bottom: 0;
        text-shadow: 0.5px 0.5px var(--black-color);
    }

    .blog {
        padding: 1em 1.5em;
        display: flex;
        flex-direction: column;
    }

    
    .content img {
        width: 60vw;
        height: 40vh;
        box-shadow: 1px 1px 5px 2px #000;
        border-radius: 0.5em;
    }
    
    .content p {
        font-size: 1em;
        padding: 1em;
        text-align: center;
    }
    
    .paragraph {
        padding: 1em;
        font-size: 1em;
    }
    
    .paragraph p {
        margin: 1em 0;
    }
 
    .container-table {
        padding: 1em 3em;
    }



    
	/* 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 {
        text-align: center;
        padding: 0.5em;
    }
    
    header h1 {
        font-size: 2rem;
        margin-bottom: 0;
        margin-top: 1em;
        text-shadow: 1px 1px var(--black-color);
    }

    .blog {
        padding: 1em 1.5em;
        display: flex;
        flex-direction: column;
    }

    
    .content img {
        width: 60vw;
        height: 40vh;
        box-shadow: 1px 1px 5px 2px #000;
        border-radius: 0.5em;
    }
    
    .content p {
        font-size: 1em;
        padding: 1em;
        text-align: center;
    }
    
    .paragraph {
        padding: 1em;
        font-size: 1em;
    }
    
    .paragraph p {
        margin: 1em 0;
    }
 
    .container-table {
        padding: 1em 3em;
    }

    
	/* 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 {
        text-align: center;
        padding: 1em 4em;
    }
    
    header h1 {
        font-size: 2.5rem;
        margin-bottom: 0;
        margin-top: 1em;
        text-shadow: 1px 1px var(--black-color);
    }

    .blog {
        padding: 1em 4em;
        display: flex;
        flex-direction: column;
    }

    
    .content img {
        width: 50vw;
        height: 40vh;
        box-shadow: 1px 1px 5px 2px #000;
        border-radius: 0.5em;
    }
    
    .content p {
        font-size: 1.2em;
        padding: 1em;
        text-align: center;
    }
    
    .paragraph {
        padding: 1em;
        font-size: 1.2em;
    }
    
    .paragraph p {
        margin: 1em 0;
    }
 
    .container-table {
        padding: 1em 4em;
    }


    
	/* 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: 0.8em;
		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 {
        text-align: center;
        padding: 1em 4em;
    }
    
    header h1 {
        font-size: 5rem;
        margin-bottom: 0;
        margin-top: 1em;
        text-shadow: 1px 1px var(--black-color);
    }

    .blog {
        padding: 2em 6em;
        display: flex;
        flex-direction: column;
    }

    
    .content img {
        width: 40vw;
        height: 50vh;
        box-shadow: 1px 1px 5px 2px #000;
        border-radius: 0.5em;
    }
    
    .content p {
        font-size: 2em;
        padding: 1em;
        text-align: center;
    }
    
    .paragraph {
        padding: 1em;
        font-size: 2em;
    }
    
    .paragraph p {
        margin: 1em 0;
    }
 
    .container-table {
        padding: 1em 6em;
    }



    
	/* 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;
	}

}