:root {
	/* Color Variables ====================================== */

	--white: #FFFFFF;

	--orange: #ec672e;
	--blue: #002338;

	--grey: #9d9b98;


	/* Bar Variables ======================================== */

	--time: 5s;

	--bar-size-ext: 20px;

	--bar-size-int: 15px;

	--bar-radius: 30px;

  }

@font-face{
	font-family: Raleway-Regular;
    src: url('fonts/Raleway-Regular.ttf');
    font-weight: 700;
    font-style: normal;
}

@font-face{
	font-family: Raleway-Bold;
    src: url('fonts/Raleway-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}



html,

body {
	width: 100%;
	height: 100%;
	margin: 0;
	position: relative;

	font-family: Raleway, Raleway-Bold;
    font-size: 100%;
}
/*.container {
		position: absolute;
		width: 100%;
		height: 100%;
	}
*/
	.top{
		width: 100%;
		position: absolute;
		top: 5px;
	}

	.top img{
		display: block;
		margin-left: auto;
		margin-right: auto;
		width:172px;
		height:35px;
	}

	.top p {
	    margin: 0;
	    position: absolute;
	    width: 100%;
	    text-align: center;
	    top: 50%;
	    left: 50%;
	    -ms-transform: translate(-50%, 130%);
	    transform: translate(-50%, 130%);
	    color: #002338;
	    font-size: 13pt;
	}

	.middle {
		width: 50%;
		position: absolute;
		top: 65%;
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.middle p {
		width: 270px;
		margin: 0;
		position: absolute;
		top: 50%;
		left: 100%;
		-ms-transform: translate(-50%, -110%);
		transform: translate(-50%, -110%);
		text-align: center;
		color: #9d9b98;
		font-size: 18pt;
	}

	#gihome {
	    margin: 130px auto 0px;
	    position: relative;
	    float: none;
	    width: 40%;
	    text-align: center;
	}

	#gihome img {
	    width: 70%;
	}

	#loading p {
	    margin: 20px auto 10px;
	    display: block;
	    text-align: center;
	    color: #9d9b98;
	    float: none;
	    font-size: 18pt;
	}

	/* (Optional) Loading Styles */
	.progress {
		background: var(--blue);
		justify-content: flex-start;
		border-radius: var(--bar-radius);
		align-items: center;
		position: absolute;
		padding: 0 5px;
		display: flex;
		height: var(--bar-size-ext);
		width: 50%;
		top: 65%;
		left: 25%;
	}

	#progressbar {
	    background: var(--blue);
	    justify-content: flex-start;
	    border-radius: var(--bar-radius);
	    align-items: center;
	    position: relative;
	    padding: 0 5px;
	    margin: 0px auto 50px;
	    display: flex;
	    height: var(--bar-size-ext);
	    width: 100%;
	}

	.progress-value {
		animation: load var(--time) normal forwards;
		box-shadow: 0 10px 40px -10px var(--orange);
		border-radius: var(--bar-radius);
		background: var(--orange);
		height: var(--bar-size-int);
		width: 0;
	}

	@keyframes load {
		0% { width: 0; }
		100% { width: 100%; }
	}

@media (max-width: 576px) { 
	#gihome {
	    margin: 110px auto 0px;
	    width: 100%;
	    text-align: center;
	}

	#progressbar {
	    width: 70%;
	}

}

@media (max-width: 768px) { 
	#gihome {
	    width: 100%;
	}

	#progressbar {
	    width: 60%;
	}

}

@media (min-width: 769px) { 
	#gihome {
	    width: 60%;
	}
}

@media (min-width: 1200px) { 
	#gihome {
	    width: 40%;
	}
 }