@charset "utf-8";

/* CSS Document */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	outline: none !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

:root {
	--primary: #d00009;
	--secondary: #002359;
	--secondary-dark: #00122f;
	--white: #ffffff;
	--black: #353535;
	--fonts-title: "Open Sans", serif;
	--fonts: "Heebo", serif;
}

/* select arrow */

select {
	background-image: url("../images/down-arrow.png") !important;
	background-position: right 10px center !important;
	background-repeat: no-repeat !important;
	background-size: 11px !important;
	border-radius: 2px;
	border: none;
	padding: 10px 30px 10px 10px;
	outline: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}

body {
	width: 100%;
	font-family: var(--fonts);
	font-size: 16px;
}

.text-primary-color {
	color: var(--primary);
}

.text-secondary-color {
	color: var(--secondary);
}

.text-black-color {
	color: var(--black);
}

.text-white-color {
	color: var(--white);
}

p {
	color: var(--black);
	font-weight: 500;
	margin-bottom: 25px;
	font-size: 16px;
	line-height: 24px;
}

.text-justify {
	text-align: justify;
}

.main {
	width: 100%;
	background-color: #f4f6fa;
	height: auto;
}

.container-fluid {
	padding: 0 100px;
}

.section {
	padding: 60px 0;
	background-color: #f4f6fa;
}

/* header */

.active-menu-main {
	color: var(--primary) !important;
	background: none !important;
}

.active-menu-class {
	/* background-image: none !important; */
	color: var(--primary) !important;
}

.header {
	width: 100%;
	background-color: var(--white);
	height: 110px;
	display: flex;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .2) !important;

	z-index: 10000;
}

.header .logo {
	width: 250px;
	height: 100%;
	line-height: 110px;
	padding: 0 10px;
}

.header .logo img {
	width: 100%;
}

.header .main-menu {
	margin: 0px auto;
	height: 110px;
}

.header .main-menu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.header .main-menu ul li {
	display: inline-block;
	position: relative;
}

.header .main-menu ul li a {
	margin: 0 30px;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 110px;
	display: block;
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	background-repeat: no-repeat;
	transition: 0.5s ease-out;
	background-image: linear-gradient(to right, var(--primary) 45%, #121212 55%);
	background-size: 220% 100%;
	background-position: 100% 50%;
}

.header .main-menu ul li a:hover {
	background-position: 0% 50%;
}

.header .utility-menu {
	height: 110px;
}

.header .utility-menu ul {
	margin: 20px 20px 0 0;
	padding: 0;
	list-style-type: none;
}

.header .utility-menu ul li {
	display: inline-block;
}

.header .utility-menu ul li a {
	width: 48px;
	height: 48px;
	line-height: 48px;
	border: 1px solid #cab5b6;
	border-radius: 50%;
	display: block;
	text-align: center;
	margin: 10px;
	font-size: 20px;
	color: var(--black);
	transition: all 0.5s;
	box-shadow: 0 0 10px rgba(0, 0, 0, .2) !important
}

.header .utility-menu ul li a:hover {
	background-color: var(--primary);
	color: #fff;
	transition: all 0.5s;
	border: 1px solid var(--primary);
}


.header .sidebar-menu-btn a {
	background-color: var(--primary);
	width: 100px;
	line-height: 110px;
	height: 100%;
	display: block;
	color: #fff;
	text-align: center;
	font-size: 30px;
	position: relative;
	z-index: 1;
	transition: background-color 0.5s;
}

/* submenu */
.header .main-menu div.m-menu {
	max-height: 350px;
	width: 300px;
	background: var(--secondary) !important;
	position: absolute;
	z-index: 99 !important;
	display: none;
	border: 0;
	z-index: -99999;
	padding: 10px 0 0 0;
	color: #e5eced !important;
	top: 110px;
	left: 30px;
	box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.3) !important;
	/* visibility: hidden;
	opacity: 0;
	height: 0; */

}

.header .main-menu div.m-menu li {
	display: block;
	width: 100%;
	text-transform: none;
	padding: 0;
	margin: 0;
	color: #e5eced !important;
}

.header .main-menu li:hover div.m-menu {
	max-height: 350px;
	height: auto;
	display: block;
	visibility: visible;
	opacity: 1;
	transition: all 0.3s;
	transform-origin: top center;
	/* z-index: -99999 !important;
    animation: slide-down .5s ease-out; */
}

.header .main-menu div.m-menu .menus {
	max-height: 330px;
	margin: 0;
	padding: 0;
}

.header .main-menu ul li a.menu-view-all {
	font-size: 16px;
	font-weight: 600;
	width: 300px;
	text-transform: uppercase;
	line-height: 25px;
	display: block;
	color: var(--primary);
	-webkit-background-clip: unset !important;
	background-clip: unset !important;
	background-repeat: 0 !important;
	background-image: none;
	background-color: var(--secondary);
	background-size: 100%;
	background-position: 100% 50;
	padding: 12px 16px;
	margin: 10px 0 0 0;
}

.header .main-menu ul li a.menu-view-all:hover {
	background-color: var(--secondary-dark);
}


/* @keyframes slide-down {
	0% { opacity: 0; -moz-transform: translateY(-100%); }   
  100% { opacity: 1; -moz-transform: translateY(0); }
} */

.header .main-menu ul.menus li {
	background-color: var(--secondary);
}

.header .main-menu ul.menus li a {
	font-size: 16px !important;
	line-height: 18px;
	font-weight: 500 !important;
	color: var(--white) !important;
	width: 100% !important;
	display: block !important;
	height: auto !important;
	/* line-height: 50px !important; */
	text-align: left;
	border-radius: 0 !important;
	border: 0 !important;
	margin: 0 !important;
	transition: background-color 0.5s !important;
	font-weight: 400;
	padding: 12px 16px;
	color: #e5eced !important;
	text-transform: none;
}

.header .main-menu ul.menus li:hover {
	color: var(--white) !important;
	background-color: var(--secondary-dark) !important;
}

.header .main-menu .menus li a img {
	width: 0px;
	height: 18px;
	transition: all 0.3s;
	/* position: absolute;
    top : 17px;
    left : 15px */

}

.header .main-menu .menus li::before,
.header .main-menu .menus li::after {
	display: none !important;
}

.header .main-menu .menus li:hover a img {
	width: 18px;
	margin-right: 10px;
	transition: all 0.3s;
}

.header .main-menu .button-bar {
	padding: 5px;
	margin: 0;
	background: #fff;
	position: sticky;
	bottom: 0;
	display: none;
}

/* sidebar */

/* footer */
.footer {
	background-color: var(--secondary);
	padding: 50px 0 30px 0;
}

.footer-menu-section {
	display: flex;
	flex-wrap: wrap;
}

.footer-menu-div {
	width: 20%;
	padding: 0 15px;
}

.footer-menu {
	background-color: #0f3063;
	padding: 25px 20px;
	width: 100%;
	border-radius: 5px;
}

.footer-menu-title {
	font-family: var(--fonts);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 15px;
}

.footer-menu-list {
	margin: 0;
	padding: 0;
	list-style-type: none;
	height: 300px;
}

.footer-menu-list li {
	margin: 5px 0;
}

.footer-menu-list li a {
	color: #d5e5ff;
	font-size: 15px;
	font-weight: 500;
	/* line-height: 35px !important; */
	transition: all 0.3s;
	position: relative;
	display: inline;
	background-image: linear-gradient(to right, var(--white), var(--white) 100%);
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0 1px !important;
	-webkit-transition: all 0.3s, background-size 0.5s;
	transition: all 0.3s, background-size 0.5s;
}

.footer-menu-list li a:hover {
	color: #fff;
	/* transition: all 0.3s; */
	background-size: 100% 1px !important;
}

/* .footer-menu-list li a::after{
	position: absolute;
	width: 0%;
	height: 1px;
	background-color: var(--white);
	content: "";
	bottom : 0;
	left : 0;
	transform: translateX(-0%);
	transition: all 0.3s;
	z-index: -1;
}

.footer-menu-list li a:hover::after{
	width: 100%;
	transition: all 0.3s;
} */

.copyrights {
	width: 100%;
	background-color: var(--secondary-dark);
	min-height: 60px;
}

.copyrights-desk {
	text-align: left;
	color: var(--white);
	font-size: 14px;
	margin: 20px 0;
	font-weight: 500;
}

.copyrights-desk i {
	color: var(--primary);
	font-size: 8px;
	margin: 0 15px;
}

.copyrights-mobile a,
.copyrights-desk a {
	color: var(--white);
	position: relative;
}

.copyrights-desk a::after {
	color: #d5e5ff;
	position: absolute;
	width: 0%;
	height: 1px;
	background-color: var(--white);
	content: "";
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.3s;
	z-index: 1;
}

.copyrights-desk a:hover::after {
	width: 100%;
	transition: all 0.3s;
}

.copyrights-mobile {
	display: none;
	color: var(--white);
	font-size: 14px;
	margin: 20px 0 0 0;
	font-weight: 500;
	text-align: center;
}

.copyrights-mobile i {
	color: var(--primary);
	font-size: 10px;
	margin: 0 10px;
}

.credits {
	color: var(--white);
	font-size: 14px;
	text-align: right;
	margin: 20px 0;
	font-weight: 500;
}

.credits a {
	color: var(--white);
	position: relative;
}

.credits a::after {
	color: #d5e5ff;
	position: absolute;
	width: 0%;
	height: 1px;
	background-color: var(--white);
	content: "";
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.3s;
	z-index: 1;
}

.credits a:hover::after {
	width: 100%;
	transition: all 0.3s;
}

.newsletter {
	display: flex;
	margin-top: 20px;
}

.newsletter label {
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 38px;
	margin-bottom: 0;
	width: 270px;
}

.newsletter label i {
	color: var(--primary);
	margin-right: 10px;
	font-size: 20px;
}

.newsletter a {
	border: 0px;
	background-color: none;
	color: #99a7bd !important;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.newsletter a:hover {
	color: var(--white) !important;
}

.textbox-newsletter {
	width: calc(100% - 300px);
}

.newsletter .form-control {
	width: 100%;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #3c5e94;
	padding-left: 0;
	border-radius: 0px;
	color: #fff !important;
	font-weight: 400;
	font-size: 16px;
}

.newsletter .form-control::placeholder {
	color: #d5e5ff;
}

.footer-contact {
	color: #fff;
	margin: 0;
	font-weight: 500;
}

.footer-contact-social {
	width: 100%;

}

a.footer-contact {
	color: #fff;
	margin-right: 25px;
	position: relative;
}

a.footer-contact::after {
	color: #d5e5ff;
	position: absolute;
	width: 0%;
	height: 1px;
	background-color: var(--white);
	content: "";
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.3s;
	z-index: 1;
}

a.footer-contact:hover::after {
	width: 100%;
	transition: all 0.3s;
}

.footer-contact-icon {
	color: #fff;
	background-color: var(--primary);
	width: 34px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	border-radius: 34px;
	font-size: 18px;
	margin-right: 5px;
	margin-top: 15px;
}


.footer-social i {
	color: #fff;
	margin: 2px;
	width: 34px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	border-radius: 34px;
	transition: all 0.3s;
	margin-top: 30px;
	font-size: 20px;
}

.footer-social i:hover {
	background-color: var(--primary);
	transition: all 0.3s;
}

/* title */
.section-title {
	font-size: 36px;
	line-height: 72px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: var(--fonts-title);
}

.already-account {
	background: linear-gradient(90deg, rgba(208, 0, 9, 1) 0%, rgba(0, 35, 89, 1) 100%);
	width: 100%;
	color: var(--white);
	text-align: center;
	border-radius: 4px;
	height: 45px;
	line-height: 45px;
	font-weight: 600;
	font-size: 15px;
}

.already-account a {
	color: var(--white);
	border-bottom: 1px solid #fff;
	transition: all 0.3s;
}

.already-account a:hover {
	color: #99a7bd;
	border-bottom: 1px solid #99a7bd;
	transition: all 0.3s;
}

.btn-primary-main {
	background-color: var(--primary);
	color: var(--white);
	font-size: 15px;
	height: 45px;
	line-height: 45px;
	font-weight: 600;
	padding: 0 20px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border: 0;
	border-radius: 4px;
	position: relative;
	z-index: 1;
	transition: all 0.6s ease 0s;
	overflow: hidden;
}

.btn-primary-main:hover {
	color: #fff;
}

.btn-primary-main::after {
	background: var(--secondary);
	content: " ";
	height: 1000px;
	left: 50%;
	opacity: 1;
	position: absolute;
	top: 50%;
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
	transition: all 0.5s linear 0s;
	width: 0;
	z-index: -1;
}

.btn-primary-main:hover::after {
	opacity: 1;
	width: 100%;
}

.form-floating .form-control {
	background-color: #fff;
	border-radius: 5px;
	border: 0px;
	color: var(--black);
	font-weight: 600;

}

.form-floating img {
	position: absolute;
	right: 10px;
	top: 20px
}

.form-floating label {
	font-weight: 600;
	color: var(--black);
}

.form-check-input {
	border: 1px solid var(--secondary) !important;
}

.form-check-input:checked {
	background-color: var(--secondary);
	border-color: var(--secondary);
}

.form-check label {
	font-size: 16px;
	font-weight: 500;
}

.form-check label a {
	color: var(--primary);
	transition: all 0.3s;
}

.form-check label a:hover {
	color: var(--secondary);
	transition: all 0.3s;
}

.contact-br {
	display: none;
}

.social-br {
	display: none;
}

.burger-menu {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 32px;
	/* background-color: #000; */
}

.burger-menu .line1 {
	background-color: #fff;
	width: 5px;
	height: 2px;
	position: absolute;
	top: 0px;
	left: 0;
	transition: width 0.2s;
}

a:hover .burger-menu .line1 {
	width: 30px;
	transition: width 0.2s;
}

.burger-menu .line2 {
	background-color: #fff;
	width: 30px;
	height: 2px;
	position: absolute;
	top: 0px;
	right: 0;
	transition: width 0.2s;
}

a:hover .burger-menu .line2 {
	width: 5px;
	transition: width 0.2s;
}

.burger-menu .line3 {
	background-color: #fff;
	width: 30px;
	height: 2px;
	position: absolute;
	top: 10px;
	left: 0;
	transition: width 0.2s;
}

a:hover .burger-menu .line3 {
	width: 25px;
	transition: width 0.2s;
}

.burger-menu .line4 {
	background-color: #fff;
	width: 30px;
	height: 2px;
	position: absolute;
	top: 20px;
	left: 0;
	transition: width 0.2s;
}

a:hover .burger-menu .line4 {
	width: 35px;
	transition: width 0.2s;
}

.burger-menu .line5 {
	background-color: #fff;
	width: 30px;
	height: 2px;
	position: absolute;
	top: 30px;
	left: 0;
	transition: width 0.2s;
}

a:hover .burger-menu .line5 {
	width: 5px;
	transition: width 0.2s;
}

.burger-menu .line6 {
	background-color: #fff;
	width: 5px;
	height: 2px;
	position: absolute;
	top: 30px;
	right: 0;
	transition: width 0.2s;
}

a:hover .burger-menu .line6 {
	width: 30px;
	transition: width 0.2s;
}

/* Enquiry */
.header-enquiry {
	height: 100vh;
	width: 100%;
	position: fixed;
	z-index: 99999;
	top: 0;
	right: 0;
	/* box-shadow: -0px 0px 15px 0px rgba(0, 0, 0, 0.3); */
	display: none;
}

.enq-content {
	max-width: 550px;
	width: 100%;
	height: 100%;
	padding: 25px 15px 25px 25px;
	background-color: var(--white) !important;
	float: right;
}

.header-enquiry .overlay {
	background-color: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100vh;
	content: ' ';
	z-index: -100;
	position: absolute;
	top: 0;
	left: 0;
}

.enq-list-div{
	/* max-height: 535px; */
	height: calc(100vh - 345px);
}

.enq-content h3{
	font-size: 22px;
	text-transform: uppercase;
	color: var(--secondary);
	font-weight: 600;
	margin-bottom: 20px;
}

.enq-list {
	width: 96%;
	border: 1px solid #ccc;
	min-height: 100px;
	height: auto;
	border-radius: 10px;
	display: flex;
	margin-bottom: 15px;
	background-color: #e2e9f6 !important;
}

.enq-list-img-div{
	width: 100px;
	height: 100px;
	background-color: #fff;
	border-radius: 10px 0 0 10px;
	position: relative;
	overflow: hidden;
}

.enq-list img {
	/* width: auto;
	height: 100%;
	max-height: 100px;
	border-radius: 10px 0 0 10px; */

	max-width:100px;
	max-height: 100px;
	width: auto;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	position: absolute;	
	transition: all 0.2s;
}

.enq-list .content-div {
	width: calc(100%) !important;
	min-height: 100px;
	display: block;
	position: relative;
}

.enq-list .content-div .text {
	position: relative;
	left: 0;
	width: 100%;
	padding: 15px 40px 15px 15px;
}

.enq-list .content-div .text h4 {
	font-size: 16px;
	text-transform: uppercase;
	color: var(--secondary);
	font-weight: 600;
}

.enq-list .content-div .text p {
	font-size: 16px;
	color: var(--primary);
	font-weight: 600;
	margin-bottom: 0;
}

.enq-list .delete-enq {
	position: absolute;
	right: 15px;
	top: 15px;
	color: var(--primary);

	transition: color 0.5s;
}

.enq-list .delete-enq:hover {
	color: var(--black);
	transition: color 0.5s;
}

.hide_enquiry {
	background-color: var(--primary);
	width: 26px;
	height: 26px;
	color: #fff;
	border-radius: 26px;
	position: absolute;
	top: 25px;
	right: 15px;
	line-height: 28px;
	border: 0;
	text-align: center;
	transition: background-color 0.3s;
	z-index: 10;
}

.hide_enquiry:hover {
	background-color: var(--black);
	color: var(--white);
	transition: background-color 0.3s;
}


/* Side Bar Menu */

.sidebar_menu {
	height: 100vh;
	width: 100%;
	position: fixed;
	z-index: 99999;
	top: 0;
	right: 0;
	/* box-shadow: -0px 0px 15px 0px rgba(0, 0, 0, 0.3); */
	display: none;
}

.sidebar_menu .overlay {
	background-color: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100vh;
	content: ' ';
	z-index: -100;
	position: absolute;
	top: 0;
	left: 0;
}

.sidebar_menu .content {
	max-width: 400px;
	width: 100%;
	height: 100%;
	padding: 0px;
	background-color: var(--secondary) !important;
	float: right;

	/* overflow: hidden !important; */
}

.sidebar_menu .head {
	position: relative;
	padding: 7px 20px;
	z-index: 1;

	background-color: var(--white);
}

.sidebar-logo img {
	width: 135px !important;
}

.sidebar_menu .accordion {
	height: calc(100vh - 275px);
	/* padding-right: 10px;
    padding-left: 10px; */
	/* background-color: var(--white); */
	overflow: hidden;
}

.sidebar_menu_list {
	padding: 0;
}

.sidebar_menu_list .accordion-item {
	background: none;
	background-color: none;
	border: none;
	text-transform: uppercase;
	/* margin-bottom: 5px; */
	font-family: var(--font) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* .sidebar_menu_list .accordion-item:last-child {
	border-bottom: 0;
} */

.sidebar_menu_list a {
	background: none;
	background-color: none;
	border: none;
	color: var(--white);
	/* background-color: var(--secondary); */
	font-size: 16px !important;
	font-weight: 500 !important;
	line-height: 50px;
	text-transform: capitalize;
	padding: 0 15px;
	letter-spacing: 0px;
	display: flex;
	font-family: var(--font) !important;
	border: 1px solid transparent;
}

.sidebar_menu_list .accordion-button {
	border: 1px solid transparent;
	background: none;
	background-color: none;
	border: none;
	color: var(--white);
	/* background-color: var(--secondary); */
	font-size: 16px !important;
	font-weight: 500 !important;
	line-height: 50px;
	text-transform: capitalize;
	padding: 0 15px;
	letter-spacing: 0px;
	position: relative;
	/* border-top: 1px solid #544f3b; */
	border-radius: 0px !important;
}

.sidebar_menu_list a.active,
.sidebar_menu_list .accordion-button.active,
.sidebar_menu_list a:hover,
.sidebar_menu_list .accordion-button:hover {
	color: #fff;
	background-color: rgba(255, 255, 255, 0.1) !important;

}

.sidebar_menu_list .accordion-button::after {
	background-image: url(../images/plus.png);
	width: 15px;
	height: 16px;
	background-size: 15px;
}

.sidebar_menu_list .accordion-button:not(.collapsed)::after {
	background-image: url(../images/minus.png);
	width: 15px;
	height: 16px;
}

.sidebar_menu_list .accordion-body {
	padding: 10px 10px 10px 0px;
	background-color: var(--secondary-dark) !important;
	height: auto;
	max-height: 240px;
	overflow: hidden;
}

.sidebar_menu_list .accordion-body ul {
	padding: 0;
	margin-top: 0rem;
	margin-bottom: 0rem;
	list-style-type: none;
}

.sidebar_menu_list .accordion-body ul li.view-all a {
	background-color: var(--secondary-dark);
	color: var(--primary) !important;
}

.sidebar_menu_list .accordion-body ul li a {
	font-size: 16px !important;
	line-height: 30px !important;
	color: var(--white);
	font-weight: 500 !important;
	text-transform: none;
	padding: 5px 0;
	border: none;
	margin-bottom: 3px;
	padding: 5px 15px;
	transition: all 0.4s;
}

.sidebar_menu_list .accordion-body ul li a i {
	margin-right: 10px;
	margin-top: 7px;
	font-size: 15px;
	color: var(--primary);
}

.sidebar_menu_list .accordion-body ul li a.active,
.sidebar_menu_list .accordion-body ul li a:hover {
	font-size: 16px;
	line-height: 30px;
	color: var(--white);
	background: none !important;
	font-weight: 500 !important;
	text-transform: none;
	color: var(--white) !important;
	background-color: rgba(255, 255, 255, 0.1) !important;
	transition: all 0.4s;
}

.sidebar_menu .logo img {
	width: 150px;
}

.menu-icon {
	width: 15px;
	height: 15px;
	margin: 7px 10px 0 0;
	transform: rotate(45deg);
}


.sidebar_menu .foot {
	position: absolute;
	width: 100%;
	bottom: 0px;
}

.foot .sidebar_meeting {
	background-color: #fff;
	width: 100%;
	padding: 0 15px;
}

.foot .sidebar_social {
	/* background-color: var(--primary); */
	width: 100%;
	padding: 0;
}

.foot .sidebar_social ul {
	padding: 0 !important;
	margin: 0;
}

.foot .sidebar_social ul li {
	display: block;
	text-align: center;
}

.foot .sidebar_social ul li a {
	line-height: 40px;
	margin: 15px;
	color: #fff;
}

.foot .sidebar_social ul li a:hover {
	color: var(--primary);
}

.sidebar_contact {
	display: flex;
	width: 100%;
}

.sidebar_contact a {
	padding: 15px;
	margin: 0;
	text-align: center;
	width: 50%;
	background-color: var(--secondary-dark);
	color: #fff;
	transition: all 0.3s;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.sidebar_contact a:first-child {
	border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.sidebar_contact a:hover {
	background-color: var(--primary);
	transition: all 0.3s;
}

.cloase_btns {
	background-color: var(--primary);
	width: 50px;
	height: 62px;
	color: var(--white);
	opacity: 1;
	position: absolute;
	right: 0px;
	top: 0px;
	z-index: 10000;
	line-height: 0px !important;
	transition: 0.3s;
	border: 0px;
}

.cloase_btns:hover {
	background-color: var(--secondary);
	color: var(--white);
	opacity: 1;
	position: absolute;
	line-height: 0px !important;
	transition: 0.3s;
}

.sidebar_social .footer-social i {
	margin-top: 3px;
}

.page-head {
	background-color: var(--secondary);
	/* background-image: url(../images/page-head-img.jpg); */
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 150px;
	padding: 35px 0 !important;
	position: relative;
}

.page-head h2 {
	font-size: 36px;
	line-height: 40px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: var(--fonts-title);
	color: var(--white);
	text-align: center;
	margin-bottom: 20px;
	
}

.breadcrumb {
	margin: 0 auto;
	justify-content: center;
	z-index: 1000;
	width: 100%;
}

.breadcrumb-item,
.breadcrumb-item a {
	color: #fff;
	display: inline;
	font-weight: 600;
	letter-spacing: 0px;
	font-size: 15px;
	font-family: var(--font-title);
}

.breadcrumb-item a:hover {
	color: var(--primary);
}

.breadcrumb-item.active {
	color: var(--primary);
	letter-spacing: 1px;
	font-weight: 600;
}

.breadcrumb-item::before {
	color: #fff !important;
}

.breadcrumb-item+.breadcrumb-item::before {
	content: var(--bs-breadcrumb-divider, "-");
}

/* header */
.header_sticky {
	width: 100%;
	background-color: var(--white);
	height: 70px;
	display: flex;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .1) !important;
	position: fixed;
	z-index: 10000;
}

.header_sticky .logo {
	width: 170px;
	height: 100%;
	line-height: 70px;
	padding: 0 20px;
}

.header_sticky .logo img {
	width: 100%;
}

.header_sticky .main-menu {
	margin: 0 auto;
	height: 70px;
}

.header_sticky .main-menu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.header_sticky .main-menu ul li {
	display: inline-block;
	position: relative;
}

.header_sticky .main-menu ul li a {
	margin: 0 30px;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 70px;
	display: block;
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	background-repeat: no-repeat;
	transition: 0.5s ease-out;
	background-image: linear-gradient(to right, var(--primary) 45%, #121212 55%);
	background-size: 220% 100%;
	background-position: 100% 50%;
}

.header_sticky .main-menu ul li a:hover {
	background-position: 0% 50%;
}

.header_sticky .utility-menu {
	height: 70px;
}

.header_sticky .utility-menu ul {
	margin: 0px 20px 0 0;
	padding: 0;
	list-style-type: none;
}

.header_sticky .utility-menu ul li {
	display: inline-block;
}

.header_sticky .utility-menu ul li a {
	width: 48px;
	height: 48px;
	line-height: 48px;
	border: 1px solid #cab5b6;
	border-radius: 50%;
	display: block;
	text-align: center;
	margin: 10px;
	font-size: 20px;
	color: var(--black);
	transition: all 0.5s;
	box-shadow: 0 0 10px rgba(0, 0, 0, .2) !important
}

.header_sticky .utility-menu ul li a:hover {
	background-color: var(--primary);
	color: #fff;
	transition: all 0.5s;
	border: 1px solid var(--primary);
}


.header_sticky .sidebar-menu-btn a {
	background-color: var(--primary);
	width: 100px;
	line-height: 110px;
	height: 100%;
	display: block;
	color: #fff;
	text-align: center;
	font-size: 30px;
	position: relative;
	z-index: 1;
}

/* submenu */
.header_sticky .main-menu div.m-menu {
	max-height: 350px;
	width: 300px;
	background: var(--secondary) !important;
	position: absolute;
	z-index: 99 !important;
	display: none;
	border: 0;
	z-index: -99999;
	padding: 10px 0 0 0;
	color: #e5eced !important;
	top: 70px;
	left: 30px;
	box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.3) !important;
	/* visibility: hidden;
	opacity: 0;
	height: 0; */
}

.header_sticky .main-menu div.m-menu li {
	display: block;
	width: 100%;
	text-transform: none;
	padding: 0;
	margin: 0;
	color: #e5eced !important;
}

.header_sticky .main-menu li:hover div.m-menu {
	max-height: 350px;
	height: auto;
	display: block;
	visibility: visible;
	opacity: 1;
	transition: all 0.3s;
	transform-origin: top center;
	/* z-index: -99999 !important;
    animation: slide-down .5s ease-out; */
}

.header_sticky .main-menu div.m-menu .menus {
	max-height: 330px;
	margin: 0;
	padding: 0;
}

.header_sticky .main-menu ul li a.menu-view-all {
	font-size: 16px;
	font-weight: 600;
	width: 300px;
	text-transform: uppercase;
	line-height: 25px;
	display: block;
	color: var(--primary);
	-webkit-background-clip: unset !important;
	background-clip: unset !important;
	background-repeat: 0 !important;
	background-image: none;
	background-color: var(--secondary);
	background-size: 100%;
	background-position: 100% 50;
	padding: 12px 16px;
	margin: 5px 0 0 0;
}

.header_sticky .main-menu ul li a.menu-view-all:hover {
	background-color: var(--secondary-dark);
}


/* @keyframes slide-down {
	0% { opacity: 0; -moz-transform: translateY(-100%); }   
  100% { opacity: 1; -moz-transform: translateY(0); }
} */

.header_sticky .main-menu ul.menus li {
	background-color: var(--secondary);
}

.header_sticky .main-menu ul.menus li a {
	font-size: 16px !important;
	line-height: 18px;
	font-weight: 500 !important;
	color: var(--white) !important;
	width: 100% !important;
	display: block !important;
	height: auto !important;
	/* line-height: 50px !important; */
	text-align: left;
	border-radius: 0 !important;
	border: 0 !important;
	margin: 0 !important;
	transition: background-color 0.5s !important;
	font-weight: 400;
	padding: 12px 16px;
	color: #e5eced !important;
	text-transform: none;
}

.header_sticky .main-menu ul.menus li:hover {
	color: var(--white) !important;
	background-color: var(--secondary-dark) !important;
}

.header_sticky .main-menu .menus li a img {
	width: 0px;
	height: 18px;
	transition: all 0.3s;
	/* position: absolute;
    top : 17px;
    left : 15px */

}

.header_sticky .main-menu .menus li::before,
.header_sticky .main-menu .menus li::after {
	display: none !important;
}

.header_sticky .main-menu .menus li:hover a img {
	width: 18px;
	margin-right: 10px;
	transition: all 0.3s;
}

.header_sticky .main-menu .button-bar {
	padding: 5px;
	margin: 0;
	background: #fff;
	position: sticky;
	bottom: 0;
	display: none;
}

.space-padding .row>* {
	padding-right: 27px;
	padding-left: 27px;
}

.space-padding .row {
	--bs-gutter-x: 54px;
}

.back-link {
	color: var(--primary);
	font-size: 15px;
	position: absolute;
	top: -30px;
	font-weight: 600;
}

.back-link i {
	color: var(--primary);
	margin-right: 5px;
	transition: margin 0.2s;
}

.back-link:hover {
	color: var(--secondary);
}

.back-link:hover i {
	color: var(--secondary);
}



button.back-to-top {
	margin: 0 !important;
	padding: 0 !important;
	background: var(--primary) !important;
	height: 0px;
	width: 0px;
	overflow: hidden;
	border-radius: 7px;
	color: transparent;
	clear: both;
	visibility: hidden;
	position: fixed;
	cursor: pointer;
	display: block;
	border: 2px solid #fff;
	right: 50px;
	bottom: 75px;
	font-size: 0px;
	outline: 0 !important;
	z-index: 99;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

button.back-to-top:hover,
button.back-to-top:active,
button.back-to-top:focus {
	background: var(--secondary) !important;
}

button.back-to-top.show {
	display: block;
	background: #fff;
	color: #fff;
	font-size: 25px;
	right: 25px;
	bottom: 50px;
	height: 40px;
	width: 40px;
	line-height: 40px;
	visibility: visible;
	box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
	-webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
}

button.back-to-top.show:active {
	box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
	-webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
}


/* form */
.form-floating .form-control,
.form-floating .form-select {
	border-radius: 5px;
	border: 0px;
	color: #000 !important;
	padding: 24px 13px;
	font-weight: 600 !important;
}

.error-msg {
	color: var(--primary);
	font-size: 14px;
	margin: 0;
	height: 24px;
}

.form-floating label {
	color: #353535 !important;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
	opacity: 0.5 !important;
}

.main_filter {
	max-height: 650px;
	width: 100%;
	position: fixed;
	z-index: 99999 !important;
	top: 0;
	right: 0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .2) !important;
	display: none;
	background-color: #fff;
}

.main_filter .overlay {
	background-color: rgba(0, 0, 0, 0.8);
	width: 100%;
	height: 100%;
	content: ' ';
	z-index: -1000;
	position: fixed;
	top: 0;
	left: 0;
}

.main_filter .content {
	width: 100%;
	height: auto;
	text-align: left;
	z-index: 100;
	padding: 50px 25px 50px 25px;
	background-color: #fff;
}

.search-div .form-control {
	border-radius: 50px;
	height: 47px;
	border-color: #ccc;
	margin: 0 auto;
	padding-right: 60px;
}

.search-div {
	position: relative;
	padding: 0;
	margin: 0;
}

.search-btn {
	position: absolute;
	top: 1px;
	right: 0;
	height: 45px;
	width: 50px;
	border-radius: 25px;
	z-index: 10;
	border: none;
	color: #fff;
	background-color: var(--primary);
}

.main_filter h4 {
	text-align: center;
	color: var(--primary);
	font-size: 21px;
	font-weight: 700;
}

.search-img-div {
	width: 100%;
	height: 210px;
	text-align: center;
	border: 1px solid #ccc;
	overflow: hidden;
	position: relative;
}

.search-img-div img {
	max-width: 100%;
	max-height: 210px;
	width: auto;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	position: absolute;	
	transition: all 0.2s;
	z-index: 0;
	overflow: hidden;
	transition: all 0.3s;
}

.search-img-div:hover img {
	transform: scale(1.1);
	transition: all 0.3s;
}

.main_filter h5 {
	font-size: 16px;
	color: var(--black);
	font-weight: 600;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
}

.main_filter h5:hover {
	color: var(--primary);
}

.main_filter h6 {
	font-size: 16px;
	color: var(--primary);
	font-weight: 500;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 25px;
}

.hide_filter {
	background-color: var(--primary);
	width: 30px;
	height: 30px;
	color: #fff;
	border-radius: 30px;
	position: absolute;
	top: 15px;
	right: 15px;
	border: 0;
}



.cookies {
	width: 380px;
	background: #fff;
	border-radius: .5rem;
	box-shadow: 0 10px 37px rgba(0, 0, 0, .15);
	border: .5px solid hsla(0, 0%, 46%, .28);
	position: fixed;
	left: 1.5625rem;
	bottom: 1.5625rem;
	padding: 15px;
	display: flex;
	flex-direction: column;
	z-index: 111;
	box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
}

.cookies a {
	font-size: 18px;
	margin-bottom: 0px;
	text-align: right;
	color: var(--primary) !important;
}

.cookies a:hover {
	color: var(--black) !important;
}

.cookies h3 {
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: 700;
	font-family: var(--font);
}

.cookies p {
	font-size: 15px;
	margin-bottom: 15px;
}

.cookies p a {
	font-size: 14px;
	margin-bottom: 15px;
	color: var(--primary);
	font-weight: 600;
}

.cookies .btn {
	height: 35px;
	line-height: 35px;
	font-size: 14px;
}

.modal-content {
	background-color: #e2e9f6 !important;
}

.modal-title {
	color: var(--primary);
	font-size: 18px;
	font-weight: 600;
}

.form-check-input {
	margin: 0;
	height: 20px;
	width: 20px;
}