@import url("https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic,900italic,900");

/* ---------- BODY ---------- */
BODY
{
    font-size: 14px !important;
    font-weight: 400;
    font-family: "Roboto";
}

/* ---------- HEADER ---------- */
.header
{
    height: 40px;
    clear:both;
    width: 100%;
    box-sizing: border-box;
    float: left;
    background-color: #003F5C;
    position: fixed;
    top: 0;
    z-index: 50000;
}

.header .company-logo
{
    position: absolute;
    top: 8px;
    left: calc(50vw - 12px);
    height: 24px;
    display: flex;
    align-items: center;
}

.header .company-logo img
{
    height: 16px;
}

/* ---------- MAIN CONTENT ---------- */
.home
{
    position: fixed;
    top: 40px;
    height: calc(100vh - 40px - 40px);
    width: 100vw;
    padding-left: 10vw;
    padding-right: 10vw;
    padding-top: 40px;
    padding-bottom: 40px;
}

@media only screen and (width < 1024px)
{
    padding-left: 32px;
    padding-right: 32px;
}

@media only screen and (1024px <= width <= 1560px)
{
    padding-left: 60px;
    padding-right: 60px;
}

@media only screen and (1560px < width)
{
    padding-left: 10vw;
    padding-right: 10vw;
}

.home .background-container
{
    position: fixed;
    display: block;
    top: 40px;
    left: 0;
    right: 0;
    bottom: 40px;
    pointer-events: none;
    z-index: -1;
}

.home .background-container #grad1
{
    background-color: rgba(116,219,203, 0.02);
    display: block;
    position: absolute;
    top: 40%;
    bottom: 0;
    left: 0;
    right: 0;
}
.home .background-container #grad2
{
    background-color: rgba(116,219,203, 0.04);
    display: block;
    position: absolute;
    top: 50%;
    bottom: 0;
    left: 0;
    right: 0;
}
.home .background-container #grad3
{
    background-color: rgba(116,219,203, 0.06);
    display: block;
    position: absolute;
    top: 60%;
    bottom: 0;
    left: 0;
    right: 0;
}
.home .background-container #grad4
{
    background-color: rgba(116,219,203, 0.08);
    display: block;
    position: absolute;
    top: 70%;
    bottom: 0;
    left: 0;
    right: 0;
}
.home .background-container #grad5
{
    background-color: rgba(116,219,203, 0.10);
    display: block;
    position: absolute;
    top: 80%;
    bottom: 0;
    left: 0;
    right: 0;
}
.home .background-container #grad6
{
    background-color: rgba(116,219,203, 0.12);
    display: block;
    position: absolute;
    top: 90%;
    bottom: 0;
    left: 0;
    right: 0;
}

.home .panel
{
    box-shadow: 0 3px 30px #005a840d,0 6px 20px #005a841a,inset 0 0 1px 1px #005a840d;
    border-radius: 8px;
    background-color: #fff;
    height: calc(100vh - 40px - 40px - 40px - 40px);
    padding: 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.home .panel .product-icon
{
    width: 500px;
}

.home .panel .title
{
    font-size: 40px;
    color: #05273D;
    width: 100%;
    display: inline-block;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 24px;
}

.home .panel .title2
{
    font-size: 24px;
    width: 100%;
    display: inline-block;
    text-align: center;
    padding-bottom: 24px;
}

.home .panel .info
{
    font-size: 16px;
    width: 100%;
    display: inline-block;
    text-align: center;
}

/* ---------- FOOTER ---------- */
.footer
{
	font-size: 14px;
	position: fixed;
	bottom: 0;
	padding: 8px;
	height: 40px;
	text-align: center;
	flex-shrink: 0;
	width: 100%;
	background-color: #003F5C;
}

.footer .txt
{
    line-height: 24px;
	color: #FFFFFF;
}

.footer .txt a
{
    color: #FFFFFF;
}

.footer .txt a:hover
{
    color: #90AFCC;
}