﻿/*--------------------------------------------------------------------------------------------------*/
/***** Assessment *****/
*,
html,
body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: SegoeRegular;
	color: var(--color-font);
}

html,
body {
	overflow-x: hidden;
	background-color: #ffffff;
}

h1:after,
h2:after {
	content: "";
	position: absolute;
	height: 5px;
	width: 150px;
	background-color: #0064c2;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

a {
	color: var(--color-main);
}

@font-face {
	font-family: SegoeRegular;
	src: url(/CMS/site/fonts/segoeui.ttf);
}

@font-face {
	font-family: SegoeLight;
	src: url(/CMS/site/fonts/segoeuil.ttf);
}

@font-face {
	font-family: SegoeSBold;
	src: url(/CMS/site/fonts/seguisb.ttf);
}

@font-face {
	font-family: SegoeBold;
	src: url(/CMS/site/fonts/segoeuib.ttf);
}

.upProgressSquare {
	position: absolute;
	top: 0%;
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	/* IE 5-7 */
	filter: alpha(opacity=50);
	/* Netscape */
	-moz-opacity: 0.5;
	/* Safari 1.x */
	-khtml-opacity: 0.5;
	/* Good browsers */
	opacity: 0.5;
	background-color: #ddd;
	width: 100%;
	height: 100%;
	min-height: 70px;
	left: -1px;
	z-index: 10000;
}

.upProgressSquare .sk-cube-grid {
	position: relative;
	margin: 1% auto;
}

a:hover {
	color: unset;
	text-decoration: none;
}

/***** Banner *****/
.banner {
	position: relative;
}

.banner img {
	width: 100%;
}

.banner-overlay {
	position: absolute;
	left: 0;
	bottom: 0;
}

.banner-overlay img {
	width: 100%;
}

/************************************
* Menu
*/
#ctl00_pnlMenu .main-menu > ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
	z-index: 999;
}

#ctl00_pnlMenu .main-menu > ul li {
	position: relative;
	padding: 0 62px 0 0;
	/***** Menu - Sub Menu *****/
}

@media (max-width: 1540px) {
	#ctl00_pnlMenu .main-menu > ul li {
		padding: 0 30px 0 0;
	}
}

#ctl00_pnlMenu .main-menu > ul li.hasChildren:hover > ul {
	display: block;
	list-style: none;
}

@media (min-width: 992px) {
	#ctl00_pnlMenu .main-menu > ul li.hasChildren:hover > ul {
		padding: 0;
	}
}

@media (min-width: 992px) {
	#ctl00_pnlMenu .main-menu > ul li.hasChildren:hover > ul li.hasChildren:hover > ul {
		left: 100%;
		top: 0;
	}
}

#ctl00_pnlMenu .main-menu > ul li a {
	text-decoration: none;
	width: 100%;
	display: block;
	font-size: 14px;
	color: var(--color-font);
	position: relative;
	white-space: nowrap;
	border: 1px solid transparent;
	padding: 0;
	border-radius: 6px;
}

@media (max-width: 1260px) {
	#ctl00_pnlMenu .main-menu > ul li a {
		font-size: 12px;
	}
}

#ctl00_pnlMenu .main-menu > ul li ul li a {
	white-space: unset;
}

#ctl00_pnlMenu .main-menu > ul li ul {
	position: absolute;
	z-index: 999;
	padding: 0;
	display: none;
}

#ctl00_pnlMenu .main-menu > ul li ul li:hover > a,
#ctl00_pnlMenu .main-menu > ul li ul li.active > a {
	color: var(--color-main);
}

#ctl00_pnlMenu .main-menu > ul li ul li a {
	color: #444;
	padding: 0;
	margin: 0;
	font-size: 14px;
	border: unset;
	line-height: 17px;
}

#ctl00_pnlMenu .main-menu > ul > li:first-child {
	display: none;
}

#ctl00_pnlMenu .main-menu > ul > li:nth-last-child(2) {
	padding: 0;
}

@media (min-width: 992px) {
	/***** Menu - Collaterals *****/
	#ctl00_pnlMenu .main-menu > ul > li ul {
		position: absolute;
		display: none;
		padding: 0;
		background-color: #fff;
		left: 0;
		z-index: 999;
		width: 100%;
		list-style: none;
	}

	#ctl00_pnlMenu .main-menu > ul > li.hasChildren:hover > ul {
		display: block;
	}

	#ctl00_pnlMenu .main-menu > ul li > ul li {
		padding: 5px 10px;
	}

	#ctl00_pnlMenu .main-menu > ul > li:hover > a,
	#ctl00_pnlMenu .main-menu > ul > li.active > a {
		color: var(--color-main);
		border: 1px solid transparent;
	}

	#ctl00_pnlMenu .main-menu > ul > li:hover > ul > li:hover > ul > li:hover > a {
		color: #59acd2;
	}

	#ctl00_pnlMenu .main-menu > ul li.menu-close-icon {
		display: none;
	}

	/***** Menu - Arrows *****/
	/*#ctl00_pnlMenu .main-menu > ul li.hasChildren {
        padding-right: 25px;
    }*/
	#ctl00_pnlMenu .main-menu > ul li i {
		position: absolute;
		width: 20px;
		height: 10px;
		right: 0;
		top: 13px;
	}

	#ctl00_pnlMenu .main-menu > ul li i::before {
		display: none;
	}

	#ctl00_pnlMenu .main-menu > ul li.hasChildren:hover > i .submenu-close.s-icon-1 {
		-webkit-clip-path: polygon(0 100%, 20% 100%, 50% 40%, 80% 100%, 100% 100%, 50% 0);
		clip-path: polygon(0 100%, 20% 100%, 50% 40%, 80% 100%, 100% 100%, 50% 0);
	}

	.submenu-menu-close-icon {
		width: 100%;
		height: 100%;
		display: none;
	}

	.submenu-close.s-icon-1 {
		width: 100%;
		height: 100%;
		-webkit-clip-path: polygon(20% 0, 0 0, 50% 100%, 100% 0, 80% 0, 50% 65%);
		clip-path: polygon(20% 0, 0 0, 50% 100%, 100% 0, 80% 0, 50% 65%);
		background-color: #6ba14c;
		z-index: 999;
	}
}

@media (max-width: 991px) {
	/***** Mobile Body *****/
	body {
		position: relative;
		z-index: 0;
	}

	body.mobile-clicked::after {
		position: absolute;
		content: "";
		width: 100%;
		height: 100%;
		top: 0;
		background-color: rgba(0, 0, 0, 0.3);
		z-index: 1;
	}

	html.mobile-clicked {
		overflow: hidden;
	}

	/***** Mobile *****/
	#ctl00_pnlMenu .main-menu > ul > li > ul > li.hasChildren > a {
		padding: 15px 51px 15px 20px !important;
	}

	#ctl00_pnlMenu .main-menu > ul {
		position: fixed;
		top: 0;
		background-color: #f5f5f5;
		padding: 75px 15px;
		height: 100vh;
		overflow: auto;
		width: 330px;
		right: -345px;
		display: flex;
		flex-direction: column;
		align-items: center;
		box-shadow: -4px 0 10px -2px rgba(0, 0, 0, 0.2);
		transition: all 200ms ease-in;
	}

	#ctl00_pnlMenu .main-menu > ul.open {
		right: 0;
	}

	#ctl00_pnlMenu .main-menu > ul li {
		width: 100%;
	}

	#ctl00_pnlMenu .main-menu > ul > li a {
		font-size: 22px;
	}

	/***** Mobile Menu - Sub Menu *****/
	#ctl00_pnlMenu .main-menu > ul li.hasChildren:hover > ul {
		display: none;
	}

	#ctl00_pnlMenu .main-menu ul li ul {
		display: none;
	}

	#ctl00_pnlMenu .main-menu > ul > li,
	#ctl00_pnlMenu .main-menu > ul li {
		width: 100%;
		padding: 0 !important;
	}

	#ctl00_pnlMenu .main-menu ul li a {
		padding: 15px 20px !important;
		background-color: #fff !important;
		border-bottom: 1px solid var(--color-main) !important;
		margin-bottom: 10px !important;
		color: var(--color-main) !important;
		text-align: center !important;
		font-size: 18px !important;
		border-radius: 0 !important;
	}

	#ctl00_pnlMenu .main-menu ul li ul li ul li a {
		white-space: pre-wrap;
	}

	#ctl00_pnlMenu .main-menu > ul > li.active > a,
	#ctl00_pnlMenu .main-menu > ul > li > ul > li.active > a,
	#ctl00_pnlMenu .main-menu > ul > li > ul > li > ul > li.active a {
		border-bottom: 2px solid #ffc9a9;
	}

	#ctl00_pnlMenu .main-menu > ul > li.hasChildren i {
		position: absolute;
		right: 0;
		top: 4px;
		height: 45px;
		width: 50px;
		z-index: 999;
		border-left: 1px solid #ccc;
	}

	#ctl00_pnlMenu .main-menu > ul > li.hasChildren > i::before {
		display: none;
	}

	#ctl00_pnlMenu .main-menu > ul > li:hover ul {
		position: relative;
		top: unset;
		left: unset;
	}

	#ctl00_pnlMenu .main-menu > ul > li ul {
		position: relative;
		top: unset;
		left: unset;
		padding-left: 15px;
		list-style: none;
	}

	/***** Mobile - Close Button *****/
	.menu-close-icon {
		position: absolute !important;
		right: 24px;
		top: 35px;
		width: 30px !important;
		display: none;
	}

	.menu-close-icon.toggle {
		display: block;
	}

	.menu-close-icon::before {
		transform: rotate(-45deg) !important;
	}

	.menu-close-icon::after {
		transform: rotate(45deg) !important;
	}

	.menu-close-icon::after,
	.menu-close-icon::before {
		position: absolute !important;
		content: "";
		width: 100% !important;
		height: 3px !important;
		background-color: var(--color-main) !important;
		left: unset !important;
		top: unset !important;
		border-radius: unset !important;
	}

	/***** Mobile - Menu Button *****/
	#ctl00_pnlMenu .main-menu .menu-button {
		display: block;
		font-size: 0;
		height: 4px;
		background-color: var(--color-main);
		width: 35px;
		margin-left: auto;
		position: relative;
	}

	#ctl00_pnlMenu .main-menu .menu-button::before,
	#ctl00_pnlMenu .main-menu .menu-button::after {
		position: absolute;
		content: "";
		width: 100%;
		height: 4px;
		background-color: inherit;
		display: block !important;
	}

	#ctl00_pnlMenu .main-menu .menu-button::before {
		top: -10px;
	}

	#ctl00_pnlMenu .main-menu .menu-button::after {
		top: 10px;
	}

	/***** Mobile - Sub Menu Close Button *****/
	.submenu-menu-close-icon {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		height: 100%;
		transition: all 200ms ease-in;
	}

	.submenu-menu-close-icon.active {
		transform: translate(-50%, -50%) rotate(180deg);
	}

	.submenu-close {
		position: absolute;
		width: 20px;
		height: 10px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.submenu-close.s-icon-1 {
		-webkit-clip-path: polygon(10% 0, 0 0, 50% 100%, 100% 0, 90% 0, 50% 80%);
		clip-path: polygon(10% 0, 0 0, 50% 100%, 100% 0, 90% 0, 50% 80%);
		background-color: var(--color-main);
	}
}

#ctl00_pnlFooter li.menu-close-icon,
#ctl00_pnlFooter .submenu-menu-close-icon {
	display: none;
}

/************************************
* Header
*/
header {
	position: absolute;
	background-color: transparent;
	box-shadow: unset;
	width: 100%;
	left: 0;
	top: 0;
}

.header__logo img {
	max-width: 100%;
}

.header__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 50px 70px;
}

@media (max-width: 1260px) {
	.header__container {
		padding: 10px 15px;
	}
}

@media (max-width: 991px) {
	.header__container {
		padding: 10px 15px;
		display: grid;
		grid-template-areas: "header header" "header-3 header-4";
	}
}

@media (max-width: 991px) {
	.header__logo {
		grid-area: header-3;
	}
}

@media (max-width: 991px) {
	.header__nav {
		position: absolute;
		bottom: 40px;
		right: 15px;
	}
}

.header__block {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__login-box-toggle {
	font-size: 16px;
	color: #fff;
	padding: 10px 35px;
	background-color: var(--color-main);
	border-radius: 4px;
	display: inline-block;
}

.header__login-box-toggle:hover {
	opacity: 0.7;
	color: #ffffff;
}

.header__cart-button {
	display: flex;
	align-items: center;
	position: relative;
	font-size: 16px;
	margin-left: 20px;
}

.header__cart-button img {
	display: flex;
}

.header__cart-button a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.header__cart-items {
	padding-right: 5px;
	border-right: 1px solid var(--color-font);
	margin-right: 5px;
}

.header__language-selection {
	display: flex;
	align-items: center;
	margin-left: 60px;
}

@media (max-width: 1260px) {
	.header__language-selection {
		order: -1;
		margin-bottom: 20px;
	}
}

@media (max-width: 991px) {
	.header__language-selection {
		margin-left: 0;
	}
}

.header__group {
	display: flex;
	align-items: center;
	margin-right: 130px;
}

@media (max-width: 1540px) {
	.header__group {
		margin-right: 25px;
	}
}

@media (max-width: 991px) {
	.header__group {
		margin-right: 0;
	}
}

.header__group-lg {
	display: flex;
}

@media (max-width: 1260px) {
	.header__group-lg {
		flex-direction: column;
		align-items: flex-end;
	}
}

@media (max-width: 991px) {
	.header__group-lg {
		grid-area: header;
		align-items: center;
	}
}

ul.Langs {
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
}

ul.Langs li {
	width: 25px;
	height: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
}

ul.Langs li:first-child {
	margin-right: 3px;
}

ul.Langs li a {
	font-size: 14px;
	color: var(--color-main);
	text-transform: lowercase;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

ul.Langs li a.langActive {
	background-color: var(--color-main);
	color: #fff;
	border-radius: 4px;
}

#ctl00_pnlMenu .main-menu ul.Langs {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	place-items: center;
	grid-gap: 10px;
	margin-top: 10px;
}

#ctl00_pnlMenu .main-menu ul.Langs li {
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#ctl00_pnlMenu .main-menu ul.Langs li:first-child {
	margin-right: 3px;
}

#ctl00_pnlMenu .main-menu ul.Langs li a {
	font-size: 14px !important;
	color: var(--color-main) !important;
	text-transform: lowercase;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: unset !important;
	padding: unset !important;
	border: 1px solid var(--color-main);
	background-color: unset !important;
	border-radius: 0;
}

#ctl00_pnlMenu .main-menu ul.Langs li a.langActive {
	background-color: var(--color-main) !important;
	color: #fff !important;
	border-radius: 0;
}

/************************************
* Footer
*/
footer {
	background-color: #efefef;
	position: relative;
}

.footer__container {
	padding: 50px 15px 20px;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 50px;
}

@media (max-width: 991px) {
	.footer__container {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media (max-width: 720px) {
	.footer__container {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	.footer__container {
		grid-template-columns: 1fr;
	}
}

.footer__block-holder {
	border-left: 2px solid var(--color-font);
	position: relative;
	z-index: 1;
}

.footer__block-holder > div {
	padding-left: 13px;
}

.footer__block-text {
	display: flex;
	align-items: center;
	font-size: 13px;
	margin-top: 15px;
}

.footer__block-text a {
	color: var(--color-font);
}

.footer__block-text > i {
	width: 14px;
	font-size: 14px;
	display: flex;
	justify-content: center;
	margin-right: 10px;
}

.footer__block-text:empty {
	margin: 0;
}

.footer__block.with-label {
	position: relative;
}

@media (min-width: 1201px) {
	.footer__block.with-label {
		padding-left: 40px;
	}
}

@media (max-width: 991px) {
	.footer__block.with-logo {
		display: none;
	}
}

.footer__label {
	font-size: 46px;
	font-family: SegoeBold;
	opacity: 0.1;
	z-index: 0;
}

@media (min-width: 1201px) {
	.footer__label {
		position: absolute;
		left: 6px;
		top: 83px;
		transform: rotate(-90deg);
		transform-origin: left;
		text-align: right;
		width: 122px;
	}
}

@media (max-width: 1200px) {
	.footer__label {
		margin-top: -25px;
	}
}

.footer__terms a {
	font-size: 14px;
	color: var(--color-font);
	display: block;
	padding-bottom: 15px;
}

.footer__terms a:last-child {
	padding-bottom: 0;
}

.footer__terms a:hover {
	color: var(--color-main);
}

.footer__social {
	margin: 30px 0;
}

.footer__social ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer__social ul li {
	display: grid;
	grid-template-columns: 20px 20px 20px;
	grid-gap: 40px;
}

.footer__social ul li i {
	font-size: 20px;
}

.footer__down {
	display: grid;
	grid-template-columns: 1fr 1fr;
	place-items: center;
	padding: 10px;
	font-size: 12px;
	grid-gap: 10px;
}

@media (max-width: 600px) {
	.footer__down {
		grid-template-columns: 1fr;
	}
}

.footer__down strong,
.footer__down sup {
	color: var(--color-main);
}

#ctl00_pnlFooter ul,
#ctl00_pnlFooterSecond ul,
#ctl00_pnlFooterTerms ul {
	list-style: none;
}

@media (max-width: 720px) {
	#ctl00_pnlFooter ul,
	#ctl00_pnlFooterSecond ul,
	#ctl00_pnlFooterTerms ul {
		padding: 0;
		margin: 0;
	}
}

#ctl00_pnlFooter ul li,
#ctl00_pnlFooterSecond ul li,
#ctl00_pnlFooterTerms ul li {
	padding-bottom: 5px;
}

#ctl00_pnlFooter ul li.active a,
#ctl00_pnlFooterSecond ul li.active a,
#ctl00_pnlFooterTerms ul li.active a {
	color: var(--color-main);
}

#ctl00_pnlFooter ul li:first-child,
#ctl00_pnlFooterSecond ul li:first-child,
#ctl00_pnlFooterTerms ul li:first-child {
	display: none;
}

#ctl00_pnlFooter ul li:nth-last-child(2),
#ctl00_pnlFooterSecond ul li:nth-last-child(2),
#ctl00_pnlFooterTerms ul li:nth-last-child(2) {
	padding-bottom: 0;
}

#ctl00_pnlFooter ul li:last-child,
#ctl00_pnlFooterSecond ul li:last-child,
#ctl00_pnlFooterTerms ul li:last-child {
	display: none;
}

#ctl00_pnlFooter ul li a,
#ctl00_pnlFooterSecond ul li a,
#ctl00_pnlFooterTerms ul li a {
	font-size: 14px;
	color: var(--color-font);
}

#ctl00_pnlFooter ul li a:hover,
#ctl00_pnlFooterSecond ul li a:hover,
#ctl00_pnlFooterTerms ul li a:hover {
	color: var(--color-main);
}

#ctl00_pnlFooterSecond ul li:first-child,
#ctl00_pnlFooterTerms ul li:first-child {
	display: block;
}

/************************************
* Login Box
*/
.login-position-control {
	position: absolute;
	width: 100%;
	max-width: 1255px;
	margin: 0 auto;
	height: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 99;
	padding: 0 15px;
}

.LoginBox {
	background-color: unset !important;
}

.LoginArea {
	position: absolute;
	top: 50%;
	right: 15px;
	border: 0;
	z-index: 1000;
	width: 325px;
	background-color: transparent;
	transform: translateY(-50%);
}

.LoginArea .widget-main {
	background-color: #fff !important;
	padding: 45px 45px 10px !important;
	border: 1px solid var(--color-main) !important;
}

@media (max-width: 1140px) {
	.LoginArea {
		right: 50%;
		transform: translateX(50%);
		top: 23%;
	}
}

.LoginArea input {
	width: 100%;
	border: unset;
	background-color: unset;
	border-bottom: 1px solid var(--color-main);
	text-align: center;
	font-size: 16px;
	font-family: SegoeLight;
}

.LoginArea input:focus {
	outline: unset;
}

.LoginArea button {
	font-size: 16px;
	color: #fff;
	padding: 10px 35px;
	background-color: var(--color-main);
	border-radius: 4px;
	display: inline-block;
	border: unset;
}

.LoginArea button:hover {
	opacity: 0.7;
}

.LoginArea button span {
	color: #fff;
}

.LoginArea .button {
	text-align: center;
}

.LoginArea label {
	margin-bottom: 30px;
}

.LoginAvatar {
	margin-bottom: 30px;
}

.LogedinBtn {
	text-align: center;
}

.LogedinBtn a {
	color: var(--color-font);
	font-size: 16px;
}

.LogedinBtn .fa-power-off {
	display: inline-block !important;
}

.LogedinBtn .fa-power-off:before {
	background-color: var(--color-main);
}

.LogedinBtn .fa-power-off:hover {
	opacity: 0.7;
}

.header__language-selection,
.header__group {
	margin: 0;
}

ul.Langs {
	display: none;
}

.main-bg {
	background-image: url(/CMS/site/images/gate/main-bg-orientum.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100vh;
	position: relative;
}

.main-bg-text {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	padding: 49px 40px 49px 60px;
	max-width: 730px;
	width: 100%;
}

@media (max-width: 1140px) {
	.main-bg-text {
		top: 76%;
		width: 100%;
		max-width: 100%;
	}
}

.main-bg-text::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.5);
	top: 0;
	left: 0;
	z-index: -1;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.main-bg-text-content {
	color: var(--color-main);
	font-size: 45px;
	text-align: left;
}

@media (max-width: 1140px) {
	.main-bg-text-content {
		text-align: center;
		font-size: 35px;
	}
}

footer {
	display: none;
}

@media (max-width: 1140px) {
	.header__container {
		justify-content: center;
	}
}

@media (max-width: 991px) {
	.header__container {
		display: flex;
	}

	.header__nav {
		display: none;
	}
}
