@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=Jost:wght@300;400;500;600;700;800&family=Nunito+Sans:wght@300;400;500;700&family=Outfit:wght@200;300;400;500;600;700;800;900&display=swap');

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body {
	font-family: 'Nunito Sans', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: #3E536B;
}

/* width */
::-webkit-scrollbar {
	width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.section.min-conten {
	width: 100%;
	float: left;
}

.min-left {
	float: left;
	width: 320px;
	background: #737373;
	height: 100vh;
	overflow: auto;
	padding: 20px 16px;
	position: relative;
}

.min-right {
	float: left;
	width: calc(100% - 320px);
	height: 100vh;
	padding: 20px 0px;
	overflow: auto;
}

.proile-info h4 {
	font-size: 16px;
}

.proile-info h4 small {
	font-size: 13px;
}

.proile-info p {
	font-size: 12px;
	margin-bottom: 0px;
}

.proile-info.text-center {
	padding-bottom: 20px;
	border-bottom: 2px solid;
	margin-bottom: 20px;
}

.proile-info img {
	width: 160px;
	height: 160px;
	object-fit: cover;
	border-radius: 50%;
	/* border: 6px solid #f5f5f5; */
	margin-bottom: 16px;
}

.home-banner img {
	border-radius: 16px;
}


.navbar-menu {
	float: left;
	width: 100%;
	text-align: center;
}

.navbar-menu ul {
	list-style: none;
	padding: 0px;
	margin: 0px;

}

.navbar-menu ul li {
	padding: 8px 4px;
}

.navbar-menu ul li a {
	color: #ccc;
	text-decoration: none;
	outline: none;
	text-transform: uppercase;
}

.navbar-menu ul li a:hover,
.navbar-menu ul li a.active {
	color: #fff;

}

.socuilmedia {
	margin-top: 20px;
	width: 100%;
	text-align: center;
	left: 0;
	bottom: 0;
	float: left;
}

.socuilmedia a {
	color: #fff;
	text-decoration: none;
	outline: none;
	text-transform: uppercase;
	margin: 4px 8px;
	font-size: 16px;
}

.toggolebutton {
	position: fixed;
	background: #737373;
	color: #fff;
	padding: 12px;
	border-radius: 0px 12px 12px 0px;
	box-shadow: 0px 0px 8px #212320;
	top: 18px;
	display: none;
}

.close-bt {
	position: absolute;
	top: 10px;
	font-size: 25px;
	color: #fff;
	right: 12px;
	cursor: pointer;
	display: none;
}

.socuilmedia~p {
	color: #fff;
	text-align: center;
	padding: 20px 0px 0px;
	display: block;
	/* position: relative; */
	float: left;
	width: 100%;
}

.socuilmedia~p a {
	display: block;
	color: #fff;
}

@media(max-width:767px) {

	.close-bt,
	.toggolebutton {
		display: block;
	}

	.min-left {
		width: 280px;
		position: fixed;
		transform: translate(-100%);
		transition: all 2s;
	}

	.min-right {
		width: 100%;
	}

	.min-left.open {
		transform: translate(-0%);
		transition: all 2s;
	}
}