@charset "utf-8";
/* CSS Document */

.top_container{
	padding:30px 0px;
}

.top_container .top_content .logo img{
	height:74px;
}

.content_container{
	background-color: #ffffff;
}

.content_container .content_content{
	height:calc(100vh - 209px);
	min-height:500px;
}

h1{
	font-family:'Knauf Head', sans-serif;
	font-size:48px;
	color:#fff;
	line-height:60px;
	margin:0px;
}

.content_container .content_content .left,
.content_container .content_content .right{
	flex: 60%;
	margin-top:-4%;
}

.content_container .content_content .left,
.content_container .content_content .right{
	background-color:#00a0e6;
	height:90%;
	display: flex;
	align-items: center;
  justify-content: right;
  clip-path:polygon(0 0, 100% 0, 90% 100%, 0 100%);
	z-index:2;
}

.content_container .content_content .right{
	height:85%;
	clip-path:polygon(9.5% 0, 100% 0, 100% 100%, 0 100%);
	margin-left:-6%;
	z-index:1;
}

.content_container .content_content .left .content{
	min-width: 250px;
	margin-right:10%;
}

.user-buttons{
	margin-top:20px;
}

.user-buttons a{
	color:#fff;
	font-size:16px;
	margin-top:10px;
	display: inline-block;
	text-decoration: underline;
}

.user-buttons a:hover{
	text-decoration: none;
}

.user-buttons a.blue-button{
	font-size:18px;
	font-weight: bold;
	background-color:#003778;
	position: relative;
    overflow: hidden;
	padding:10px 25px;
	text-decoration: none;
	transition: color 0.4s ease;
}

.user-buttons a.blue-button::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -100%;
    background-color:#0074b3;
    transition: left 0.4s ease;
    z-index: 1;
	width:100%;
}

.user-buttons a.blue-button:hover::before {
    left: 0;
}

.user-buttons a.blue-button span {
    position: relative;
    z-index: 2;
}