@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Titillium+Web:400,400i,700&display=swap&subset=latin-ext');

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,900;1,400&family=Raleway:ital,wght@0,400;0,800;0,900;1,400&display=swap');

html, body { 
	width: 100vw; 
	height: 100vh; 
	-webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    font-size-adjust: none;
    -moz-font-size-adjust: none;
    -webkit-font-size-adjust: none; 
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
body { 
	overflow-x: hidden;
	display: grid;
	grid-template-rows: 1fr auto auto;
	scroll-behavior: smooth;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 590;
	color: var(--color-9);
	background-color: transparent;
}
#header-info {
	background-color: var(--color-9);
	color: var(--color-3);
	padding: .3em 2em;
}
#header-wrap {
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
	align-items: stretch;
	padding: 0 1em;
	background-color: rgba(255, 255, 255, 0.85);
}





header div {
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: center;
}

header a {
	text-decoration: none;
	color: inherit;
}
header .handle {
	padding: .5rem 1rem;
	position: relative;
}

header span {
	vertical-align: middle;
	display: inline-block;
}
header span.legend {
	margin-right: .5rem;
}



main {
	
}
footer {
	
}
footer .border-top {
	border-color: #393939;
}

#logo-primary {
	position: relative;
	display: flex;
	flex-flow: row;
    flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
}
.logo-main {
	height: 4rem;
	padding: .5rem 1rem;
}
.logo-main-title {
	font-size: 1.125em;
	line-height: 1em;
	font-weight: 600;
}
.logo-main-title .small {
	color: var(--color-2);
	font-size: .75em;
}


#nav-primary {

}
#header-menu {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: flex-start;
	height: 100%;
}
#header-menu li {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
}

#header-menu a {
	display: block;
	padding: .5rem 1rem;
	position: relative;
	font-weight: 800;
	font-size: 1.125em;
}
#header-menu a:hover::after {
	background-color: var(--color-2);
}

#header-menu a::after {
	content: "";
	height: 1px;
	width: calc(100% - 2rem);
	position: absolute;
	top: 0;
	left: 1rem;
	z-index: auto;
}
#header-menu a:hover::after {
	animation: menu-fade-in .25s;
}
@keyframes menu-fade-in {
	0% {
		transform: scaleX(0%);
	}
	100% {

	}
}


#nav-secondary, .nav-secondary {
	width: 100%;
	height: 100%;
	display: flex;
	flex-flow: column;
	flex-wrap: nowrap;
	align-content: stretch;
	justify-content: center;
}
#nav-secondary ul {

}
#nav-secondary li {

}
#nav-secondary a, .nav-secondary a {
	display: block;
	padding: .5rem 1rem;
	color: var(--color-2);
}
#nav-secondary a:not(.small), .nav-secondary a:not(.small) {
	font-size: 1.25em;
	line-height: 1em;
}
#nav-secondary a.small, .nav-secondary a.small {
	font-size: 1em;
	line-height: 1em;
}
#nav-secondary a:hover, #nav-secondary a.actual, .nav-secondary a:hover, .nav-secondary a.actual {
	color: var(--color-8);
}

#nav-social-secondary {
	position: relative;
	justify-content: flex-start;
}
#nav-social-secondary::before {
	content: "";
	height: 30vw;
	max-height: 40vh;
	width: 30vw;
	max-width: 40vh;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: auto;
	background-color: var(--color-2);
	clip-path: polygon(100% 0, 100% 100% , 0 100%);
}

.nav-menu-col {

}
.nav-menu-col ul {
	
}

.nav-menu-col a {
	display: block;
	padding: .5rem 0;
	text-decoration: none;
	position: relative;
}
.nav-menu-col a:hover, .nav-menu-col a.actual {
	color: var(--color-6);
}



#nav-page-category {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

/*
#nav-page-category span {
	margin: .1em;
	text-align: center;
	word-wrap: unset;
	white-space: nowrap;
}
#nav-page-category a {
	display: block;
	padding: .5em 1em;
	background-color: var(--color-2);
	color: var(--color-1);
	clip-path: polygon(.5rem 0, 100% 0, calc(100% - .5rem) 100% , 0 100%);
}
#nav-page-category a:hover {
    background-color: var(--color-6);
	transform: translateY(-.3em);
}
#nav-page-category a.actual {
    background-color: var(--color-6);
}
/*
BANNERS
*/

#banner-hero-wrap {
	padding: 0;
	margin-bottom: 0;
	background-color: transparent;
	box-shadow: none;
	position: relative;
}
/*
#banner-hero-wrap::before {
	content: "";
	height: 40vh;
	width: 40vh;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: auto;
	background-color: var(--color-6);
	clip-path: polygon(0 0, 100% 100% , 0 100%);
}
*/
#banner-hero {
	position: relative;
	width: 100%;
	height: 100vh;
	z-index: 5;

	/*
	clip-path: polygon(0 0, 100% 0, 100% 20%, 90% 100% , 0 90%);
	*/
	overflow: hidden;
}

#banner-hero-polygon1 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 40%;
	z-index: 500;
	clip-path: polygon(0 calc(100% - 4rem), 80% calc(100% - 1rem), 100% 0, 100% 100%, 0 100%);
	overflow: hidden;
	background-color: var(--color-8);
}
#banner-hero-polygon2 {
	position: absolute;
	top: 33vh;
	bottom: -4rem;
	left: auto;
	right: 0;
	width: 4rem;
	z-index: 505;
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
	overflow: hidden;
	background-color: var(--color-9);
}

#banner-hero .pic-bg-full {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}
#banner-hero .pic-bg-full img {
	object-fit: cover;
	-o-object-fit: cover;
    height: 100%;
	width: 100%; 
	display: block;
	-webkit-transition: all .5s ease-out 0s;
  	-moz-transition: all .5s ease-out 0s;
  	-o-transition: all .5s ease-out 0s;
	transition: all .5s ease-out 0s;
}

#banner-hero .pic-person {

	position: absolute;
	top: auto;
	right: auto;

	left: 40%;
	bottom: 0;
	z-index: auto;
	height: 90vh;
}

#banner-hero .pic-person-bg {
	position: absolute;
	top: auto;
	left: auto;
	right: 5%;
	bottom: 0;
	z-index: auto;
	height: 80%;
	width: 45%;
	background-color: var(--color-9);
	clip-path: polygon(0 3rem, 100% 0, calc(100% - 5rem) 100% , 3rem 100%);
}
#banner-hero .pic-bg-symbol {
	position: absolute;
	top: auto;
	left: auto;
	right: 0;
	bottom: 0;
	z-index: auto;
	height: 90%;
}

#banner-hero .content-wrap {

	position: absolute;
	top: 20vh;
	bottom: 20vh;
	right: 50%;
	left: auto;
	width: 50%;

	display: flex;
	flex-flow: row;
	align-content: center;
	justify-content: flex-end;
	flex-wrap: wrap;
}
#banner-hero .content {
	text-align: left;
	width: auto;
	padding: 1.5em 1em 1.5em 1em;
	color: var(--color-9);
	background-color: transparent;

	font-size: 1.25em;
	line-height: 1.125em;
}
/*
#banner-hero .content-btn {
	position: absolute;
	bottom: 1em;
	right: 2em;
}
*/

#banner-hero h1 {
	color: var(--color-9);
	padding: 0;
	margin: 0 0 .3rem -3rem;
	font-size: 6em;
	line-height: 1em;
	text-shadow: 0px 1px 0px rgba(255,255,255,0.6);
}
#banner-hero h2, #hero-slider h3 {
	color: var(--color-9);
	padding: 0;
	margin: 0 0 .3rem 0;
	font-size: 3em;
	line-height: 1em;
	text-shadow: 0px 1px 0px rgba(255,255,255,0.6);
}
#banner-hero strong {
	color: var(--color-9);
	padding: 0;
	margin: 0 0 .3rem 0;
	font-size: 2em;
	line-height: 1em;
	text-shadow: 0px 1px 0px rgba(255,255,255,0.6);
}

#banner-big ul.slider, #banner-big ul.slider li {
	width: 100%;
	padding: 0;
	margin: 0;
	height: calc(70vh - 1rem);
	background-color: var(--color-2);
	overflow: hidden;
}
#banner-big ul.slider li {
	position: relative;
	clip-path: polygon(4em 0, 100% 0, 100% 100% , 0 100%, 0 4em);
}
#banner-big:hover .pict-bg-full img {
	transform: scale(1.05);
}

/*
GRID
*/
section {

}
.box-list {}

.box-link {
	display: flex;
	flex-direction: column;
    flex-wrap: nowrap;
	align-items: center;
	justify-content: stretch;
	text-align: center;
}
.box-link h2 {
	padding: 0 0 .3em 0;
	margin: 0;
	font-size: 1.33em;
}

.box-link:hover h2 {
	color: var(--color-6);
}
.box-link:hover .icon {
	filter: brightness(0);
}

.box-thumb { width: 100%; height: auto; overflow: hidden; position: relative; }
.box-thumb a {
	display: block;
	height: 100%;
	width: 100%;
}
.box-thumb img {
	object-fit: cover;
	-o-object-fit: cover;
    height: 100%;
	width: 100%; 
	display: block;
}

.box-image { width: 100%; height: 50vh; min-height: 500px; position: relative;  }

.box-image-wrap { width: 100%; height: 100%; overflow: hidden; position: relative;  }
.box-image-right {
	xclip-path: polygon(10% 0, 100% 0, 100% 100%, 10% 100%, 0 50%);
}
.box-image-left {
	xclip-path: polygon(0% 0%, 90% 0, 100% 50%, 90% 100%, 0 100%);
}
.box-image img {
	object-fit: cover;
	-o-object-fit: cover;
    height: 100%;
	width: 100%; 
	display: block;
}

.box-text ul, .box-text ol {
	list-style-type: none;
	margin-bottom: 1em;
}
.box-text ul > li {
	padding: .33em 0 .33em 1em;
	position: relative;
}
.box-text.align-right ul > li {
	padding: .33em 1em .33em 0;
}
.box-text ul > li:before {
    content: '';
	width: .33em;
	height: .33em;
	position: absolute;
	left: 0;
	top: 1.125em;
	transform: translateY(-50%);

	background-color: var(--color-8);
	color: var(--color-2);
}
.box-text.align-right ul > li:before {
	right: 0;
	left: auto;

	clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
}
.box-text ol {
   	counter-reset: item;
}
.box-text ol > li {
	counter-increment: item;
	padding: .5rem 0 .5rem 2em;
	position: relative;
}
.box-text ol > li:before {
	content: counter(item);
	width: auto;
	min-width: 1.25em;
	height: auto;
	padding: .1em;
	text-align: center;
	position: absolute;
	left: 0;
	top: 1.25em;
	transform: translateY(-50%);

	clip-path: polygon(0 0, 95% 0, 100% 95% , 0 100%);
	background-color: var(--color-6);
	color: var(--color-3);
}
.box-text > p {
	text-indent: 0;
}
.box-text a {
	position: relative;
}
.box-text a::after {
	content: "";
	height: 1px;
	width: calc(100% - 1rem);
	position: absolute;
	bottom: 0;
	left: .75rem;
	z-index: auto;
	background-color: var(--color-5);
}

/*
MAPS
*/
.box-map {
	width: 100%;
	height: 100%;
	min-height: 65vh;
}

/*
FORM
*/
.btn {
	display: inline-block;
	padding: 1em 1.5em;
	margin: 0;
	border: none;
	border-radius: 0;
	font-family: inherit;
	font-size: 1.125em;
	line-height: 1em;
	box-sizing: border-box;
	cursor: pointer;
	background-color: transparent;
	text-decoration: none;
	position: relative;
}
.btn-primary, .btn-primary:visited {
	background-color: var(--color-8);
	color: var(--color-1);
	clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
.btn-secondary, .btn-secondary:visited {
	background-color: var(--color-6);
	color: var(--color-1);
	clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
.btn-color, .btn-color:visited {
	background-color: var(--color-7);
	color: var(--color-1);
	clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
.btn-icon {
	padding: .3em .5em;
	border-radius: .3em;
}
.btn-full {
	width: 100%;
	margin: 0 0 .3em 0;
	text-align: center;
}
.btn-big {
	width: 100%;
	max-width: 15rem;
	margin: 0;
	text-align: center;
}

label {
	font-weight: 400;
	font-size: .875em;
	display: block;
	color: var(--color-2);
	text-align: left;
}
input, textarea, select {
	border: none;
	border-bottom: 1px solid var(--color-4);
	background-color: var(--color-1);
	border-radius: .3em;
	margin: 0;
	padding: .5em;
	font-family: inherit;
	font-size: 1.125em;
	line-height: 1.25em;
	font-weight: 400;
	display: block;
	width: 100%;
	box-sizing: border-box;
}
input[type=checkbox] {
	width: auto;
}
textarea {
	min-height: 6em;
}
textarea.high {
	min-height: 12em;
}
select {
	outline: none;
	cursor: pointer;
}
textarea:focus, input:focus, select:focus, button:focus {
    outline: none;
}
input.inline {
	width: auto;
	display: inline-block;
}
input.number {
	width: 5em;
	text-align: center;
	-moz-appearance: textfield;
}
input.number::-webkit-outer-spin-button,
input.number::-webkit-inner-spin-button {
  	-webkit-appearance: none;
  	margin: 0;
}
input.loading {
	background-image: url(../image/preloader.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-origin: content-box;
	background-size: 20px;
}

/*
#page-title {
	padding-top: calc(var(--header-height) + 2em);
	height: auto;
	box-sizing: border-box;
	position: relative;
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-end;
}
#page-title h1 {
	font-size: 4em;
	font-weight: 700;
	color: var(--color-6);
}
#page-title p {
	margin-top: -1.125em;
	font-size: 2em;
	line-height: 1.5em;
	position: relative;
}

#page-title .bg-img-full, #page-title .bg-color-full {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: -2;
	height: 85vh;
	overflow: hidden;
	border-bottom-right-radius: 4rem;
}

#page-title.page-title-big {
	padding-top: var(--header-height);
	min-height: 50vh;
}
#page-title.page-title-big h1 {
	font-size: 5em;
}
#page-title.page-title-big .bg-img-full, #page-title.page-title-big .bg-color-full {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: -2;
	height: 100%;
	overflow: hidden;
	border-bottom-right-radius: 4rem;
}
#page-title.page-title-big .bg-img-full {
	opacity: .95;
}
#page-title .bg-img-full img {
    animation: zoomSlideOut 10s ease-out forwards;
}
@keyframes zoomSlideOut {
	0% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}



/*
#page-header .pict-bg-full img {
	object-fit: cover;
	-o-object-fit: cover;
    height: 100%;
	width: 100%; 
	display: block;
	opacity: 1;
}
#page-header .title-bg {
	text-align: left;
	min-width: 33.3%;
	padding: 2em 2em 3em 2em;
	background-color: var(--opacity-9);
	clip-path: polygon(0 0, calc(100% - 2em) 0%, 100% 2em, 100% 100%, 0 100%);
}

/*
#page-footer {
	clip-path: polygon(0 0, 66.66% 2em, 100% 0, 100% 100%, 0 100%);
}
#page-sign {
	padding-bottom: 5rem;
}

#page-sticky-scroll {
	position: sticky;
	top: 1em;
	bottom: 1em;
}
*/
/*
*/

/*
PAGINATION

.box-pagination {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
}
.box-pagination .step {
	font-size: inherit;
	line-height: inherit;
	padding: .5em .5em;
	margin: .1em;
	min-width: 2em;
	text-align: center;
	color: var(--color-2);
	background-color: var(--color-3);
	cursor: pointer;
	clip-path: polygon(.5rem 0, 100% 0, calc(100% - .5rem) 100% , 0 100%);
}
.box-pagination .step:not(.inactive, .actual):hover {
	color: var(--color-2);
	background-color: var(--color-4);
	transform: translateY(-.3em);
}
.box-pagination .step.actual {
	color: var(--color-1);
	background-color: var(--color-6);
}
.box-pagination .step.inactive img {
	filter: invert(1);
}

*/
.testimonial {
	position: relative;
	padding-left: 50px;
}

.testimonial::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 40px;
	width: 40px;
	background-image: url(../image/ico-speech-c.svg);
	background-repeat: no-repeat;
	background-size: cover;
}


article {
	position: relative;
	padding: 1em;
	box-sizing: border-box;
}
article .wrapper-over {
	background-color: var(--color-3);
	padding: 1.5em;
}
/*
article .btn {
	position: absolute;
	top: .5rem;
	right: -1.5rem;
}
article .btn span {
	padding: .5em;
}
*/
article .box-thumb {
	height: 15rem;
	min-height: 15rem;
	position: relative;
	margin-bottom: 1em;
}
article .box-thumb img {
	position: absolute;
	left: 0;
    top: 0;
}
article .box-info, article .box-icon {
	margin-bottom: .75em;
}
article .box-icon span {
	padding: .3em 0;
	display: inline-flex;
}
article .box-info {
	position: relative;
}
article .box-icon {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
article .box-icon .icon {
	margin: 0 .5em 0 0;
	vertical-align: middle;
	height: 1.5em;
}
article .box-price {
	display: inline-block;
	padding: .5em 1em;
	background-color: var(--color-9);
	color: var(--color-1);
}
/*
article .box-marker-float {
	top: 1em;
	left: 1em;
	padding: 0 .3em .5em 0;
	background-color: var(--color-3);
}
article:hover .box-thumb img {
    left: -5%;
    top: -5%;
    width: 110%;
	height: 110%;
}
article:hover .btn-icon span {
	transform: rotate(45deg);
}
article:hover .btn-icon span .icon {
	transform: rotate(-55deg);
}
*/
article h3 {
	font-size: 1.125em;
	line-height: 1.125em;
	padding: 0;
	color: var(--color-2);
}
article p {
	padding: 0;
	margin-bottom: .5em;
}
/*
article.box-product::after {
	content: "";
	height: 15px;
	width: 15px;
	background-image: url(../image/ico-corner-r.svg);
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	top: -7px;
	left: -7px;
	z-index: 500;
}
article[data-link]:hover, article:hover .box-marker-float {
    background-color: var(--color-4);
}
*/

/*
IMG
*/
.icon {
	height: 1.25em;
	width: auto;
	display: inline-block;
	vertical-align: middle;
}
.icon-xs {
	height: .75em;
	width: auto;
}
.icon-sm {
	height: 1.125em;
	width: auto;
}
.icon-md {
	height: 2.25em;
	width: auto;
	margin: 0;
}
.icon-lg {
	height: 4em;
	width: auto;
	margin: 0;
}
.icon-logo {
	height: 4em;
	width: auto;
	margin: 0;
}
.icon-logo-partner {
	height: 75px;
	width: auto;
	margin: 0;
}

.icon-start {
	margin-right: 1rem;
}
.icon-end {
	margin-left: 1rem;
}
.icon-top {
	margin-bottom: .75em
}
.icon-solo {
	margin: 0;
}
.bg-img img, .bg-img-full img {
	object-fit: cover;
	-o-object-fit: cover;
    height: 100%;
	width: 100%; 
	display: block;
}
/*
FORMAT
*/
p {
	margin: 0 0 1em 0;
}
div > p:last-child, a > p:last-child {
	margin: 0;
}
sup {
	vertical-align: super;
	line-height: 1em;
	font-size: .75em;
}

.small {
	font-size: .875em;
	font-weight: 400;
	line-height: 1.25em;
}
.small-2 {
	font-size: .75em;
	font-weight: 400;
	line-height: 1.25em;
}
.big {
	font-size: 1.15em;
	line-height: 1.125em;
}
.big-2 {
	font-size: 1.66em;
	line-height: 1em;
}
.bigger {
	font-size: 2em;
	line-height: 1em;
}
.strike {
	text-decoration: line-through;
}

.align-right {
	text-align: right;
}
.align-center {
	text-align: center;
}
.align-left {
	text-align: left;
}
.relative {
	position: relative;
}
.hidden {
	display: none;
}
.invisible {
	visibility: hidden;
}
.inline {
	display: inline-block;
}

.handle, .location, .location-extern {
	cursor: pointer;
}

/*
TABLE
*/

table {
	table-layout: auto;
	border-collapse: collapse;
	border-spacing: 0;
	min-width: 80%;
	max-width: 700px;
}

.data-table {
	display: flex;
	flex-direction: column;
    flex-wrap: nowrap;
	align-items: stretch;
	justify-content: flex-start;
}
.data-row {
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--color-4);
	position: relative;
}
.data-table .data-row:last-child {
	border-bottom: none;
}
/*
.data-row:hover {
	background-color: var(--color-4);
}
*/
.data-row > div {
	padding: .5em .5em .5em .5em;
}
/*
.data-row::after {
	content: "";
	height: 15px;
	width: 15px;
	background-image: url(../image/ico-corner-r.svg);
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	bottom: -8px;
	left: -7px;
	z-index: 500;
}
*/
.data-label {
	padding: .5em .5em .5em .5em;
	color: #464646;
	min-width: 25%;
}
.data-value {
	padding: .5em .5em .5em .5em;
}

/*
FONT
*/
body { 
	font-family: 'Titillium Web', Tahoma, sans-serif; 
	font-weight: 400;
	font-size: 18px;
	line-height: 1.75em;
}
.italic {
	font-family: 'Titillium Web', Tahoma, sans-serif; 
	font-style: italic;
}
h1, h2, h3, h4 {
	font-weight: 600;
}
strong, .strong, .bigger {
	font-weight: 800;
}
h1 {
	font-size: 3em;
	line-height: 1.125em;
	padding: 0;
	margin-bottom: 0;
}
h2 {
	font-size: 2em;
	line-height: 1.125em;
	padding-top: .5em;
	margin-bottom: .5em;
	color: var(--color-9);
}
h3 {
	font-size: 1.33em;
	line-height: 1.125em;
	padding-top: .5em;
	margin-bottom: .5em;

	color: var(--color-8);
}
h4 {
	font-size: 1.25em;
	font-weight: 400;
	line-height: 1.125em;
	padding-top: .5em;
	margin-bottom: .5em;
}
.title {
	font-size: 1.66em;
	line-height: 1.125em;
	text-align: center;
}

.title-sub {
	font-size: 1.25em;
	line-height: 1.25em;
	xtransform: translateY(-2rem);
}

body {
	color: var(--color-2);
	background-color: var(--color-3);
}
a, a:visited {
	color: inherit;
	text-decoration: none;
}

.animate, .animate *, .btn *, header, #logo-primary, #logo-primary *, .box-sidebar, .box-sidebar-bg, .box-pagination *, .product-tabs-nav * {
	-webkit-transition: all .5s ease-out 0s;
  	-moz-transition: all .5s ease-out 0s;
  	-o-transition: all .5s ease-out 0s;
	transition: all .5s ease-out 0s;
}

.border-top {
	border-top: 1px solid var(--color-4);
}
.border-left {
	border-left: 1px solid var(--color-3);
}
.border-bottom {
	border-bottom: 1px solid var(--color-4);
}

.border-bottom-after, .shadow-after {
	position: relative;
}
.border-bottom-after::after {
	content: "";
	height: 1px;
	width: auto;
	position: absolute;
	bottom: 0;
	left: 2rem;
	right: 2rem;
	z-index: auto;
	background-color: var(--color-4);
}
.shadow-after::after {
	content: "";
	height: .5rem;
	width: auto;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: auto;
	box-shadow: 0 .5rem .5rem 0 rgba(0,0,0,.025);
	background: transparent;
}




/*
FADENATOR
*/
.fade-in-top, .fade-in-right, .fade-in-bottom, .fade-in-left  {
	opacity: 0;
}
.fade-top {
	animation: fade-in-top 1s;
}
.fade-right {
	animation: fade-in-right 1.5s;
}
.fade-bottom {
	animation: fade-in-bottom 1s;
}
.fade-left {
	animation: fade-in-left 1.5s;
}
@keyframes fade-in-top {
	0% {
		opacity: 0; transform: translateY(70%);
	}
	50% {
		opacity: .6;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fade-in-right {
	0% {
		opacity: 0; transform: translateX(-70%);
	}
	50% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fade-in-bottom {
	0% {
		opacity: 0; transform: translateY(-70%);
	}
	50% {
		opacity: .6;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fade-in-left {
	0% {
		opacity: 0; transform: translateX(70%);
	}
	50% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}


.box-sidebar {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 900;
	overflow-x: hidden;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: 50vw;
	height: 100vh;
	box-sizing: border-box;
	background-color: var(--color-3);
	transform: translateX(100%);
}
.box-sidebar.opened {
	box-shadow: 0 2px 100px 0 rgb(0 0 0 / 35%);
}

.box-sidebar .handle-close {
	width: 3.3em;
	height: 3.3em;
	background-color: var(--color-8);
	display: inline-block;
	position: relative;
	clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
.box-sidebar .handle-close img {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.box-sidebar-bg {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 890;
	width: 100vw;
	height: 100vh;
	box-sizing: border-box;
	background: var(--opacity-1);
	visibility: hidden;
	opacity: 0;
}

/* MESSAGE-OVER */
#box-message-over {	position: fixed;	overflow: hidden;	top: 0;	left: 0; width: 100%;	z-index: 9999;	text-align: center; display: none; font-weight: 700; font-size: 1rem; line-height: 120%; padding: 1rem 0;  }
#box-message-over.status {	color: #ffffff;	background-color: #8aaf09;	background-color: rgba(138, 175, 9, 0.9);	background: rgba(138, 175, 9, 0.9);}
#box-message-over.error {	color: #ffffff;	background-color: #e41414;	background-color: rgba(228, 20, 20, 0.9);	background: rgba(228, 20, 20, 0.9);}
#box-cookies-over {	position: fixed;	overflow: hidden;	bottom: 0;	left: 0; width: 100%;	z-index: 9999;	text-align: left; /*font-weight: 400; font-size: 1rem; line-height: 120%;*/ background-color: #ffffff;	background-color: rgba(255, 255, 255, 0.9);	background: rgba(255, 255, 255, 0.9);  }
#box-cookies-over a.button { float: right; padding: .6rem 1.3rem; }

#box-info-float {	position: fixed; top: 50%;	left: 0; width: auto; height: auto;	z-index: 700; transform: translateY(-50%); overflow: hidden;  }
#box-info-float a {
	display: block;
	padding: .75em .75em .75em 1.5em;

	text-align: right;
	color: var(--color-1);
	background-color: var(--color-2);
	transform: translateX(-.75em);
	opacity: .8;
}
#box-info-float a:hover {
	background-color: var(--color-6);
	transform: translateX(0);
	opacity: 1;
}
/*
#box-billboard {
	width: 500px;
	max-width: 90vw;
	padding: 3rem 0 5rem 0;
	background-color: var(--color-3);
	position: relative;
}
#box-billboard::before {
	content: "";
	height: 30px;
	width: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: auto;
	background-color: var(--color-6);
}
#box-billboard::after {
	content: "";
	height: 100px;
	width: 100px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: auto;
	background-color: var(--color-2);
	clip-path: polygon(100% 0, 100% 100% , 0 100%);
}
#box-billboard h2 {
	color: var(--color-6);
}
*/
/*
COLORS
*/
:root {

	--header-height: 130px;
	--color-1: #ffffff;
	--color-2: #171717;
	--color-3: #f2f2f2;
	--color-4: #d7d7d7;
	--color-5: #b5b5b5;

	--color-6: #56b5dd;
	--color-7: #95cbe0;
	--color-8: #ed2363;
	--color-9: #1b2f56;
	--color-10: #2b3764;
	
	--opacity-1: rgba(0, 0, 0, .65);
	--opacity-2: rgba(0, 0, 0, .65);
}

.color-1 { color: var(--color-1); }
.color-2 { color: var(--color-2); }
.color-3 { color: var(--color-3); }
.color-4 { color: var(--color-4); }
.color-5 { color: var(--color-5); }
.color-6 { color: var(--color-6); }
.color-7 { color: var(--color-7); }
.color-8 { color: var(--color-8); }
.color-9 { color: var(--color-9); }

.color-inverse *:not(.btn), .color-inverse a:not(.btn), .color-inverse a:visited:not(.btn) {
	color: var(--color-2);
}

.bg-color-1 { background-color: var(--color-1); }
.bg-color-2 { background-color: var(--color-2); }
.bg-color-3 { background-color: var(--color-3); }
.bg-color-4 { background-color: var(--color-4); }
.bg-color-5 { background-color: var(--color-5); }
.bg-color-6 { background-color: var(--color-6); }
.bg-color-7 { background-color: var(--color-7); }
.bg-color-8 { background-color: var(--color-8); }


.row, .row-slim, .row-wide { 
	width: 100%; 
	margin: 0 auto 0 auto;	
	text-align: left;	
	padding: 0;	
	display: flex; 
	flex-flow: row wrap;
	justify-content: center;
}
.row-slim  { max-width: 980px; }
.row-wide  { max-width: 1600px;	}

.col {
	flex-grow: 1;
	flex-basis: 0;
}
.col-aside {
	max-width: 25%;
}


.col-1 {
	width: 8.33%;
}
.col-2 {
	width: 16.66%;
}
.col-3 {
	width: 25%;
}
.col-4 {
	width: 33.33%;
}
.col-5 {
	width: 41.66%;
}
.col-6 {
	width: 50%;
}
.col-7 {
	width: 58.33%;
}
.col-8 {
	width: 66.66%;
}
.col-9 {
	width: 75%;
}
.col-10 {
	width: 83.33%;
}
.col-11 {
	width: 91.67%;
}
.col-12 {
	width: 100%;
}

.wrapper {
	padding: 2em;
	box-sizing: border-box;
}
.wrapper-double {
	padding: 4em 2em;
	box-sizing: border-box;
}
.wrapper-half {
	padding: 1em 2em;
	box-sizing: border-box;
}
.wrapper-flow {
	padding-top: 4rem;
	padding-bottom: 4rem;
	box-sizing: border-box;
}
.wrapper-side {
	padding: 0 2em;
	box-sizing: border-box;
}
.wrapper-over {
	padding: 1em 0;
	box-sizing: border-box;
}
.wrapper-form-over {
	padding: 1em 1em;
	box-sizing: border-box;
}
.wrapper-form {
	padding: .5em 1em;
	box-sizing: border-box;
}
.margin-right {
	margin-right: 2em;
}
.box-inline {
	display: inline-block;
}
.box-flex {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
}
.box-flex-col {
	flex-direction: column;
	align-items: inherit;
	justify-content: flex-start;
}
.box-flex-start {
	justify-content: flex-start;
}
.box-flex-end {
	justify-content: flex-end;
}
.box-flex-top {
	align-items: flex-start;
}
.box-flex-bottom {
	align-items: flex-end;
}
.box-flex-inline {
	align-items: center;
	justify-content: flex-start;
}
.box-flex-middle {
	align-items: center;
	align-content: center;
}
.box-flex-justify {
	justify-content: space-between;
}
.box-self-center {
	align-self: center;
}
.box-self-right {
	align-self: flex-end;
}
.box-break-after {
	break-after: always;
}
.box-sticky-scroll {
	position: sticky;
	top: 1em;
	bottom: 1em;
}
.box-rounded {
	border-radius: 1rem;
}
.box-rounded-over {
	border-top-left-radius: 2em;
	border-top-right-radius: 2em;
}
.box-circle {
	border-radius: 50%;
}



@media only screen and (min-width: 961px) {
	.lg-hidden {
		display: none;
	}
}


@media only screen and (max-width: 960px) {

	.col-aside {
		max-width: 33.33%;
	}

	.col-4 {
		width: 50%;
	}
	.col-8 {
		width: 100%;
	}

	

	.md-col-4 {
		width: 33.33%;
	}

	.md-col-6 {
		width: 50%;
	}

	.md-col-12 {
		width: 100%;
	}

	.md-flex-col {
		flex-direction: column;
	}
	.md-flex-col-reverese {
		flex-direction: column-reverse;
	}

	.md-hidden {
		display: none;
	}
	.md-align-center {
		text-align: center;
	}


	.box-sidebar {
		width: 100vw;
	}

}

@media only screen and (max-width: 680px) {
	
	.col-aside {
		max-width: 100%;
	}

	.col-1, .col-2 {
		width: 50%;
	}
	.col-3 {
		width: 50%;
	}

	.col-4, .col-5, .col-6, .col-7, .col-8, .col-9 .col-10, .col-11 {
		width: 100%;
	}

	.sm-col-6 {
		width: 50%;
	}

	.sm-col-12 {
		width: 100%;
	}

	.sm-flex-column-reverese {
		flex-direction: column-reverse;
	}
	.sm-hidden {
		display: none !important;
	}
	.sm-show {
		display: inline-block !important;
	}
	.sm-align-center {
		text-align: center;
	}

	h1 {
		font-size: 1.75em;
	}
	h2 {
		font-size: 1.5em;
	}
	h3 {
		font-size: 1.33em;
	}
	.icon-md {
		height: 35px;
		width: auto;
		margin: 0;
	}
	.icon-lg {
		height: 45px;
		width: auto;
		margin: 0;
	}
	.icon-start {
		margin-right: .5em; 
	}
	.icon-logo {
		height: 6em;
	}

	.btn {
		padding: 1em 1.25em;
		font-size: 1em;
	}
	.btn .icon {
		height: 20px;
		vertical-align: middle;
	}
	/*
	.box-buttonbar {
		position: fixed;
		bottom: 0;
		right: 0;
		left: 0;
		z-index: 500;

		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
    	width: 100%;
		height: auto;
		padding: .5rem 1rem;
		box-sizing: border-box;
		background-color: var(--color-9);

	}
	*/
	.box-buttonbar .btn {
		min-width: 40%;
		margin: 0 1px 1px 0;
	}

	header {
		
		/*
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		z-index: auto;
		*/
	}
	header .handle {
		display: block;
	}

	#header-wrap {
		padding: 0;
	}
	#nav-primary {
		background-color: var(--color-8);
		padding: .5rem;
	}

	#header-menu {
		display: none;
	}

	/*
	#logo-primary {
		margin-bottom: .5em;
	}
	header .logo-main {
		height: 3rem;
	}
	#logo-primary-sub {
		font-size: .66em;
		line-height: 1em;
	}
	header .logo-sub {
		height: 1.5rem;
	}
	*/

	.logo-main-title {
		font-size: 1em;
		line-height: 1em;
		font-weight: 400;
	}
	

	#banner-hero-wrap {
		min-height: auto;
	}
	#banner-hero {
		height: 95vh;
		/*clip-path: polygon(0 0, 100% 0, 100% 20%, 90% 100% , 0 95%);*/
	}

	/*
	#banner-hero .pic-bg-symbol {
		right: -10%;
		width: 80%;
		bottom: 0;
		height: auto;
	}
	*/
	#banner-hero .pic-person {
		right: auto;
		left: 55%;
		bottom: 0;
		height: 65vh;
		transform: translateX(-50%);
	}
	#banner-hero .content-wrap {
		position: relative;
		top: 80px;
		bottom: auto;
		right: auto;
		left: auto;
		width: auto;
		display: block;
		padding: 0 0 0 0;
		text-align: center;
	}
	#banner-hero .content {
		padding: 1em;
		font-size: 1em;
		text-align: center;
	}
	#banner-hero h1 {
		font-size: 4em;
		margin: 0 0 .3rem 0;
	}
	#banner-hero h2, #hero-slider h3 {
		font-size: 1.5em;
	}
	#banner-hero strong {
		font-size: 1.25em;
		color: inherit;
	}

	/*
	#banner-hero .content, #banner-big .content {
		padding: 1em 1.5em 2em 1.5em;
		position: absolute;
		bottom: 2.5em;
		right: 0;
		font-size: 1em;
		line-height: 1.125em;
	}
	*/

	#page-sign {
		padding-bottom: 5rem;
	}
}

@media only screen and (min-width: 680px) {
	header.header-sticky {
		box-shadow: 0 5px 100px 0 rgba(0,0,0,.4);
		background-color: var(--color-1);
	}

	header.header-sticky .icon {
		filter: invert(1);
	}

	/*
	.header-static #logo-primary {
		transform: translateX(1rem);
	}
	.header-sticky #logo-primary {
		transform: translateX(0);
	}
	*/
	.header-sticky #header-wrap {
		/*padding: .75rem 1rem .75rem 1rem;*/
	}
	.header-sticky .logo-main {
		height: 3rem;
	}
	.header-sticky .logo-main-title {
		font-size: 1em;
	}
	.header-sticky .logo-main-title .small {
		display: none;
	}
	/*
	.header-sticky .logo-sub {
		height: 1.5rem;
	}
	.header-sticky .logo-sub-title {
		display: none;
	}
	*/

	/*
	.divider-text {
		display: flex;
		flex-flow: row nowrap;
		justify-content: stretch;
		align-items: center;
	}
	.divider-text span {
		padding: 0 1em;
		text-align: center;
		word-wrap: unset;
		white-space: nowrap;
	}
	.divider-text::before, .divider-text::after {
		content: "";
		height: 1px;
		width: 50%;
		border-top: 1px solid var(--color-6);
		border-bottom: 3px solid var(--color-6);
	}
	*/
}

