/****************************************************
 COLOR VARIABLES
 ****************************************************/
:root {
    --dark1: #111;
    --dark1b: #1a1a1a;
    --dark1c: #1c1c1c;
    --dark2: #272727;
    --dark2b: #2d3134;
    --dark3: #333;
    --dark4: #444;
    --dark5: #555;
    --dark6: #666;
    --dark7: #777;
    --dark8: #888;
    --dark9: #999;
    --dark10: #bbb;

    --light1: #fff;
    --light2: #fafafa;
    --light3: #eee;
    --light4: #ddd;

    --blue1: #104ca5;
    --green: #8bc34a;
    --green-hover: #5b9c10;
    --red: #ff5151;
    --orange: #ecab33;
    --orange2: #caa537;
}

html, body {
    max-width: 100%;
    overflow-x: hidden !important;
}

html {
    height: 100%;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    background-color: #1b1b1d;
    color: var(--light4);
    font-size: 0.9rem;
}

a, a:hover {transition: 0.3s; text-decoration: none;}

/*BASE STRUCTURE WITH FOOTER ALWAYS ON BOTTOM*/
#page-container {
    position: relative; min-height: 100vh;
}

/* #page-container{
    background-image: url('../img/bg-landing.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
} */

#content-wrap {padding-top: 3.5rem; padding-bottom: 2.5rem;}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    color:var(--light4);
    padding: 15px;
    font-size: 0.9rem;
    z-index: 9;
}
/*END - BASE STRUCTURE WITH FOOTER ALWAYS ON BOTTOM*/

.fvt-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: url(../img/FVT_marchio.svg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: 850px;
    opacity: 0.3;
}

.img-center{
    width: 400px;
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    padding: 15px;
}

/*------scroll bar---------------------*/
::-webkit-scrollbar {
    width: 8px;
    height: 4px;
}
::-webkit-scrollbar-button {
    width: 0;
    height: 0;
}
::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: #202020;
    border: 0 none #ffffff;
}
::-webkit-scrollbar-thumb:hover {
    background: #333;
}
::-webkit-scrollbar-thumb:active {
    background: #202020;
}
::-webkit-scrollbar-track {
    border-radius: 50px;
    background: transparent;
    border: 0 none #ffffff;
}
::-webkit-scrollbar-track:hover {
    background: transparent;
}
::-webkit-scrollbar-track:active {
    background: transparent;
}
::-webkit-scrollbar-corner {
    background: transparent;
}
/*------End scroll bar---------------------*/