/* Header */
.site-header {
	position: relative;
	z-index: 9999;
}
.header-content {
	float: left;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: var(--secondary-bg);
}

img.custom-logo {
	width: 222px;
	height: 62px;
	margin: 0 55px 0 30px;
}

#site-navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 auto 0 0;
	background-color: var(--secondary-bg);
	border: unset;
}
#md-collapse-menu {
	padding: 0;
}
#primary-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}
#primary-menu > li:not(:first-child){
	margin-left: 25px;
}
#primary-menu .menu-item a {
	color:  var(--menu-item-color);
	font-size: 18px;
	font-weight: 400;
	padding: 15px 0;
}
#primary-menu li.menu-item-has-children a {
	margin-right: 18px;
}
#primary-menu li.menu-item-has-children a {
	position: relative;
}
#primary-menu .menu-item-has-children > a:before {
	content: "\203A";
	position: absolute;
	right: -17px;
	top: 10.5px;
	font-size: 24px;
	transform: rotateZ(90deg);
}
#primary-menu .menu-item a:hover {
	color: var(--menu-item-hover-color);
}
#primary-menu li.menu-item-has-children:hover > .sub-menu  {
	visibility: visible;
	opacity: 1;
}  
.menu-item-has-children .sub-menu {
	position: absolute;
	top: 50px;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	background-color: var(--secondary-bg);
	border: #ececec solid 1px;
	-webkit-box-shadow: 8px 12px 43px #00000016;
	box-shadow: 8px 12px 43px #00000016;
	list-style: unset;
	padding: 20px 0;
	z-index: 999;
	margin-left: 0;
}
#primary-menu .menu-item-has-children .sub-menu a {
	display: block;
	padding: 0 20px;
	margin: 0 0 10px;
	width: 220px;
	font-size: 16px;
}
#primary-menu .menu-item-has-children .sub-menu li:last-of-type a {
	margin-bottom: 0;
}

.header-left__sun-holder {
	width: 90px;
	display: flex;
	background: #0D1322;
	align-items: center;
	justify-content: center;
}



a.header-left__phone-number {
	display: inline-block;
	padding: 30px 32px;
	color: #FFF;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	background: var(--secondary-cta-color);
}

a.header-left__phone-number:hover,
a.header-left__phone-number:active {
	background: var(--secondary-cta-hover-color);
	color: #fff;
}

@media screen and (min-width: 992px) {
	.menu-item-has-children span.menu-chevron {
    display: none;
}
}

@media screen and (min-width: 992px) {
	.menu-item-has-children .sub-menu .sub-menu {
		top: 50px;
		left: 90%;
	}
} 

@media screen and (min-width: 992px) and (max-width: 1200px) {
	#site-navigation {
		border-top: 1px solid #D9DBE1;
	}
}

@media screen and (max-width: 1600px) {
	img.custom-logo {
		width: 173px;
		height: 48px;
		margin: 0 0 0 20px;
	}

	#site-navigation {
		margin: 0 auto;
	}

	#primary-menu .menu-item a {
		font-size: 14px;
		padding: 15px 0;
	}

	#primary-menu > li:not(:first-child) {
		margin-left: 13px;
	}

	#primary-menu .menu-item-has-children > a:before {
		right: -14px;
		top: 10.5px;
		font-size: 21px;
	}
	a.header-left__phone-number {
		padding: 25px 20px;
		font-size: 15px;
	}

	.header-left__a-support {
		height: 73px;
		width: auto;
	}

	.header-left__sun-holder {
		width: 75px;
	}

}


@media screen and (max-width: 1200px) {
	.header-content {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		position: relative;
		padding: 0;
		justify-content: space-between;
	}

	.site-branding {
		order: 1;
	}
	.header-left {
		order: 2;
	}

	nav#site-navigation {
		order: 3;
		width: 100%;
		justify-content: center;
		border-bottom: 1px solid #D9DBE1;
		border-radius: 0;
	}

	#primary-menu > li:not(:first-child) {
		margin-left: 25px;
	}

	#primary-menu .menu-item a {
		font-size: 16px;
	}

	#primary-menu .menu-item-has-children > a:before {
		right: -17px;
		top: 10.5px;
		font-size: 25px;
	}

}
@media screen and (max-width: 991px) {
	.site-header {
		position: relative;
		-webkit-box-shadow: 8px 12px 21px 0px rgba(0, 1, 1, 0.08);
		box-shadow: 8px 12px 21px 0px rgba(0, 1, 1, 0.08); 
	}
	/* 	  .site-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 56.77px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#fff));
	background-image: -o-linear-gradient(#ebebeb, #fff);
	background-image: linear-gradient(#ebebeb, #fff);
} */

	.header-left {
		order: 1;
		width: 100%;
	}

	.site-branding {
		z-index: 2;
		order:2;
		padding: 10px;
	}

	.header-left__phone {
		width: calc(100% - 82px);
	}

	a.header-left__phone-number {
		width: calc(100% - 75px);
		text-align: center;
	}

	.navbar-header {
		position: absolute;
		top: 72.5px;
		right: 0;
		height: 68px;
		background: #fff;
		width: 87px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#site-navigation .navbar-header button {
		background-color: unset;
		border: unset;
		border-radius: unset;
		margin: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	#site-navigation .navbar-header button:hover, #site-navigation .navbar-header button:focus, #site-navigation .navbar-header button:active {
		background-color: unset;
	}
	.navbar-header button.navbar-toggle .icon-bar {
		background-color: var(--color-dark);
		width: 39px;
	}
	.navbar-header button.navbar-toggle .icon-bar:first-of-type {
		transform: rotate(45deg);
		top: 7px;
		position: relative;
		transition: .3s ease;
	}
	.navbar-header button.navbar-toggle .icon-bar:nth-of-type(2) {
		display: none;
		transition: .3s ease;
	}
	.navbar-header button.navbar-toggle .icon-bar:last-of-type {
		transform: rotate(-45deg);
		top: -3px;
		bottom: 0;
		position: relative;
		transition: .3s ease;
	}
	.navbar-header button.navbar-toggle.collapsed .icon-bar{
		border-radius: unset;
		transform: none;
		top: unset;
		display: block;
		transition: .3s ease;
	}
	.navbar-header button .icon-bar:not(:first-child) {
		margin-top: 8px;
	}
	.navbar-toggle {
		display: block;
	}
	#md-collapse-menu {
		width: 100%;
	}
	.md-navigation .collapse {
		display: none!important;
	}
	.md-navigation .collapse.in {
		display: block!important;
	}
	#site-navigation {
		position: static;
		margin: 0;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		min-height: unset;
	}
	#primary-menu {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 30px 0 25px 1px;
	}
	#primary-menu > li.menu-item {
		margin: 0 0 11px 0;
	}
	#primary-menu .menu-item a {
		padding: 5px 0 0 20px;
	}
	#primary-menu .menu-chevron {
		position: absolute;
		top: -4px;
		font-size: 35px;
		width: 35px;
		right: 10px;
		transform: rotate(90deg);
		height: 35px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#primary-menu .menu-item-has-children {
		position: relative;
	}
	#primary-menu .menu-item-has-children a:before {
		content: unset;
	}
	#primary-menu .menu-item-has-children .sub-menu {
		display: none;
		visibility: visible;
		opacity: 1;
		-webkit-transition: unset;
		-o-transition: unset;
		transition: unset;
		position: static;
		border: unset;
		-webkit-box-shadow: unset;
		box-shadow: unset;
		background-color:  var(--secondary-bg);
		margin: 10px 0 0;
		border-top: 1px solid #D9DBE1;
		border-bottom: 1px solid #D9DBE1;
		padding-left: 17px;
	}
}

@media screen and (max-width: 600px) {
	.header-left__a-support {
		position: absolute;
		top: 63px;
		height: 52px;
		width: 69px;
		background: #fff;
	}

	.header-left__phone {
		width: 100%;
	}
	.header-left__sun-holder {
		width: 69px;
		height: 63px;
	}

	a.header-left__phone-number {
		width: calc(100% - 69px);
		padding: 21px 20px;
	}
	.header-content {
		justify-content: center;
	}

	img.custom-logo {
		width: 118px;
		height: 33px;
		margin: 0;
	}

	.navbar-header {
		top: 63.5px;
		height: 52px;   
		width: 70px;
	}
}
#primary-menu .menu-item-has-children .sub-menu a {
	width:auto;
	white-space:nowrap;
}
.floating-btn__sun-holder,
.floating-btn__phone-holder {
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
}
.floating-btn__phone-number {
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
}
#primary-menu li.menu-item-has-children a {
	cursor:pointer;
}
/* Header end */


/********************* FOOTER ************************/

.site-footer {
	background: var(--color-dark);
	color: #fff;
}
.site-info {
	padding: 102px 0 94px;
}

.footer-about {
	margin: 22px 0 79px;
}

.footer__cta {
	padding: 15px 55px;
	font-size: 18px;
}

.footer-h5 {
	color: #fff;
	letter-spacing: 0.16px;
	margin-bottom: 20px;

}

.footer-menu ul {
	list-style: none;
	padding: 0;
}

.footer-menu li a {
	color: #FFF;
	font-size: 13px;
	font-weight: 400;
	line-height: 20px; 
}

.footer-menu li a:hover {
	color: var(--secondary-cta-hover-color);
}

.footer-menu li {
	padding: 0;
	margin: 0 0 10px;
	max-width: 220px;
}
.footer-address {
	font-size: 13px;
	line-height: 22px;
}
.social-links {
	margin-bottom: 39px;
	display: flex;
	gap: 5px;
}

.social-links img:hover {
	filter: invert(100%) invert(77%) sepia(68%) saturate(550%) hue-rotate(149deg) brightness(79%) contrast(83%);
}
.btn.footer__cta--mob {
	display: none;
}
.footer-bottom {
	border-top: 1px solid #46506A;
}
.copyright-flex {
	justify-content: space-between;
	align-items: center;
	padding: 15px;
}

.footer-bottom__link {
	color: #fff;
	font-weight: 400;
}

.footer-bottom__link:hover {
	color: var(--secondary-cta-hover-color);
}

.floating-btn {
	position: fixed;
	    z-index: 999999999;
	bottom: 15px;
	left: 15px;
	display: none;
}

.floating-btn__sun-holder,
.floating-btn__phone-holder {
	width: 82px;
	display: flex;
	background: #0D1322;
	align-items: center;
	justify-content: center;
}

.floating-btn__phone-number {
	display: inline-block;
	padding: 22px 41px;
	color: var(--color-dark);
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	background: var(--primary-cta-color);;
}
.floating-btn__phone-number-mobile {
	color: #FFF;
	font-size: 12px;
	background: var(--secondary-cta-color);
}
.floating-btn__phone-number:hover,
.floating-btn__phone-number:active {
	background: var(--primary-cta-hover-color);
	color: var(--color-dark);
}

.d-flex.mobile-btn {
	display: none;
}

.floating-btn__phone-holder {
    background: var(--color-dark);
    padding: 15px 10px;
    border-radius: 6px 0 0 6px;
	width: 60px;
	height: 61px;
}

.floating-btn__phone-number-mobile {
	font-size: 17px;
	font-weight: 700;
	line-height: 37px;
	padding: 12px 23px;
	background: var(--secondary-cta-color);
	color: #fff;
	border-radius: 0 6px 6px 0;
}

.d-flex.mobile-btn a {
    display: block;
}

.floating-btn__phone-number-mobile:hover {
	background: var(--secondary-cta-hover-color);
	color: #fff;
}

.floating-btn.highlight {
    transform: translateX(-200%);
}

@media screen and (max-width: 1600px) {
	.floating-btn {
		bottom: 7px;
		left: -15px;
		transform: scale(0.8);
		border-radius: 6px;
		overflow: hidden;
	}
}

@media screen and (max-width: 991px) {
	.footer-about {
		margin: 22px 0 40px;
	}

	.footer-h5 {
		margin-top: 40px;
	}

	.footer-bottom {
		padding: 15px 0;
	}
}


@media screen and (max-width: 767px) {
	.site-info {
		padding: 62px 0 46px;
	}

	.site-info .container {
		display: flex;
		flex-wrap: wrap;
	}

	.col-footer-about {
		text-align: center;
		order: 1;
	}

	.footer-treatment {
		order: 2;
		padding-bottom: 46px;
		margin-bottom: 15px;
	}

	.footer-treatment:before {
		content: "";
		position: absolute;
		border-top: 1px solid #46506A;
		top: 0;
		left: -15px;
		width: calc(100% + 30px);
	}

	.footer-treatment:after {
		content: "";
		position: absolute;
		border-top: 1px solid #46506A;
		bottom: 0;
		left: -15px;
		width: calc(100% + 30px);
	}

	.footer-useful-links {
		order: 3;
	}

	.footer-social {
		order: 4;
	}

	.footer-about {
		margin: 22px 0 55px;
	}
	.btn.footer__cta--desk {
		display: none;
	}

	.btn.footer__cta--mob {
		display: inline-block;
		order: 5;
		font-size: 16px;
		margin-top: 30px;
		width: calc(100% - 30px);
		text-align: center;
	}

	.copyright-flex {
		flex-direction: column;
		text-align: center;
		padding: 5px 15px;
	}

	.copyright-flex p {
		font-size: 13px;
	}
	
	.floating-btn {
		bottom: 20px;
	}

	.floating-btn__sun-holder {
		width: 72px;
	}

	.floating-btn__phone-number {
		padding: 20px 35px;
		font-size: 16px;
	}
	.footer__cta {
		margin-left: 15px;
	}
	
	.d-flex.desktop-btn {
		display: none;
	}
	
	.d-flex.mobile-btn {
		display: flex;
	}
}

@media screen and (max-width: 360px) {
	.floating-btn__phone-number-mobile {
		font-size: 15px;
	}
}
a.sx-verified-seal {
    width: 100% !important;
    background-size: contain !important;
    margin-top: 30px;
}