
@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;
}


/*
COLORS
GREEN: #00713d
ORANGE: #b66611

BLUE: #00aeef;
YELLOW: #fddc00;
PINK: #ec008c

*/


body{
    /*background: url(../images/Black_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: #FFFFFF;
	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;
	margin-top: 100px;
}

.header .header-content{
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 128px;
    padding: 16px 0;
    
}

.title-row{
    padding-top: 32px;
}

.logo{
    display: inline-block;
    width: auto;
    max-width: 100%;
    max-height: 96px;
    margin: 16px 64px 16px 10px;
}

.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: 1.75rem;
    padding: 0;
    margin: 0;
    font-family: "Raleway", Arial, sans-serif; 
    letter-spacing: 2px;
}

.btn{
    display: block;
    padding: 16px;
    width: 80%;
    max-width: 300px;
    min-height: 150px;
    background-color: #00aeef;
    color: #FFFFFF;
    margin: 0 auto 32px auto;
    position: relative;
    transition: all 250ms;
    font-size: 1.25rem;
    border-radius: 8px;
    border: #000000 solid 4px;
    /*box-shadow: 0px 0px 5px 5px rgba(255, 255, 255, 0.4);*/
}


.btn.btn--type-1{
    background-color: #00C4BA;
}

.btn.btn--type-2{
    background-color: #E80065;
}

.btn.btn--type-3{
    background-color: #F88132;
}
.btn:hover{
    background-color: #5E1396;
    color: #FFFFFF;
    box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.2);
}
.btn.btn--type-1:hover{
    border-color: #000000;
}

.btn.btn--type-2:hover{
    border-color: #000000;
}

.btn.btn--type-3:hover{
    border-color: #000000;
}

.btn img{
    display: block;
    width: 100%;
    max-width: 64px;
    margin: 32px auto 32px auto;
}

.btn span.btn-text{
    display: block;
    font-size:1.125rem;
}

.flex-container{
    display: flex;
    flex: auto;
    flex-direction: row;
    justify-content: space-between;
    }

.footer-logo1{
    max-width: 698px;
    max-height: 361px;
    padding-bottom: 100px;
    padding-left: 25px;
}


.footer-logo2{
    max-width: 642px;
    max-height: 395px;
    padding-bottom: 150px;
    padding-right: 50px;
}

@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;
        align-items: center;
    }
    .flex-container{
        flex-direction: column;
        height: auto;
        width: auto;
       
    }
   
}