/* div {
    border: 1px solid #ff0000;
} */

html {
	background: #000;
}

@font-face {
    font-family: 'Work Sans';
	/* src: url("../fonts/WorkSans-Regular.otf"); */
	src: url("../fonts/WorkSans-Regular.otf");
}

@font-face {
    font-family: 'Work Sans Light';
	/* src: url("../fonts/WorkSans-Light.otf"); */
	src: url("../fonts/WorkSans-Light.otf");
}

@font-face {
    font-family: FFBasicGothicBlack;
    src: url("../fonts/FFBASICGOTHIC-BLACK.OTF");
}

body {
	font-family: "Work Sans", Garamond, "Helvetica Neue",Helvetica, Arial, "Didot LT STD", "Bodoni MT", "ltc-bodoni-175", "Hoefler Text", Garamond, "Times New Roman", serif;
	min-height: 100vh;
	color: #57585c;
	color: var(--color-text);
	background-color: #090A12;
	overflow: hidden;
	margin:0;
	padding:0;
}

a:link {
	color: white;
	text-decoration: none;
}

/* visited link */
a:visited {
	color: white;
	text-decoration: none;
}

/* mouse over link */
a:hover {
	color: white;
	text-decoration: none;
}

/* selected link */
a:active {
	color: white;
	text-decoration: none;
}

.icon {
    font-size: 36px;
    color: #ffffff;
}


.column {
    float: left;
    width: 50%;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

div.logo-img {
    background-image: url("../images/logo.png");
    background-size: contain;
    background-position-y: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%; 
}

div.full-screen {
    display: table;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}

div.logo {
    display: table-cell;
    vertical-align: middle;
    margin: 0 auto;
}

div.footer {
    position: fixed;
    left: 0px;
    bottom: 0px;
    height: 30px;
    width: 100%;
    z-index: 100;
    text-align: center;
    color: #ffffff;
}

.logo-name {
    font-family: FFBasicGothicBlack;
}

/* sotto i 600 px */
@media screen and (max-width : 999px ){
    .column {
      width: 100%;
    }
    div.logo-img {
        background-position-x: center; 
        margin-top: 7px;
    }
    div.content-box-rgt {
        height: 100px;
        width: 350px;
        float: none;
        display: table;
        margin: 0 auto;
        background-color: rgba(0, 0, 0, 0.5); 
        padding: 10px;
        border-left: 1px solid #ffffff;
        border-right: 1px solid #ffffff;
        border-bottom: 1px solid #ffffff;
    }
    div.content-box-lft {
        height: 100px;
        width: 350px;
        float: none;
        display: table;
        margin: 0 auto;
        background-color: rgba(0, 0, 0, 0.5); 
        padding: 10px; /* per regolare dim logo */
        border-top: 1px solid #ffffff;
        border-left: 1px solid #ffffff;
        border-right: 1px solid #ffffff;
    }  
    .logo-name {
        font-size: 25px;
        display: flex;
		margin-top: -7px;
        align-items: center;
        justify-content: center;
        color: #ffffff;
    }
    div.logo-slogan {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
		letter-spacing: 3px;
        color: #ffffff;
		font-family: "Work Sans Light";
    }
    div.logo-info {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        color: #ffffff;
    }
    div.logo-social {
        display: flex;
		margin-top: 7px;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        color: #ffffff;
    }
    div.footer {
        font-size: 11px;
    }

    
}

/* sopra i 600px */
@media screen and (min-width : 1000px ){ 
    div.logo-img {
        background-position-x: right;
    }
    div.content-box-rgt {
        height: 200px;
        width: 500px;
        float: left;
        border-left: 1px solid #ffffff;
        border-right: 0px solid #ffffff;
        border-bottom: 0px solid #ffffff;
        padding-top: 25px;
        background-color: rgba(0, 0, 0, 0.5); 
        text-align: center;
    }
    div.content-box-lft {
        height: 200px;
        width: 500px;
        float: right;
        padding: 30px; /* per regolare dim logo */
        border: 0px;
    }  
    div.logo-name {
        font-size: 40px;
        margin-left: -2px;
        color: #ffffff;
    }
    
    div.logo-slogan {
        font-size: 20px;
		letter-spacing: 3px;
        color: #ffffff;
		font-family: "Work Sans Light";
    }
    
    div.logo-info {
        font-size: 18px;
        color: #ffffff;
    }
    div.footer {
        font-size: 15px;
    }
    div.logo-social {
        display: flex;
		margin-top: 5px;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        color: #ffffff;
    }
}
