:root {
	--logo: 170px;
	--headerheight: 90px;
	--headerfxheight: 59px;
	--logofix: 120px;
}

header {
	height: var(--headerheight);
}

.main-header {
	background: transparent;
	position: relative;
	z-index: 11;
	border-bottom: 0;
	position: fixed;
	/* left: 50%; */
	/* transform: translateX(-50%); */
	width: 100%;
	top: 0;
	/* border-bottom: 1px solid #e9e9e9; */
	/* box-shadow: 0 0 15px #00000029; */
	/* border-radius: 51px; */
	/* overflow: hidden; */
	/* backdrop-filter: brightness(3.5); */
}

.header_logo {
	width: var(--logo);
	padding: 0px 15px;
	height: 100%;
	background: #ffffff;
	display: flex;
	align-items: center;
	/* border-top-left-radius: 50px; */
	/* border-bottom-left-radius: 50px; */
	/* margin-left: calc(var(--logo) / -1); */
	opacity: 1;
	transition: .5s;
	/* margin-left: calc(var(--logo) / -1); */
	border-bottom-right-radius: 15px;
}

.header_logo img {
	width: 100%;
}

.header_right_content {
	width: max-content;
}

.header_top_content {
	background: var(--color3);
	padding: 0 15px;
	display: flex;
	align-items: center;
	color: #ffffff;
	position: relative;
	/* display: none; */
	height: 37px;
	justify-content: space-between;
}

.header_top_content::before {
	position: absolute;
	/* content: ""; */
	background: rgba(0, 0, 0, 0.2);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.header_top_left_info {
	display: flex;
	position: relative;
}

.header_top_info {
	border-right: 1px solid #cdab14;
	padding-right: 23px;
	padding-left: 23px;
	line-height: 0;
}

.header_top_info a,
.header_top_info span {
	color: #ffffff;
	/* font-family: glacial; */
	font-weight: 400;
	font-size: 13px;
	line-height: normal;
}

.header_top_left_info .header_top_info:last-child {
	border-right: none;
}

.header_top_left_info .header_top_info:first-child {
	padding-left: 0;
}

.header .header_inner .header_right_content .header_top_content .header_top_info_right {
	margin-left: auto;
	margin-right: 75px;
	position: relative;
}

.header .header_inner .header_right_content .header_top_content .header_top_info_right a {
	color: #ffffff;
	padding-left: 23px;
	font-size: 14px;
}

.header_bottom_content {
	display: flex;
	align-items: center;
	justify-content: end;
	padding: 0 15px;
	/* border-left: 1px solid #2f396f3d; */
	/* height: 80%; */
	gap: var(--p30);
}

.main-menu {
	display: flex;
	align-items: center;
	gap: 0;
	height: 100%;
	justify-content: space-between;
	padding-right: var(--p20);
}

.mid-head-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: .0;
	padding-right: 20px;
}

.main-menu ul {}

.main-menu ul>li {}

.main-menu ul>li:last-child {
	margin-right: 0px !important;
}

.main-menu ul>li:last-child a {
	margin-right: 0;
}

.main-btn-bk {
	display: none;
}

.close {
	display: none;
}

.main-menu .up-head-inner,
.main-menu.navbar-light .header__right {
	display: none;
}

.main-menu ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	background: linear-gradient(90deg, #bb6583ba, #ffffff30);
	padding: 12px 32px;
	border-radius: 50px;
	backdrop-filter: blur(10px);
}

.main-menu ul>li {
	float: left;
	cursor: pointer;
	z-index: 2;
	transition: all 300ms ease;
	color: #ffffff;
	position: relative;
	text-transform: uppercase;
	line-height: normal;
	letter-spacing: 0.5px;
}

.main-menu ul>li a {
	position: relative;
	/* background-image: linear-gradient(45deg, #2a5ac4, #b64995, #e35f41, #932816, #851938); */
	/* background-size: 168% 168%; */
	/* -webkit-text-fill-color: transparent; */
	/* -webkit-background-clip: text; */
	font-weight: 400;
	color: white;
}

.main-menu ul>li a::before {
	/* content: ''; */
	position: absolute;
	right: 100%;
	opacity: 0;
	transition: .5s;
	width: 0%;
	/* background-image: linear-gradient(45deg, #2a5ac4, #b64995, #e35f41, #932816, #851938); */
	/* background-size: 168% 168%; */
	height: 1px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--color1);
}

.main-menu ul>li:hover {
	color: var(--color1);
}

.main-menu ul>li:hover a::before,
.main-menu ul>li a.active::before {

	opacity: 1;
	transition: .5s;
	width: 10px;
}

.main-menu ul>li:last-child {
	margin-right: 0px !important;
}

.main-menu ul>li:last-child a {
	margin-right: 0;
}

.main-btn-bk,
.close,
.main_ul .header__right {
	display: none;
}

.header__right a {
	/* width: max-content; */
	/* border: 1px solid var(--color2); */
	/* padding: 11px 21px; */
	/* border-radius: 50px; */
	/* text-transform: uppercase; */
	/* font-size: 13px; */
	/* color: var(--color1); */
	/* display: inline-block; */
}

.main-menu ul>li a.active {
	color: var(--color8);
}

.main-header.fixed-header {
	background: white;
	transition: .5s;
	height: var(--headerfxheight);
	box-shadow: 0px 3px 35px #fdeb4547;
	width: 100%;
	top: 0;
	/* transform: translateX(0%); */
	border-radius: 0;
	/* height: auto; */
}

.main-header.fixed-header .header_top_content {
	display: none;
}

.main-header.fixed-header .header_logo {
	width: var(--logofix);
	transition: .5s;
	/* border-radius: 0; */
	/* margin-left: 0; */
	/* opacity: 1; */
	/* padding: 10px 15px; */
}

.main-header.fixed-header .header_right_content {
	width: calc(100% - var(--logofix));
	transition: .5s;
	/* padding: 0px 15px; */
}

.main-header.fixed-header .header_bottom_content {
	height: 100%;
	transition: .5s;
	justify-content: space-between;
	border-left: 1px solid #2f396f3d;
}

.main-header.fixed-header .main-menu ul {
	background: transparent;
	padding: 0;
	border-radius: 0;
}

.main-header.fixed-header .main-menu ul li a {
	color: #25198d;
}

.main-header.fixed-header .main-menu .sub_menu {
	background: #fff
}

footer .container {

	/* background: linear-gradient(450deg, var(--color5), var(--color4), var(--color5)); */

	/* border-radius: var(--p20); */

	/* padding: var(--padding); */

	padding-bottom: 0;

	position: relative;
}

.new_footer_area {
	background: var(--color2);
	position: relative;
}

.new_footer_top {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: var(--p40);
	padding: var(--p40);
}

.new_footer_top_left {
	padding: 0;
	border-right: 1px solid #ffffff3d;
}

.new_footer_top_right {
	display: flex;
	flex-direction: column;
	/* justify-content: space-between; */
	/* gap: var(--p40); */
}

.new_footer_top_right_inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--p20);
	padding-top: 0;
}

.new_footer_area .footer_bottom {
	padding-top: var(--p20);
	/* background    : #0e3b35; */
	border-top: 1px solid var(--color8);
	padding-bottom: 0;
}

.footer_bottom {
	font-size: 14px;
	font-weight: 300;
	line-height: 20px;
	color: #ffffff;
}

.footer_bottom p {
	text-align: left;
	margin: 0;
	color: var(--color8);
	font-weight: 600;
}

.footer_bottom img {
	width: 67px;
	margin-left: 6px;
}

.social-widget {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.new_footer_top .company_widget p {
	font-size: 16px;
	font-weight: 300;
	line-height: 28px;
	color: #383939;
	margin-bottom: 20px;
}

.new_footer_top .company_widget .f_subscribe_two .btn_get {
	border-width: 1px;
	margin-top: 20px;
}

.f_list li a:hover {
	color: var(--color4);
}

.f_list li {
	margin-bottom: 11px;
}

.f_list li:last-child {
	margin-bottom: 0px;
}

.f_list li {
	margin-bottom: 15px;
}

.f_list {
	margin-bottom: 0px;
}

.new_footer_top .f_social_icon a {
	/* width      : 44px; */
	/* height     : 44px; */
	/* line-height: 43px; */
	/* font-size  : 18px; */
}

.f_social_icon {
	margin-top: var(--p20);
	display: flex;
	gap: 10px;
}

.f_social_icon a {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	font-size: 18px;
	line-height: 40px;
	color: #fff;
	display: inline-block;
	background: #ffffff;
	text-align: center;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	color: #322450;
	box-shadow: 5px 5px 10px #9271d766;
}

.ti-facebook:before {
	content: "\e741";
}

.ti-twitter-alt:before {
	content: "\e74b";
}

.ti-vimeo-alt:before {
	content: "\e74a";
}

.ti-pinterest:before {
	content: "\e731";
}

.new_footer_top .f_social_icon a+a {
	/* margin-left: 4px; */
}

.f-title {
	margin-bottom: 15px;
	color: var(--color5);
	font-size: 17px;
	/* font-family: "Cormorant Garamond", serif; */
	text-transform: uppercase;
	letter-spacing: 1px;
	/* border-bottom: 1px solid #ffffff3d; */
	/* padding-bottom: 6px; */
}

.f_600 {
	font-weight: 600;
}

.f_size_18 {
	font-size: 16px;
}

.f_list li a {
	color: var(--color6) !important;
	display: flex;
	align-items: start;
	font-weight: 600;
	font-size: 18px;
}

.f_list li a i {
	margin-top: 5px;
}

.f_date {
	/* text-align: center; */
}

.f_date a {
	color: var(--color8) !important;
	text-align: center;
}

.copy-right {
	color: var(--color8) !important;
}

.copy-right a {
	color: var(--color4) !important;
}

.copy-right img {
	width: 99px;
	margin-bottom: 13px;
}

.logo img {
	width: 150px;
	margin-bottom: var(--p20);
}

.ftr_bk {
	position: absolute;
	height: 100%;
	opacity: .2;
}

.main_btn {
	background: #cf5c40;
	background-size: 168% 168%;
	border-radius: 50px;
	padding: 11px 20px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .8px;
	display: inline-block;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: .5s;
	width: max-content;
	color: white;
	overflow: hidden;
	position: relative;
}

.main_btn::before {
	content: '';
	position: absolute;
	bottom: -2px;
	right: -2px;
	width: 20px;
	height: 20px;
	background: #953821;
	transition: .5s;
	/* opacity: 0; */
	transform-origin: bottom right;
	border-radius: 50px;
}

.main_btn span {
	position: relative;
}

.main_btn .fa-arrow-right {
	margin-right: -22px;
	transform: translateX(100px);
	transition: .5s;
	position: relative;
}

.main_btn:hover::before {
	opacity: 1;
	width: 100%;
	height: 100%;
	transition: .5s;
	transform-origin: bottom right;
}

.main_btn:hover {
	transition: .5s;
	background-size: 300% 300%;
	color: white;
}

.main_btn:hover i {
	margin-right: 0px;
	transform: translateX(0px);
	transition: .5s;
}

.footer_menu {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	border-bottom: 1px solid var(--color8);
	padding-bottom: var(--p20);
	margin-bottom: var(--p20) !important;
}

.footer_menu li {
	margin-bottom: 0 !important;
	border-right: 1px solid #9b221e73;
	/* border-top: 0; */
	/* border-bottom: 0; */
	padding: 0 10px;
	padding-left: 0;
}

.new_footer_top .f_widget.about-widget .f_list.footer_menu li a {
	color: var(--color5) !important;
}

footer {
	padding: var(--padding);
	padding-bottom: var(--p20);
}

.ft_top {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.ft_top .log0 {}

.ft_top .logo img {
	/* width: 180px; */
	position: relative;
}

.ft_top .f_date {
	text-align: center;
	font-size: 15px;
	position: relative;
}

.ft_top .f_date a {
	font-size: 16px;
}

.ft_top .f_date a i {}

.f_social_icon {
	position: relative;
}

.f_social_icon a {}

.ft_lg {
	margin: 0;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(180deg, #e5e5e5, #293b7b00);
	-webkit-background-clip: text;
	font-weight: 900;
	font-family: "Bricolage Grotesque", sans-serif;
	font-size: 163px;
	position: absolute;
}

.consec {
	/* border-top: 1px solid #403a845e; */
	/* padding-top: var(--p20); */
	margin-top: var(--p20) !important;
	box-shadow: 5px 5px 10px #9271d766;
	padding: var(--p20);
	border-radius: 10px;
	background: linear-gradient(180deg, #e5e5e5, #293b7b00);
}

.consec .f-title {
	text-align: center;
	border-bottom: 1px solid #403a845e;
	padding-bottom: 12px;
	letter-spacing: 2px;
}

.consec .f_list {
	display: flex;
	align-items: center;
	gap: var(--p20);
	justify-content: center;
}

.consec .f_list li {
	margin: 0;
}

.copyright {
	border-top: 1px solid var(--color8);
	padding-top: var(--p20);
	margin-top: var(--p20) !important;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.copyright p {
	/* color: white; */
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 14px;
	margin: 0;
	color: var(--color8);
}

.copyright p img {
	width: 91px;
	/* filter: brightness(27.5); */
}

.header__right {
	display: flex;
	gap: 5px;
}

.main-menu .sub_menu {
	display: none;
	width: 260px;
	position: absolute;
	top: 176%;
	border: 0 !important;
	padding: 0 !important;
	background: linear-gradient(90deg, #bb6583ba, #ffffff30);
	border-radius: 15px;
}

.main-menu .sub_menu li {
	display: inline-block;
	width: 100%;

	font-size: 13px;
}

.main-menu .sub_menu li a {
	border-bottom: 1px solid white;
	padding: 11px;
	display: inline-block;
	width: 100%;
}



.main-menu .sub_menu li:last-child a {
	border: 0;
}

.main-menu .sub_menu .sub_sub_menu li a {
	border-bottom: 1px solid white;
}

.main-menu .sub_menu .sub_sub_menu li:last-child a {
	border: 0;
}

.main-menu .sub_menu li a i {
	float: right;
}

.has_sub i {
	font-size: 17px;
	margin-left: 6px;
}

.has_sub.active i {
	transform: rotate(180deg);
}

@media only screen and (min-width: 1701px) {
	:root {
		--logo: 185px;
		--logofix: 145px;
	}

	.main-menu ul>li {
		font-size: 18px;
	}

	.header_top_info a,
	.header_top_info span {
		color: #ffffff;
		font-family: glacial;
		font-weight: 400;
		font-size: 16px;
	}

	.main-header {
		height: 104px;
	}

	.main-header.fixed-header {
		height: 79px;
	}

	.header__right a {
		/* padding: 13px 25px; */
		/* font-size: 16px; */
	}

	.new_footer_top .f_widget.about-widget .f_list li a {
		font-size: 17px;
	}

	.new_footer_top .f-title,
	.f_date a {
		font-size: 19px;
	}

	.copy-right img {
		width: 120px;
	}

	.copy-right {
		font-size: 18px;
	}

	.footer_bottom {
		font-size: 17px;
	}

	.logo img {
		width: 200px;
	}

	.f_social_icon a {
		width: 50px;
		height: 50px;
		font-size: 24px;
		line-height: 50px;
	}
}

@media only screen and (min-width: 1000px) and (max-width: 1300px) {
	:root {
		--logo: 142px;
		--logofix: 105px;
	}

	.header_top_info {
		border-right: 1px solid #cdab14;
		padding-right: 10px;
		padding-left: 10px;
	}

	.header__right a {
		padding: 7px 13px;
	}

	.header_logo {
		padding: 0 9px;
	}

	.header_bottom_content {
		padding: 5px 15px;
	}

	.main-menu ul>li {
		font-size: 13px;
	}

	.main-header {
		height: 80px;
	}

	.main-header.fixed-header {
		background: white;
		transition: .5s;
		height: 49px;
	}
}

@media only screen and (min-width: 300px) and (max-width: 999px) {
	:root {
		--logofix: 124px;
		--logo: 137px;
		--headerheight: 50px;
	}

	.main_btn {
		padding: 8px 12px;
		font-size: 9px;
	}

	.main_btn .fa-arrow-right {
		margin-right: 0px;
		transform: translateX(0px);
		transition: .5s;
	}

	.main_btn::before {
		bottom: 0;
		right: 0;
		width: 40%;
		height: 100%;
	}

	.header_top_content {
		display: none;
	}

	.main-menu ul {
		align-items: start;
		justify-content: flex-start;
		padding: 60px 15px 15px 23px;
		position: fixed;
		top: 0;
		height: var(--viewport);
		left: -100%;
		width: 80%;
		z-index: 1;
		box-shadow: 0 0 15px #00000029;
		flex-direction: column;
		opacity: 0;
		visibility: hidden;
		transition: .5s;
		border-radius: 15px;
		background: #ffffff;
	}

	.main_ul.open {
		left: 0;
		opacity: 1;
		visibility: visible;
		transition: .5s;
	}

	.main-btn-bk,
	.close,
	.main_ul .header__right {
		display: block;
	}
.main_ul .header__right{
	display: flex;
	flex-direction: column;
	gap: 5px;
}
	.close {

		position: absolute;
		top: 20px;
		right: 20px;
	}

	.main-btn-bk {
		padding: 0;
		border: 0;
		background: transparent;
		font-size: 22px;
		color: white;
	}

	.header_logo {
		padding: 0 10px;
	}

	.header_right_content {
		width: calc(100% - var(--logo));
	}

	.header__right a {
		/* padding: 7px 15px; */
		/* font-size: 12px; */
	}

	.header_bottom_content {
		/* padding: 10px 12px; */
		/* height: 100%; */
		justify-content: start;
	}

	.main-header {
		/* height: 70px; */
	}

	.main-header.fixed-header {
		/* height: 51px; */
		position: fixed;
	}

	.new_footer_top .f-title {
		margin-bottom: 6px;
		font-size: 15px;
		padding-bottom: 4px;
	}

	.new_footer_top .f_widget.about-widget .f_list li {
		margin-bottom: 3px;
		font-size: 11px;
	}

	.copy-right {
		font-size: 12px;
		margin-bottom: var(--p20);
	}

	.f_date a {
		font-size: 12px;
	}

	.f_social_icon a {
		width: 28px;
		height: 28px;
		border-radius: 6px;
		font-size: 16px;
		line-height: 27px;
	}


	.footer_bottom p {

		font-size: 10px;
	}

	.footer_mid_right img {
		width: 92px;
	}

	.fixed-header .main-menu ul {
		/* height: 100vh; */
		/* border-radius: 0; */
	}

	.main-header.fixed-header .header_logo {
		padding: 0px 7px;
	}

	.footer_menu {
		gap: 4px;
	}

	.footer_menu li {
		padding-right: 5px;
	}

	.new_footer_top_right {
		/* gap: var(--p40); */
	}

	.fixed-header .main-btn-bk,
	.main-menu ul>li a {
		color: #25198d;
	}

	.main-header.fixed-header .main-menu ul {
		background: #ffffff;
		padding: 60px 15px 15px 23px;
		border-radius: 15px;
	}

	.main-menu {
		justify-content: start;
		padding-right: 12px;
	}

	.ft_lg {
		font-size: 82px;
		text-align: center;
	}

	.f_size_18 {
		font-size: 15px;
	}

	.consec .f_list,
	.copyright {
		flex-direction: column;
	}

	.main-menu .sub_menu {
		display: none;
		width: 100%;
		position: unset;
		top: 176%;
		border: 0 !important;
		padding: 0 !important;
		background: transparent;
		border-radius: 15px;
		height: auto;
		visibility: visible;
		opacity: 1;
	}
}