
/*@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Regular.eot');
    src: url('../fonts/Raleway-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Raleway-Regular.woff2') format('woff2'),
        url('../fonts/Raleway-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}*/
@font-face {
    font-family: 'MetaOffc';
    src: url('../fonts/MetaOffc-Bold.ttf');
    src: url('../fonts/MetaOffc-Book.ttf') 
}

/*
COLORS
GREEN: #00713d
ORANGE: #b66611

BLUE: #00aeef;
YELLOW: #fddc00;
PINK: #ec008c

*/


body{
    background: url(../images/CoM-Libraries-Web-Portal-Background.png) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #ffffff;
    font-family: "Raleway", Arial, sans-serif; 
    font-weight: 400; 
    color: #101010; 
    line-height: 1.4;
    font-size: 16px;
	position: relative;
}

body:after{
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0,0,0,0.4);
	z-index:-1;
}
.header{
    background: rgb(16,16,16);
  background: linear-gradient(180deg, rgba(0,0,0,0.9) 15%, rgba(0,0,0,0) 100%);
    color: #ffffff;
}

.header .header-content{
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 128px;
    padding: 16px 0;
	border-bottom-style: solid;
	border-bottom-color: #0081b7;
    
}

.title-row{
    padding-top: 32px;
}

.logo{
    display: inline-block;
	
    width: auto;
    max-width: 100%;
    max-height: 96px;
    margin: 75px 64px 10px 50px;
}

.page-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 60vh;
    align-items: center;
    justify-content: center;
}

.page-body{
    width: 100%;
    padding-top: 32px;
}

.header-1{
    color: #fff;
    font-size: 2.75rem;
    padding: 0;
    margin: 100px;
    font-family: "Raleway", Arial, sans-serif; 
    letter-spacing: 2px;
}

.btn{
    display: block;
    padding: 16px;
    width: 80%;
    max-width: 256px;
    min-height: 256px;
    background-color: #e1f4fd;
    color: #18578c;
    margin: 0 auto 32px auto;
    position: relative;
    transition: all 250ms;
    font-size: 2.25rem;
    border-radius: 8px;
    border: #e1f4fd solid 4px;
    /*box-shadow: 0px 0px 5px 5px rgba(255, 255, 255, 0.4);*/
}


.btn.btn--type-1{
    background-color: #e1f4fd;
}

.btn.btn--type-2{
    background-color: #e1f4fd;
}

.btn.btn--type-3{
    background-color: #e1f4fd;
}
.btn:hover{
    background-color: #e1f4fd;
    color: #18578c;
    box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.2);
}
.btn.btn--type-1:hover{
    border-color: #18578c;
}

.btn.btn--type-2:hover{
    border-color: #18578c;
}

.btn.btn--type-3:hover{
    border-color: #18578c;
}

.btn img{
    display: block;
    width: 100%;
    max-width: 64px;
    margin: 32px auto 32px auto;
}

.btn span.btn-text{
    display: block;
    font-size:2.0rem;
	font-family: MetaOffc-Book.ttf;
}


@media(max-width: 992px){
    .page-container{
        height: auto;
    }

    .header .header-content{
        flex-direction: column;
        height: auto;
    }
    .header-1{
        font-size: 1.25rem;
    }

    .logo{
        max-width: 128px;
        margin-left: auto;
        margin-right: auto;
		
    }
}

@media(max-width:768px){
    .btn{
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
    }
}