﻿* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    /* background-image: url(../images/background-pls-2.png) !important;*/
	 background-image: url(../images/NewLogoWallPaper.png) !important; 
    background-repeat: no-repeat !important;
    background-size: contain !important;
    /* background-position-y: bottom !important;*/
    background-color: rgb(6,51,69);
    color: #fff;
    width: 100%;
    min-height: 100vh;
    font-family: "Segoe UI", Arial;
    font-size: 30px;
	font-style: bold;
    margin: 0;
    padding: 0;
    position: relative
}

.hidden{
	display: none;
}

a{
    color: #fff;
}
.container {
    width: 100%;
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.row{
    display: flex;    
}

.header{
    padding: 16px 0;
	padding-top: 50px;
    
}

.header .row{
    justify-content: space-between;
}

    .header .header__left,
    .header .header__right{
        width: 50%
    }

    .header .header__right {
        text-align: right;
    }
	
	.header .header__col {
        text-align: center;
		width: 100%;
    }

    .header .header__title{
        font-size: 2rem;
    }


/* HOME PANEL */

.homePanel {
    padding-top: 64px;
}

.homePanel__content {
    width: 100%;
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
	padding-top: 125px;
}


.homePanel__link {
    display: block;
    width: 100%;
    max-width: 256px;
    padding: 32px;
    background: rgb(240,140,51);
    background: linear-gradient(180deg, rgba(240,140,51,1) 0%, rgba(231,80,18,1) 100%);
    color: #fff;
    border: #f49e00 solid 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    text-align: center;
    margin-left: 16px;
    text-decoration: none;
    transition: all 250ms;
}

    .homePanel__link:first-of-type {
        margin-left: 0;
    }

    .homePanel__link:hover {
        background: linear-gradient(180deg, rgba(231,80,18,1) 0%, rgba(240,140,51,1) 1000%);
    }

.homePanel__icon {
    display: inline-block;
    margin-bottom: 16px;
}

.homePanel__linktext {
    display: block;
    padding: 8px;
    color: #fff;
	
}

.welcome{
    padding-top: 64px;
}

    .welcome .welcome__content {
        text-align: left;
		padding-left: 150px;
		padding-top: 0px;
		    }

    .welcome .welcome__title{
        font-size: 78px;
		margin-top: 0px;
    }

.suppliedBy {
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-size: 0.875rem;
    color: #fff;
}


@media(max-width: 767px){
	.homePanel__content{
		flex-direction: column;
	}
	.homePanel__link{
		max-width: none;
		margin-left: 0;
		margin-bottom: 16px;
	}
}
