@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap");

:root {
	--primary: #dfe6e9;
	--secondary: #0984e3;
	--text: #2d3436;
	--border: 0.1rem solid rgba(0, 0, 0, 0.2);
	--box-shadow: 0.4rem 0.4rem 1rem #ccc,
	-0.4rem -0.4rem 1rem #fff;
	--box-shadow-inset: 0.4rem 0.4rem 1rem #ccc inset,
	-0.4rem -0.4rem 1rem #fff inset;
}

* {
	scroll-behavior: smooth;
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	border: none;
	text-decoration: none;
	transition: 0.2s linear;
	-webkit-tap-highlight-color: transparent;
}

::selection {
	background: #eaaff3;
	color: var(--text);
}

::-moz-selection {
	background: #eaaff3;
	color: var(--text);
}

body {
	overflow-x: hidden !important;
}

nav {
	background-color: #e1b6ff !important;
}

nav a.nav-link {
	margin-left: 1rem;
}

nav a.nav-link:hover {
	color: #111;
	transition: color 0.2s;
}

@media (max-width: 767px) {

	nav .navbar-nav > a#aboutus {
		display: none;
	}

}

footer {
	width: 100vw;
	background: #f2cef8;
	background: #e1b6ff;
}

footer * {
	margin: revert !important;
	margin-top: 0rem !important;
	margin-bottom: 0rem !important;
}

footer .footer-wrapper {
	position: relative;
	padding: 1rem 2rem;
	max-width: 2000px;
	margin: auto;
	left: 50%;
	transform: translate(-50%, 0%);
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
}

footer .footer-wrapper .row1 {
	width: 100%;
	display: flex;
	flex-direction: row;
	padding-top: 0.5rem;
}

footer .footer-wrapper .row1 a {
	color: #222;
}

footer .footer-wrapper .row1 > div {
	flex: 1;
} 

footer .footer-wrapper .row1 .contact {
	text-align: left;
}

footer .footer-wrapper .row1 .contact .top-text {
	padding-bottom: 0.5rem;
	font-weight: bold;
}

footer .footer-wrapper .row1 .contact .bottom {
	display: flex;
	flex-direction: row;
	gap: 25px;
}

footer .footer-wrapper .row1 .primary {
	text-align: center;
}

footer .footer-wrapper .row1 .primary .copyright {
	padding-bottom: 0.5rem;
}

footer .footer-wrapper .row1 .primary .copyright .things {
	align-items: center;
	margin: auto;
}

footer .footer-wrapper .row1 .primary .copyright .things > * {
	display: inline;
}

footer .footer-wrapper .row1 .primary .copyright .things .far {
	padding-right: 0.5rem;
}

footer .footer-wrapper .row1 .follow {
	text-align: right;
}

footer .footer-wrapper .row1 .follow .top-text {
	padding-bottom: 0.5rem;
	font-weight: bold;
}

footer .footer-wrapper .row1 .follow .icons a {
	padding-left: 1.25rem;
	color: #222;
	font-size: 1.5rem;
}

footer .footer-wrapper .row1 .follow .icons a > span {
	transition: color 0.1s linear;
}

footer .footer-wrapper .row1 .follow .icons a > span:hover {
	color: #555;
}

footer .footer-wrapper .row2 {
	display: flex;
	flex-direction: row;
	padding: 2rem 0rem 1rem 0rem;
	gap: 2rem;
	justify-content: center;
}

footer .footer-wrapper .row3 {
	padding: 0rem 0rem 0rem 0rem;
	font-size: 0.8rem;
	text-align: center;
	line-height: 2.0;
}

@media (max-width: 1200px) {

	footer .footer-wrapper .row1 .contact .bottom {
		flex-direction: column;
		gap: 0.5rem;
	}

}

@media (max-width: 600px) {

	footer .footer-wrapper .row1 {
		flex-direction: column;
	}

	footer .footer-wrapper .row1 .primary {
		order: -1;
	}

	footer .footer-wrapper .row1 .primary .copyright {
		font-weight: bold;
	}

	footer .footer-wrapper .row1 > * {
		width: 100% !important;
		text-align: center !important;
		padding: 1rem 0rem 2rem 0rem;
	}

	footer .footer-wrapper .row1 .follow .icons a:first-child {
		padding-left: 0rem;
	}

	footer .footer-wrapper .row2 {
		flex-direction: column;
		gap: 0.25rem;
		width: 100%;
	}

	footer .footer-wrapper .row2 > * {
		width: 100%;
		text-align: center;
	}
	
}






























