* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	direction: ltr;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	font-size: 100%;
	margin: 0 !important;
}

body {
	background-color: #FFF;
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	/* line-height: 22px; */
	margin: 0;
	padding: 0;
	overflow-y: scroll;
	text-align: left;
	height: 100vh;
}

.section {
	padding-top: 25px;
	padding-bottom: 20px;
	/* padding-right: 20px; */
}


a {
	text-decoration: none !important;
}

body a {
	outline: none !important;
	text-decoration: none;
}


li {
	line-height: 24px;

}


.body {
	background-color: #FFF;
	max-width: 2560px;
	margin: 0px auto;
}


#header {
	position: relative;
	z-index: 1030;
	-webkit-transition: ease min-height 300ms;
	transition: ease min-height 300ms;
}

#header .header-body {
	display: -webkit-box;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	/* background: #FFF; */
	-webkit-transition: min-height 0.3s ease;
	transition: min-height 0.3s ease;
	width: 100%;
	z-index: 1001;
}


#header .container {
	position: relative;
}


#header .header-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-item-align: stretch;
	align-self: stretch;
	max-height: 100%;
}

#header .header-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-item-align: stretch;
	/* align-self: stretch; */
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}


#header .header-logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-item-align: stretch;
	align-self: stretch;
	position: relative;
	float: left;
}

#header .header-logo img {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: relative;
	top: 0;
}

#header .header-btn-collapse-nav {
	display: none;
	background: transparent;
	color: #1c1f21;
	outline: 0;
	border: none;
	width: 30px;
	height: 30px;
	padding: 0;
	margin: 16px 0;
}

#header .header-btn-collapse-nav .hamburguer span {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 3px;
	background: #fff;
	-webkit-transition: ease width 300ms;
	transition: ease width 300ms;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

#header .header-btn-collapse-nav .hamburguer span:nth-child(1) {
	top: 30%;
}

#header .header-btn-collapse-nav .hamburguer span:nth-child(2) {
	-webkit-transition-delay: 100ms;
	transition-delay: 100ms;
}

#header .header-btn-collapse-nav .hamburguer span:nth-child(3) {
	top: 70%;
	-webkit-transition-delay: 200ms;
	transition-delay: 200ms;
}

#header .header-btn-collapse-nav .close {
	opacity: 0;
	-webkit-transition: ease all 300ms;
	transition: ease all 300ms;
}

#header .header-btn-collapse-nav .close span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 1px;
	background: #fff;
	-webkit-transition: ease all 300ms;
	transition: ease all 300ms;
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
}

#header .header-btn-collapse-nav .close span:nth-child(1) {
	-webkit-transform: translateX(-50%) rotate(45deg);
	transform: translateX(-50%) rotate(45deg);
}

#header .header-btn-collapse-nav .close span:nth-child(2) {
	-webkit-transform: translateX(-50%) rotate(-45deg);
	transform: translateX(-50%) rotate(-45deg);
}

#header .header-btn-collapse-nav.active .hamburguer {
	opacity: 0;
}

#header .header-btn-collapse-nav.active .hamburguer span {
	width: 0;
}

#header .header-btn-collapse-nav.active .close {
	opacity: 1;
	-webkit-transition: ease all 300ms;
	transition: ease all 300ms;
}

#header .header-btn-collapse-nav.active .close span {
	width: 80%;
	-webkit-transition: ease all 300ms;
	transition: ease all 300ms;
}

#header .header-btn-collapse-nav.active .close span:nth-child(2) {
	-webkit-transition-delay: 300ms;
	transition-delay: 300ms;
}

#header .header-btn-collapse-nav.header-btn-collapse-nav-light .hamburguer span,
#header .header-btn-collapse-nav.header-btn-collapse-nav-light .close span {
	background: #FFF;
}

#header.header-effect-shrink .header-container {
	min-height: 100px;
}

#header.header-container-no-min-height .header-container {
	min-height: 0;
}

#header.header-no-border-bottom .header-body {
	border-bottom: 0;
}

@-webkit-keyframes headerReveal {
	from {
		top: -150px;
	}

	to {
		top: 0;
	}
}

@keyframes headerReveal {
	from {
		top: -150px;
	}

	to {
		top: 0;
	}
}

html.sticky-header-active #header.header-effect-reveal .header-body {
	-webkit-animation: headerReveal 300ms;
	animation: headerReveal 300ms;
}

html.sticky-header-active #header.header-no-border-bottom .header-body {
	border-bottom: 1px solid rgba(204, 204, 204, 0.2);
}

html.sticky-header-active #header.header-effect-shrink .header-body .header-top {
	max-height: 0;
}

html #header.header-transparent {
	min-height: 0 !important;
	width: 100%;
	/* position: absolute; */
}

html #header.header-transparent .header-body {
	position: relative;
	top: 0;
	background: transparent;
}


html #header.header-transparent .header-container {
	min-height: 92px;
}

html #header.header-transparent .header-container:after {
	content: none;
}

html #header.header-transparent .header-nav-main {
	/* padding: 0 16px;
	padding: 0 1rem; */
	-webkit-transition: ease padding 300ms;
	transition: ease padding 300ms;
}

html #header.header-transparent .header-nav-main:before {
	/* width: 100%; */
	-webkit-transition: ease width 300ms;
	transition: ease width 300ms;
}

html #header.header-transparent-dark .header-body:before {
	background: #1c1f21;
}

html.sticky-header-enabled #header.header-transparent .header-body {
	position: fixed;
}

html:not(.sticky-header-active) #header.header-transparent .header-body {
	border-bottom: 0;
}

@media (min-width: 992px) {
	html:not(.sticky-header-active) #header.header-transparent .header-nav-main nav>ul>li>a:not(.active) {
		color: #FFF;
	}

	html:not(.sticky-header-active) #header.header-transparent .header-nav-main.header-nav-main-dark nav>ul>li>a:not(.active) {
		color: #1c1f21;
	}
}

html.sticky-header-active #header.header-transparent .header-container:after {
	content: '';
}

html.sticky-header-active #header.header-transparent .header-body:before {
	opacity: 1;
}

html.sticky-header-active #header.header-transparent .header-nav-main:before {
	width: 100vw;
}

@media (max-width: 991px) {
	html.sticky-header-active #header.header-transparent .header-container:after {
		content: '';
	}

	html.sticky-header-active #header.header-transparent .header-nav-main {
		padding: 0;
	}

	html.sticky-header-active.mobile-menu-opened #header.header-transparent .header-container:after {
		content: none;
	}
}

html #header.header-semi-transparent,
html #header.header-semi-transparent-light {
	position: absolute;
	min-height: 0 !important;
	width: 100%;
}

html #header.header-semi-transparent .header-container:after,
html #header.header-semi-transparent-light .header-container:after {
	content: none;
}

html #header.header-semi-transparent .header-body,
html #header.header-semi-transparent-light .header-body {
	background: transparent;
}

html #header.header-semi-transparent .header-body:before,
html #header.header-semi-transparent-light .header-body:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #252A2C;
	border-bottom: 0;
	opacity: 0.1;
	-webkit-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}

html #header.header-semi-transparent .header-nav-main,
html #header.header-semi-transparent-light .header-nav-main {
	padding: 0 16px;
	padding: 0 1rem;
	-webkit-transition: ease padding 300ms;
	transition: ease padding 300ms;
}

html #header.header-semi-transparent .header-nav-main:before,
html #header.header-semi-transparent-light .header-nav-main:before {
	width: 100%;
	-webkit-transition: ease width 300ms;
	transition: ease width 300ms;
}

html #header.header-semi-transparent-light .header-body:before {
	background: #FFF;
}

html:not(.sticky-header-active) #header.header-semi-transparent .header-body,
html:not(.sticky-header-active) #header.header-semi-transparent-light .header-body {
	border-bottom: 0;
}

@media (min-width: 992px) {

	html:not(.sticky-header-active) #header.header-semi-transparent .header-nav-main nav>ul>li:not(.active)>a,
	html:not(.sticky-header-active) #header.header-semi-transparent-light .header-nav-main nav>ul>li:not(.active)>a {
		color: #FFF;
	}
}

@media (min-width: 992px) {
	html.sticky-header-active #header.header-semi-transparent .header-nav-main nav>ul>li:not(.active)>a {
		color: #FFF;
	}
}

html.sticky-header-active #header.header-semi-transparent .header-body {
	border-color: rgba(46, 50, 55, 0.2);
}

html.sticky-header-active #header.header-transparent .header-container:after,
html.sticky-header-active #header.header-semi-transparent-light .header-container:after {
	content: '';
	z-index: 0;
}

html.sticky-header-active #header.header-semi-transparent .header-body:before,
html.sticky-header-active #header.header-semi-transparent-light .header-body:before {
	opacity: 1;
}

@media (max-width: 991px) {

	html #header.header-transparent .header-container:not(.container) .header-nav-main,
	html #header.header-semi-transparent .header-container:not(.container) .header-nav-main,
	html #header.header-semi-transparent-light .header-container:not(.container) .header-nav-main {
		margin: 0 1rem;
	}

	html.sticky-header-active #header.header-semi-transparent .header-nav-main,
	html.sticky-header-active #header.header-semi-transparent-light .header-nav-main {
		padding: 0;
	}

	html.sticky-header-active #header.header-semi-transparent .header-nav-main:before,
	html.sticky-header-active #header.header-semi-transparent-light .header-nav-main:before {
		width: 100vw;
	}
}

@media (max-width: 767px) {
	#header .header-top li {
		font-size: 1.1em;
	}
}

html #header.header-container-bottom-border .header-container:after {
	content: none;
}

html #header.header-container-bottom-border .header-body:after {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}


html.sticky-header-active #header.header-container-bottom-border .header-container .header-container:after {
	content: '';
}

html.sticky-header-active #header.header-container-bottom-border .header-body:after {
	content: none;
}

html #header.header-with-borders .header-body:after,
html #header.header-with-borders-dark .header-body:after {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 100%;
	border-bottom: 0;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

html #header.header-with-borders .header-logo,
html #header.header-with-borders .header-social-icons,
html #header.header-with-borders .header-search,
html #header.header-with-borders .header-button,
html #header.header-with-borders-dark .header-logo,
html #header.header-with-borders-dark .header-social-icons,
html #header.header-with-borders-dark .header-search,
html #header.header-with-borders-dark .header-button {
	border-right: 1px solid rgba(204, 204, 204, 0.2);
	border-left: 1px solid rgba(204, 204, 204, 0.2);
}

html #header.header-transparent .header-body:after,
html #header.header-semi-transparent .header-body:after,
html #header.header-semi-transparent-light .header-body:after {
	border-bottom: 1px solid rgba(204, 204, 204, 0.2);
}

html #header.header-with-borders-dark .header-body:after {
	border-color: rgba(46, 50, 55, 0.8);
}

html #header.header-with-borders-dark .header-logo,
html #header.header-with-borders-dark .header-social-icons,
html #header.header-with-borders-dark .header-search,
html #header.header-with-borders-dark .header-button {
	border-color: rgba(46, 50, 55, 0.8);
}

html.sticky-header-active #header:not(.header-with-borders-sticky).header-with-borders .header-body:after,
html.sticky-header-active #header:not(.header-with-borders-sticky).header-with-borders .header-logo,
html.sticky-header-active #header:not(.header-with-borders-sticky).header-with-borders .header-social-icons,
html.sticky-header-active #header:not(.header-with-borders-sticky).header-with-borders .header-search,
html.sticky-header-active #header:not(.header-with-borders-sticky).header-with-borders .header-button,
html.sticky-header-active #header:not(.header-with-borders-sticky).header-with-borders-dark .header-body:after,
html.sticky-header-active #header:not(.header-with-borders-sticky).header-with-borders-dark .header-logo,
html.sticky-header-active #header:not(.header-with-borders-sticky).header-with-borders-dark .header-social-icons,
html.sticky-header-active #header:not(.header-with-borders-sticky).header-with-borders-dark .header-search,
html.sticky-header-active #header:not(.header-with-borders-sticky).header-with-borders-dark .header-button {
	border-color: transparent;
}

html #header.header-floating {
	position: absolute;
	min-height: 0 !important;
	width: 100%;
}

@media (min-width: 992px) {
	html #header.header-floating {
		top: 45px;
	}
}

html #header.header-floating .header-container:after {
	content: none;
}

html #header.header-floating .header-body {
	margin: 0 auto;
	border-radius: 3px;
}

@media (min-width: 992px) {
	html #header.header-floating .header-body {
		max-width: 960px;
	}

	html #header.header-floating .header-body .header-container {
		padding-right: 30px;
		padding-left: 30px;
	}
}

@media (min-width: 1200px) {
	html #header.header-floating .header-body {
		max-width: 1140px;
	}
}

html.sticky-header-active #header.header-floating .header-container:after {
	content: '';
}

html.sticky-header-active #header.header-floating .header-body {
	max-width: none;
	margin: none;
}

html.sticky-header-active #header.header-floating .header-body .header-container {
	padding-right: 15px;
	padding-left: 15px;
}

html #header.header-dark .header-body {
	background: #202326;
	border-color: rgba(46, 50, 55, 0.2);
}

html #header.header-dark.header-transparent .header-body,
html #header.header-dark.header-semi-transparent .header-body,
html #header.header-dark.header-semi-transparent-light .header-body {
	background: transparent;
}

html #header.header-dark .header-nav-main:before {
	background-color: #202326;
}

html #header.header-dark .header-nav-main nav>ul>li {
	border-color: #2E3237;
}

html #header.header-dark .header-nav-main nav>ul>li>a {
	color: #FFF;
}

html #header.header-dark .header-nav-main nav>ul>li.dropdown .dropdown-menu {
	background-color: #202326;
}

html #header.header-dark .header-nav-main nav>ul>li.dropdown .dropdown-menu li {
	border-color: #2E3237;
}

html #header.header-dark .header-nav-main nav>ul>li.dropdown .dropdown-menu li a {
	color: #777;
}

html #header.header-dark .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-title {
	color: #707070;
}

html #header.header-dark .header-nav.header-nav-line-under-text .header-nav-main nav>ul>li.active>a,
html #header.header-dark .header-nav.header-nav-line-under-text .header-nav-main nav>ul>li:hover>a,
html #header.header-dark .header-nav.header-nav-line-under-text .header-nav-main nav>ul>li:focus>a {
	color: #FFF;
}

html #header.header-dark .header-search form input {
	background: #2E3237;
	color: #333e48;
}

html #header.header-dark .header-search form button {
	background: #2E3237;
}

html #header.header-dark .header-search form button i {
	color: #333e48;
}

html.sticky-header-active #header .header-btn-collapse-nav.on-sticky-dark .hamburguer span,
html.sticky-header-active #header .header-btn-collapse-nav.on-sticky-dark .close span {
	background: #1c1f21;
}

html.sticky-header-active #header .header-btn-collapse-nav.on-sticky-light .hamburguer span,
html.sticky-header-active #header .header-btn-collapse-nav.on-sticky-light .close span {
	background: #FFF;
}

html:not(.sticky-header-active) #header.header-transparent-sticky-deactive .header-body:before {
	background: transparent !important;
}

/* Navigations */
/* Header Nav Main */
@media (min-width: 992px) {
	#header .header-nav {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		/* -webkit-box-flex: 1; */
		-ms-flex-positive: 1;
		/* flex-grow: 1; */
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		-ms-flex-item-align: stretch;
		align-self: stretch;
	}


	#header .header-nav-main {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		height: auto !important;
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
		-ms-flex-item-align: stretch;
		align-self: stretch;
	}

	#header .header-nav-main nav.collapse {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		width: 100%;
	}

	#header .header-nav-main nav>ul {
		width: 100%;
	}

	#header .header-nav-main nav>ul>li {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		height: 100%;
	}

	#header .header-nav-main nav>ul>li+li {
		margin-left: 2px;
	}

	#header .header-nav-main nav>ul>li a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		line-height: 1.42857143;
		/* font-family: "Montserrat", sans-serif; */
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	#header .header-nav-main nav>ul>li a .menu-arrow {
		position: absolute;
		min-width: 30px;
		height: 100%;
		right: 15px;
		top: 0;
	}


	#header .header-nav-main nav>ul>li a.dropdown-item {
		background-color: transparent;
	}

	#header .header-nav-main nav>ul>li>a .menu-arrow {
		display: none;
	}


	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu {
		background: #ffffff;
		top: -10000px;
		display: block;
		opacity: 0;
		left: auto;
		border-radius: 4px;
		border: 0;
		-webkit-box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
		box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
		margin: -3px 0 0 0;
		min-width: 260px;
		padding: 11px 10px 11px 20px;
		text-align: left;
	}

	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li {
		border-bottom: 0;
	}

	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li a:not(.btn) {
		color: #333e48;
		font-size: 0.80rem;
		font-weight: 500;
		padding: 8px 0;
		position: relative;
		text-transform: none;
		-webkit-transition: ease transform 300ms, ease color 300ms;
		transition: ease transform 300ms, ease color 300ms;
	}


	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li:hover>a,
	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li:focus>a {
		color: #333e48;
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}

	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li:last-child {
		border-bottom: 0;
	}

	#header .header-nav-main nav>ul>li.dropdown.open>.dropdown-menu,
	#header .header-nav-main nav>ul>li.dropdown:hover>.dropdown-menu {
		/* ================================================================dropdonw issue */
		top: 75%;
		left: 0;
		display: block;
		opacity: 1;
		margin-top: 0;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega {
		position: static;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega>.dropdown-menu {
		background: #ffffff;
		border-radius: 6px;
		left: 50% !important;
		right: auto !important;
		padding: 0;
		width: 100% !important;
		max-width: 95vw;
		-webkit-transform: translate3d(-50%, 0, 0);
		transform: translate3d(-50%, 0, 0);
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-content {
		padding: 0px;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-content>.row>div {
		padding: 15px 5px 10px 30px;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-content>.row>div:first-child:not(.dropdown-mega-sub-content-block),
	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-content>.row>div+div {
		border-right: 1px solid #e5e5e5;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-content>.row>div:last-child {
		border-right: 0;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-title {
		color: #333e48;
		display: block;
		font-size: 0.92rem;
		font-weight: 500;
		margin-top: 1.2rem;
		padding-bottom: 5px;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-title:first-child {
		margin-top: 0;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-nav {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-nav li a {
		display: block;
		padding: 8px;
		line-height: 1.42857143;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-nav li:hover>a,
	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-nav li:focus>a {
		color: #333e48;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-nav li:last-child a {
		border-bottom: 0;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-content-block {
		position: absolute;
		left: 0;
		top: 0;
		padding: 55px 30px !important;
		height: 100%;
		border-radius: 4px 0 0 4px;
		overflow: hidden;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-content-block.dropdown-mega-sub-content-block-right {
		right: 0;
		left: auto;
		border-radius: 0 4px 4px 0;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-content-block.overlay:before {
		z-index: 0;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-content-block h4 {
		font-size: 1.6em;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-content-block p {
		color: #777;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-content-block .content-block-image {
		position: absolute;
		bottom: 0;
		right: 0;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-content-block .content-block-button {
		display: inline-block;
		border-bottom: none;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-content-block>span,
	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-content-block>h4,
	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-content-block>p,
	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-content-block>a {
		opacity: 0;
		-webkit-transform: translateY(-15%);
		transform: translateY(-15%);
		-webkit-transition: ease transform 300ms, ease opacity 300ms;
		transition: ease transform 300ms, ease opacity 300ms;
	}


	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-content-block>span {
		-webkit-transition-delay: 100ms;
		transition-delay: 100ms;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-content-block>h4 {
		-webkit-transition-delay: 200ms;
		transition-delay: 200ms;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-content-block>p {
		-webkit-transition-delay: 300ms;
		transition-delay: 300ms;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-content-block>img.content-block-image {
		-webkit-transition-delay: 400ms;
		transition-delay: 400ms;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-content-block>a {
		-webkit-transition-delay: 500ms;
		transition-delay: 500ms;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega:hover .dropdown-mega-sub-content-block>span,
	#header .header-nav-main nav>ul>li.dropdown-mega:hover .dropdown-mega-sub-content-block>h4,
	#header .header-nav-main nav>ul>li.dropdown-mega:hover .dropdown-mega-sub-content-block>p,
	#header .header-nav-main nav>ul>li.dropdown-mega:hover .dropdown-mega-sub-content-block>a {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	#header .header-nav-main nav>ul>li.dropdown-mega:hover .dropdown-mega-sub-content-block>img.content-block-image {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	#header .header-nav-main nav>ul>li.dropdown-mega.dropdown-mega-style-2>.dropdown-menu {
		border-radius: 4px;
		width: 100vw !important;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega.dropdown-mega-style-2 .dropdown-mega-sub-content-block {
		position: relative;
		height: auto;
		padding: 25px 40px !important;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega.dropdown-mega-style-2 .dropdown-mega-sub-content-block:before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 15px;
		background: #282D2F;
		z-index: -1;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega.dropdown-mega-style-2 .dropdown-mega-sub-nav .dropdown-submenu .dropdown-menu {
		border-radius: 0;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega.dropdown-mega-signin {
		position: relative;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega.dropdown-mega-signin>.dropdown-menu {
		left: auto !important;
	}

	#header .header-nav-main.header-nav-main-light nav>ul>li>a {
		color: #FFF;
	}

	#header .header-nav-main.header-nav-main-light nav>ul>li>a:hover {
		background: transparent;
	}

	#header .header-nav-main.header-nav-main-dark nav>ul>li>a {
		color: #1c1f21;
	}

	#header .header-nav-main.header-nav-main-dark nav>ul>li>a:hover {
		background: transparent;
	}

	#header .header-nav-main.header-nav-main-uppercase nav>ul>li>a {
		text-transform: uppercase;
		font-weight: 600;
		font-size: 0.75rem;
		padding-left: 1.1em;
		padding-right: 1.1em;
	}
}

@media (min-width: 992px) and (min-width: 992px) and (max-width: 1199px) {
	#header .header-nav-main.header-nav-main-uppercase nav>ul>li>a {
		font-size: 0.70rem;
	}
}

@media (min-width: 992px) {
	#header .header-nav.header-nav-top-line .header-nav-main nav>ul>li>a {
		position: relative;
	}

	#header .header-nav.header-nav-top-line .header-nav-main nav>ul>li>a.active:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		border-top: 3px solid #333e48;
	}

	#header .header-nav.header-nav-top-line .header-nav-main nav>ul>li:hover>a:before,
	#header .header-nav.header-nav-top-line .header-nav-main nav>ul>li:focus>a:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		border-top: 3px solid #333e48;
	}

	#header .header-nav.header-nav-stripe .header-nav-main nav>ul>li {
		margin-left: 0;
	}

	#header .header-nav.header-nav-stripe .header-nav-main nav>ul>li>.dropdown-menu {
		-webkit-box-shadow: 0 21px 55px -20px rgba(0, 0, 0, 0.08);
		box-shadow: 0 21px 55px -20px rgba(0, 0, 0, 0.08);
		border-radius: 0 0 4px 4px;
	}

	#header .header-nav.header-nav-stripe .header-nav-main nav>ul>li>.dropdown-menu:before {
		content: '';
		position: absolute;
		top: -1px;
		left: 0;
		width: 100%;
		border-top: 1px solid rgba(204, 204, 204, 0.3);
	}

	#header .header-nav.header-nav-stripe .header-nav-main nav>ul>li>a {
		border-radius: 0;
		-webkit-transition: none;
		transition: none;
	}

	#header .header-nav.header-nav-stripe .header-nav-main nav>ul>li>a.active {
		background: #333e48;
		color: #FFF;
	}

	#header .header-nav.header-nav-stripe .header-nav-main nav>ul>li:hover>a,
	#header .header-nav.header-nav-stripe .header-nav-main nav>ul>li:focus>a {
		background: #333e48;
		color: #FFF;
	}

	#header .header-nav.header-nav-stripe .header-nav-main nav>ul>li.dropdown-full-color>a {
		color: #777 !important;
	}

	#header .header-nav.header-nav-stripe .header-nav-main nav>ul>li.dropdown-full-color>a.active {
		color: #FFF !important;
	}

	#header .header-nav.header-nav-stripe .header-nav-main nav>ul>li.dropdown-full-color:hover>a,
	#header .header-nav.header-nav-stripe .header-nav-main nav>ul>li.dropdown-full-color:focus>a {
		color: #FFF !important;
	}

	#header .header-nav.header-nav-light-dropdown .header-nav-main nav>ul>li.dropdown .dropdown-menu {
		background-color: #FFF;
	}

	#header .header-nav.header-nav-light-dropdown .header-nav-main nav>ul>li.dropdown .dropdown-menu li:hover>a,
	#header .header-nav.header-nav-light-dropdown .header-nav-main nav>ul>li.dropdown .dropdown-menu li:focus>a {
		color: #333e48;
	}

	#header .header-nav.header-nav-light-dropdown .header-nav-main nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu .dropdown-menu {
		background-color: #FFF;
	}

	#header .header-nav.header-nav-light-dropdown .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-content>.row>div {
		border-color: #F1F3F7;
	}

	#header .header-nav.header-nav-light-dropdown .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-title {
		color: #1c1f21;
	}

	#header .header-nav.header-nav-light-dropdown .header-nav-main nav>ul>li.dropdown-mega.dropdown-mega-style-2 .dropdown-mega-sub-content-block:before {
		background-color: #333e48;
	}

	#header .header-nav.header-nav-light-dropdown .header-nav-main nav>ul>li.dropdown-mega.dropdown-mega-style-2 .dropdown-mega-sub-content-block .content-block-button {
		color: #FFF !important;
	}


	#header .header-nav.header-nav-sub-title .header-nav-main nav>ul>li>a>span,
	#header .header-nav.header-nav-sub-title-animated .header-nav-main nav>ul>li>a>span {
		font-size: 0.8em;
		text-transform: none;
		font-weight: normal;
		margin-top: 0.3rem;
	}

	#header .header-nav.header-nav-sub-title-animated .header-nav-main nav>ul>li>a {
		-webkit-transition: ease padding-bottom 300ms;
		transition: ease padding-bottom 300ms;
	}

	#header .header-nav.header-nav-sub-title-animated .header-nav-main nav>ul>li>a.active {
		padding-bottom: 35px;
	}

	#header .header-nav.header-nav-sub-title-animated .header-nav-main nav>ul>li>a.active>span {
		top: 60%;
		left: 0;
		opacity: 1;
	}

	#header .header-nav.header-nav-sub-title-animated .header-nav-main nav>ul>li>a>span {
		position: absolute;
		top: 50%;
		left: 0;
		margin-top: 0;
		opacity: 0;
		-webkit-transform: translate3d(0, -50%, 0);
		transform: translate3d(0, -50%, 0);
		-webkit-transition: ease opacity 200ms, ease top 300ms;
		transition: ease opacity 200ms, ease top 300ms;
	}

	#header .header-nav.header-nav-sub-title-animated .header-nav-main nav>ul>li:hover>a,
	#header .header-nav.header-nav-sub-title-animated .header-nav-main nav>ul>li:focus>a {
		padding-bottom: 35px;
	}

	#header .header-nav.header-nav-sub-title-animated .header-nav-main nav>ul>li:hover>a>span,
	#header .header-nav.header-nav-sub-title-animated .header-nav-main nav>ul>li:focus>a>span {
		top: 60%;
		left: 0;
		opacity: 1;
	}

	#header .header-nav.header-nav-line-under-text .header-nav-main nav>ul>li>a {
		position: relative;
	}

	#header .header-nav.header-nav-line-under-text .header-nav-main nav>ul>li>a:before {
		content: '';
		display: block;
		position: absolute;
		top: 56%;
		left: 0.55rem;
		right: 100%;
		border-top: 7px solid rgba(204, 204, 204, 0.5);
		-webkit-transform: translate3d(0, -50%, 0);
		transform: translate3d(0, -50%, 0);
		-webkit-transition: ease right 300ms;
		transition: ease right 300ms;
	}

	#header .header-nav.header-nav-line-under-text .header-nav-main nav>ul>li>a.active {
		color: #777;
	}

	#header .header-nav.header-nav-line-under-text .header-nav-main nav>ul>li>a.active:before {
		right: 0.55rem;
	}

	#header .header-nav.header-nav-line-under-text .header-nav-main nav>ul>li:hover>a,
	#header .header-nav.header-nav-line-under-text .header-nav-main nav>ul>li:focus>a {
		color: #777;
	}

	#header .header-nav.header-nav-line-under-text .header-nav-main nav>ul>li:hover>a:before,
	#header .header-nav.header-nav-line-under-text .header-nav-main nav>ul>li:focus>a:before {
		right: 0.55rem;
	}

	#header .header-nav.header-nav-square .header-nav-main nav>ul>li>a {
		border-radius: 0;
	}

	#header .header-nav.header-nav-square .header-nav-main nav>ul>li.dropdown .dropdown-menu {
		border-radius: 0;
	}

	#header .header-nav.header-nav-square .header-nav-main nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu>.dropdown-menu {
		border-radius: 0;
	}

	#header .header-nav.header-nav-square .header-nav-main nav>ul>li.dropdown-mega>.dropdown-menu {
		border-radius: 0;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	#header .header-nav-main nav>ul>li>a {
		font-size: 0.8rem;
	}
}

@media (min-width: 992px) {

	#header .header-nav-main-effect-1 nav>ul>li.dropdown:not(.dropdown-mega-signin) .dropdown-menu li,
	#header .header-nav-main-effect-1 nav>ul>li.dropdown:not(.dropdown-mega-signin) .dropdown-mega-sub-nav li {
		-webkit-transition: -webkit-transform .2s ease-out;
		transition: -webkit-transform .2s ease-out;
		transition: transform .2s ease-out;
		transition: transform .2s ease-out, -webkit-transform .2s ease-out;
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0);
	}

	#header .header-nav-main-effect-1 nav>ul>li.dropdown:not(.dropdown-mega-signin):hover>.dropdown-menu li,
	#header .header-nav-main-effect-1 nav>ul>li.dropdown:not(.dropdown-mega-signin):hover .dropdown-mega-sub-nav li {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	#header .header-nav-main-effect-1 nav>ul>li.dropdown .dropdown-menu {
		-webkit-transition: -webkit-transform .2s ease-out;
		transition: -webkit-transform .2s ease-out;
		transition: transform .2s ease-out;
		transition: transform .2s ease-out, -webkit-transform .2s ease-out;
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0);
	}

	#header .header-nav-main-effect-1 nav>ul>li.dropdown.open>.dropdown-menu,
	#header .header-nav-main-effect-1 nav>ul>li.dropdown:hover>.dropdown-menu {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	#header .header-nav-main-effect-1 nav>ul>li.dropdown.dropdown-mega>.dropdown-menu {
		-webkit-transform: translate3d(-50%, -5px, 0);
		transform: translate3d(-50%, -5px, 0);
	}

	#header .header-nav-main-effect-1 nav>ul>li.dropdown.dropdown-mega>.dropdown-menu>li {
		-webkit-transform: translate3d(0, 0, 0) !important;
		transform: translate3d(0, 0, 0) !important;
	}

	#header .header-nav-main-effect-1 nav>ul>li.dropdown.dropdown-mega.open>.dropdown-menu,
	#header .header-nav-main-effect-1 nav>ul>li.dropdown.dropdown-mega:hover>.dropdown-menu {
		-webkit-transform: translate3d(-50%, 0, 0);
		transform: translate3d(-50%, 0, 0);
	}

	#header .header-nav-main-effect-1 nav>ul>li.dropdown.dropdown-mega.dropdown-mega-signin>.dropdown-menu {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0);
	}

	#header .header-nav-main-effect-1 nav>ul>li.dropdown.dropdown-mega.dropdown-mega-signin.open>.dropdown-menu,
	#header .header-nav-main-effect-1 nav>ul>li.dropdown.dropdown-mega.dropdown-mega-signin:hover>.dropdown-menu {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@media (min-width: 992px) {
	#header .header-nav-main-effect-2 nav>ul>li.dropdown .dropdown-menu {
		-webkit-transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
		transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
		transition: transform .2s ease-out, opacity .2s ease-out;
		transition: transform .2s ease-out, opacity .2s ease-out, -webkit-transform .2s ease-out;
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
		opacity: 0;
	}

	#header .header-nav-main-effect-2 nav>ul>li.dropdown.open>.dropdown-menu,
	#header .header-nav-main-effect-2 nav>ul>li.dropdown:hover>.dropdown-menu {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}

	#header .header-nav-main-effect-2 nav>ul>li.dropdown.dropdown-mega>.dropdown-menu {
		-webkit-transform: translate3d(-50%, 5px, 0);
		transform: translate3d(-50%, 5px, 0);
	}

	#header .header-nav-main-effect-2 nav>ul>li.dropdown.dropdown-mega.open>.dropdown-menu,
	#header .header-nav-main-effect-2 nav>ul>li.dropdown.dropdown-mega:hover>.dropdown-menu {
		-webkit-transform: translate3d(-50%, 0, 0);
		transform: translate3d(-50%, 0, 0);
	}

	#header .header-nav-main-effect-2 nav>ul>li.dropdown.dropdown-mega.dropdown-mega-signin>.dropdown-menu {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}

	#header .header-nav-main-effect-2 nav>ul>li.dropdown.dropdown-mega.dropdown-mega-signin.open>.dropdown-menu,
	#header .header-nav-main-effect-2 nav>ul>li.dropdown.dropdown-mega.dropdown-mega-signin:hover>.dropdown-menu {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@media (min-width: 992px) {
	#header .header-nav-main-effect-3 nav>ul>li.dropdown .dropdown-menu {
		-webkit-transition: -webkit-transform .2s ease-out;
		transition: -webkit-transform .2s ease-out;
		transition: transform .2s ease-out;
		transition: transform .2s ease-out, -webkit-transform .2s ease-out;
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}

	#header .header-nav-main-effect-3 nav>ul>li.dropdown.open>.dropdown-menu,
	#header .header-nav-main-effect-3 nav>ul>li.dropdown:hover>.dropdown-menu {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	#header .header-nav-main-effect-3 nav>ul>li.dropdown.dropdown-mega>.dropdown-menu {
		-webkit-transform: translate3d(-50%, 10px, 0);
		transform: translate3d(-50%, 10px, 0);
	}

	#header .header-nav-main-effect-3 nav>ul>li.dropdown.dropdown-mega.open>.dropdown-menu,
	#header .header-nav-main-effect-3 nav>ul>li.dropdown.dropdown-mega:hover>.dropdown-menu {
		-webkit-transform: translate3d(-50%, 0, 0);
		transform: translate3d(-50%, 0, 0);
	}
}

@media (min-width: 992px) {
	#header .header-nav-main-effect-4 nav>ul>li.dropdown .dropdown-menu {
		-webkit-transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
		transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
		transition: transform .2s ease-out, opacity .2s ease-out;
		transition: transform .2s ease-out, opacity .2s ease-out, -webkit-transform .2s ease-out;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0);
		opacity: 0;
	}

	#header .header-nav-main-effect-4 nav>ul>li.dropdown .dropdown-menu.dropdown-reverse {
		-webkit-transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
		transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
		transition: transform .2s ease-out, opacity .2s ease-out;
		transition: transform .2s ease-out, opacity .2s ease-out, -webkit-transform .2s ease-out;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0);
		left: auto;
		right: 100%;
		opacity: 0;
	}

	#header .header-nav-main-effect-4 nav>ul>li.dropdown.open>.dropdown-menu,
	#header .header-nav-main-effect-4 nav>ul>li.dropdown:hover>.dropdown-menu {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}

	#header .header-nav-main-effect-4 nav>ul>li.dropdown.dropdown-mega>.dropdown-menu {
		-webkit-transform: translate3d(-55%, 0, 0);
		transform: translate3d(-55%, 0, 0);
	}

	#header .header-nav-main-effect-4 nav>ul>li.dropdown.dropdown-mega>.dropdown-menu.dropdown-reverse {
		-webkit-transform: translate3d(45%, 0, 0);
		transform: translate3d(45%, 0, 0);
	}

	#header .header-nav-main-effect-4 nav>ul>li.dropdown.dropdown-mega.open>.dropdown-menu,
	#header .header-nav-main-effect-4 nav>ul>li.dropdown.dropdown-mega:hover>.dropdown-menu {
		-webkit-transform: translate3d(-50%, 0, 0);
		transform: translate3d(-50%, 0, 0);
	}
}

@media (min-width: 992px) {
	#header .header-nav-main-sub-effect-1 nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu>.dropdown-menu {
		-webkit-transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
		transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
		transition: transform .2s ease-out, opacity .2s ease-out;
		transition: transform .2s ease-out, opacity .2s ease-out, -webkit-transform .2s ease-out;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0);
		opacity: 0;
	}

	#header .header-nav-main-sub-effect-1 nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu:hover>.dropdown-menu {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}

	#header .header-nav-main-sub-effect-1 nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu.dropdown-reverse>.dropdown-menu {
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0);
	}

	#header .header-nav-main-sub-effect-1 nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu.dropdown-reverse:hover>.dropdown-menu {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

/* Header Nav Main Mobile */
@media (max-width: 991px) {
	#header .header-nav {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	#header .header-nav-main {
		position: absolute;
		top: 99%;
		right: 0;
		left: 0;
		background: transparent;
		margin-top: 0px;
		z-index: 1;
	}

	#header .header-nav-main:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 50%;
		width: 100vw;
		height: 100%;
		background: #252A2C;
		z-index: -1;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	#header .header-nav-main nav {
		max-height: 60vh;
		overflow: hidden;
		overflow-y: auto;
		margin: 1.3rem 0;
		-webkit-transition: ease all 300ms;
		transition: ease all 300ms;
	}

	#header .header-nav-main nav.collapsing {
		overflow-y: hidden;
	}

	#header .header-nav-main nav.closed {
		margin: 0;
	}

	#header .header-nav-main nav::-webkit-scrollbar {
		width: 5px;
	}

	#header .header-nav-main nav::-webkit-scrollbar-thumb {
		border-radius: 0px;
		background: rgba(204, 204, 204, 0.5);
	}

	#header .header-nav-main nav>ul li {
		border-bottom: 1px solid #303537;
		clear: both;
		display: block;
		float: none;
		margin: 0;
		padding: 0;
		position: relative;
		width: 100%;
	}

	#header .header-nav-main nav>ul li a:not(.btn) {
		position: relative;
		display: block;
		color: #fff;
		line-height: 1.3;
		padding: 10px 0;
		border-radius: 4px;
		/* font-family: "Montserrat", sans-serif; */
	}

	#header .header-nav-main nav>ul li a:not(.btn):hover,
	#header .header-nav-main nav>ul li a:not(.btn):focus,
	#header .header-nav-main nav>ul li a:not(.btn).active {
		color: #FFF;
	}

	#header .header-nav-main nav>ul li a:not(.btn) .menu-arrow {
		position: absolute;
		min-width: 30px;
		height: 100%;
		right: 5px;
		top: 0;
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transition: ease transform 800ms;
		transition: ease transform 800ms;
	}

	#header .header-nav-main nav>ul li a:not(.btn) .menu-arrow:after {
		content: " ";
		position: absolute;
		top: 50%;
		left: 50%;
		border-color: #333e48;
		border-top: 1px solid;
		border-right: 1px solid;
		width: 7px;
		height: 7px;
		-webkit-transform: translate(-50%, -50%) rotate(135deg);
		transform: translate(-50%, -50%) rotate(135deg);
	}

	#header .header-nav-main nav>ul li a:not(.btn).dropdown-item {
		background-color: transparent;
	}

	#header .header-nav-main nav>ul li.dropdown .dropdown-menu {
		background: transparent;
		padding: 0 0 20px;
		margin: 0;
		font-size: 13px;
		-webkit-box-shadow: none;
		box-shadow: none;
		border-radius: 0;
		border: 0;
		clear: both;
		display: none;
		float: none;
		position: static;
	}

	#header .header-nav-main nav>ul li.dropdown .dropdown-menu li.dropdown-submenu.opened>.dropdown-toggle .menu-arrow {
		-webkit-transform: rotateX(180deg) translate3d(0, -3px, 0);
		transform: rotateX(180deg) translate3d(0, -3px, 0);
	}

	#header .header-nav-main nav>ul li.dropdown .dropdown-menu li.dropdown-submenu.opened>.dropdown-menu {
		margin-left: 20px;
	}

	#header .header-nav-main nav>ul li.dropdown.opened>.dropdown-toggle .menu-arrow {
		-webkit-transform: rotateX(180deg) translate3d(0, -3px, 0);
		transform: rotateX(180deg) translate3d(0, -3px, 0);
	}

	#header .header-nav-main nav>ul li.dropdown.opened>.dropdown-menu {
		padding-left: 20px;
	}

	#header .header-nav-main nav>ul li.dropdown-mega .dropdown-mega-content {
		padding-left: 0;
	}

	#header .header-nav-main nav>ul li.dropdown-mega .dropdown-mega-sub-title {
		margin-top: 10px;
		display: block;
		color: #FFF;
	}

	#header .header-nav-main nav>ul li.dropdown-mega .dropdown-mega-sub-nav {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	#header .header-nav-main nav>ul li.dropdown-mega .dropdown-mega-sub-nav>li>a {
		display: block;
		text-decoration: none;
	}

	#header .header-nav-main nav>ul li.dropdown-full-color:first-child {
		margin-top: 0;
	}

	#header .header-nav-main nav>ul li.dropdown-full-color>a {
		padding: 10px 15px;
	}

	#header .header-nav-main nav>ul li.dropdown-full-color>.dropdown-menu li {
		border: none;
	}

	#header .header-nav-main nav>ul li.dropdown-full-color.opened>.dropdown-menu {
		padding-left: 15px;
	}

	#header .header-nav-main nav>ul li:last-child {
		border-bottom: 0;
	}

	#header .header-nav-main nav>ul>li>a {
		font-size: 1.1em;
		font-weight: 400;
		margin-top: 1px;
		margin-bottom: 1px;
	}

	#header .header-btn-collapse-nav {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		position: relative;
		z-index: 1;
	}

	#header .header-nav.header-nav-sub-title .header-nav-main nav>ul>li>a,
	#header .header-nav.header-nav-sub-title-animated .header-nav-main nav>ul>li>a {
		text-align: left;
	}

	#header .header-nav.header-nav-sub-title .header-nav-main nav>ul>li>a>span,
	#header .header-nav.header-nav-sub-title-animated .header-nav-main nav>ul>li>a>span {
		font-size: 0.6em;
		display: block;
	}

	#header .header-nav.header-nav-light-dropdown .header-nav-main:before {
		background-color: #FFF;
	}

	#header .header-nav.header-nav-light-dropdown .header-nav-main nav>ul li {
		border-color: #F1F3F7;
	}

	#header .header-nav.header-nav-light-dropdown .header-nav-main nav>ul li a:hover,
	#header .header-nav.header-nav-light-dropdown .header-nav-main nav>ul li a:focus,
	#header .header-nav.header-nav-light-dropdown .header-nav-main nav>ul li a.active {
		color: #333e48;
	}

	#header .header-nav.header-nav-light-dropdown .header-nav-main nav>ul li.dropdown-mega .dropdown-mega-sub-title {
		color: #1c1f21;
		font-weight: bold;
	}

	html.safari #header .header-nav-main nav a {
		-webkit-transform: translate3d(0px, 0px, 1px) !important;
		transform: translate3d(0px, 0px, 1px) !important;
	}
}

/* Side Header */
/* Side Header */


/* Header Search Expand */
#header .header-search-expanded {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 55px;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate3d(0, -30%, 0);
	transform: translate3d(0, -30%, 0);
	-webkit-transition: ease opacity 300ms, ease visibility 300ms, ease transform 300ms;
	transition: ease opacity 300ms, ease visibility 300ms, ease transform 300ms;
}

#header .header-search-expanded>form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	height: 100%;
}

#header .header-search-expanded>form input {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-color: transparent;
}

#header .header-search-expanded>form input::-webkit-input-placeholder {
	color: #b9b9b9;
}

#header .header-search-expanded>form input::-moz-placeholder {
	color: #b9b9b9;
}

#header .header-search-expanded>form input:-ms-input-placeholder {
	color: #b9b9b9;
}

#header .header-search-expanded>form button {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 3;
	height: 100%;
	padding: 0;
	width: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: transparent;
	font-size: 22.4px;
	font-size: 1.4rem;
	-webkit-box-shadow: none;
	box-shadow: none;
}

#header .header-nav,
#header .header-logo {
	-webkit-transition: ease opacity 300ms, ease visibility 300ms, ease transform 300ms;
	transition: ease opacity 300ms, ease visibility 300ms, ease transform 300ms;
}

html.sticky-header-active #header .header-search-expanded {
	height: 45px;
}

html.sticky-header-active #header .header-search-expanded>form button {
	padding-top: 6.4px;
	padding-top: 0.4rem;
}

html.header-search-expanded-active #header .header-search-expanded {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
	-webkit-transition: ease opacity 300ms 0ms, ease visibility 300ms 0ms, ease transform 300ms 0ms;
	transition: ease opacity 300ms 0ms, ease visibility 300ms 0ms, ease transform 300ms 0ms;
}

html.header-search-expanded-active #header .header-nav,
html.header-search-expanded-active #header .header-logo {
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate3d(0, -20px, 0);
	transform: translate3d(0, -20px, 0);
}

/* Mobile Menu Opened */
html.mobile-menu-opened #header .header-container:after {
	content: none;
}

html.mobile-menu-opened #header.header-container-bottom-border .header-body:after {
	content: none;
}


#header .header-nav-main nav>ul>li+li {
	margin-left: 0;
}

.nav_searchbar {
	border-radius: 20px;
	padding: 8px;
}


.nav-link {
	color: #fff;
}

.nav-link:hover {
	color: #fff;
}


/* Parallax */
/* hero section css start */


.case_study_btn a svg {
	margin: 0px 0px -3px 10px;
}

.new-case-home-study-home-btn a svg {
	margin: 0px 0px -1px 10px;
}


/* hero section css End */

/* trading section start */


.treading_section h2 {
	font-size: 24px;
	font-weight: 700;
	color: #0041be;
	margin-bottom: 0px;
	/* margin-top: 10px; */
}

.treading_section1 {
	/* padding: 0px 18px; */
	padding: 5px 30px 3px 6px;
}

.treading_section {
	padding: 5px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	/* overflow: auto; */

	position: relative;

}

.home-banner-section-parent {
	border-bottom: 1px solid lightgrey;
}

.home-treading-sec-imp {
	top: unset;
}


.treading_section_list p {
	padding: 0 0px 0 10px;
	/* border-left: 1px solid #2251ff; */
	color: #000;
	font-size: 15px;
	line-height: 22px;
	font-weight: 400;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-trend-link:hover p {
	color: #2251ff;
}


.artical {
	margin-top: 20px;
	font-size: 16px;
	font-weight: 600;
}


.counters {
	padding: 0 0 0 26px;
}

.counters li {
	list-style: none;
}

.counters li h3 {
	font-size: 32px;
	line-height: 48px;
	font-weight: 700;
	color: #0029FF;

}

.counters li p {
	font-size: 19px;
	line-height: 24px;
	font-weight: 400;
}

.case_study {
	padding: 10%;
}

.case_study_btn {
	margin: 20px 0;
	text-align: center;
}

.home-main-sec-btn-sub-us {
	padding: 0px 26px;
	margin-top: 36px;
}

.new-case-home-study-home-btn {
	/* margin: 35px 0px; */
}


.case_study_btn a {
	padding: 12px 24px;
	/* background-color: #0029FF; */
	margin: 0 25px;
	color: #0029ff;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-transform: capitalize;
	transition: 0.2s 0.1s;

}

/* .case_study_btn a:hover {
	padding: 12px 24px;
	background-color: #0029FF;
	margin: 0 25px;
	color: var(--Dark-Basic-White, #FFF);
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	text-transform: capitalize;
	transition: 0.2s 0.1s;

} */

.case_study_btn a svg:hover {
	color: #0029FF;
}

.new-case-home-study-home-btn a {
	padding: 12px 43px;
	font-size: 16px;
	border-radius: 4px;
}

.new-case-home-study-home-btn a i {
	transition: all 0.3s ease-in-out;
    font-size: 13px;
    background: #0029ff;
    padding: 7px 9px;
    margin-left: 8px;
    color: #fff;
}

.market-insights-sec .carousel-section-new .new-owl-carousel .post-slide .read-more:hover i {
    transform: translateX(5px);
}

.new-case-home-study-home-btn a:hover i {
	transform: translateX(10px);
}

/* .new-case-home-study-home-btn a svg {
	margin: 0px 0px -1px 15px;
} */

.home-main-sec-btn-sub-us a {
	padding: 12px 43px;
	color: #FFF;
	font-size: 13px;
	font-weight: 400;
	text-transform: capitalize;
	border-radius: 4px;
	width: 170px;
}

.home-main-sec-btn-sub-us a:hover {
	padding: 12px 43px;
}

.home-main-btn-2-sec a {
	/* padding: 12px 24px !important; */
}


/* second section start End */

/* second banner css start */


/* Our Team banner css End */
/* footer css start */


.footer_link p {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
}


.footer_link li {
	list-style: none;
	margin: 18px auto;
}

.footer_link li a {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;


}

.footer_border {
	border-top: 1px solid #5BD0F4;
	margin: 15px auto;
}

.footer_bottom_content {
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	line-height: 21px;
}

.Social_icon {
	display: flex;
	gap: 3px;
	margin-left: -9px;
}

.Social_icon li {
	margin: 10px 0 0 10px;
	list-style: none;
}

/* footer css End */
.slider {
	width: 100%;
	margin: 0 auto;
}


/* Responsive styles */


.counters p {
	padding: 0%;
}


.footer_search input {
	padding: 12px;
	border: 1px solid var(--White, #FFF);
	background: var(--White, #FFF);
	width: 70%;
}

.privacy_policy {
	color: var(--White, #FFF);
	font-size: 12px;
	font-weight: lighter;
	line-height: 150%;
}

.footer_search button {
	color: #fff;
	border: 0.5px solid #FFF;
	padding: 8px 24px;
	background-color: transparent;
	margin-left: 7px;
	border-radius: 4px;
	font-size: 12px;
}

.jon_new_letter {
	color: var(--White, #FFF);
	font-size: 16px;
	font-weight: lighter;
	line-height: 24px;
}


#search {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: #333;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-webkit-transform: translate(0px, -100%) scale(0, 0);
	-moz-transform: translate(0px, -100%) scale(0, 0);
	-ms-transform: translate(0px, -100%) scale(0, 0);
	-o-transform: translate(0px, -100%) scale(0, 0);
	transform: translate(0px, -100%) scale(0, 0);
	opacity: 0;
	display: none;
}

#search.open {
	-webkit-transform: translate(0px, 0px) scale(1, 1);
	-moz-transform: translate(0px, 0px) scale(1, 1);
	-ms-transform: translate(0px, 0px) scale(1, 1);
	-o-transform: translate(0px, 0px) scale(1, 1);
	transform: translate(0px, 0px) scale(1, 1);
	opacity: 1;
	z-index: 9999999;
	display: block;
}

#search input[type="search"] {
	position: absolute;
	top: 5%;
	left: 0;

	width: 60%;
	margin-left: 20%;
	color: #Fff;
	background: transparent;
	border: 1px solid #fff;

	font-size: 40px;
	font-weight: 300;
	text-align: left;
	outline: none;
	padding: 10px;
}

#search .close {
	position: fixed;
	top: 8%;
	right: 10%;
	opacity: 1;
	font-size: 27px;
	color: #000;
}

#search span:nth-child(2) {

	position: absolute;
	top: 8%;
	right: 0;

	margin-right: 25%;
	color: #Fff;
	background: transparent;

	font-size: 40px;

	font-weight: 300;


}

/* about Us css start */


.white_card {
	padding: 48px 24px;
	border-radius: 5px;
	box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
	background-color: #F4F4F4;
	;
}

.white_card_title {
	margin: 10px 0;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    color: #000;
	font-family: 'Inter', sans-serif;
}

.white_card_btn {

	padding: 10px 5rem;
	border-radius: 56px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    color: #fff;
    background-color: #0029FF;
    font-size: 16px;
    line-height: 38px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.white_card_btn:hover {

	padding: 10px 5rem;
	border-radius: 56px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	color: #fff;
	background-color: #0029FF;
	font-size: 16px;
	line-height: 38px;
	font-weight: 500;
}

.white_card span {
	font-size: 15px;
	color: #000;
	font-weight: 400;
	line-height: 24px;
	word-wrap: break-word;
}

/* About us css End */


.testimonial_card {
	background: #D9D9D9;
	padding: 20px 20px;
	display: flex !important;
	flex-shrink: 0;
}

.testimonial_card_content {
	display: flex;
	padding: 20px 35px;
	flex-direction: column;
}

.principle_content {
	color: #0029FF;
	font-size: 15px;
	font-weight: 300;
	/* line-height: 5px; */
}


.testimonial_card_title {
	color: #000;
	font-size: 24px;
	font-weight: 600;
	line-height: 36px;
}

.testimonial_card_discription {
	color: #000;
	font-size: 16px;
	font-weight: 300;
	line-height: 24px;
	font-family: 'Inter', sans-serif;
	padding: 0 4rem 0px 0px;

}


/* testimonial css End */

/* third_images_section section start */


.third_images_section h2 {
	color: #0029FF;
	text-align: center;
	font-size: 48px;
	font-weight: 700;
	line-height: 57.6px;
}

.third_images_section_right_content {
	padding: 10% 5%;
}


.become_part_left {
	position: relative;
	color: #fff;
	margin-bottom: 0px;
	box-sizing: border-box;
	height: 400px;
}

.career-opp-img {
	width: 100%;
	height: 200px;
}

.become_part_left img {
	height: 100%;
}

.become-part-inside-content {
	padding: 0 70px;
	position: absolute;
	color: #ffff;
	top: 50%;
	width: 100%;
	left: 80%;
	transform: translate(-80%, -50%);
}

.become-part-inside-content .sub-title {
	font-size: 16px;
	font-weight: 400;
	line-height: 46px;
	margin: 0;
}

.become-part-inside-content h3 {
	font-size: 30px;
	font-weight: 500;
	line-height: 120%;
	margin-bottom: 20px;
}

.become-part-inside-content p {
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
}

.become_part_left img {
	width: 100%;
	object-fit: cover;
	/* border-radius: 10px 0px 0px 0px; */
}


/*third_images_section section start */


/* timeline section css start */


.timeline_first_content span {
	color: #3E5463;
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;
	text-transform: uppercase;
	text-align: left;

}

.timeline_first_content h5 {
	color: #1C2B36;
	font-size: 48px;
	font-weight: 700;
	line-height: 57.6px;
	text-align: left;
}

.timeline_first_content p {
	color: #3E5463;
	font-size: 18px;
	font-weight: 400;
	line-height: 27px;
	text-align: left;
}

.timeline_first_content {
	padding: 25px;
}

.timeline_btn {
	border-radius: 4px;
	background: #0029FF;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}


.timeline_position {
	position: relative;
}

.add_image {
	position: absolute;
	left: 45%;
	top: 80%;
	z-index: 9999;
}


.add_image img {
	width: 50%;
}


.post_ion {
	position: relative;
}


/* timeline section css End */
/* contact us css start */


.report_banner {
	position: relative;
	/* background: var(--hero-blue, linear-gradient(180deg, #001AA5 21.35%, rgba(0, 26, 165, 0.19) 86.46%, rgba(0, 26, 165, 0.00) 100%, rgba(0, 26, 165, 0.00) 100%)); */
	background: #0C0B46;
	background-position: bottom;
	background-size: cover;
	/* height: 585px; */
	/* top: -100px; */

}

.report_banner_content span {
	color: #FFF;
	font-size: 15px;
	font-weight: 200;
	line-height: 30px;
}

.report_banner_content h2 {
	color: #FFF;
	font-size: 57px;
	font-weight: 700;
	line-height: 68.4px;

}

.report_banner_content p {
	color: #FFF;
	font-size: 22px;
	/*font-style: italic;*/
	font-weight: 500;
	line-height: 33px;

}

.rd_banner_btn {
	padding: 12px 24px;
	color: #FFF;
	text-align: center;
	font-size: 13px;
	font-weight: 400;
	text-transform: capitalize;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.00);
	background: #0029FF;
}

.home-banner-btn-first {
	padding: 12px 44px;
}


.rd_banner_btn svg {
	margin: 0px 0px -4px 10px;
	width: 11px;
	height: 16px;
}

/* .my-icon-fee {
	position: relative !important;
} */

.my-cus-mar-p {
	margin-top: 2rem !important;
}

.rd_banner_btn svg {
	transition: all .4s ease-in-out;
}

.rd_banner_btn:hover {
	color: var(--Dark-Basic-White, #FFF);
}

.rd_banner_btn:hover svg {
	transform: translateX(10px);
}

.home-banner-btn-first:hover {
	padding: 12px 44px;
}


.demo .dropdown button {
	color: #fff;
	text-align: center;
	width: 107px;
	font-size: 13px;
	font-weight: 600;
	line-height: normal;
	padding: 9px 10px;
	border: none;
	/* border: 1px solid #fff; */
	margin-top: 0px;
	border-radius: 4.998px;
	background: #02338D;
	box-shadow: 0px 0px 39.986px 0px rgba(0, 0, 0, 0.07);
}


.request_sample_padding {
	padding: 15px 15px !important;
}


/* ===================================================== */

/* added by mehul (on 1-03-24) */


#Overview h5:first-child {
	color: #000;
	text-align: center;
	font-size: 40px;
	font-weight: 700;
	line-height: 48px;
	padding-bottom: 35px;
}


.cus-main-sub-col {
	color: #fff !important;
}


.cus-main-sub-col:hover {
	color: #000 !important;
}


.search_list span {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 3px;
}

.search_list svg {
	width: 18px;
	height: 18px;
}

.search_list input::placeholder {
	color: #fff !important;
}


.tab-content>.tab-pane {
	margin: 15px 0 0 0;
}

.tab-content>.active {
	margin: 15px 0 0 0;
}

.marketternds_content {
	color: #000;
	text-align: justify;
	font-size: 19px;
	font-weight: 400;
	line-height: 30px;
	margin: 56px 0;
}

.nav-tabs {
	border: none;
	padding: 0px 49px;
}

/* .nav-link {
	padding: 0.5rem 0rem;
} */

.nav-tabs .nav-link {
	color: var(--White, #FFF);
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	border-bottom: 3.5px solid rgba(255, 255, 255, 0.20);
	margin: 0 5px;
}

.nav-tabs .nav-link.active {
	color: var(--White, #FFF);
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 3.5px solid #FFF !important;
	background-color: transparent;
}

.rd-explore-service-sec .nav-tabs .nav-link {
	font-size: 13px;
}

.rd-explore-service-sec .nav-tabs .nav-link.active {
	font-size: 13px;
}

.rd-explore-service-sec .cus-respo-tab-con p {
	font-size: 13px !important;
}

.rd-explore-service-sec .tabs_content {
	padding: 18px 0px 0px 26px !important;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
	border-color: transparent;
}

.tabs_content {
	color: #FFF;
	font-size: 13px;
	font-weight: 300;
	line-height: 22px;
	/* padding: 18px 0px 0px 28px; */
	padding: 18px 0px 0px 0;
}


.main-cus-padding-cont-us-sec {
	padding: 0px 50px 0 50px;
}

.tab_btn {
	color: #0029FF;
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
	text-decoration-line: underline !important;
	padding: 0px 0px 1px 28px;
	display: flex;
	align-items: center;
}

.tab_btn svg {
	width: 18px;
	height: 18px;
}

.explore_card {
	padding: 8.3px;
	background-color: #ffffff;
	transition: transform ease 300ms;
	overflow: hidden;
	text-align: center;
	min-height: 311px;
	max-height: 311px;

}

.explore_card:hover {
	background: #0029FF;
	transition: transform ease 300ms;
}

.explore_card:hover .exp-card-btn-imp a {
	background: #fff;
	color: #0029FF;
	font-weight: 500;
}

.explore_card:hover .exp-card-btn-imp svg path {
	/* height: 12px; */
	fill: #0029FF;
}

.explore_card:hover .explore_card_title,
.explore_card_subtitle,
.explore_card:hover .explore_card_subtitle {
	color: white;
}


.explore_card:hover .explore_card_btn a {
	background-color: #fff;
	color: #0029FF;
}


.explore_card:hover .explore_card_btn a svg {
	fill: #0029FF;
}

.explore_card:hover .card_icon>svg * {
	fill: white;
	stroke: white;

}


.explore_card_title {

	color: var(--Black, #000);
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	/* line-height: 25px; */
	max-height: fit-content;


}

/* ====================================font size of accordion and table ============== */

.card-body ul li {
	line-height: 30px !important;
	font-size: 15px;
}


.table_body tr td p {
	font-size: 15px;

}

.table_body tr td ul li {
	font-size: 14px;

}

.cus-con-acc-2nd p {
	padding: 20px 0px 20px 74px;
	margin-bottom: 0px;
	font-size: 15px;
}

/* ================================================font size of accordion table end ============ */

.explore_card_subtitle {
	color: var(--Black, #000);
	text-align: center;
	font-size: 13px;
	/* font-weight: 400; */
	line-height: 24px;
}

.explore_card_subtitle>span.d-block:first-child {
	font-weight: 700;
}

.explore_card_subtitle>span.d-block:last-child {
	font-weight: 500;
}

.exp-card-btn-imp {
	padding: 0 35px;
}

.exp-card-btn-imp a {
	border-radius: 4px;
	color: #FFF;
	font-size: 13px;
	font-weight: 400;
	line-height: 24px;
	background: #0029FF;
	padding: 10px 15px;
	position: relative;
	align-items: center;
	/* justify-content: space-around; */
	gap: 6px;

	margin: 18px auto;
	top: 26px;
}

#MarketSegmentation h5 {
	color: #000;
	text-align: center;
	font-size: 40px;
	font-weight: 700;
	line-height: 48px;
	text-transform: capitalize;
}

#MarketSegmentation .Market_Seg_discription {
	color: #000;
	text-align: center;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	padding: 0 5rem;
	width: 69%;
	margin: 0 auto;

}

.scrollbar::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: #F5F5F5;
}

.scrollbar::-webkit-scrollbar {
	width: 5px;
	background-color: #F5F5F5;
}

.scrollbar::-webkit-scrollbar-thumb {
	background-color: #000000;
	border: 2px solid #555555;
}


.panel,
.panel-body {
	box-shadow: none;
	background-color: #0029FF;
	color: #fff;
	padding: 0 0px;
}

.panel-title {
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	background: #fff;
	color: #000;
	font-size: 24px;
	font-weight: 700;
	line-height: 41.52px;
}


.request_form {
	background: #26265E;
	/* padding: 15px 15px; */
	padding: 15px 15px 28px 15px;
}

.form_heading {
	color: #FFF;
	font-size: 25px;
	font-weight: 700;
	line-height: 38.4px;
	text-align: left;


}

.form-group label {
	color: var(--White, #FFF);
	font-size: 13px;
	font-weight: 400;
	line-height: 24px;
	font-family: 'Inter', sans-serif;
}

.form-group input {
	color: var(--Neutral-Dark-gray, #505050);
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
}

.form-group textarea {
	color: var(--Neutral-Dark-gray, #505050) !important;
	font-size: 15px;
	font-weight: 400;
	line-height: 24px;
	background-color: #fff;
}

.request_form_btn {
	display: flex;
	padding: 7px 60px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	background: #0029FF;
	color: var(--White, #FFF);
	font-weight: 500;
	line-height: 31px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
}

.market_seg_paragraph {
	color: #000;
	text-align: justify;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	padding: 0 8px;

}

#Competitive h5 {
	color: #000;
	text-align: center;
	font-size: 40px;
	font-weight: 700;
	line-height: 54px;
	text-transform: capitalize;
}

.Competitive_discription {
	color: #000;
	text-align: center;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	padding: 0 5rem;
	width: 69%;
	margin: 0 auto;
}

.Competitive_card {
	padding: 3rem 10px;
	background-color: #ffffff;
	box-shadow: 0px 4px 4px 0px #00000040;
	transition: 0.3s ease;
	overflow: hidden;
	max-height: 400px;
	height: 330px;
}

.Competitive_card:hover {
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	background: #0029ff;
	transition: transform ease 300ms;
	/* transform: translate(0, -10px); */
}

.Competitive_card:hover .Competitive_card_title,
.Competitive_card_sub_title {
	color: white;
}

.Competitive_card:hover .Competitive_card_sub_title {
	color: white;
}

.Competitive_card_title {
	color: #0041BE;
	text-align: center;
	font-size: 26px;
	font-weight: 500;
	line-height: 38.4px;

}

.Competitive_card_title h3 {
	font-weight: 600;

}

.Competitive_card_sub_title {
	color: #000;
	text-align: center;
	font-size: 15.5px;
	font-weight: 400;
	line-height: 25px;
	/* text-align: justify; */
	/* word-break: break-all; */
	padding: 10px;
}

.Competitive_card_sub_title p {

	font-weight: 400;
	text-overflow: ellipsis !important;
	/* height: 151px !important; */
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 8;
	-webkit-box-orient: vertical;
}

#FAQ h5 {
	color: #000;
	text-align: center;
	font-size: 40px;
	font-weight: 700;
	line-height: 54px;
	text-transform: capitalize;
}

.FAQ_discription {
	color: #000;
	text-align: center;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	padding: 0 5rem;
	width: 69%;
	margin: 0 auto;
}

.panel-body1 {
	box-shadow: none;
	/* background: rgba(0, 0, 0, 0.26); */
	color: #fff;

}

.panel1 {
	box-shadow: none;
	/* background: rgba(0, 0, 0, 0.26); */
	color: #fff;
	margin: 20px 0px;

}

.panel-body1 ul {
	padding: 0 25px;
}

.accordion-issue-mob-sec-rd {
	display: flex;
	align-items: center;
}

.accordion-issue-mob-sec-rd p {
	margin-bottom: 0px;
}


.panel-title1 {
	/* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); */
	/* background: rgba(0, 0, 0, 0.26); */
	color: #000;
	font-size: 20px;
	font-weight: 400;
	/* line-height: 48.52px; */
}

.panel-title1 h6 {
	background-color: #D9D9D9;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	color: #000;
	font-weight: 700;
	margin: 0 1rem 0 0;
	font-size: 19px !important;
	display: flex;
	justify-content: center;
	align-items: center;
}


.panel-group1 .panel1:nth-of-type(even) .panel-heading1 a h6 {
	background-color: #2E4C79;
	color: #fff;
}


.Report_Summary {
	color: #000;
	text-align: center;
	font-size: 40px;
	font-weight: 700;
	line-height: 54px;
	text-transform: capitalize;
}

.ReportSummary_discription {
	color: #000;
	text-align: center;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	padding: 0 5rem;
	width: 69%;
	margin: 0 auto;
}

.report_banner2 {
	background: linear-gradient(180deg, #091F48 6.31%, rgba(0, 85, 250, 0.63) 102.84%, rgba(3, 3, 3, 0.00) 118.61%);
}

.table_header {
	padding: 30px 20px;
}

#table_header_title {
	color: var(--White, #FFF) !important;
	font-size: 20px !important;
	font-weight: 500;
	/* line-height: 15px; */
	text-align: left !important;
}

.table_header_discription {
	color: var(--White, #FFF);
	font-size: 15px;
	font-weight: 300;
	line-height: 25.6px;
}

.report_banner2_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	/* margin-right: -54px; */
}

.report_banner2_btn a {
	margin: 2rem 10px;
}

.toc_btn {
	display: flex;
	padding: 11px 20px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--White, #FFF);
	color: var(--White, #FFF);
	font-size: 12px;
	font-weight: 400;
	line-height: 24px;
	border-radius: 4px;
}

.toc_btn:hover {
	display: flex;
	padding: 11px 20px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--White, #FFF);
	color: var(--White, #FFF);
	font-size: 12px;
	font-weight: 400;
	line-height: 24px;
	border-radius: 4px;
}

.Request_btn {
	display: flex;
	padding: 13px 20px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--White, #FFF);
	background: var(--White, #FFF);
	color: var(--aa, #091F48);
	font-size: 13px;
	font-weight: 500;
	line-height: 144%;
	border-radius: 4px;

}

.Request_btn:hover {
	display: flex;
	padding: 13px 20px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--White, #FFF);
	background: var(--White, #FFF);
	color: var(--aa, #091F48);
	font-size: 13px;
	font-weight: 500;
	line-height: 144%;
	border-radius: 4px;

}

.filter_btn {
	display: flex;
	padding: 1.5px 17px;
	justify-content: center;
	align-items: center;
	gap: 12px;
	border: 0.5px solid var(--White, #FFF);
	color: var(--White, #FFF);
	font-size: 13px;
	line-height: 17px;
	border-radius: 0.25rem;
	width: 99px;
	height: 47px;
}

/* .filter_btn svg {
	width: 13px;
} */

.filter_btn:hover {
	color: #ffff;
}


#overview .table_head {
	background: #3D5CFF;
	color: #fff;

}

.table_title1 {
	color: var(--White, #FFF) !important;
	font-size: 17px;
	font-weight: unset !important;
	line-height: 30px;
	padding: 16px 24px;
	align-items: center;
	flex-shrink: 0;
	align-self: stretch;
	border-right: 1px solid #588CF0 !important;
}

.table_title2 {
	color: var(--White, #FFF) !important;
	font-size: 17px;
	font-weight: unset !important;
	line-height: 30px;
	padding: 16px 24px;
	align-items: center;
	flex-shrink: 0;
	align-self: stretch;
}

tbody tr tr {
	overflow: hidden;
	color: var(--Black, #000);
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 20px;
	font-weight: 400;
	line-height: 34.6px;
}

.table_body tr:not(:nth-of-type(0)) td {
	background: var(--white-100, #FFF);
	/* padding: 2rem 1rem !important; */
	font-size: 14px;
	/* filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)); */
	/* filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.25)) */
}

.pr-table-data .table_body tr:not(:nth-of-type(1)) td {
	filter: none !important;
}

#report-summary-body tr:nth-of-type(1) td {
	background-color: #405cfc;
	color: #fff;
	font-size: 17px;
	font-weight: normal !important;
}

#report-summary-body tr:nth-of-type(1) td:nth-of-type(1) {
	border-right: 1px solid #588CF0;
}

#HowToOrder h5 {
	color: #000;
	text-align: center;
	font-size: 40px;
	font-weight: 700;
	line-height: 54px;
	text-transform: capitalize;
}

.HowToOrder_discription {
	color: #000;
	text-align: center;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	padding: 0 5rem;
	width: 69%;
	margin: 0 auto;
}

.timeline-steps {
	display: flex;
	justify-content: unset;
	flex-wrap: wrap;
	/* gap: 160px; */
}

.timeline-steps .timeline-step {
	align-items: center;
	display: flex;
	flex-direction: column;

}


.timeline-steps .timeline-content {
	width: 25rem;
	text-align: center;
}

.timeline-steps .timeline-dv {
	width: unset;
}

.timeline-steps .timeline-content .inner-circle {
	border-radius: 3.5rem;
	height: 5.5rem;
	width: 5.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #D9D9D9;
	position: relative;
	z-index: 999;
	transition: all 0.4s ease-in-out;
}

.main-toc-new-cus-trans {
	transition: all 0.4s ease-in-out;
}

.inner-circle svg {
	width: 50px;
}

.timeline-steps .timeline-content:hover .inner-circle {
	transform: scale(1.2);
}

.timeline-steps .timeline-content:hover .main-toc-new-cus-trans {
	transform: translateY(10px);
}

.main-toc-new-cus-trans:hover {
	/* transform: scale(1.1); */
	/* Adjust the scale factor as needed */
	/* transition: transform 0.5s ease; */
	transition: all 0.4s ease-in-out;
	/* Add a smooth transition effect */
}


.timeline_title {
	color: var(--Black, #000);
	font-size: 32px;
	font-weight: 700;
	line-height: 41.6px;
}

#PricingDetails h5 {
	color: #000;
	text-align: center;
	font-size: 40px;
	font-weight: 700;
	line-height: 54px;
	text-transform: capitalize;
}

.pric-dtl-head-cus h5 {
	font-size: 40px !important;
}

.hover-container h5 {
	font-size: 40px !important;
}

#PricingDetails ul {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	/* margin-bottom: 0 !important; */
}

#PricingDetails ul li {
	margin: 0 0px;

}


.price_card {
	padding: 17px 19px;
	background-color: #ffffff;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	/* flex: 1 0 auto; */
	/* margin: 0 8px; */
	transition: 0.3s ease;
	min-height: 561px;
	transition: 0.3s ease;
	max-height: 561px;
}

.price_card:hover {
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	/* background: #0029ff; */
	background-color: rgba(18, 38, 68, 0.10) !important;
	/* transform: translate(0, -10px); */
	transition: transform ease 300ms;
}

.price_card:hover .price_card_title,
.price_card_subtitle {
	color: #000;
}

.price_card:hover .price_card_border {
	background-color: #000;
}


.price_card:hover .price_card_price {
	color: #000;
}

.price_card:hover .tax_value {
	color: #000;
}

.price_card:hover .market_left_sub_title {
	color: #000;
}

.price_card:hover .price_card_btn {
	background-color: #000;
	color: #fff;
}

.price_card:hover .list_inside_list {
	color: #000 !important;
}

.price_card:hover .price_list_icon>svg * {
	fill: #000;
	stroke: #000;
}

.price_card_subtitle {
	text-align: left;
	color: var(--Black, #000);
	text-align: left;
	font-size: 13px;
	font-weight: 500;
	line-height: 24px;
}

.price_card:hover .price_card_subtitle {
	color: #000;
}

.tax_value {
	color: #000;
	text-align: center;
	font-size: 13px;
	font-weight: 500;
	line-height: 24px;
}

.price_card_title {
	color: var(--Black, #000);
	text-align: center;
	font-size: 17px;
	font-weight: 700;
	line-height: 28px;
	text-align: left;
	margin: 0;
}

.price_card_price {
	color: var(--Black, #000);
	text-align: left;
	font-size: 44px;
	font-weight: 700;
	line-height: 67.2px;
}

.price_card_btn {
	display: flex;
	padding: 8px 24px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	align-self: stretch;
	background: #0029FF;
	color: var(--White, #FFF);
	font-size: 13.5px;
	font-weight: 400;
	line-height: 24px;
	margin: 20px 0;
	border-radius: 4px;
}

.price_card_list {
	display: block !important;
	padding: 0 !important;
}

.list_inside_list {
	margin: 0 !important;
	display: flex;
	color: var(--Black, #000);
	font-size: 13px;
	font-weight: 400;
	line-height: 25px;
}

.price_card_list li span {
	margin: 0 5px 0 0;
}

.price_list_icon svg {
	width: 18px;
}


.first_card_short {
	padding: 48px 30px;
}


.why_choose_card {
	padding: 23px 25px;
	background-color: #ffffff;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	transition: 0.3s ease;
	overflow: hidden;
}

.choose_card_toc_parent .why_choose_card {
	min-height: 275px;
}

.cus-respon-padd .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
	border-bottom: 3.5px solid rgba(255, 255, 255, 0.20);
}

.why_choose_card:hover {
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	background: #0029ff;
	transition: transform ease 300ms;
	/* transform: translate(0, -10px); */
}

.why_choose_card:hover .why_choose_card_title,
.why_choose_card_sub_title {
	color: white;
}

.why_choose_card:hover .why_choose_card_sub_title {
	color: white;
}

.why_choose_card_title {
	color: #0029FF;
	font-size: 24px;
	font-weight: 600;
	line-height: 33.6px;

}

.why_choose_card_sub_title {
	color: var(--Black, #000);
	font-size: 13px;
	font-weight: 400;
	line-height: 24px;
}

input[type=search]:focus {
	outline: none !important;
	border-color: none !important;
}


.testimonial_card_rd {
	background: var(--Footer-bg, linear-gradient(270deg, #001235 50%, #0E4CC5 80.42%, rgba(4, 38, 102, 0.52) 117.35%, rgba(255, 255, 255, 0.00) 117.36%));
	padding: 20px 20px;
	display: flex !important;
	flex-shrink: 0;
}

.testimonial_card_rd_content {
	display: flex;
	padding: 20px 0px;
	flex-direction: column;
}

.principle_rd_content {
	color: var(--White, #FFF);
	font-size: 20px;
	width: 100%;
	font-weight: 300;
	padding: 0 68px 0px 0px;
	line-height: 30px;
	margin: 0 auto;
}

.testimonial_card_rd_title {
	color: #FFF;
	font-size: 50px;
	font-weight: 700;
	line-height: 60px;

}

.testimonial_card_rd_discription {
	list-style: none;
	padding: 0;
}

.testimonial_card_rd_discription li {
	color: var(--White, #FFF);
	font-size: 20px;
	font-weight: 300;
	display: flex;
	gap: 5px;
	line-height: 30px;
	margin: 15px 0;
}

.cus-head-maminn {
	color: #fff;
	background: #0029ff;
	padding: 13px 30px;
	font-size: 14px;
	font-weight: 400;
	border-radius: 4px;
}

.cus-head-maminn:hover {
	background: none;
	color: #fff;
	border: 1px solid #fff;
}

.cus-head-maminn svg {
	margin-top: 2px !important;
}

.cus-head-maminn a {
	font-size: 12px;
}

.banner_hero_image img {
	width: 50%;
	height: auto;

}

.pricing-dtl-hero-img img {
	width: 76%;
}


.Market_Segmentation_faq h6 {
	font-size: 24px;
	font-weight: 700;
	line-height: 41.52px;
	color: #fff;

}

.Market_Segmentation_faq ul li {
	font-size: 20px;
	font-weight: 700;
	line-height: 41.52px;
	color: #fff;

}

.banner_group_btn {
	list-style: none;
	display: flex;
	padding: 0;
	margin-top: 30px;
}

.banner_group_btn li {
	margin: 0 10px 0 0;
}


.title {
	color: #999;
	text-align: center;
	margin-bottom: 50px;
}


.select2-container {
	min-width: 200px;
}

.select2-container .select2-choice {
	border: 2px solid #dce4ec;
	height: 36px;
	border-radius: 0px;
	font-family: "Lato", sans-serif;
	font-size: 14px;
	text-indent: 1px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	background-image: none;
}

.select2-container.select2-drop-above .select2-choice {
	border-bottom-color: #dce4ec;
	border-radius: 0px;
}

.select2-container input:focus,
.select2-container .selection:focus {
	outline: 0px;
}

.select2-drop {
	margin-top: -2px;
	border: 2px solid #dce4ec;
	border-top: 0;
	border-radius: 0px !important;
	-webkit-border-radius: 0 0 6px 6px;
	-moz-border-radius: 0 0 6px 6px;
	border-radius: 0 0 6px 6px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.select2-drop.select2-drop-above {
	margin-top: 2px;
	border-top: 2px solid #dce4ec;
	border-bottom: 0;
	-webkit-border-radius: 6px 6px 0 0;
	-moz-border-radius: 6px 6px 0 0;
	border-radius: 6px 6px 0 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.cus-respon-sidebar li {
	width: 100px !important;
}

.select2-container .select2-choice div {
	border-left: 2px solid #dce4ec;
	-webkit-border-radius: 0 4px 4px 0;
	-moz-border-radius: 0 4px 4px 0;
	border-radius: 0 4px 4px 0;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
}

.select2-search {
	margin-top: 3px;
}

.select2-search input {
	height: 30px !important;
	border: 2px solid #dce4ec;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
	border: 2px solid #dce4ec;
	outline: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.select2-dropdown-open .select2-choice {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-border-bottom-left-radius: 0;
	-moz-border-radius-bottomleft: 0;
	border-bottom-left-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	-moz-border-radius-bottomright: 0;
	border-bottom-right-radius: 0;
}

.select2-dropdown-open .select2-choice div {
	background: transparent;
	border-left: none;
	filter: none;
}

.select2-results .select2-highlighted {
	background: #1abc9c;
	color: #fff;
	border-radius: 0px;
}

.select2-results {
	padding: 0 0 0 0px;
	margin: 4px 0px 0px 0;
}

.select2-container-multi .select2-choices {
	height: auto !important;
	height: 1%;
	border: 2px solid #dce4ec;
}

.select2-container-multi.select2-container-active .select2-choices {
	border: 2px solid #dce4ec;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.select2-container .select2-choice .select2-arrow {
	border: 0px;
	border-radius: 0px;
	background: transparent;
	background-image: none;
}

body {
	margin: 0px;
	padding: 0px;
}


.tab_container h5 {
	color: var(--Black, #000);
	font-size: 40px;
	font-weight: 700;
	line-height: 48px;
}

.tab_container p {
	color: var(--Black, #000);
	font-size: 24px;
	font-weight: 400;
	line-height: 150%;
	/* 36px */
}

.become_part_left_content p {
	color: var(--Black, #000);
	text-align: center;
	font-size: 20px;
	font-weight: 400;
	line-height: 36px;
	padding: 15px 30px;
}

.become_part_left_btn {
	color: #FFF;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.00);
	background: #0029FF;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
	padding: 12px 24px;
}

.demo-container {
	margin: 2rem auto;
}

.Contact_us_banner p {
	color: var(--Black, #000);
	text-align: center;
	font-size: 33px;
	font-weight: 400;
	line-height: 39.6px;
	margin: 10px 0;
	backdrop-filter: blur(2px);
}

.become_part_right_image {
	height: 100%;
	max-width: 100%;
}

/* mew home page css  */


.request_sample_banner {
	color: #fff;
}

.request_sample_banner span {
	font-weight: 200;
}

.request_sample_banner h2 {
	font-weight: 700;
}

.request_sample_banner p {
	font-style: italic;
	line-height: 33px;
}


/* ankush */
.request_sample_after_section {
	background: var(--Footer-bg, linear-gradient(270deg, #001235 26%, #0E4CC5 63.42%, rgba(4, 38, 102, 0.52) 118.35%, rgba(255, 255, 255, 0.00) 99.36%));

	padding: 39px 0 5rem 0;
}

.request_sample_after_section p {
	color: #fff;
	font-weight: 700;
}


.request_sample_form {
	position: relative;
	top: -9%;
	margin: 0 15px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	/* margin: 0 15px; */
}

/* .request_sample_form .new-contus-cus-logoes {
	height: 52px !important;
} */
.request_sample_form .logos img {
	/* width: 100%; */
	height: 100% !important;
}

.market_seg_paragraph p:nth-child(1) {
	margin-bottom: 0px !important;
}

.market_seg_paragraph-new p {
	color: #000;
	text-align: justify;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	padding: 0 8px;
}

.loc_ation h6 {
	color: var(--Dark-Basic-Primary, #F3F3F3);
	font-size: 24px;
	font-weight: 700;
	position: relative;
}

.loc_ation h6::after {
	content: "";
	background: #ffffffcc;
	width: 59px;
	position: absolute;
	bottom: -11px;
	height: 0.8px;
	left: 0;

}


.form_request {
	border-radius: 6px;
	border: 1px solid var(--Dark-Accent-Primary, #5C7AE5);
	padding: 0px 16px;
}


.cus-proc-form {
	padding: 20px 0 !important;
}

.main-3rd-sub-enq-form {
	padding: 20px 0px !important;
}


.more_clarity_heading {
	color: var(--White, #FFF);
	text-align: center;
	font-size: 45px;
	font-weight: 700;
	line-height: 54px;
	text-transform: capitalize;
}


.cus-con-side-roc p {
	font-size: 14px !important;
}


.testimonial_card_rd_discription li span svg {
	margin: 0px 0px -4px 0;
	width: 20px;
	height: 20px;
}

/* .margin_top {
	margin-top: 20px;
} */

.intel_margin {
	margin: 5rem 0 0 0;
}

.section_request_sample {
	padding-bottom: 4rem;
}

.fileUpload {
	border-radius: 4px !important;
	background: var(--Dark-Accent-Primary, #5C7AE5);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	color: #fff;
	font-size: 1em;
	font-weight: bold;
	/* margin: 0rem 0 1.5rem 0; */
	overflow: hidden;
	padding: 8px;
	position: relative;
	text-align: center;
	/* width: auto; */
	cursor: pointer;
	/* margin-left: 1px; */
	display: flex;
	justify-content: center;
	align-items: center;
	/* width: 0px; */
}

.fileUpload:hover,
.fileUpload:active,
.fileUpload:focus {
	border-radius: 4px;
	background: var(--Dark-Accent-Primary, #5C7AE5);
	cursor: pointer;
}

.fileUpload input.upload {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	padding: 0;
	font-size: 20px;
	cursor: pointer;
	opacity: 0;
	filter: alpha(opacity=0);
	width: 148px;
	height: 46px;
	cursor: pointer;
}

input[type="file"] {
	position: fixed;
	right: 100%;
	bottom: 100%;
}

.custom-file-upload {
	border: 1px solid #ccc;
	display: inline-block;
	padding: 6px 12px;
	cursor: pointer;
}

.file_upload_content {
	color: var(--Dark-Basic-Primary, #F3F3F3);
	font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 18px !important;
	margin-top: 16px;
	margin-bottom: 12px;
}


.cont-us-proc-main-im--form form {
	padding: 13px 0px !important;
}


.table_body tr {
	border-bottom: 1px solid var(--Divide-line, rgba(0, 0, 0, 0.20));
}

.Explore_Our_Services {
	background: #0029FF;
	width: 38%;
	color: #FFF;
	font-size: 15px;
	font-weight: 500;
	line-height: 24px;
	padding: 8px 57px;
}


.Explore_Our_Services h6 {
	margin-bottom: 0px;
}


.toc_form input {
	color: #505050;
	font-size: 13px;
	font-weight: 400;
	line-height: 17px;
	margin: 3px 0;
	padding: 3px 9px;
}


.toc-req-form-tab-vie {
	/* padding: 15px 24px 28px 7px !important; */
	padding: 6px 24px 14px 7px !important;
}

.fixed_toc_sidebar {
	position: sticky !important;
	top: 0;
}

#main::-webkit-scrollbar {
	width: 5px;
}

/* Track */
#main::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey;
	border-radius: 10px;
}

/* Handle */
#main::-webkit-scrollbar-thumb {
	background: #091F48;
	border-radius: 10px;
}

/* Handle on hover */
#main::-webkit-scrollbar-thumb:hover {
	background: #091F48;
}

#main {
	overflow-y: auto;
	margin: 10px 0;
	height: 26rem;
}

#main #faq .card-header {
	cursor: pointer;
}

#main #faq .card {
	margin-bottom: 16px;
	border: 0;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

#main #faq .card .card-header {
	border: 0;
	background: #FFF;
	/* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); */
	border-radius: 2px;
	padding: 0;
}

/* #main #faq .card .card-header.collapsed {
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) !important;
}
#main #faq .card .card-header.highlight {
	box-shadow: unset !important;
} */


#main #faq .card .card-header>div {
	color: #fff;
	display: block;
	text-align: left;
	background: #fff;
	color: #0029FF;
	padding: 11px 12px 11px 0px;
	border-left: 8px solid #113B83;
	border-right: 1px solid #ebebeb;
}

/* ===========rotate  icon market segment start========== */

.rotate-icon-rd {
	position: relative;
}

.rotate-icon-rd::after,
.rotate-icon-rd::before {
	position: absolute;
	content: "";
	display: block;
	width: 13px;
	height: 0;
	bottom: 50%;
	right: 20px;
	border-top: thin solid #071d91;
	background: #000;
	background-clip: padding-box;
	transform: translate3d(0, 50%, 0);
	transition: transform .35s ease, bottom .35s ease;
	will-change: opacity;
}

.rotate-icon-rd:after {
	transform: translate3d(0, 50%, 0) rotate(90deg)
}

.rotate-icon-rd[aria-expanded=true]:before {
	transform: translate3d(0, 50%, 0) rotate(180deg)
}

.rotate-icon-rd[aria-expanded=true]:after {
	transform: translate3d(0, 50%, 0) rotate(1turn)
}

/* ============roatte icon market seg end  */


.shadow-issue {
	border-right: 2px solid #cccccc4f;
	border-left: 2px solid #cccccc4f;
}


#main #faq .card .card-header>div .btn-header-link {
	color: #000;
	font-weight: 600;
	font-size: 19px;
}

/* #main #faq .card .card-header>div:hover svg path {
	fill: #fff;
} */

#main #faq .card .card-header .btn-header-link:after {
	content: "";
	font-weight: 900;
	float: right;
}

/* #main #faq .card .card-header .btn-header-link.collapsed {
	background: #fff;
	color: #000;
	font-weight: 600;
} */

#main #faq .card .collapsing {
	/* background: #0029FF; */
	line-height: 30px;
}

#main #faq .card .collapse {
	border: 0;
}

#main #faq .card .collapse.show {
	line-height: 30px;
}

#main #faq .card .card-body {
	border-left: 8px solid #113B83;
}

.card-body h6 {
	color: #fff;
}

.card-body ul li:not(#main #faq .card .card-body ul li) {
	color: #fff;
}

.btn {
	border-radius: 0%;
}

button:focus,
select:focus {
	outline: none;
}

.toc-table span {

	/* color: var(--ANOTHER-BLUE, #0041BE);
	font-family: Lora;
	font-size: 33px;
	font-weight: 700;
	line-height: 43.2px; */
	color: var(--ANOTHER-BLUE, #0041BE);
	font-family: Lora;
	font-size: 30px;
	font-weight: 700;
	line-height: 44.2px;
}

.toc_body>li:nth-of-type(2) label {
	font-size: 18px;
	font-weight: 600;
	line-height: 31.2px;
	list-style: none;
}

.toc-table li {
	/* color: var(--Black, #000);
	font-size: 18px;
	font-weight: 400;
	line-height: 35px;
	list-style: none; */
	color: var(--Black, #000);
	font-size: 1.1vmax;
	font-weight: 400;
	line-height: 31px;
	list-style: none;
}


.Pricing_plans {
	color: var(--Black, #000);
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.carousel-indicators li {
	width: 9rem;
}

.carousel-control-prev-icon {
	background-image: url(../image/arrow_forward_ios.svg) !important;
	fill: #fff;
}

.carousel-control-next-icon {
	background-image: url(../image/arrow_fbackward_ios.svg) !important;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
	display: inline-block;
	width: 100%;
	height: 45px;
	background: transparent no-repeat center center;
	background-size: 100% 100%;
}

.carousel-control-prev {
	left: -8%;
}

.carousel-control-next {
	right: -8%;
}

.form-group {
	margin-bottom: 0rem !important;
}


/* #main #faq .card .card-header>div:hover{
	background-color: #0029FF !important;
	color: #fff;
} */


.all-card {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	margin: 0 auto;
}

.how_to_order_title {

	color: var(--Black, #000);
	font-size: 22px;
	font-weight: 700;
	line-height: 22px;
	margin: 25px 0px 0px 30px;
	text-align: left;

	

}

.how_to_order_para {

	color: var(--Black, #000);
	font-size: 18px;
	font-weight: 400;
	line-height: 32px;
	margin: 10px 0px 0px 30px;
	text-align: left;

}

/* .position_change {
	position: sticky;
	top: 0;
	z-index: 9999999;
} */


.position_change {
	position: sticky;
	top: 0;
	z-index: 9999999;
}


.request_banner {
	background: var(--hero-blue, linear-gradient(180deg, #001AA5 60.35%, rgba(0, 26, 165, 0.19) 115.46%, rgba(0, 26, 165, 0.00) 100%, rgba(0, 26, 165, 0.00) 100%)) !important;
}

.request_smaple_second_form_left span {
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: #fff;

}

.request_smaple_second_form_left h3 {
	color: var(--White, #FFF);
	font-size: 40px;
	font-weight: 700;
	line-height: 67.2px;
	margin-bottom: 1rem;
}

.feedback_icon ul {
	list-style: none;
	display: flex;
	align-items: center;
	padding: 0;
	margin: 20px 0 0 0;
}

.feedback_icon ul li:nth-child(3) {
	border-radius: 40px;
	background: rgba(123, 97, 255, 0.20);
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;

}

.feedback_icon ul li {
	margin: 0 2px;
}

.feedback_icon ul li svg {
	width: 23px;
	height: 23px;

}

.request_smaple_second_form_left {
	padding: 1rem 0;
}

/* .request_smaple_second_form{
	padding: .8rem 0;
}
.request_smaple_second_form{
	padding: 3rem 0;
} */
.request_sample_btn {
	display: flex;
	padding: 10px 50px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	background: #0029FF;
	color: var(--White, #FFF);
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
}

.main-new-rs-sub {
	padding: 10px 80px;
}

.request_form_input {
	border-radius: 0 !important;
}

.request_smaple_second label {
	font-size: 13px !important;
}

.border_hr {
	background-color: #52526B;
	margin: 0.4rem 0;
}


.third_images_section_content p {
	color: #000;
	text-align: center;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	padding: 35px 46px 0px;
	margin-bottom: 0px;
}


.Contact_tabs {
	color: #000 !important;
	text-align: center;
	font-size: 25px !important;
	font-weight: 400;
	line-height: 42px;
	margin: 0 30px !important;
}

.cont_act_tabs {
	padding: 35px 20px 23px 20px !important;
	flex-wrap: nowrap;
	border-bottom: 2px solid rgb(0 0 0 / 8%);
	background: #f2f4f8;
	justify-content: center;
	gap: 35px;
}

.cont_act_tabs li {
	text-wrap: nowrap;
}

.my-new-con-tab-con {
	margin-top: 36px;
}

.Contact_tabs.nav-link {
	color: var(--White, #FFF);
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	border-bottom: 3px solid rgba(0, 0, 0, 0.20);

}

.Contact_tabs.nav-link.active {
	border-bottom: 3px solid #0029FF !important;
	color: #0F4CC2 !important;
	line-height: unset !important;
	font-weight: 500;
}

.Contact_tabs.nav-link h3 {
	font-size: 19px;
	margin: 0;
}

.home-banner-new-panel.nav-link {
	border-bottom: 3.5px solid rgb(0 0 0 / 9%) !important;
	font-size: 19px !important;
	font-weight: 500;
	color: var(--aa, #091F48) !important;
}

.home-banner-new-panel.nav-link.active {
	border-bottom: 3.5px solid #0041BE !important;
	color: #091F48 !important;
	font-weight: 500;
	font-size: 19px !important;
}

.res-cont-tabs-btn-imp {
	font-size: 23px !important;
}

.res-cont-tabs-btn-imp :active {
	font-size: 23px !important;
}

.cus-home-tab-content {
	padding: 0px 16px 0 16px;
}

.cus-home-tab-content>.tab-pane.fade {
	transition: opacity .3s linear;
}

.cus-home-tab-content img {
	height: auto !important;
}

.left-home-page-cont-sec {
	padding: 12px 0 12px 30px;
}

.left-home-page-cont-sec h4 {
	color: #0041BE;
	font-family: "roboto";
	font-size: 55px;
	font-weight: 700;
	line-height: 125%;
	/* 87.5px */
}

.left-home-page-cont-sec p {
	color: #000;
	font-size: 20px;
	font-weight: 400;
	line-height: 173%;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.con-us-sec-new-home-btn {
	width: 100% !important;
}


/* .mar_gin_contact_tabs {
	margin-left: 5px !important;
} */


.toc_heading h5 {
	color: #000;
	text-align: center;
	font-size: 40px;
	font-weight: 700;
	line-height: 48px;
	text-transform: capitalize;
}

.toc_discrption {
	color: #000;
	text-align: center;
	font-size: 20px;
	width: 67%;
	margin: 0 auto;
	font-weight: 400;
	line-height: 30px;
	padding: 0 6rem;
}

.res-main-up-btn span {
	font-weight: 500;
	font-size: 14px;
}

.list_of_key {
	color: #000;
	text-align: center;
	font-size: 40px;
	font-weight: 700;
	line-height: 48px;
	margin: 2px 0px 35px 0px;
	/*text-transform: capitalize;*/
}

.toc_select {
	display: flex;
	justify-content: space-between;
	align-items: center;
	list-style: none;
	padding: 0;
	margin-bottom: 0px;
}

.toc_select li select,
.toc_select li input[type="search"] {
	padding: 14px 7px 14px 32px;
	background-color: #fff;
	color: #000;
	border-radius: 4px;
	border: 1px solid var(--Divide-line, rgba(0, 0, 0, 0.20));
	font-weight: 600;
	font-size: 16px;
}

.toc_select .common-search .report-location-list {
	display: none;
}

.toc_select li button {
	font-weight: 500;
	font-size: 14px;
	padding: 12px 112px;
}

.contact_us_form {
	border: 1px solid #fff;
	padding: 20px 20px !important;
}

.contact_large_image {
	object-fit: cover;
	min-height: 712px;
	overflow: hidden;
}

.contact_2_image {
	/* ankush */
	/* aspect-ratio: 9/8.25; */
	object-fit: cover;
	overflow: hidden;
	min-height: 361px;
}

.contact_us_banner {

	background: url(../image/contact_us_banner2.png) !important;
	background-size: cover !important;
}

.contact_2_image {
	transition: transform 0.3s ease-in-out;
}


.contact_large_image {
	transition: transform 0.3s ease-in-out;
}

.contact_2_image:hover {
	transform: scale(1.08);
	/* Adjust the scale factor for the desired zoom level */
}

/* Hover state */
.contact_large_image:hover {
	transform: scale(1.08);
	/* Adjust the scale factor for the desired zoom level */
}


.contact_us_feedback span {
	font-size: 14px;
	font-weight: 600;
	line-height: 24px;
	color: #000;

}

/* .contact_us_feedback h1 {
	color: #0029FF;
	font-size: 40px;
	font-weight: 700;
	line-height: 48px;
} */

.new-cont-us-fed h1 {
	color: #0029FF;
	font-size: 50px;
	font-weight: 700;
	line-height: 60px;
}

.new-cont-us-fed p {
	line-height: 30px;
	font-size: 20px;
	font-weight: 400;
}

.feedback_icon ul {
	list-style: none;
	display: flex;
	align-items: center;
	padding: 0;
	margin: 20px 0 0 -5px;
}

.new-fed-icon ul {
	margin: 50px 0 0 -5px;
}

.new-fed-req-form {
	padding: 40px 50px;
}

.feedback_icon ul li:nth-child(3) {
	border-radius: 40px;
	background: rgba(123, 97, 255, 0.20);
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;

}

.feedback_icon ul li {
	margin: 0 6px;
	line-height: 14px !important;
}

.feedback_icon ul li svg {
	width: 23px;
	height: 23px;

}

/* .contact_us_feedback {
	padding: 2.5rem 2.5rem;
} */

.new-cont-us-fed {
	padding: 2.5rem 6.5rem;
}

.con-cus-sec-padding-new {
	padding: 2.5rem 2.5rem !important;
}

.new-fed-con-form {
	padding: 20px 40px !important;
}


.new-cus-opa {
	position: relative;
	z-index: 1;
}


.cont-sec-new-sec-padding-cen li a {
	padding-right: 27px !important;
	padding-left: 27px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
	width: 100%;
	text-align: center !important;
}


.main-cus-form-social-icons img {
	height: auto;
}

.main-cus-form-social-icons-wrap ul li {
	display: inline-flex !important;
	margin-right: 8px;
}


.svg-cus-home-page-sec {
	position: relative;
	right: 42px;
}

.treading_section_list svg {
	width: 50px;
}


.toc_form_heading {
	color: #FFF;
	font-size: 20px;
	font-weight: 500;
	line-height: 35px;
	text-align: left;
}

.toc_control {
	display: block;
	width: 100%;
	padding: 3px 5px !important;
	font-size: 12px !important;
	line-height: 1.5;
	color: #495057;
	background-clip: padding-box;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	border-radius: 0%;
}

.toc_form input {
	color: #505050;
	font-size: 13px;
	font-weight: 400;
	line-height: 24px;
	margin: 4px 0;
	padding: 4px 9px;
}

.toc_form textarea {
	font-size: 13px;
	padding: 4px 9px;
}

.toc_form label {
	/* color: #FFF;
	font-size: 14px !important;
	font-weight: 500;
	line-height: 24px;
	margin-bottom: 0; */

	color: #FFF;
	font-size: 12px !important;
	font-weight: 500;
	line-height: 17px;
	margin-bottom: 0;

}

.third_select select {
	border-radius: 4px !important;
	border: 1px solid rgba(0, 0, 0, 0.20) !important;
	background: rgba(0, 0, 0, 0.80) !important;
	color: #fff !important;
}


.home_tabs {
	padding: 0.8rem 0rem !important;
	justify-content: center;
	gap: 58px;

}

.home_tabs_heading_title {
	color: #0029FF;
	text-align: center;
	font-size: 35px;
	font-weight: 700;
	line-height: 40px;
	text-transform: capitalize;
}

.home_tabs_heading_disc {
	font-size: 16px !important;
	line-height: 25px !important;
	padding: 0px 22rem !important;
}


.search_bar_padding {
	border-right: 1px solid #DDE1E6;
	border-left: 1px solid #DDE1E6;
	background: #FFF;
	padding: 0 18px 15px 16px;
	width: 100% !important;
}


.why_chose_image img {
	/* aspect-ratio: 16/7.3; */
	width: 100%;
}

.card-body ul {
	padding: 0 25px;
}

.card-body ul li {
	line-height: 30px !important;
}


.form-control3 {
	display: block;
	width: 100%;
	padding: 0.2rem 0.75rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control-new {
	padding: 0.5rem 0.75rem;
}


.request_form textarea {
	/* color: var(--Neutral-Dark-gray, #505050) !important;
	font-size: 13px;
	font-weight: 400;
	line-height: 24px;
	background-color: #fff;
	border-radius: 0% !important;
	margin-bottom: 28px !important; */
	color: var(--Neutral-Dark-gray, #505050) !important;
	font-size: 13px;
	font-weight: 400;
	line-height: 24px;
	background-color: #fff;
	border-radius: 0% !important;
	margin-bottom: 20px !important;
}

.request_form label {
	margin-top: 5px !important;
}


#PricingDetails ul li img {
	width: 80%;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.table_body tr td span ul {
	margin: 10px 0px 0px 1.5rem;
}


.new-fed-con-form textarea {
	width: 100% !important;
	padding: 14px 0px 0px 12px;
	height: 55px;
}

.cus-pricing-plan-section {
	width: 96%;
	margin: 0px auto;
}

.main-svg-2-sec {
	position: absolute;
	top: -28px;
	left: 4px;
}

.cus-toc-svg-sec {
	top: -26px;
}


.cus-pt-pb-main {
	padding-top: 50px;
	padding-bottom: 60px;
}

.main-svg-2-sec-po {
	position: absolute;
	top: -28px;
	left: 6px;
}


/* .table td,
.table th {
	padding: .75rem 0 .75rem 1.3rem;
} */

.margin_top ul {
	list-style: none;
}

.margin_top ul li span {
	margin: 0 10px 0 0;
}

.margin_top ul li span svg {
	width: 20px;
	margin: 0 0 -8px 0;
}

.carousel {
	margin: 3rem 0;
}


.custom-select-rep-lis .report-location-list {
	background: #0041BE;
}


.active-report-list ul li {
	padding: 5px 0 5px 10px !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
}


.toc_select .common-search input[type="search"]::placeholder {
	color: #000;
}

@media screen and (min-width: 1025px) and (max-width:1300px) {}

@media screen and (min-width: 1025px) and (max-width:1440px) {
	.reposnive_cards {
		padding: 3px;
	}

	.reposnive_cards2 {
		padding: 0 3px;
	}


	.report_2_contnet {
		/* padding: 10px 10px 0px 23% !important;
    color: #fff; */
	}

	/* .tab-content:not(#ExploreOur .tab-content):not(.main-cus-form-social-icons.tab-content) img {
		height: 212px;
	} */


	.margin_top {
		/* padding: 20px 0 27px 153px !important; */
	}


	.margin_top ul li {
		display: flex;
		margin: 15px 0;
		color: #000;
		text-align: justify;
		font-size: 16px;
		font-weight: 400;
		line-height: 30px;
	}

	.margin_top ul li span {
		margin: 0 10px 0px 0px;
	}


	.list_of_key {
		font-size: 30px !important;
		line-height: 40px !important;
		font-weight: 600 !important;
		margin: 0 0 20px 0;
	}

	.toc_heading h5 {
		font-size: 30px !important;
		line-height: 40px !important;
	}

	.toc_discrption {
		font-size: 16px !important;
		line-height: 25px !important;
		padding: 0px 22rem !important;
	}

	.toc-desc-mid-dev {
		padding: 0px 0px !important;
	}

	.cus-all-card {
		flex-wrap: unset !important;
	}


	.principle_content {
		font-size: 15px !important;
		line-height: 20px !important;
	}

	.testimonial_card_discription {
		font-size: 16px !important;
		line-height: 25px !important;
		margin: 15px 0 0 0;
		padding: 0 4rem 0px 0px;
	}

	.testimonial_card_title {
		font-size: 20px !important;
		line-height: 40px !important;
	}


	.third_images_section_content p {
		font-size: 15px !important;
		line-height: 20px !important;
		padding: 30px 15px 0 15px !important;
	}


	.third_images_section h2 {
		font-size: 35px !important;
		line-height: 48px !important;
		padding: 27px 35px !important;
	}

	.timeline_first_content h5 {
		font-size: 35px !important;
		line-height: 40px !important;
	}

	.white_card span {
		font-size: 15px !important;
		line-height: 20px !important;
	}

	.blue_card span {
		font-size: 14px !important;
		line-height: 20px !important;
	}


	.request_sample_banner span {
		font-size: 16px !important;
	}


	.more_clarity_heading {
		font-size: 35px !important;
		line-height: 30px !important;
	}

	.choose_card_toc_parent .why_choose_card {
		min-height: 257px;
	}

	.why_choose_card {
		padding: 15px;
	}

	.why_choose_card_title {
		font-size: 16px !important;
	}

	.why_choose_card_sub_title {
		font-size: 13px !important;
		line-height: 20px !important;
	}

	/* .report_banner_content {
		
		position: relative;
		top: 15% !important;
		left: 7% !important;
		z-index: 9999;
	} */

	.report_banner_content h2 {
		font-size: 37px !important;
		line-height: 50px !important;
	}

	.report_banner_content p {
		font-size: 14px !important;
		line-height: 25px !important;
	}

	.rd_banner_btn {
		padding: 10px 12px !important;
		font-size: 11px !important;
		font-weight: 400 !important;
	}


	/* #Overview p {
		font-size: 16px !important;
		line-height: 25px !important;
	} */


	.marketternds_content {
		font-size: 16px !important;
		line-height: 30px !important;
	}

	#Overview .cus-chart-inner {
		font-size: 16px !important;
		line-height: 30px !important;
	}

	#MarketSegmentation h5 {
		font-size: 30px !important;
		line-height: 50px !important;
	}

	/* #MarketSegmentation .Market_Seg_discription {
		font-size: 16px !important;
		line-height: 25px !important;
		padding: 0px 15rem !important;
	} */


	.Market_Segmentation_faq h6 {
		font-size: 20px !important;
	}

	.Market_Segmentation_faq ul li {
		font-size: 16px !important;
		line-height: 25px !important;
	}

	.market_seg_paragraph.market_seg_paragraph {
		font-size: 16px !important;
		line-height: 30px !important;
	}

	#Competitive h5 {
		font-size: 30px !important;
		line-height: 50px !important;
	}

	#FAQ h5 {
		font-size: 30px !important;
		line-height: 50px !important;
	}


	.Report_Summary {
		font-size: 30px !important;
		line-height: 50px !important;
	}

	.table_title1 {
		font-size: 14px !important;
		font-weight: 500 !important;
	}

	.table_title2 {
		font-size: 14px !important;
		font-weight: 500 !important;
	}

	#HowToOrder h5 {
		font-size: 30px !important;
		line-height: 50px !important;
	}

	#PricingDetails h5 {
		font-size: 30px !important;
		line-height: 50px !important;
		margin-bottom: 20px;

	}

	.new-hto-sec-pd .pric-ftl-hto h5 {
		font-size: 30px !important;
		line-height: 50px !important;
	}


	.testimonial_card_rd_title {
		font-size: 40px !important;
		line-height: 48px !important;
	}

	.principle_rd_content {
		font-size: 16px !important;
		line-height: 25px !important;
	}

	.testimonial_card_rd_discription li {
		font-size: 16px !important;
		line-height: 25px !important;
	}


	.request_sample_after_section p {
		font-size: 2rem;
		line-height: 36px;
	}

	.explore_card {
		padding: 16.3px;
	}


	.input-group input[type="text"] {
		color: #fff;
	}

	.Competitive_card_sub_title {
		font-size: 14px !important;
		line-height: 20px !important;
	}

	.explore_card_title {
		font-size: 12px !important;
		/* line-height: 23.8px !important; */
	}


}

@media screen and (min-width: 769px) and (max-width:1024px) {
	.why_choose_card_sub_title {
		font-size: 14px !important;
		line-height: 20px !important;
	}

	.why_choose_card {
		padding: 14px !important;
	}


	.price_card {

		min-height: 625px !important;
	}

	.Pricing_plans {
		font-size: 14px !important;
		font-weight: 500 !important;
	}

	#PricingDetails h5 {
		font-size: 25px !important;
		line-height: 35px !important;
		margin-bottom: 20px;
	}

	.hover-container h5 {
		font-size: 30px !important;
	}


	.testimonial_card_rd_discription li {
		font-size: 14px !important;
		line-height: 25px !important;
	}

	.principle_rd_content {
		font-size: 16px !important;
		line-height: 25px !important;
	}

	.testimonial_card_rd_title {
		font-size: 25px !important;
		line-height: 35px !important;
	}

	.HowToOrder_discription {
		font-size: 16px !important;
		line-height: 25px !important;
	}

	#HowToOrder h5 {
		font-size: 25px !important;
		line-height: 35px !important;
	}

	.table_title2 {
		font-size: 16px !important;
		line-height: 25px !important;
		display: flex !important;
	}

	.table_title1 {
		font-size: 16px !important;
		line-height: 25px !important;
	}

	.ReportSummary_discription {
		font-size: 16px !important;
		line-height: 25px !important;
	}

	.Report_Summary {
		font-size: 25px !important;
		line-height: 35px !important;
	}

	.FAQ_discription {
		font-size: 16px !important;
		line-height: 25px !important;
	}

	#FAQ h5 {
		font-size: 25px !important;
		line-height: 35px !important;
	}

	.Competitive_card {
		padding: 1rem 10px !important;

	}

	.Competitive_card_sub_title {

		font-size: 14px !important;
		line-height: 25px !important;

	}

	.Competitive_discription {
		font-size: 16px !important;
		line-height: 25px !important;
	}

	#Competitive h5 {
		font-size: 25px !important;
		line-height: 35px !important;
	}

	.market_seg_paragraph {
		font-size: 16px !important;
		line-height: 25px !important;
	}

	#main {

		margin: 5px 0 0px 0 !important;

	}

	.form-group label {

		font-size: 14px !important;

	}

	.form_heading {
		line-height: 30px;
		font-size: 20px !important;

	}

	/* #MarketSegmentation .Market_Seg_discription {
		font-size: 16px !important;
		line-height: 25px !important;
		padding: 0 9rem;
	} */

	#MarketSegmentation h5 {

		font-size: 25px !important;
		line-height: 35px !important;
	}

	.explore_card_title {
		font-size: 16px !important;
		line-height: 26.8px !important;
	}

	.explore_card_btn {
		padding: 0px 20px !important;
	}

	.marketternds_content {

		font-size: 16px !important;
		line-height: 25px !important;
		margin: 30px 0;
	}

	.margin_top ul {
		list-style: none;
		margin-left: 30px !important;
	}

	.margin_top ul li {
		margin: 5px 0 !important;
		color: #000;
		text-align: justify;
		font-size: 16px;
		font-weight: 400;
		line-height: 30px !important;
		text-indent: -30px;
	}


	/* .margin_top {
		padding: 15px 0 0 3rem !important;
	} */


	.report_2_contnet {
		/* padding: 10px 10px 0px 3rem !important;
		color: #fff; */
	}


	.report_banner_content {
		/* position: relative; */
		top: 25% !important;
		left: 4% !important;
		z-index: 9999;
	}

	.report_banner_content p {
		font-size: 14px !important;
		line-height: 25px !important;
		font-weight: 400 !important;
	}

	.rd_banner_btn {
		padding: 12px 14px !important;
		font-size: 12px !important;
		font-weight: 400 !important;
		line-height: 24px !important;
	}

	.report_banner_content h2 {
		font-size: 25px !important;
		line-height: 35px !important;
	}


}

@media screen and (min-width: 1440px) {
	.third_images_section_content p {
		font-size: 18px !important;
		line-height: 25px !important;
		padding: 30px 15px 0 15px !important;
	}
}

@media screen and (min-width: 1441px) and (max-width:1900px) {
	#PricingDetails h5 {
		margin-bottom: 12px !important;
	}

	/* .report_2_contnet {
		padding: 10px 10px 0px 300px;
		color: #fff;
		font-size: 16px;
		line-height: 28px;
	} */


	/* .explore_card {
		padding: 25px 15px !important;
	} */


}

@media (max-width: 768px) {
	.slider {
		width: 90%;
	}
}

@media (max-width: 480px) {


	.report_banner2_btn {
		justify-content: start !important;
	}


	.report_banner_content p {
		font-size: 16px !important;
		font-weight: 300 !important;
	}

	.report_banner_content span {
		font-size: 14px !important;
	}

	.report_banner_content h2 {
		font-size: 25px !important;
		line-height: 35px !important;
	}

	.banner_hero_image {
		display: none;
	}


	.price_card {
		margin: 10px 5px !important;
		padding: 15px 50px !important;
	}

	.all-card {
		display: block !important;
		margin: 0px auto !important;
	}


	.cont_act_tabs {
		padding: 1rem 3rem !important;
	}

	.testimonial_card_discription {
		font-size: 16px !important;
		line-height: 25px !important;
		padding: 0 !important;
	}


	.third_images_section h2 {
		font-size: 30px !important;
		line-height: 35px !important;
		padding: 3rem 8rem !important;
	}

	.timeline_position {
		margin: 10px 0 !important;
	}

	.testimonial_card_title {
		font-size: 24px !important;
		line-height: 35px !important;
	}


	.testimonial_card_rd_discription li {
		text-indent: -30px !important;
		line-height: 30px !important;
		font-size: 16px !important;
	}

	.testimonial_card_rd_discription {
		padding: 0 0px 0px 20px !important;
	}

	.more_clarity_heading {
		font-size: 30px !important;
		line-height: 54px !important;

	}

	.principle_rd_content {
		font-size: 16px !important;
		line-height: 35px !important;
	}

	.testimonial_card_rd_title {
		font-size: 30px !important;
	}


	.panel-title1 {
		font-size: 20px !important;
		line-height: inherit !important;
	}

	.panel-title1 span {
		padding: 2px 10px !important;
	}

	.panel-group {
		height: auto !important;
		overflow-y: inherit !important;
	}

	.Market_Segmentation_faq ul li {
		font-size: 16px !important;
		line-height: 30px !important;
	}

	.Market_Segmentation_faq h6 {
		font-size: 20px !important;
	}

	.panel-title {
		font-size: 20px !important;
		line-height: inherit !important;
	}

	.panel-group .panel-heading a {
		padding: 20px 20px !important;
	}

	.report_banner_content {
		width: auto !important;
		height: auto !important;
		/* position: relative !important; */
		top: 20% !important;
		left: 2% !important;
		z-index: 9999;
		padding: .5rem !important;
	}


	.nav-tabs .nav-item {
		width: 100% !important;
	}

	.explore_card {
		margin: 10px 0;
	}

	#MarketSegmentation .Market_Seg_discription {
		font-size: 16px !important;
		line-height: 35.52px !important;
		padding: 0 0rem !important;
	}

	.Competitive_discription {
		font-size: 16px !important;
		line-height: 35.52px !important;
		padding: 0 0rem !important;
	}

	.Competitive_card {
		margin: 10px 0 !important;
	}

	.FAQ_discription {
		font-size: 16px !important;
		line-height: 35.52px !important;
		padding: 0 0rem !important;
	}

	.panel-group1 .panel-heading1 a {
		padding: 20px 10px !important;
	}

	.panel-title1 span {
		margin: 0px .5rem 0 0 !important;
	}

	.ReportSummary_discription {
		font-size: 16px !important;
		line-height: 35.52px !important;
		padding: 0 0rem !important;
	}

	.filter_btn {
		margin: 10px 0;
	}

	.table_header {
		padding: 40px 20px 0 20px !important;
	}

	.report_banner2_btn a {
		margin: 1rem 10px !important;
	}

	.HowToOrder_discription {
		font-size: 16px !important;
		line-height: 35.52px !important;
		padding: 0 0rem !important;
	}

	.timeline-steps {
		justify-content: center !important;
	}

	.timeline-steps .timeline-content .inner-circle {
		margin: 20px 0;
	}

	.price_card {
		margin: 10px 0;
	}


	.why_choose_card {
		margin: 10px 0;
	}

	.footer_search input {
		width: 68% !important;
	}

	.Social_icon {
		padding: 0;
	}

	.market_seg_paragraph {
		font-size: 16px !important;
		line-height: 30.52px !important;
		padding: 0px 15px !important;
	}


	/* #Overview p {
		font-size: 16px !important;
		line-height: 25.52px !important;
	} */


	.marketternds_content {
		font-size: 14px !important;
		line-height: 25.52px !important;
	}

	#MarketSegmentation h5 {
		font-size: 25px !important;
		line-height: 40px !important;
	}

	#Competitive h5 {
		font-size: 25px !important;
		line-height: 40px !important;
	}

	#FAQ h5 {
		font-size: 25px !important;
		line-height: 40px !important;

	}

	#HowToOrder h5 {
		font-size: 25px !important;
		line-height: 40px !important;
	}

	.Report_Summary {
		font-size: 25px !important;
		line-height: 40px !important;
	}

	#PricingDetails h5 {
		font-size: 25px !important;
		line-height: 40px !important;
	}

	#PricingDetails ul {
		padding: 0 !important;
	}


	.post_ion {
		position: inherit !important;
		margin: 0 auto !important;
	}


	.testimonial_card {
		flex-wrap: wrap !important;
	}


	.add_image {
		display: none;
	}

	.blue_card {
		margin: 0 0 10px 0;
	}

	.white_card {
		margin: 0 0 10px 0;
	}


	.heading {
		margin: 20px 0;
	}

	.treading_section_list a {
		line-height: 27px;
		font-size: 16px;
	}


	.case_study {
		padding: 10% 5%;
	}


	.box2 ul li .boxContent2 {
		left: 50%;
		position: absolute;
		top: 50%;
		transform: translate(-50%, -50%);
		z-index: 1;
		transition: all 0.3s;
		color: #fff;
		font-size: 20px;
		font-weight: bold;
		transition: all ease-out 0.3s;
		text-align: center;
	}

	.box1 ul li .boxContent1 {
		left: 50%;
		position: absolute;
		top: 50%;
		transform: translate(-50%, -50%);
		z-index: 1;
		color: #fff;
		font-size: 20px;
		font-weight: bold;
		transition: all ease-out 0.3s;
	}

	.box ul li .boxContent {
		left: 50%;
		position: absolute;
		top: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		z-index: 1;
		color: #fff;
		font-size: 20px;
		font-weight: bold;
		transition: all ease-out 0.3s;
		text-align: center;
	}

	/* .heading h2::before {
		content: "";
		background: #000;
		width: 84.2px;
		position: absolute;
		bottom: 0px;
		height: 1px;
		left: 40%;
	} */

	.heading h2 {
		color: #0029FF;
		font-weight: 700;
		font-size: 30px;
		line-height: normal;
	}


	.direction {
		display: flex;
		flex-direction: column-reverse;
	}


	.slider {
		width: 100%;
	}


	.section2 {
		padding-top: 10%;
		padding-bottom: 10%;
	}


	.footer_logo {
		margin: 0;
	}

	.footer_link {
		padding: 0;
	}
}

@media (max-width: 400px) {
	.footer_link li {
		margin: 0 20px !important;
	}

	.footer_search input {
		padding: 8px 20px !important;
	}

	.footer_search button {
		color: #fff;
		border: 1px solid #fff;
		padding: 8px 15px !important;
		background-color: transparent;
	}


}

@media (min-width: 481px) and (max-width: 768px) {


	.choose_card_rd_parent .why_choose_card {
		min-height: 240px;
	}

	.why_choose_card {
		margin: 10px 0 0 0 !important;

	}

	.Pricing_plans {
		margin-bottom: 0 !important;
	}

	#PricingDetails h5 {
		font-size: 30px !important;
	}

	.new-hto-sec-pd .pric-ftl-hto h5 {
		font-size: 30px !important;
	}

	.timeline-steps .timeline-content {
		width: 10rem !important;
	}

	.Competitive_card {
		padding: 1.5rem 10px !important;
	}

	.Competitive_card_sub_title {
		font-size: 16px !important;
	}

	/* .form-group input {
		font-size: 14px !important;
	} */

	.form-group label {
		font-size: 14px;
	}

	.explore_card_title {
		font-size: 16px !important;
	}

	.explore_card_btn a {
		max-width: 190px !important;
		justify-content: space-around !important;
		margin: 30px auto !important;
	}


	.reposnive_cards {
		margin: 15px 0 !important;
	}


	.first_card_short {
		padding: 30px 30px !important;
	}


	.testimonial_card_rd_discription li {
		font-size: 16px !important;
		line-height: 25px !important;
		margin: 15px 0;
	}

	.principle_rd_content {
		font-size: 16px !important;
		line-height: 25px !important;
	}

	.testimonial_card_rd_title {

		font-size: 25px !important;
		line-height: 35px !important;
	}

	.price_card {
		margin: 8px 8px !important;
	}

	.HowToOrder_discription {
		font-size: 16px !important;
		line-height: 25px !important;
	}

	#HowToOrder h5 {
		font-size: 30px !important;
		line-height: 40px !important;
	}

	.table_title2 {
		font-size: 16px !important;
		font-weight: 400 !important;
		line-height: 25px !important;
	}

	.table_title1 {
		font-size: 16px !important;
		font-weight: 400 !important;
		line-height: 25px !important;
	}

	.ReportSummary_discription {
		font-size: 16px !important;
		line-height: 25px !important;
		padding: 0 9rem;
	}

	.Report_Summary {
		font-size: 25px !important;
		line-height: 35px !important;
	}

	.FAQ_discription {
		font-size: 16px !important;
		line-height: 25px !important;
		padding: 0 9rem;
	}

	#FAQ h5 {
		font-size: 25px !important;
		line-height: 35px !important;
	}

	.Competitive_card {
		margin-bottom: 30px !important;
	}


	#Competitive h5 {
		font-size: 25px !important;
		line-height: 35px !important;
	}

	.market_seg_paragraph {
		font-size: 16px !important;
		line-height: 25px !important;
		padding: 0 8px;
	}

	#MarketSegmentation .Market_Seg_discription {
		font-size: 16px !important;
		line-height: 25px !important;
		padding: 0 9rem;
	}

	#MarketSegmentation h5 {
		font-size: 25px !important;
		line-height: 35px !important;
	}

	.marketternds_content {
		font-size: 16px !important;
		line-height: 25px !important;
	}


	#Overview h5:first-child {
		font-size: 25px !important;
		line-height: 35px !important;
		padding-bottom: 20px !important;
	}


	.purchase_card {
		margin: 1rem 2rem 1rem 1rem !important;
	}


	.rd_banner_btn {
		font-size: 12px !important;
	}


	.margin_top h3 {
		margin: 15px 0 0 2rem !important;
	}

	.margin_top ul li {
		margin: 5px 10px 5px 60px !important;
		color: #000;
		text-align: justify;
		font-size: 16px;
		font-weight: 400;
		line-height: 30px !important;
		text-indent: -30px;
	}


	.banner_hero_image img {
		/* width: 55% !important; */
		height: auto;
	}


	.report_banner_content p {
		font-size: 14px !important;
		font-weight: 300 !important;
		line-height: 20px !important;
	}

	.report_banner_content h2 {
		font-size: 25px !important;
		line-height: 35px !important;
	}

	.report_banner_content {
		/* position: relative; */
		top: 10% !important;
		left: 6% !important;
		z-index: 9999;
	}


	.footer_logo {
		margin: 0px 0px;
	}

	.footer_search input {
		padding: 8px 25px;
	}

	.footer_search button {
		color: #fff;
		border: 1px solid #fff;
		padding: 8px 20px;
		background-color: transparent;
	}

	.footer_search {
		display: flex;
	}


}

@media (min-width: 769px) and (max-width: 1024px) {


	.reposnive_cards {
		padding: 3px 3px;
	}

	.reposnive_cards2 {
		padding: 0 3px;
	}


	#Overview h5:first-child {
		font-size: 25px !important;
		line-height: 48px !important;
		padding-bottom: 20px !important;

	}

	#Overview p {
		text-align: justify;
		font-size: 16px !important;
		line-height: 25px !important;
	}


	.artical {
		margin-top: 0px;
	}


	.counters li span {
		font-size: 30px;
		line-height: normal;
		font-weight: 500;
		color: #0029FF;
	}

	.heading h2 {
		color: #0029FF;
		font-weight: 700;
		font-size: 30px;
		line-height: normal;
		margin-top: 15px;
	}


	.why_choose_card p {
		font-size: 15px;
	}
}

@media (min-width: 1441px) and (max-width: 2560px) {
	.container {
		/* max-width: 1290px !important; */
		max-width: 1320px !important;
	}

	.report_banner_content p {
		font-size: 17px !important;
		font-weight: 400 !important;
	}

	.report_banner_content h2 {
		font-size: 46px !important;
		line-height: 56px !important;
	}

	.margin_top ul li {
		color: #000 !important;
		text-align: justify;
		font-size: 18px !important;
		line-height: 34px !important;
		font-weight: 400;
		text-indent: -27px !important;
		margin: 16px 20px 0px 29px !important;
	}

	.why_chose_image img {
		/* aspect-ratio: 20/7.2 !important; */
		width: 100%;
	}

	.new-why-choose-rd img {
		/* aspect-ratio: 21/7 !important; */
		width: 100%;
	}

	.new-dyn-img img {
		aspect-ratio: 19 / 8 !important;
		width: 100%;
	}


	.cus-form-sec-key {
		padding: 1rem 0 17px 16% !important;
	}


	.payment_card_image {

		padding: 0px 10px 0px 14px !important;

	}


	/* ==============1march */
	.report_banner_content {
		/* position: relative; */
		top: 44% !important;
		left: 2% !important;
		z-index: 9999;
	}

	.report_banner {
		/* height: 650px !important; */
		/* height: 705px !important; */
	}


}

@media (min-width: 1025px) and (max-width: 1300px) {


	.margin_top {
		padding: 20px 0 0 5rem !important;
	}


	.reposnive_cards {
		padding: 3px;
	}

	.reposnive_cards2 {
		padding: 0 3px;
	}


}


@media (min-width:768px) {
	.timeline-steps .timeline-step:not(:last-child):after {
		content: "";
		display: block;
		border-top: 5px solid #D9D9D9;
		width: 82rem;
		position: absolute;
		left: 6rem;
		top: 2rem;
	}

	.timeline-steps .timeline-step:not(:first-child):before {
		content: "";
		display: block;
		border-top: 5px solid #D9D9D9;
		width: 25rem;
		position: absolute;
		right: 7.5rem;
		top: 2rem
	}
}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 768px) {}

@media (min-width: 576px) {
	html #header.header-container-bottom-border .header-body:after {
		max-width: 510px;
	}
}

@media (min-width: 768px) {
	html #header.header-container-bottom-border .header-body:after {
		max-width: 690px;
	}
}

@media (min-width: 992px) {
	html #header.header-container-bottom-border .header-body:after {
		max-width: 930px;
	}
}

@media (min-width: 1200px) {
	html #header.header-container-bottom-border .header-body:after {
		max-width: 1110px;
	}
}


.cus-res-class {
	height: 5rem;
	width: 83%;
	display: none;
}

.multiselect select {
	width: 100%;
}


.toc-table-body tr td ul li {
	font-size: 18px !important;
}

.table-toc-con-sec-2 tr td {
	font-size: 18px !important;
}


.overSelect {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

#checkboxes {
	display: none;
	background-color: #02338d;
	border: 1px #dadada solid;
	color: #fff;
	font-size: 13px;
	position: absolute;
	z-index: 100;
}

#checkboxes {
	display: none;
	background-color: #02338d;
	border: 1px #dadada solid;
	color: #fff;
	font-size: 13px;
	position: absolute;
	z-index: 100;
}

#checkboxes,
#checkboxes span input[type="search"] {
	width: 150px;
}

#checkboxes label {
	display: block;
	margin-bottom: 0;
	padding-left: 10px;
}

#checkboxes input[type="checkbox"] {
	margin-right: 3px;
}

#checkboxes label:hover {
	background-color: #2064d4;
}

.scroller {
	text-align: center;
	cursor: pointer;
	display: none;
	padding: 7px;
	padding-top: 11px;
	white-space: no-wrap;
	vertical-align: middle;
	background-color: #fff;
}

.scroller-right {
	float: right;
}

.scroller-left {
	search_bar_onlyfloat: left;
}


/* ================================cookie conset-poupup ---------------- */

.cookie-consent-new {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	/* padding: 0.4rem 0; */
	padding: 0.8rem 0;
	bottom: 0;
	width: 100%;
	color: #0000;
	font-size: 1rem;
	z-index: 9999;
	background: #FFF;
	box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.20);
}

.cookie-consent-new .data {
	margin-right: 20px;
}

.cookie-consent-new .data p {
	color: #2A3E5B;
	/* Make text white */
	font-size: 13.5px;
	margin: 0;
}

.cookie-consent-new .data p a {
	color: #0029FF;
    text-decoration: underline !important;
    font-weight: 500;
    font-size: 13.5px;
    font-family: 'Inter', sans-serif;
}

.cookie-consent-new .data p a:hover {
	text-decoration: underline;
}

.cookie-consent-new .buttons-new {
	display: flex;
	gap: 15px;
	/* Space between buttons */
}

.cookie-consent-new .buttons-new .button {
	border: none;
	color: #fff;
	border-radius: 20px;
	cursor: pointer;
	padding: 6px 23px;
	font-family: 'Inter', sans-serif;
	width: 105px;
	background: #0029ff;
	transition: all 0.3s ease;
	font-size: 0.8rem;
	font-weight: 400;
}

.cookie-consent-new .buttons-new .button:hover {
	background-color: #0029ff;
}

#declineBtn {
	background-color: #fff;
	color: #2A3E5B;
}

#declineBtn:hover {
	background-color: #0029ff;
	color: #fff;
}

.hidden {
	display: none;
	/* Hide the box */
}

.main-wrap-sec-cookie {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

#myBtn {
	position: fixed;
	bottom: 62px;
	left: 10px;
	z-index: 99;
	font-size: 12px;
	border: 1px solid #0029ff;
	outline: none;
	background-color: #fff;
	color: #0029ff;
	cursor: pointer;
	padding: 7px 7px;
	height: 33px;
	border-radius: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 400;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

#myBtn svg {
height: 20px;
width: 20px;
margin-left: 5px;
}

.fn-scroll-top {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fn-scroll-top.show {
    opacity: 1;
}

@media only screen and (max-width:767px) {
	.main-wrap-sec-cookie {
		flex-wrap: wrap;
		gap: 10px;
	}

	.rd-modal-form .modal-dialog .modal-body .form-area .form-group {
		min-height: 406px;
	}
}


.demo-btn-new-cu {
    display: inline-block;
}

.demo-btn-new-cu a {
    /* font-size: 16px;
    color: #0029ff;
    display: flex;
    align-items: center; */
}

.demo-btn-new-cu a i {
    transition: all 0.3s ease-in-out;
    font-size: 8px;
    background: #0029ff;
    padding: 4px 6px;
    margin-left: 6px;
    color: #fff;
}

.demo-btn-new-cu:hover a i {
    transform: translate(13px);
}