html,
body {
	height: 100%;
	margin: 0;
}

body {
	background-color: #fff;
	font-family: 'Metropolis', sans-serif;
}

.btn:focus {
	box-shadow: none !important;
}

/* .h-full {
	height: 100%;
} */

.main {
    /* border: 5px solid #fff; */
	/* transition: 1s; */
}
.main-row {
	padding: 0px 0px 0px 0px;
	background-color: #f8f9fa;
}
.left_panel .logo{
	display: block;
	width: 100%;
	text-align: center;
}
.left_panel .logo img {
	width: 300px;
}
.menu_wrapper{
	width: 30%;
	overflow-y: scroll;
	height: 100vh;
}
.menu_wrapper::-webkit-scrollbar {
	width: 20px;
}

/* Track */
.menu_wrapper::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px #f8f9fa;
	border-radius: 10px;
}

/* Handle */
.menu_wrapper::-webkit-scrollbar-thumb {
	background: #f8f9fa;
	border-radius: 10px;
}

/* Handle on hover */
.menu_wrapper::-webkit-scrollbar-thumb:hover {
	background: #f8f9fa;
}
.content_wrapper{
	width: 70%;
}
.accordion_box{
	padding: 0px 30px;
}
.right_panel {
	background: #253A68;
	/* border-radius: 16px; */
	padding: 70px 100px;
	/* transition: 1s; */
	height: 100vh;
}

.right_panel .main_banner {
	width: 60%;
	margin: auto;
}

.right_panel .main_banner img {
	width: 100%;
}

.right_panel h6 {
	font-size: 26px;
	line-height: 32px;
	font-weight: 600;
	color: #F5F6F7;
	text-align: center;
}

ul.accordion-list {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	padding: 0px;
	margin: 0;
	list-style: none;
}

ul.accordion-list li {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto 15px auto;
	cursor: pointer;
}

ul.accordion-list li .accordion-heading {
	display: flex;
	align-items: center;
	padding: 15px 15px;
	height: 60px;
	/* margin: 0px 0px 0px 35px; */
}

ul.accordion-list li .accordion-heading svg {
	width: 95px;
}

ul.accordion-list li.active h3:after {
	transform: rotate(180deg);
	top: -1px;
}

ul.accordion-list li h3 {
	font-weight: 500;
	color: #B2B0B0;
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	padding: 0 0 0 0;
	margin: 0;
	font-size: 16px;
	line-height: 16px;
	cursor: pointer;
}

ul.accordion-list li h3:after {
	content: "\f107";
	font-family: "FontAwesome";
	position: absolute;
	right: 0;
	top: -1px;
	color: #B2B0B0;
	transition: all 0.3s ease-in-out;
	font-size: 24px;
}

ul.accordion-list li div.accordion-content {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	cursor: pointer;
	padding: 15px 30px 15px 50px;

}

ul.accordion-list li div.accordion-content p {
	position: relative;
	display: block;
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	color: #B2B0B0;
}

.btn-visit {
	/* text-decoration: underline; */
	color: #333333;
	font-weight: 400;
	font-size: 16px;
	line-height: 16px;
	border-radius: 15px;
	background-color: transparent;
}

.progress-bar-custom {
	position: absolute;
	left: 50%;
	width: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.progress-bar-custom .main-logo {
	width: 100%;
	margin: auto;
}

.progress-bar-custom .main-logo img {
	width: 100%;
}

.progress {
	background: rgba(255, 255, 255, 0.1);
	justify-content: flex-start;
	border-radius: 100px;
	align-items: center;
	position: relative;
	padding: 0 5px;
	display: flex;
	height: 10px;
	width: 70%;
	margin: auto;
}

.progress-value {
	animation: load 3s normal forwards;
	box-shadow: 0 10px 40px -10px #fff;
	border-radius: 100px;
	background: #66C4D6;
	height: 10px;
	width: 0;
}

@keyframes load {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
	}
}

.hide-md{
	display: none;
}
