@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;
	}
}



.container {
	max-width: 100%;
	width: 90%;
	margin: 2em 4em;
}

/* -======= Contact =====- */

.contact {
	background-color: var(--primary-color);
}

.cont {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.contact-text,
.contact-form {
	width: 45%;
	height: 29em;
	background-color: rgba(20, 20, 20, 0.1);
	padding: 2em 2em;
	border-radius: 0.5em;
	margin-bottom: 2em;
}

.heading {
	font-size: 1.5em;
	margin-bottom: 3em;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
}

.contact-text h6 {
	font-size: 1em;
	margin-top: 2em;
	margin-bottom: 0.2em;
}

.cont .contact-form form {
	display: flex;
	flex-direction: column;
}

.cont .contact-form form label {
	padding: 1em 0;
	font-weight: 600;
}

.cont .contact-form form input,
.cont .contact-form form textarea {
	padding: 1em;
	border-radius: 0.5em;
	outline: none;
	border: none;
}

.btn {
	margin-top: 1.5em;
	height: 3em;
	border-radius: 0.5em;
	outline: none;
	border: none;
	background-color: rgba(255, 255, 255, 0.5);
	color: var(--black-color);
	text-transform: uppercase;
	letter-spacing: 0.5em;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.btn:hover {
	letter-spacing: 0.2em;
	background-color: rgb(20, 20, 20);
	color: var(--primary-color);
}



/* 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: 2rem;
		margin-bottom: 0.5em;
	}




	.container {
		width: 100%;
		margin: 0 auto;
		padding: 1em;
	}

	/* -======= Contact =====- */


	.cont {
		flex-direction: column;
	}

	.contact-text,
	.contact-form {
		width: 100%;
		height: auto;
		padding: 1em;
		border-radius: 0.5em;
		margin-bottom: 1em;
	}

	.heading {
		font-size: 1em;
		margin-bottom: 1em;
		text-transform: capitalize;
	}

	.contact-text p {
		font-size: 0.8em;
		padding-left: 1em;
	}

	.contact-text h6 {
		font-size: 0.8em;
		margin: 0.5em;
	}

	.cont .contact-form form label {
		font-size: 0.8em;
	}



	/* 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: 2rem;
		margin-bottom: 0.5em;
	}

	.container {
		width: 100%;
		margin: 0 auto;
		padding: 1em;
	}

	/* -======= Contact =====- */


	.cont {
		flex-direction: column;
	}

	.contact-text,
	.contact-form {
		width: 100%;
		height: auto;
		padding: 1em;
		border-radius: 0.5em;
		margin-bottom: 1em;
	}

	.heading {
		font-size: 1em;
		margin-bottom: 1em;
		text-transform: capitalize;
	}

	.contact-text p {
		font-size: 0.8em;
		padding-left: 1em;
	}

	.contact-text h6 {
		font-size: 0.8em;
		margin: 0.5em;
	}

	.cont .contact-form form label {
		font-size: 0.8em;
	}




	/* 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: 2.5rem;
		margin-bottom: 0.5em;
	}

	.container {
		width: 100%;
		margin: 0 auto;
		padding: 1em;
	}

	/* -======= Contact =====- */


	.cont {
		flex-direction: column;
	}

	.contact-text,
	.contact-form {
		width: 100%;
		height: auto;
		padding: 1em;
		border-radius: 0.5em;
		margin-bottom: 1em;
	}

	.heading {
		font-size: 1.2em;
		margin-bottom: 1em;
		text-transform: capitalize;
	}

	.contact-text p {
		font-size: 1em;
		padding-left: 1em;
	}

	.contact-text h6 {
		font-size: 1em;
		margin: 0.5em;
	}

	.cont .contact-form form label {
		font-size: 1em;
	}





	/* 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: 2rem;
		margin-bottom: 0.5em;
	}


	.container {
		width: 100%;
		margin: 0 auto;
		padding: 1em 4em;
	}

	/* -======= Contact =====- */


	.cont {
		flex-direction: column;
	}

	.contact-text,
	.contact-form {
		width: 100%;
		height: auto;
		padding: 1em;
		border-radius: 0.5em;
		margin-bottom: 1em;
	}

	.heading {
		font-size: 1.2em;
		margin-bottom: 1em;
		text-transform: capitalize;
	}

	.contact-text p {
		font-size: 1em;
		padding-left: 1em;
	}

	.contact-text h6 {
		font-size: 1em;
		margin: 0.5em;
	}

	.cont .contact-form form label {
		font-size: 1em;
	}




	/* 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: 2rem;
		margin-bottom: 0.5em;
	}


	.container {
		width: 100%;
		margin: 0 auto;
		padding: 1em;
	}

	/* -======= Contact =====- */


	.cont {
		justify-content: space-between;
	}

	.contact-text,
	.contact-form {
		width: 22em;
		height: 27em;
		padding: 1em;
		border-radius: 0.5em;
		margin-bottom: 1em;
	}

	.heading {
		font-size: 1.8em;
		margin-bottom: 3em;
		text-transform: capitalize;
	}

	.contact-text p {
		font-size: 1em;
		padding-left: 1em;
	}

	.contact-text h6 {
		font-size: 1em;
		margin-bottom: 2em;
	}

	.cont .contact-form form label {
		font-size: 1em;
	}




	/* 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: 2.5rem;
		margin-bottom: 0.5em;
	}


	.container {
		width: 100%;
		margin: 0 auto;
		padding: 1em 3em;
	}

	/* -======= Contact =====- */


	.cont {
		justify-content: space-between;
	}

	.contact-text,
	.contact-form {
		width: 28em;
		height: 27em;
		padding: 1em;
		border-radius: 0.5em;
		margin-bottom: 1em;
	}

	.heading {
		font-size: 2em;
		margin-bottom: 3em;
		text-transform: capitalize;
	}

	.contact-text p {
		font-size: 1em;
		padding-left: 1em;
	}

	.contact-text h6 {
		font-size: 1em;
		margin-bottom: 1em;
	}

	.cont .contact-form form label {
		font-size: 1em;
	}




	/* 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: 0.5em;
	}

	header h1 {
		font-size: 2.8rem;
		margin-bottom: 0.5em;
	}

	.container {
		width: 100%;
		margin: 0 auto;
		padding: 1em 3em;
	}

	/* -======= Contact =====- */


	.cont {
		justify-content: space-between;
		gap: 3em;
	}

	.contact-text,
	.contact-form {
		width: 100%;
		height: 31em;
		padding: 1.5em;
		border-radius: 0.5em;
		margin-bottom: 1em;
	}

	.contact-text p {
		font-size: 1.2em;
		padding-left: 2em;
	}


	p.heading {
		font-size: 1.5em;
		margin-bottom: 2em;
		text-transform: capitalize;
	}

	.contact-text h6 {
		font-size: 1.2em;
		margin-bottom: 1em;
	}

	.cont .contact-form form label {
		font-size: 1.2em;
	}

	.btn {
		font-size: 1em;
	}




	/* 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: 0.5em;
	}

	header h1 {
		font-size: 5rem;
		margin-bottom: 0.5em;
	}


	.container {
		width: 100%;
		margin: 0 auto;
		padding: 1em 7em;
	}

	/* -======= Contact =====- */


	.cont {
		justify-content: space-between;
		gap: 3em;
	}

	.contact-text,
	.contact-form {
		width: 100%;
		height: 65em;
		padding: 3.5em;
		border-radius: 1.5em;
		margin-bottom: 2em;
	}

	.contact-text p {
		font-size: 2.5em;
		padding-left: 2em;
	}


	p.heading {
		font-size: 3.5em;
		margin-bottom: 2em;
		text-transform: capitalize;
	}

	.contact-text h6 {
		font-size: 2.5em;
		margin-bottom: 1em;
	}

	.cont .contact-form form label {
		font-size: 2.5em;
	}

	.cont .contact-form form input {
		font-size: 1.8em;
	}

	.cont .contact-form form textarea {
		height: 18em;
	}


	.btn {
		font-size: 2em;
	}



	/* 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;
	}

}