 
/* Vars */
:root {
	--black: #000;
	--white: #fff;
	--grey: #999;
	--grey2: #e5e5e5;
	--grey3: #f2f2f2;
	--grey4: #ccc;
	--green: #12442A;
}


/* Styles */
html{
	/* scroll-behavior: smooth; */
	/* overflow-x: hidden; */
	overflow-y: auto;
}
body{
	font-family: 'Flama';
	font-size: 16px;
	line-height: 1.4;
  	color: var(--black);
	/* overflow-y: auto; */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-overflow-scrolling: auto;
}
a{
	text-decoration:none!important;	
	outline: 0;	
	cursor:pointer;
	cursor:hand;
	color: inherit;
	-webkit-transition: all 250ms ease-out;
	-moz-transition: all 250ms ease-out;
	-o-transition: all 250ms ease-out;
	-ms-transition: all 250ms ease-out;
	transition: all 250ms ease-out;
}
a:hover{
	text-decoration:none;
	opacity: .9;
	color: inherit;
}
b{
	font-family: 'Flama M';
	font-weight:700;
}
img{
	display: block;
	width: 100%;
}
.btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	padding: 12px 20px;
	font-size: 16px;
	line-height: 1;
	letter-spacing: .025em;
	font-family: 'Romana';
	border-radius: 4px;
	color: var(--black)!important;
	background-color: var(--grey2);
	background-color: #ddd;
	outline: none!important;
	box-shadow: none!important;
}
.btn-txt{
	font-family: 'Flama M';
}
#preloader{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	background: #0a3029;
	background: url(../images/loading.svg) center center no-repeat #fff;
	background-size: 100px;
	z-index: 5000;
}
label{
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-family: 'Flama R', sans-serif;
	letter-spacing: .05em;
}
input, textarea{
	border-radius: 0!important;
}
.select{
	display: block;
	position: relative;
}
.select select{		
	padding-right: 30px;
}
.select:after{
	border-color: #000;
}
.select:not(.is-multiple):not(.is-loading)::after {
    border-color: #000!important;
	border-width: 2px;
    right: 14px!important;
	transform: rotate(-45deg) scale(.75)!important;
}
.select:not(.is-multiple) {
    height: auto;
}
.input, .textarea, select {
	width: 100%;
    height: 36px!important;
    margin-bottom: 10px;
    padding-left: 10px;
    font-size: 13px!important;
    letter-spacing: .05em;
    font-family: 'Flama R', sans-serif;
    box-shadow: none!important;
    outline: none!important;
    border: none!important;
    border-radius: 0!important;
}
.error {
	border: 1px solid red !important;
}

/* Navbar */
.navbar{
	position: absolute;
	width: 100%;
	top: 0;	
	min-height: 0;
	background-color: transparent;
}
.navbar>.container {
	min-height: 0;
	padding-top: 30px!important;
}
.navbar>.container .navbar-brand {
	min-height: 0;
	margin-left: 0;
}
.navbar .logo{
	width: auto;
	height: 48px;
}
.navbar-burger{
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	right: 120px;
	top: 40px;
	z-index: 20;
	background-color: transparent!important;
	transition: all 250ms ease-out;
}
.navbar-burger.is-active{
	transform: rotate(45deg);
}
.navbar.dark .navbar-burger.is-active{
	filter: invert(0);
}
.navbar-burger .h, .navbar-burger .v{
	position: absolute;
	width: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-top: 2px solid var(--white);
}
.navbar-burger .v{
	transform: translate(-50%, -50%) rotate(90deg);
}
.navbar.dark .navbar-brand, .navbar.dark .navbar-burger{
	filter: invert(100);
}
.navbar-menu {
	display: flex!important;
	flex-direction: column;
    position: fixed;
	visibility: hidden;
	opacity: 0;
    width: 360px;
    height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	padding: 40px;
	padding-right: 120px;
    padding-top: 180px;
    right: -360px;
    top: 0;	
	background-color: rgba(0, 0, 0, .8);	
	transition: all 400ms ease-out;
}
.navbar-menu.is-active {
	right: 0;
	opacity: 1;
	visibility: visible;
}
.navbar-menu li{
	position: relative;
	margin-bottom: 20px;	
	font-size: 16px;
	line-height: 1;
	text-transform: uppercase;
}
.navbar-menu li a{
	position: relative;
	color: var(--white);
}
.navbar-menu li a:before{
	content: "";
	position: absolute;
	width: 0;
	left: 0;
	bottom: -4px;
	border-top: 1px solid var(--black);
	transition: all 250ms ease-out;
}
.navbar-menu li a:hover:before, .navbar-menu li.is-active a{
	width: 100%;
}
.navbar-menu .lang{
	position: relative;
	margin-top: 40px;
	margin-right: 60px;
	padding-top: 40px;
	border-top: 1px solid var(--white);
	font-size: 16px;
	line-height: 1;
	text-transform: uppercase;
	color: var(--white);	
}
.navbar-menu .lang .is-active{
	font-family: 'Flama M';
}


/* Chatbot */
.btn-chatbot{
	display: flex;
	position: fixed;
	width: 60px;
	height: 60px;
	right: 30px;
	bottom: 30px;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	border-radius: 100%;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, .4);
	opacity: .95;
	z-index: 50;
	background: url(../images/chatbot-icon.svg) center no-repeat;
	background-color: var(--black);
	background-size: 24px;
}
.btn-chatbot.is-active{
	background-image: url(../images/chatbot-close.svg);
}
.btn-chatbot svg{
	width: 24px;
	height: auto;
}
.btn-chatbot svg path{
	fill: transparent;
	stroke: var(--white);
}
.chatbot{
	display: none;
	position: fixed;
	width: 300px;
	height: 350px;
	right: 30px;
	bottom: 104px;
	padding: 24px;
	background-color: var(--white);
	border-radius: 8px;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, .1);
	z-index: 50;
}
.chatbot h4{
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--grey2);
	font-size: 16px;
    line-height: 1;
    letter-spacing: .05em;
    font-family: 'Flama M';
    text-transform: uppercase;
}
.chatbot p{
	font-size: 15px;
}

/* Footer */
.footer{
	padding: 0;
	background-color: var(--white);	
}

.footer .prev-next{
	display: flex;
	justify-content: space-between;
	padding: 40px 0;
	font-family: "Flama M";
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: .05em;
	/* background-color: yellow; */
	overflow: hidden;
}
.footer .prev-next a{
	transition: all 400ms ease-out;
}
.footer .prev-next svg{
	position: relative;
	margin: 0 28px;
	vertical-align: middle;
	transition: all 400ms ease-out;
}
.footer .prev{
	margin-left: -60px;
}
.footer .prev svg:first-child{
	margin-left: 0;
}
.footer .prev svg:last-child{
	left: 20px;
	opacity: 0;
}
.footer .prev:hover{
	margin-left: -90px;
}
.footer .prev:hover svg:last-child{
	left: 0;
	opacity: 1;
}
.footer .prev:hover svg:first-child{
	left: 0px;
	opacity: 0;
}
.footer .next{
	margin-right: -60px;
}
.footer .next svg:last-child{
	margin-right: 0;
}
.footer .next svg:first-child{
	left: -20px;
	opacity: 0;
}
.footer .next:hover{
	margin-right: -90px;
}
.footer .next:hover svg:first-child{
	left: 0;
	opacity: 1;
}
.footer .next:hover svg:last-child{
	left: 0px;
	opacity: 0;
}
.footer .contact{
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: var(--grey2);
}
.footer .contact .trigger{
	display: block;
	padding-bottom: 70px;
	background: url(../images/plus-black.svg) center bottom no-repeat;
	background-size: 30px;
	transition: all 250ms ease-out;
}
.footer .contact h2{
	margin: 0;	
	font-size: 45px;
	line-height: 1;
	text-align: center;
}
.footer .contact h5{
	margin-top: 16px;
	margin-bottom: 0;
	font-family: 'Flama', sans-serif;
	text-align: center;
}
.footer .contact .trigger.is-active{
	padding-bottom: 40px;
	background: transparent;
}
.footer .contact .form{
	height: 0;
	overflow: hidden;
	opacity: 0;
}
.footer .contact .fields{
	margin: 0 -5px;
}
.footer .contact .fields .column{
	padding: 0 5px;
}
.footer .contact .input, .footer .contact .textarea {
	height: 36px;
	margin-bottom: 10px;
	padding-left: 10px;
	font-size: 13px;
	letter-spacing: .05em;
	font-family: 'Flama R', sans-serif;	
    box-shadow: none;
	outline: none;
	border: none;
	border-radius: 0;
}
.footer .contact .input::placeholder, .footer .contact .textarea::placeholder {
	color: var(--grey);
}
.footer .newsletter{
	position: relative;
	padding-top: 50px;
	padding-bottom: 75px;
	background-color: #101010;
	color: var(--white);
	/* background-color: #000; */
	/* border-bottom: 1px solid rgba(255,255,255,.1); */
}
.footer .newsletter h5{
	margin-bottom: 8px;
	font-family: 'Flama Condensed';
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.footer .newsletter h2{
	margin-bottom: 24px;
	font-size: 36px;
	text-align: center;
}
.footer .newsletter .field{
	display: flex;
	margin: 0;
}
.footer .newsletter .control{
	flex: 1;
}
.footer .newsletter input{
	height: 40px!important;
	margin: 0;
	border: none;
}
.footer .newsletter .btn{
	height: 40px;
	border-radius: 0;
	background-color: var(--green);
	color: var(--white)!important;
}
.footer .newsletter .btn-news{
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	transition: all 250ms linear;
}
.footer .newsletter.is-active .btn-news{
	opacity: 0;
	visibility: hidden;
}
.textarea {
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: inherit;
  padding: 1px 6px;
}
.textarea {
  display: block;
  width: 100%;
  height: auto!important;
  min-height: 36px!important;
  max-height: 300px!important;
  padding-top: 8px;
    padding-bottom: 8px;
  overflow: hidden;
  resize: both;
  min-height: 40px;
  line-height: 20px;
}
.textarea[contenteditable]:empty::before {
  content: "message";
  color: var(--grey);
}

.footer .contact .btn{
	margin-top: 30px;
	padding-left: 50px;
	padding-right: 50px;
	background-color: var(--black);
	color: var(--grey2)!important;
	border-radius: 0;
	font-family: 'Flama Condensed';
	font-size: 13px;
}
.footer .sitemap{
	padding-top: 80px;
	padding-bottom: 50px;
	background-color: var(--black);	
	color: var(--white);	
}
.footer .sitemap .site{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer .sitemap .logo-glove {
	width: 100%;
	height: 50px;
	margin-bottom: 40px;
	display: flex;
	justify-content: center;
	justify-items: center;
}
.footer .sitemap .logo {		
	height: 100%;
	width: auto;
	object-fit: contain;
}
.footer .sitemap ul{
	display: flex;
	flex-direction: row;
}
.footer .sitemap ul a{
	margin-left: 3vw;
	font-family: 'Flama R';
	font-size: 14px;
	width: max-content;
	display: inline-block;
}
.footer .sitemap .logos {
	margin: 0 auto;
}
.footer .sitemap .logos li{
	width: auto;
	height: 80px;
	margin: auto 2vw;
	display: flex;
	flex-direction: row;
	align-items: center;
	align-content: center;
}
.footer .sitemap .logos li img{
	width: auto;
	height: 100%;
	object-fit: contain;
}
.footer .sitemap .logos li:nth-child(2) img, .footer .sitemap .logos li:nth-child(3) img{
	height: 80%;
}
.footer .sitemap .links {
	margin-left: auto;
	min-width: 56%;
	justify-content: flex-end;
	justify-items: flex-end;
}
.footer .data{
	margin-top: 80px;
	margin-bottom: 20px;	
}
.footer .social{
	font-family: 'Flama R';
}
.footer .social img{
	display: inline-block;
	width: auto;
	height: 15px;
	margin-right: 24px;
}
.footer .legal{
	font-family: 'Flama R';
}
.footer .legal .Suggestions or Feedback{
	display: inline-block;
	margin-top: 20px;
	font-family: 'Flama R';
	font-size: 14px;
}
.footer .lang{
	text-align: right;
}
.footer .lang .is-active{
	font-family: 'Flama R';
}
.footer .copy{
	text-align: right;
	font-size: 13px;
}
.footer .remolino{
	display: inline-block;
	float: right;
	width: auto;
	height: 8px;
	margin-top: 20px;
}



/* Section */
section{
	/* overflow-x: hidden; */
}
.container{
	padding-left: 120px!important;
	padding-right: 120px!important;
}
.container.is-fluid{
	max-width: 1600px;
}
/* section, div:not(.cont-scroll--hitbox){
	position: relative;
} */
section{
	position: relative;
}
.columns{
	display: flex;
	position: relative;
	margin: 0 -20px;
	flex-wrap: wrap;
}
.columns:last-child {
    margin-bottom: 0;
}
.column{
	position: relative;
	padding: 0 20px;
}
h1, h2, h3, h4, h5, h6{
	position: relative;
	width: 100%;
	margin: 0;	
	line-height: 1.1;
	letter-spacing: .01em;
	font-family: 'Romana';
}
h1{
	font-size: 60px;
	margin-bottom: 30px;
}
h2{
	font-size: 36px;
	margin-bottom: 20px;
}
h3{
	font-size: 30px;
}
h4{
	font-size: 24px;
}
h5{
	font-size: 16px;
}
h6{
	font-size: 12px;
}
p{
	margin-bottom: 1em;
}
.center{
	position: absolute!important;
	width: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.center.container{
	position: relative;
	left: 0;	
	transform: translatey(-50%);
}
.video{
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	margin-top: -100px;
	overflow: hidden;
}
.video .video-container{
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%; 
	overflow: hidden;
}
.video video {
    min-width: 110%;
    min-height: 110%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.overlay{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	background-color: var(--black);	
}
.back{
	position: absolute;
	width: 100%;
	height: 100%!important;
	top: 0;
	object-fit: cover;
	overflow: hidden;
}
.back video {
	min-width: 100%; 
	min-height: 100%; 
	width: auto;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.back .overlay{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	background-color: rgba(0, 0, 0, 0.25);
}
.image.is-3by4{
	padding-top: 133.333%;
}
.image img{
	object-fit: cover;
}
.gradient{
	position: absolute!important;
	width: 100%;
	height: 60%;
	top: 0;
	background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
	opacity: .5;
	transition: all 400ms linear;
}
.gradient.bottom{
	top: auto;
	bottom: 0;
	transform: matrix(1, 0, 0, -1, 0, 0);
}
.black{
	color: var(--black);
}
.white{
	color: var(--white);
}
.header{
	position: relative;
}
.header .cont-bottom{
	position: absolute;
	padding-bottom: 0;
	width: 100%;	
	bottom: -1px;
}
.header .txt{
	position: relative;
	padding: 75px 60px;
	padding-bottom: 20px;	
	left: -60px;
    background-color: var(--white);
}
.header .links-grid{
	margin-top: 50px;
}
.links-grid {
	display: flex;
	flex-direction: row;
	line-height: 1;
}
.links-grid li{
	padding: 0 20px;
	border-left: 1px solid var(--black);
}
.links-grid li:first-child{
	padding-left: 0;
	border-left: none;
}
.links-grid li.is-active{
	font-family: "Flama M";
}
.links-grid li.go-back{
	font-family: "Flama"!important;
}
.links-grid li.go-back svg{
	height: 11px;
	margin-right: 4px;
}
.img-grid{
	transition: opacity 1s; /* It slowly shows the element as we place the mouse on the box and when the time reaches 2 seconds, it is fully visible. */  
    -webkit-transition: opacity 1s;  
    -moz-transition: opacity 1s;   
	min-height: 600px;
}
.img-grid .img{
	position: absolute;
	z-index: 1;
	text-align: center;
	color: var(--white);
}
.img-grid .disabled{
	z-index: 1!important;
	pointer-events: none;
}
.img-grid .disabled .cont{
	background-color: var(--white)!important;
}
.img-grid .disabled .image{
	opacity: .2;
	transform: scale(1)!important;
	filter: grayscale(100);
}
.img-grid .img .cont{
	background-color: #eee;
}
.img-grid .img .image{
	position: relative;
	transition: all 400ms ease-out;
}
.img-grid .img:hover{
	opacity: 1;	
	z-index: 100!important;
}
.img-grid .img:hover .image{
	transform: scale(1.08);
}
.img-grid .img.wide{
	width: 40%;
}
.img-grid .img.wide.sm{
	width: 30%;
}
.img-grid .img.wide .image{
	padding-top: 75%;
}
.img-grid .img.tall{
	width: 35%;
}
.img-grid .img.tall.sm{
	width: 30%;
}
.img-grid .img.tall .image{
	padding-top: 135%;
}
.img-grid .gradient{
	height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}
.img-grid .img:hover .gradient{
	opacity: .65;
}
.img-grid h3, .img-grid h4{	
	margin: 0;
}
.img-grid .center {
	margin-top: -10px;
}
.img-grid .txt {
    position: absolute;
    width: 100%;
	padding: 0px 60px;
	padding-bottom: 24px;
    bottom: 24px;
    font-size: 14px;
	font-family: "flama r", sans-serif;
	background: url(../images/ico-plus-sm.svg) center bottom no-repeat;
	background-size: 12px;
}
.img-grid .vid .txt {
	background: url(../images/ico-play-sm.svg) center bottom no-repeat;
	background-size: 12px;
}
.img-grid .txt p {
	margin-bottom: 8px;
}
.img-grid .ico{
	width: 12px;
	height: 12px;
}
.img-grid .ico path{
	stroke: var(--white);
	stroke-width: 2;
}
.cont-scroll{
	width: 100%;
	top: 0;
}
.rellax{
	transition: transform 1500ms;
}
.title-bar{
    margin-bottom: 30px;
}
.title-bar div{
    position: relative;
}
.title-bar h2{
	margin-bottom: 5px;
}
.links-line{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}
.links-line div:first-child{
	flex:1;
}
.links-line div:first-child:before{
	content: "";
	position: absolute;
	width: 100%;
	top: 50%;
	border-top: 1px solid var(--black);
}
.links-line div:last-child{
	margin-left: 40px;
	flex-basis:auto;
}
.grid-relative{
	margin-bottom: -5vw;
	padding-top: 60px;
}
.grid-relative .column:nth-child(2){
	z-index: 10;
}
.grid-relative .column.z-top{
	z-index: 20;
}
.grid-relative .img{
	display: block;
	position: relative;	
	margin-bottom: 40px;	
}
.grid-relative .img{
	width: auto;
	margin-left: -40px;
	margin-right: -40px;
}
.grid-relative .img.sm{
	margin-left: 0;
	margin-right: 0;
	width: calc(100% - 60px);
	left: 50%;
	transform: translateX(-50%);
}
/* .grid-relative .column:first-child .img:last-child{
	left: 50px;
}
.grid-relative .column:last-child .img:first-child{
	right: 50px;
} */
.grid-relative .column:first-child .img:nth-child(odd){	
	left: 50px;
}
.grid-relative .column:first-child .img:nth-child(odd).sm{	
	left: calc(50% + 50px);
}
.grid-relative .column:first-child .img:first-child{
	left: 0!important;
}
.grid-relative .column:first-child .img:first-child.sm{
	left: 50%!important;
}
.grid-relative .column:nth-child(2) .img:nth-child(even){
	right: 50px;
}
.grid-relative .column:nth-child(2) .img:nth-child(even).sm{
	left: calc(50% - 50px);
	right: auto;
}
.grid-relative .column:last-child .img:nth-child(odd){
	right: 50px;
}
.grid-relative .column:last-child .img:nth-child(odd).sm{
	left: calc(50% - 50px);
	right: auto;
}
.grid-relative .image{
	position: relative;
}

.slick-slider .item{
	position: relative;
}
.slick-slider .slick-arrow{
	content: "";
	position: absolute;
	width: 30px;
	height: 30px;
	left: 120px;
	top: 50%;
	transform: translateY(-50%);
	padding: 0;
	z-index: 10;
	font-size: 0;
	color: transparent;
	border: none;
	outline: none!important;		
	background-image: url(../images/carousel-prev.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-color: transparent;
	cursor: pointer;
	cursor: hand;
	transition: all 250ms ease-out;
	z-index: 50;
}
.slick-slider .slick-next{
	left: auto;
	right: 120px;
	background-image: url(../images/carousel-next.svg);
}
.slick-slider.dark .slick-arrow{		
	background-image: url(../images/carousel-prev-dark.svg);
}
.slick-slider.dark .slick-next{
	background-image: url(../images/carousel-next-dark.svg);
}
.slick-slider .slick-dots{
	position: absolute;	
	left: 50%;
	bottom: 40px;
	transform: translateX(-50%);
}
.slick-slider .slick-dots li{
	display: inline-block;
}
.slick-slider .slick-dots button{
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 8px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--white);
	color: transparent;
	font-size: 0;
	line-height: 0;
	border-radius: 100%;
	transition: all 250ms linear;
}
.slick-slider .slick-active button{
	background-color: var(--white);
}
.slick-slider p{
	line-height: 1.6;
}
.slick-slider .vid, .slick-slider .logo{	
	display: flex;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	background-color: rgba(0, 0, 0, .5);
	align-items: center;
	justify-content: center;
}
.slick-slider .logo{
	background-color: rgba(0, 0, 0, .25);
}
.slick-slider .vid:hover{
	background-color: rgba(0, 0, 0, .7);
}
.slick-slider .logo svg{
	width: auto;
    height: 22%;
}
.slick-slider .vid svg{
	width: auto;
    height: 34%;
}

.fancybox-slide--iframe .fancybox-content {
    max-width  : 800px;
}
.fancybox-close-small {
    right: 5px;
    top: 5px;
    padding: 0px;
    opacity: 1;
    color: #fff;
    filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.25)) drop-shadow(0px -1px 1px rgba(0, 0, 0, .15));
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, .5));
    /* background: linear-gradient(45deg, rgba(28,27,28,0) 0%, rgba(28,27,28,.25) 100%); */
}
.dark-close .fancybox-close-small {
	filter: invert(100);
}

.p-top{
	padding-top: 145px;
}
.plus-ico{
	display: inline-block;
	width: 30px;
	height: 30px;
	transition: all 250ms ease-out;
}
.plus-ico .h, .plus-ico .v {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-top: 2px solid var(--white);
}
.plus-ico .v {
    transform: translate(-50%, -50%) rotate(90deg);
}
.plus-ico.is-active{
	transform: rotate(45deg);
}
.line{
	margin: 40px 0;
	border-top: 1px solid var(--black);
}

.accordion .trigger .less{
	display: none;
}
.accordion .trigger.is-active .less{
	display: inline-block;
}
.accordion .trigger.is-active .more{
	display: none;
}
.accordion .cont{
	height: 0;
	overflow: hidden;
}
.accordion .content{
	display: inline-block;
	width: 100%;
}
.tabss .btns{
	border-bottom: 1px solid var(--black);
}
.tabss .btn{
	height: auto;
	margin-bottom: -1px;
	margin-right: 8px;
	padding: 18px 30px;
	padding-bottom: 14px;
	font-size: 14px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border: 1px solid var(--grey);	
	border-bottom-color: var(--black);
	background-color: var(--white);
	color: var(--grey)!important;
}
.tabss .btn:hover{
	color: var(--black)!important;
	border: 1px solid var(--black);		
	opacity: 1;
}
.tabss .btn.is-active{
	color: var(--black)!important;
	border: 1px solid var(--black);	
	border-bottom-color: var(--white)!important;
}
.tabss .content{
	padding-top: 30px;
	display: none;
}
.tabss .content.is-active{
	display: block;
}
.dropdown-menu{
	min-width: auto;
}
.dropdown.right .dropdown-menu{
    left: auto;
    right: 0;
	text-align: right;
}
.dropdown-menu a{
	font-size: 12px;
    line-height: 1;
    letter-spacing: .05em;
    font-family: 'Flama M';
    text-transform: uppercase;
	color: var(--black);
}
video{
	max-width: 4000px;
}
.resp{
	display: none;
}




/* MIN 1600 px */
@media screen and (min-width: 1600px){
	
	.navbar-menu::before{
		content: "";
		position: absolute;
		width: 800px;
		height: 100%;
		left: 100%;
		top: 0;
		background-color: rgba(0, 0, 0, .8);
	}
	.navbar-menu.is-active {
		right: calc((100vw - 1600px) / 2);
	}
	
}



/* Tablets */ 
@media screen and (max-width: 1200px){

	.container {
		padding-left: 40px!important;
		padding-right: 40px!important;
	}
	body{
		font-size: 15px;
	}
	a{
		-webkit-tap-highlight-color: transparent;
	}
	h1{
		font-size: 48px;
	}
	h2{
		font-size: 30px;
	}
	h3 {
		font-size: 24px;
	}
	h4 {
		font-size: 18px;
	}
	.columns{
		margin: 0 -15px;
	}
	.column {
		padding: 0 15px;
	}
	.navbar .logo {
		width: auto;
		height: 40px;
	}
	.navbar-burger {
		width: 24px;
		height: 24px;
		right: 40px;
		top: 34px;
	}	
	.navbar-menu {
		width: 300px;
	}
	.header .links-grid {
		margin: 0;
		margin-top: 30px;
	}
	.links-line div:first-child {
		display: none;
	}
	.links-line div:last-child {
		width: 100%;
		margin-left: 0;		
	}
	.links-grid{
		flex-wrap: wrap;
		position: relative;
		margin: 0 30px;
		border: 1px solid #ccc;
	}
	.links-grid li{
		position: relative;
		width: 33.333%;
		margin-bottom: -1px;
		padding: 12px 0;
		text-align: center;
		font-size: 14px;
		line-height: 1;
		border: 1px solid transparent;
		border-bottom: 1px solid #ccc;
	}
	.links-grid:before, .links-grid:after{
		content: "";
		position: absolute;
		height: 100%;
		left: 33.333%;
		top: 0;
		border-left: 1px solid #ccc;
		z-index: 1;
	}
	.links-grid:after{
		left: 66.666%;		
	}
	.links-grid li.is-active{
		z-index: 10;
	}
	.links-grid li.go-back{
		display: block;
		width: 110%;
		margin-left: -1px;
		margin-right: -1px;
		margin-top: -1px;
		background-color: #fff;
		z-index: 10;
		text-align: left;
	}
	.links-grid li.is-active::before {
		content: "";
		position: absolute;
		left: -1px;
		right: -2px;
		top: -1px;
		bottom: -1px;
		border: 1px solid #000;
	}
	.grid-relative {
		margin-bottom: -5vw;
		padding-top: 40px;
	}
	.grid-relative .img {
		margin-left: -20px;
		margin-right: -20px;
		margin-bottom: 30px;
	}
	.grid-relative .img.sm {
		width: calc(100% - 30px);
	}
	.grid-relative .column:last-child .img:nth-child(odd) {
		right: 30px;
	}
	.footer{
		font-size: 14px;
	}
	.footer .prev, .footer .next {
		margin-left: 0;
		margin-right: 0;
		font-size: 14px;		
	}
	.footer .prev-next svg {		
		width: 24px;
		margin: 0px 20px;
	}
	.footer .next {
		margin-right: 0;
	}
	.footer .prev:hover {
		margin-left: -44px;
	}
	.footer .next:hover {
		margin-right: -44px;
	}
	.footer .contact {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.footer .contact h2 {
		font-size: 36px;
	}
	.footer .contact .trigger {
		padding-bottom: 50px;
		background-size: 24px;
	}
	.footer .contact .btn {
		margin-top: 20px;
	}
	.footer .sitemap {
		padding-top: 50px;
		padding-bottom: 40px;
	}
	.footer .sitemap .logo-glove {
		height: 40px;
	}
	.footer .sitemap ul a {
		margin-left: 2vw;
	}
	.footer .sitemap .logos li{
		/*margin: auto 1.5vw*/
	}
	.footer .data {
		margin-top: 50px;
	}
	.footer .copy {
		text-align: right;
		font-size: 12px;
	}
	.btn-chatbot {
		right: 20px;
		bottom: 20px;
	}
	.img-grid h4{
		margin-bottom: 10px;
	}
	.img-grid .txt {
		padding: 0px 16px;
		padding-bottom: 24px;
		bottom: 16px;
		font-size: 12px;
		background-size: 12px;
	}
	.img-grid {
		min-height: 200px;
	}
	.grid-relative{
		
	}
	.footer .newsletter {
		padding-top: 50px;
		padding-bottom: 60px;
	}
	.slick-slider .slick-arrow {
		width: 24px;
		height: 24px;
	}
	.slick-slider .slick-prev{
		left: 30px;
	}
	.slick-slider .slick-next {
		right: 30px;
	}
	.slick-slider .item-vid:after {
		background-size: 30px!important;
	}
	.tabss .btns{
		
	}	
	.tabss .btn {
		margin-right: 6px;
		padding: 14px 24px;
		padding-bottom: 12px;
		font-size: 12px;
	}
	.tabss .content {
		padding-top: 20px;
	}

}

/* Max width 800px */ 
@media screen and (max-width: 800px){
	.footer .sitemap ul a {
		margin-left: 1.5vw;
		font-size: 12px;
	}
	.footer .sitemap .logos li{
		/*margin: auto 1vw;*/
	}
}


/* Mobile */ 
@media screen and (max-width: 576px){

	.container {
		padding-left: 20px!important;
		padding-right: 20px!important;
	}
	body{
		font-size: 13px;
	}
	h1{
		font-size: 36px;
	}
	h2 {
		font-size: 24px;
	}
	h3{
		font-size: 16px;
	}
	h4{
		font-size: 14px;
	}
	h5{
		font-size: 13px;
	}
	.navbar-burger {
		right: 20px;
		top: 20px;
	}
	.navbar>.container {
		padding-top: 24px!important;
	}
	.navbar .logo {
		height: 30px;
	}
	.btn-chatbot {
		width: 40px;
		height: 40px;
		right: 12px;
		bottom: 12px;
		background-size: 20px;
		background-image: url(../images/chatbot-ico-mobile.svg);
	}
	.navbar-menu {
		width: 240px;
		padding: 30px;
		padding-right: 0;
		padding-top: 120px;
	}
	.btn-chatbot.is-active {
		background-image: url(../images/chatbot-close-mobile.svg);
	}
	.chatbot {
		right: 20px;
		bottom: 64px;
		padding: 20px;
	}
	.header .links-grid {
		margin-top: 24px;
	}
	.links-grid{
		margin: 0;
	}
	.links-grid li {
        font-size: 13px;
    }
	.columns{
		margin: 0 -12px;
	}
	.column{
		padding: 0 12px;
	}
	.grid-relative .img {
		margin-left: -12px;
		margin-right: -12px;
		margin-bottom: 20px;
		left: 12px;
	}
	.grid-relative .column:first-child .img:nth-child(odd).sm {
		left: calc(50% + 12px)!important;
	}
	.grid-relative .img.sm {
		width: calc(100% - 12px);
		left: calc(50% + 24px)!important;
	}
	.grid-relative .column:last-child .img:nth-child(odd) {
		left: auto;
		right: 12px;
	}
	.grid-relative .column:nth-child(2) .img:nth-child(even) {
		left: auto;
		right: 24px;
	}
	.grid-relative .img.sm {
		width: calc(100% - 0px);
	}
	.grid-relative .column:last-child .img.sm {
		left: calc(50% - 12px)!important;
	}
	.grid-relative .column:first-child .img:first-child {
		left: 24px!important;
	}
	.img-grid .center {
		margin-top: 0;
	}
	.img-grid h3{
		font-size: 16px;
	}
	.footer .prev, .footer .next {
		font-size: 11px;
	}
	.footer .prev-next{
		padding: 30px;
	}
	.footer .prev-next svg {
		width: 16px;
		margin: 0px 8px;
		top: -2px;
	}
	.footer .prev-next svg path{
		stroke-width: 2;
	}
	.footer .prev:hover {
		margin-left: -28px;
	}
	.footer .next:hover {
		margin-right: -28px;
	}
	.footer .contact {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.footer .contact h2 {
		font-size: 24px;
	}
	.footer .contact .trigger {
		padding-bottom: 34px;
		background-size: 20px;
	}
	.footer .contact .column{
		width: 100%;
		flex-basis: 100%;
		margin-left: 0;
	}
	.contact .field {
		margin-bottom: 16px;
	}
	.input, select {
		height: 32px!important;
	}
	.footer .sitemap .site {
		flex-direction: column;
	}
	.footer .sitemap ul{
		flex-wrap: wrap;
		text-align: center;
	}
	.footer .sitemap ul li {
		width: 33.333%;
		margin-top: 16px;
	}
	.footer .sitemap ul li a{
		margin: 0;
		font-size: 12px;
	}
	.footer .sitemap .logo-glove {
		height: 40px;
		margin-bottom: 40px;
	}
	.footer .sitemap .logos {
		width: 100%;
		max-width: 330px;
	}
	.footer .sitemap .logos li{
		height: 70px;
		margin: auto;
	}
	.footer .sitemap .links{
		min-width: unset;
		margin: 0 auto;
	}
	.footer .data .column{
		width: 100%;
		text-align: center;
	}
	.footer .social{
		margin-bottom: 12px;
	}
	.footer .social img {
		margin: 0 8px;
	}
	.footer .data{
		margin-bottom: 40px;
	}
	.footer .legal{
		font-size: 12px;
	}
	.footer .legal .column{
		width: 100%;
		text-align: center;
	}
	.footer .legal a{
		white-space: nowrap;
	}
	.footer .copy{
		margin-top: 12px;
	}
	.footer .remolino {
		float: none;
		height: 7px;
	}
	.img-grid h4{
		padding: 0 8px;
		font-size: 14px;
	}
	.img-grid .txt{
		bottom: 10px;
		color: transparent;
	}
	.footer .contact h5 {
		margin-top: 12px;
	}
	.p-top {
		padding-top: 100px;
	}
	.btn {
		height: 32px;
		padding: 12px 16px;
		font-size: 11px;
	}
	.sub-header {
		padding-top: 20px;
	}
	.slick-slider .slick-arrow{
		display: none!important;
	}
	.carousel:before, .carousel::after{
		display: none;
	}
	.tabss .btn {
		margin-right: 2px;
		padding: 12px 14px;
		padding-bottom: 10px;
		font-size: 11px;
	}
	.fancybox-slide{
		padding: 20px;
	}
	.resp{
		display: block;
	}

}


#preloader{
	/* display: none;	 */
}
