@charset "UTF-8";
/* CSS Document */

@media all {

	/* Hide Scrollbar */
	
	body::-webkit-scrollbar {display: none;}
	body {-ms-overflow-style: none;}
		
	body {
		cursor: url("../img/cursor_default.png")5 4, default;
		padding: 0px;
		margin: 0px;
		overflow-y: hidden;
		overflow-x: hidden;
		
		-webkit-hyphens: auto;
		 -khtml-hyphens: auto;
		   -moz-hyphens: auto;
            -ms-hyphens: auto;
             -o-hyphens: auto;
                hyphens: auto;
	}

	
	/* Link Elements */
	
	a:link,
	a:visited {
		color: var(--black);
		text-decoration: none;
	}
	
	a:hover {
		color: var(--blue);
		cursor: var(--pointer);
	}
	
	a:active {
		color: var(--black);
		cursor: var(--click);
	}

	
	/* Typo Elements */
	
	body, p {
		font-family: "Univers", Helvetica, Arial, sans-serif;
		font-weight: bold;
		font-style: normal;
		line-height: var(--BLU);
		font-size:  calc(var(--BLU) * var(--FSR));
	}
	
	h1 {
		font-family: "Druk Wide", Helvetica, Arial, sans-serif;
		font-weight: bold;
		font-style: normal;
		letter-spacing: 0.05em;
		line-height: calc(var(--BLU) * 4);
		font-size:  calc((var(--BLU) * 4) * var(--FSR));
		text-transform: uppercase;
		
		margin-block-start: 0;
		margin-block-end: 0;
		margin-inline-start: 0;
		margin-inline-end: 0;

		-webkit-hyphens: none;
		 -khtml-hyphens: none;
		   -moz-hyphens: none;
            -ms-hyphens: none;
             -o-hyphens: none;
                hyphens: none;
	}
	
	h2 {
		font-family: "Univers", Helvetica, Arial, sans-serif;
		font-weight: bold;
		font-style: normal;
		line-height: calc(var(--BLU) * 2);
		font-size:  calc((var(--BLU) * 2) * var(--FSR));
		
		margin-block-start: 0;
		margin-block-end: 0;
		margin-inline-start: 0;
		margin-inline-end: 0;

		-webkit-hyphens: none;
		 -khtml-hyphens: none;
		   -moz-hyphens: none;
            -ms-hyphens: none;
             -o-hyphens: none;
                hyphens: none;
	}
	
	p {
		margin-block-start: 0;
		margin-block-end: var(--BLU);
		margin-inline-start: 0;
		margin-inline-end: 0;
	}

	
	/* Only Mobile Elements */
	
	#MobileNaviContainer,
	#ProductionPhoto > .ArrowBtn.Right,
	#ProductionPhoto > .ArrowBtn.Left,
	.Specs > .MobileNaviContainer {
		display: none;
	}

	
	/* Navigation Elements */
	
	#ScrollLogoA,
	#ScrollLogoF,
	#IdiotArrowD {
		position: fixed;
		width: calc(var(--SCRO) * 1.4);
		height: calc(var(--SCRO) * 1.4);
		top: calc(0px + (var(--BLU) * 0.3));
		right: calc(0px - (var(--BLU) * 0.25));
		z-index: 20;
	}
	
	#ScrollLogoA{
		background: url("../img/lfm_logo_01.svg");
		z-index: 100;
	}
	
	#ScrollLogoF{
		background: url("../img/lfm_logo_02.svg");
		z-index: 90;
	}
	
	#IdiotArrowD{
		position: fixed;
		top: auto;
		bottom: calc(var(--BLU) * 0.5);
		right: calc(var(--BLU) * 0.5);
		background: url("../img/idiot_arrow.svg");
	}
	
	#IdiotArrowD:hover{
		background: url("../img/idiot_arrow_hover.svg");
	}
	
	#ScrollLogoA:hover{
		cursor: var(--pointer);
	}
	
	#ScrollLogoA:active{
		cursor: var(--click);
	}
	
	#ScrollLogoP{
		position: fixed;
		width: calc(var(--SCRO) + (var(--BLU) * 1));
		height: calc(var(--SCRO) + (var(--BLU) * 2));
		background: var(--white);
		top: 0;
		right: 0;
		z-index: 20;
	}
	
	
	
	#ScrollBlock{
		position: fixed;
		width: calc(var(--SCRO) + (var(--BLU) * 1));
		height: calc(var(--100vh) / 2);
		right: 0;
		background: var(--black);
		z-index: 10;
	}
	
	#DeskNaviContainer{
		position: fixed;
		display: block;
		width: calc(100% - (var(--SCRO) + (var(--BLU) * 3)));
		height: calc(var(--BLU) * 1);
		z-index: 20;
		padding: var(--BLU);
	}
	
	#DeskNaviContainer > a:link,
	#DeskNaviContainer > a:visited {
		text-decoration: none;
		display: block;
		color: var(--black);
		font-size: calc(var(--BLU) * 1);
		line-height: calc(var(--BLU) * 1);
		width: calc((var(--COL7) * 2) + (var(--GUTT) * 1 ) );
		margin-right: var(--GUTT);
		float: left;
	}
	
	#DeskNaviContainer > a#NavProduction {
		width: calc((var(--COL7) * 3) + (var(--GUTT) * 2 ) );
	}
	
	#DeskNaviContainer > a#NavFamiglia {
		margin-right: 0;
	}
	
	#DeskNaviContainer > a:hover {
		color: var(--blue);
		cursor: var(--pointer);
	}
		
	#DeskNaviContainer > a:active {
		color: var(--black);
		cursor: var(--click);
	}
	
	#Snapper {
		scroll-snap-type: y proximity;  /* [ mandatory | proximity ] */
	}
	
	#Snapper.NoSpan {
		scroll-snap-type: none;
	}

	
	/* Protectors */
	
	.Protector{
		position: fixed;
		width: 100%;
		height: 200px;
		background: var(--white);
	}
	
	.Protector.Top{
		top: -200px;
	}
	
	.Protector.Bot{
		bottom: -200px;
	}

	
	/* Loading Screen */
	
	#LoadingScreen {
		position: fixed;
		width: 100%;
		height: 100%;
		background: hsla(270,100%,50%,1.00);
		z-index: 200;
		display: block;
	}
	
	#LoadingScreen > .LogoBlack,
	#LoadingScreen > .LogoWhite {
		position: absolute;
		width: 100%;
		height: 100%;
		overflow: hidden;
		white-space: nowrap;
	}

	#LoadingScreen > .LogoBlack {
		background: var(--black);
		color: var(--white);
		width: 0%;
		-webkit-animation: LoadingScreen 2s ease-in-out 1.5s forwards;
		 -khtml-animation: LoadingScreen 2s ease-in-out 1.5s forwards;
		   -moz-animation: LoadingScreen 2s ease-in-out 1.5s forwards;
		     -o-animation: LoadingScreen 2s ease-in-out 1.5s forwards;
		        animation: LoadingScreen 2s ease-in-out 1.5s forwards;
	}

	#LoadingScreen > .LogoWhite {
		background: var(--white);
	}
	
	@-webkit-keyframes LoadingScreen { 0% {width: 0%;} 100% {width: 100%;} }
	   @-moz-keyframes LoadingScreen { 0% {width: 0%;} 100% {width: 100%;} }
	     @-o-keyframes LoadingScreen { 0% {width: 0%;} 100% {width: 100%;} }
	        @keyframes LoadingScreen { 0% {width: 0%;} 100% {width: 100%;} }
	
	#LoadingScreen > .LogoBlack > .LogoContainer,
	#LoadingScreen > .LogoWhite > .LogoContainer {
		position: absolute;
		width: 100vw;
		height: 100vh;
	}
	
	#LoadingScreen > .LogoBlack > .LogoContainer > img,
	#LoadingScreen > .LogoWhite > .LogoContainer > img {
		position: absolute;
		max-height: 100%;
		max-width: 100%;
		margin: auto;
		top: 0px;
		bottom: 0px;
		left: 0px;
		right: 0px;
		z-index: 10;
	}

	
	/* Section Containers */
	
	.SectionContainer{
		position: relative;
		width: calc(100% - (var(--SCRO) + (var(--BLU) * 3)));
		height: calc(var(--100vh) - (var(--BLU) * 2 ));
		padding: var(--BLU) var(--BLU) var(--BLU) var(--BLU);
		scroll-snap-align: start;
		scroll-snap-stop: normal;
		background: var(--white);
		overflow: hidden;
		display: block;
		z-index: 10;
		
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		 -khtml-user-select: none;
		   -moz-user-select: none;
		    -ms-user-select: none;
		     -o-user-select: none;
		        user-select: none;
	            outline: 0;
	}
	
	.SectionContainer > .SectionText{
		position: relative;
		width: calc(((100% - (var(--GUTT) * 6)) / 7) * 4 + (var(--GUTT) * 3));
		height: auto;
	}
	
	@media all and (max-height: 660px) {
	
		.SectionContainer > .SectionText{
			width: 100%;
		}

	}
	
	.SectionContainer#Home {
		z-index: 30;
	}
	
	.SectionContainer#Production,
	.SectionContainer#Rentals,
	.SectionContainer#Famiglia {
		padding-top: calc(var(--BLU) * 2 );
		height: calc(var(--100vh) - (var(--BLU) * 3 ));
	}

	
	/* Section / Home / Elements */
	
	.SectionContainer#Home > a:link,
	.SectionContainer#Home > a:visited {
		position: absolute;
		display: block;
		width: calc((var(--COL7) * 3) + (var(--GUTT) * 2) - var(--BLU));
		height: calc((100% - (var(--BLU) * 2) - var(--GUTT)) / 2);
		background: var(--black);
		color: var(--black);
		text-decoration: none;
	}
	
	.SectionContainer#Home > a:hover {
		cursor: var(--pointer);
		color: var(--blue);
	}
	
	.SectionContainer#Home > a:active {
		cursor: var(--click);
		color: var(--black);
	}
	
	.SectionContainer#Home > #HomeProduction {
		top: var(--BLU);
		left: var(--BLU);
	}
	
	.SectionContainer#Home > #HomeFamiglia {
		bottom: var(--BLU);
		left: var(--BLU);
	}
	
	.SectionContainer#Home > #HomeRentals {
		top: var(--BLU);
		right: var(--BLU);
		width: calc((var(--COL7) * 4) + (var(--GUTT) * 3) - var(--BLU));
		height: calc(100% - (var(--BLU) * 2));
	}
	
	.SectionContainer#Home > a > .text,
	.SectionContainer#Production > a > .text,
	.SectionContainer#Production > div > .text {
		position: absolute;
		bottom: 0;
		background: var(--white);
		padding-top: calc(var(--BLU) / 2);
		z-index: 2;
	}

	.SectionContainer#Home > a > .text > .title,
	.SectionContainer#Production > a > .text > .title,
	.SectionContainer#Production > div > .text > .title {
		position: relative;
		width: calc((100% - (var(--GUTT) * 2)) / 3);
		margin-right: var(--GUTT);
		line-height: calc(var(--BLU) * 2);
		font-size: calc((var(--BLU) * 2) * var(--FSR));
		float: left;
	}

	.SectionContainer#Home > a > .text > .infos,
	.SectionContainer#Production > a > .text > .infos,
	.SectionContainer#Production > div > .text > .infos {
		position: relative;
		width: calc(((100% - (var(--GUTT) * 2)) / 3) * 2 + var(--GUTT));
		float: left;
	}
	
	.SectionContainer#Production > #ProductionPhoto:hover {
		color: var(--blue);
		-webkit-filter: grayscale(0%);
		filter: grayscale(0%);
	}

	.SectionContainer#Home > #HomeRentals > .text > .title,
	.SectionContainer#Production > #ProductionVideo > .text > .title {
		width: calc((100% - (var(--GUTT) * 2)) / 4);
	}

	.SectionContainer#Home > #HomeRentals > .text > .infos,
	.SectionContainer#Production > #ProductionVideo > .text > .infos {
		width: calc(((100% - (var(--GUTT) * 2)) / 4) * 3 + var(--GUTT));
	}
	
	@media all and (max-width: 1600px) {
	
		.SectionContainer#Home > a > .text > .title,
		.SectionContainer#Home > #HomeRentals > .text > .title,
		.SectionContainer#Home > a > .text > .infos,
		.SectionContainer#Home > #HomeRentals > .text > .infos {
			width: 100%;
		}
		
	}
	
	.SectionContainer#Home > a > .image {
		position: relative;
		display: block;
		width: 100%;
		height: calc(100% - (var(--BLU) * 3));
		z-index: 1;
	}
	
	.SectionContainer#Home > #HomeProduction > .image {background: url("../img/home/production_col.jpg");}
	.SectionContainer#Home > #HomeFamiglia   > .image {background: url("../img/home/famiglia_col.jpg");}
	.SectionContainer#Home > #HomeRentals    > .image {background: url("../img/home/rentals_col.jpg");}

	.SectionContainer#Home > #HomeProduction > .image,
	.SectionContainer#Home > #HomeFamiglia   > .image,
	.SectionContainer#Home > #HomeRentals    > .image {
		background-size: cover;
		background-position: center;
		-webkit-filter: grayscale(100%);
		filter: grayscale(100%);
	}
	
	.SectionContainer#Home > #HomeProduction:hover  > .image,
	.SectionContainer#Home > #HomeFamiglia:hover    > .image,
	.SectionContainer#Home > #HomeRentals:hover     > .image {
		-webkit-filter: grayscale(0%);
		filter: grayscale(0%);
	}

	
	/* Section / Production Services / Elements */
	
	#ProductionVideo,
	#ProductionPhoto {
		position: absolute;
		display: block;
		float: left;
		height: calc(((100% - (var(--BLU) * 2) - (var(--GUTT) * 3)) / 4) * 3);
		bottom: var(--BLU);
	}

	#ProductionVideo {
		left:  var(--BLU);
		width: calc(((100% - (var(--BLU) * 2) - (var(--GUTT) * 6)) / 7) * 4 + (var(--GUTT) * 3));
	}
	
	#ProductionPhoto {
		right: var(--BLU);
		width: calc(((100% - (var(--BLU) * 2) - (var(--GUTT) * 6)) / 7) * 3 + (var(--GUTT) * 2));
		-webkit-filter: grayscale(100%);
		filter: grayscale(100%);
	}
	.VideoContainer {
		position: relative;
		width: 100%;
		height: calc(100% - (var(--BLU) * 4));
		overflow: hidden;
	}
	
	#ProductionVideo > .VideoContainer {
		-webkit-filter: grayscale(100%);
		filter: grayscale(100%);
	}
	
	#ProductionVideo:hover > .VideoContainer {
		-webkit-filter: grayscale(0%);
		filter: grayscale(0%);
	}
	
	#ProductionVideo > .VideoContainer > video {
        top: 0px;
        left: 0px;
		height: 100%;
		width: 100%;
		object-fit: cover;
	}
	
	#ProductionVideo > .ArrowBtn {
		position: absolute;
		width: calc(var(--BLU) * 3);
		height: calc(var(--BLU) * 3);
		z-index: 10;
		top: var(--BLU);
		right: var(--BLU);
		background: url("../img/arr_btn_on.svg");
		transform: rotate(315deg);
		display: none;
	}
	
	#ProductionVideo:hover > .ArrowBtn {
		display: block;
	}
	
	@media all and (max-width: 1200px) {
	
		.SectionContainer#Production > a > .text > .title,
		.SectionContainer#Production > div > .text > .title,
		.SectionContainer#Production > #ProductionVideo > .text > .title,
		.SectionContainer#Production > a > .text > .infos,
		.SectionContainer#Production > div > .text > .infos,
		.SectionContainer#Production > #VideoContainer > .text > .infos {
			width: 100%;
		}
		
	}
	
	.gallery {
		overflow: hidden;
		width: 100%;
		height: calc(100% - (var(--BLU) * 4));
	}
	
	.gallery-cell {
		position: absolute;
		width: 100%;
		height: 100%;
		background: var(--grey1);
	}
	
	.gallery-cell > img {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.flickity-viewport{
		height: 100% !important;
	}
	
	
	.flickity-prev-next-button > svg {
		display: none;
	}
	
	.flickity-prev-next-button {
		position: absolute;
		top: 0px;
		width: 50%;
		height: 100%;
		border: none;
	}
	
	button {
		padding: 0px;
	}
	
	.flickity-prev-next-button.previous {
		left: 0px;
		background: none;
	}
	
	.flickity-prev-next-button.previous:hover {
		cursor: var(--pointLeft);
	}

	.flickity-prev-next-button.previous:active {
		cursor: var(--pointLeftClick);
	}	
	
	.flickity-prev-next-button.next {
		right: 0px;
		background: none;
	}
	
	.flickity-prev-next-button.next:hover {
		cursor: var(--pointRight);
	}

	.flickity-prev-next-button.next:active {
		cursor: var(--pointRightClick);
	}

	
	/* Section / Rentals / Elements */
		
	#Rentals.SectionContainer > .SectionText{
		width: calc(((100% - (var(--GUTT) * 7)) / 8) * 4 + (var(--GUTT) * 3));
	}
	
	#VanContainer {
		position: absolute;
		bottom: var(--BLU);
		width: calc(100% - (var(--BLU) * 2));
		height: calc(((100% - (var(--BLU) * 2) - (var(--GUTT) * 3)) / 4) * 3);
	}
	
	#VanContainer > .VanUnit {
		position: relative;
		float: left;
		width: calc((var(--COL8) * 2) + var(--GUTT));
		margin-right: var(--GUTT);
		height: 100%;
	}
	
	#VanContainer > .VanUnit.U4 {
		margin-right: 0px;
	}
	
	.VanUnit > .Specs {
		display: block;
		position: relative;
		margin-bottom: var(--BLU);
	}
	
	.VanUnit > .Specs > .UnitLine {
		width: 100%;
		height: 2px;
		background: var(--black);
		margin-bottom: calc(var(--BLU) - 2px);
	}
	
	.VanUnit > .Specs:hover > .UnitLine {
		background: var(--blue);
	}
	
	.VanUnit > .Specs > .UnitInfo {
		margin-top: var(--BLU);
	}
	
	.VanUnit > .Specs > .UnitInfo > span {
		font-weight: normal;
	}
	
	.VanUnit > .Specs > .UnitList {
		position: absolute;
		top: var(--BLU);
		right: 0px;
	}
	
	.VanUnit > .Specs > .UnitList > .ArrList {
		display: inline-block;
		width: calc(var(--BLU) * var(--FSR));
		height: calc(var(--BLU) * var(--FSR));
		background: url("../img/arr_black.svg");
		background-repeat: no-repeat;
		margin-bottom: calc(0px - (var(--BLU) * 0.1));
	}
	
	.VanUnit > .Specs:hover > .UnitList > .ArrList {
		background: url("../img/arr_blue.svg");
		background-repeat: no-repeat;
		transform: rotate(315deg);
	}
	
	.VanUnit > .Thumbnail {
		position: relative;
		display: block;
		padding: 0px;
		margin: 0px;
		width: 100%;
	}
		
	.VanUnit > .Thumbnail > img {
		width: 100%;
	}
	
	.VanUnit > .Thumbnail > .ArrEye {
		position: absolute;
		top: var(--BLU);
		right: var(--BLU);
		width: calc(var(--BLU) * 3);
		height: calc(var(--BLU) * 3);
		background: url("../img/eye_btn_off.svg");
	}
	
	.VanUnit > .Thumbnail:hover > .ArrEye {
		background: url("../img/eye_btn_on.svg");
	}
	
	#VanUnit_01_Img,
	#VanUnit_02_Img,
	#VanUnit_03_Img,
	#VanUnit_04_Img {
		position: fixed;
		height: calc(100% - (var(--BLU) * 7));
		width: 0px;
		bottom: var(--BLU);
		display: none;
		background: var(--grey1);
		z-index: 20;
	}
	
	#VanUnit_01_Img.ShowVan,
	#VanUnit_02_Img.ShowVan,
	#VanUnit_03_Img.ShowVan,
	#VanUnit_04_Img.ShowVan {
		display: block;
	}
	
	#VanUnit_01_Img {
		right: calc((var(--BLU) * 2) + var(--SCRO));
		width: calc((((100% - ((var(--BLU) * 3) + var(--SCRO)) - (var(--GUTT) * 7)) / 8) * 6) + (var(--GUTT) * 5));
	}
	
	#VanUnit_02_Img {
		right: calc((var(--BLU) * 2) + var(--SCRO));
		width: calc((((100% - ((var(--BLU) * 3) + var(--SCRO)) - (var(--GUTT) * 7)) / 8) * 4) + (var(--GUTT) * 3));
	}
	
	#VanUnit_03_Img {
		left: var(--BLU);
		width: calc((((100% - ((var(--BLU) * 3) + var(--SCRO)) - (var(--GUTT) * 7)) / 8) * 4) + (var(--GUTT) * 3));
	}
	
	#VanUnit_04_Img {
		left: var(--BLU);
		width: calc((((100% - ((var(--BLU) * 3) + var(--SCRO)) - (var(--GUTT) * 7)) / 8) * 6) + (var(--GUTT) * 5));
	}
	
	#VanUnit_01_Img > .VideoContainer,
	#VanUnit_02_Img > .VideoContainer,
	#VanUnit_03_Img > .VideoContainer,
	#VanUnit_04_Img > .VideoContainer{
		width: 100%;
		height: 100%;
	}
	
	#VanUnit_01_Img > .VideoContainer > video,
	#VanUnit_02_Img > .VideoContainer > video,
	#VanUnit_03_Img > .VideoContainer > video,
	#VanUnit_04_Img > .VideoContainer > video {
        top: 0px;
        left: 0px;
		height: 100%;
		width: 100%;
		object-fit: cover;
	}
	
	
	/* Section / Famiglia / Elements */
	
	#FamigliaPortContainer,
	#FamigliaImprContainer {
		display: block;
		position: absolute;
		width: calc(100% - (var(--BLU) * 2));
		height: calc(100% - (var(--BLU) * 8.6));
		background: var(--black);
		margin-top: var(--BLU);
	}
		
	#FamigliaImprContainer {
		background: var(--white);
		}
	
	#FamigliaPortContainer.closed,
	#FamigliaImprContainer.closed {
		display: none;
	}
	
	#FamigliaImprContainer > .close_btn {
		position: absolute;
		top: 0;
		right: 0;
		width: calc(var(--BLU) * 3);
		height: calc(var(--BLU) * 3);
		background: url("../img/close_btn_off.svg");
		background-repeat: no-repeat;
	}
		
	#FamigliaImprContainer > .close_btn:hover {
		cursor: var(--pointer);
		background: url("../img/close_btn_on.svg");
		background-repeat: no-repeat;
	}
		
	#FamigliaImprContainer > .close_btn:active {
		cursor: var(--click);
		background: url("../img/close_btn_off.svg");
		background-repeat: no-repeat;
	}
	
	#FamigliaImprContainer > h1 {
		margin-top: calc(0px - (var(--BLU) * var(--FSR)));
	}
		
	#FamigliaImprContainer > .column {
		float: left;
		width: calc((100% - (var(--GUTT) * 6)) / 7);
		height: 100%;
		margin-right: var(--GUTT);
	}
		
	#FamigliaImprContainer > .column.C01 {
		width: calc((((100% - (var(--GUTT) * 6)) / 7) * 3) + (var(--GUTT) * 2));
	}
		
	#FamigliaImprContainer > .column.C02,
	#FamigliaImprContainer > .column.C03 {
		width: calc((((100% - (var(--GUTT) * 6)) / 7) * 2) + (var(--GUTT) * 1));
	}
	
	#FamigliaImprContainer > .column.C03 {
		margin-right: 0;
	}
	
		
	#FamigliaTextContainer {
		display: block;
		position: absolute;
		bottom: var(--BLU);
		width: calc(100% - (var(--BLU) * 2));
		min-height: calc(var(--BLU) * 3.4);
		padding-top: calc(var(--BLU) * 0.5);
		background: var(--white);		
		
		-webkit-hyphens: none;
		 -khtml-hyphens: none;
		   -moz-hyphens: none;
            -ms-hyphens: none;
             -o-hyphens: none;
                hyphens: none;
	}
	
	#FamigliaTextContainer > div {
		display: block;
		position: relative;
		float: left;
		width: var(--COL14);
		margin-right: var(--GUTT);
		white-space: nowrap;
	}
	
	#FamigliaTextContainer > div:hover {
		color: var(--blue);
	}

	#FamigliaTextContainer > div:hover > a,
	#FamigliaTextContainer > div:hover > div > a{
		color: var(--blue);
	}

	#FamigliaTextContainer > div:hover > a:hover,
	#FamigliaTextContainer > div:hover > div > a:hover{
		color: var(--black);
	}

	#FamigliaTextContainer > div.famiglia {
		width: calc((var(--COL14) * 4) + (var(--GUTT) * 3));
	}

	#FamigliaTextContainer > div.fabia {
		width: calc((var(--COL14) * 3) + (var(--GUTT) * 2));
	}

	#FamigliaTextContainer > div.serge {
		width: calc((var(--COL14) * 3) + (var(--GUTT) * 2));
	}

	#FamigliaTextContainer > div.team {
		width: calc((var(--COL14) * 2) + (var(--GUTT) * 1));
	}

	#FamigliaTextContainer > div.info {
		width: calc((var(--COL14) * 2) + (var(--GUTT) * 1));
		margin-right: 0px;
		text-align: right;
	}
	
	#FamigliaTextContainer > div > div {
		width: calc((100% - var(--GUTT)) / 2);
		float: left;
	}
	
	#FamigliaTextContainer > div > div:first-of-type {
		margin-right: var(--GUTT);
	}
	
	#FamigliaTextContainer > div > div > a > span > .arrow {
		display: inline-block;
		width: calc(var(--BLU) * var(--FSR));
		height: calc(var(--BLU) * var(--FSR));
		background: url(../img/arr_black.svg);
		background-repeat: no-repeat;
		margin-bottom: calc(0px - (var(--BLU) * 0.1));
	}

	#FamigliaTextContainer > div:hover > div > a > span > .arrow {
		background: url(../img/arr_blue.svg);
		background-repeat: no-repeat;
	}

	#FamigliaTextContainer > div > div > a:hover > span > .arrow {
		background: url(../img/arr_black.svg);
		background-repeat: no-repeat;
		transform: rotate(315deg);
	}
	
	#FamigliaTextContainer > .team > span:hover {
		color: var(--black);
	}
	
	#FamigliaTextContainer > .team > span > .short {
		display: none;
	}
	
	
	@media all and (max-width: 1400px) {
		
		#FamigliaTextContainer > .team > span > .short {
			display: inline-block;
		}
		
		#FamigliaTextContainer > .team > span > .long {
			display: none;
		}
		
	}
		
	#FamigliaPortContainer > #LFM_Typo_logo {
		position: absolute;
		width: calc((var(--COL7) * 5) + (var(--GUTT) * 4));
		margin: auto;
		top: 0px;
		bottom: 0px;
		right: 0px;
		left: 0px;
		z-index: 10;
	}
	
	#FamigliaPortContainer > #LFM_Fam,
	#FamigliaPortContainer > #LFM_Fab,
	#FamigliaPortContainer > #LFM_Ser,
	#FamigliaPortContainer > #LFM_Tea,
	#FamigliaPortContainer > #LFM_Man,
	#FamigliaPortContainer > #LFM_Mel,
	#FamigliaPortContainer > #LFM_Fla,
	#FamigliaPortContainer > #LFM_Inf {
		width: 100%;
		height: 100%;
		position: absolute;
		object-fit: cover;
		opacity: 0;
	}

	#FamigliaPortContainer > #LFM_Fam.Projector,
	#FamigliaPortContainer > #LFM_Fab.Projector,
	#FamigliaPortContainer > #LFM_Ser.Projector,
	#FamigliaPortContainer > #LFM_Tea.Projector,
	#FamigliaPortContainer > #LFM_Man.Projector,
	#FamigliaPortContainer > #LFM_Mel.Projector,
	#FamigliaPortContainer > #LFM_Fla.Projector,
	#FamigliaPortContainer > #LFM_Inf.Projector {
		opacity: 1;
	}
	
	span.mobi {
		display: none;
	}

	span.desk {
		display: inline-block;
	}

	
	/* Test Styles */
	
	.ColumnTest{
		background: hsla(0,0%,0%,0.05);
		float: left;
		margin-right: var(--GUTT);
		width: var(--COL7);
		height: 100%;
	}
		
	.ColumnTest.Last{
		margin-right: 0;
	}
	
		
}