
@font-face {
  font-family: 'Helvetica Neue';
  src:  url('../fonts/HelveticaNeueLTStd-Lt.otf')  format('opentype'),
        url('../fonts/HelveticaNeueLTStd-Lt.ttf')  format('truetype'), 
        url('../fonts/HelveticaNeueLTStd-Lt.svg#HelveticaNeueLTStd-Lt') format('svg');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src:  url('../fonts/HelveticaNeueLTStd-Roman.otf')  format('opentype'),
        url('../fonts/HelveticaNeueLTStd-Roman.ttf')  format('truetype'), 
        url('../fonts/HelveticaNeueLTStd-Roman.svg#HelveticaNeueLTStd-Roman') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src:  url('../fonts/HelveticaNeueLTStd-Md.otf')  format('opentype'),
        url('../fonts/HelveticaNeueLTStd-Md.ttf')  format('truetype'), 
        url('../fonts/HelveticaNeueLTStd-Md.svg#HelveticaNeueLTStd-Md') format('svg');
  font-weight: 500;
  font-style: normal;
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: subpixel-antialiased;
}


p {
	font-family: 'Lato', sans-serif;
    color: #383737;
	font-size: 16px;
	line-height: 22px;
}

a {
    color: inherit;
    text-decoration: none;
}

header {
    height: 26px;
    background: url(../../assets/gradient.jpg);
    overflow: hidden;
    background-size: 100%;
    position: absolute;
    top: 0;
    z-index: 99999;
    width: 100%;
}



main {
    /*padding-top:26px;*/
    flex: 1;
    background: white;
    display: flex;
    flex-direction: column;
}

footer {
    position: absolute;
    z-index: 10;
    bottom: 0;
}

footer p {
    color: #fff;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 300;
}

footer > .hero-footer {
    float: left;
    width: 70%;
    background-color: #1566AC;
    padding: 25px 40px;
    box-sizing: border-box;
}


footer > .portal-footer {
    background-color: #D0E6F8;
    float: right;
    width: 30%;
}


h2 {
	color: #1566AC;
	font-family: 'Lato', sans-serif;
	font-size: 36px;
	font-weight: bold;
    overflow: visible;
}

h1 {
	color: #1566AC;
    font-family: 'Lato', sans-serif;
    font-size: 36px;
    font-weight: bold;
    overflow: visible;
}

h3 {
    color: black;
	font-family: 'Lato', sans-serif;
	font-size: 30px;
	font-weight: bold;
    padding-top: 30px;
    overflow: visible;
}

h4 {
    color: black;
	font-family: 'Lato', sans-serif;
	font-weight: bold;
    overflow: visible;
}

a:hover {
    text-decoration: underline;
}

a:active {
    text-decoration: underline;
}

form {
    padding: 10px 0;
}


button,
.btn {
    cursor: pointer;
    height: 36px;
    margin-right: 20px;
    border: 0;
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 0.85em;
    margin-bottom: 10px;
    width: auto;
    border-radius: 2px;
    padding: 5px 30px;
    background-color: #1566AC;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

select::-ms-expand {
    display: none;
}

/* Small Desktop */
@media screen and (min-width: 1200px) and (max-width: 1600px) {
    footer > .portal-footer {
        min-width: 480px;
    }

    footer > .hero-footer {
        width: calc(100% - 480px);
    }
}

/* Tablet */
@media screen and (max-width: 1199px) {
    main {
        display: block;
    }


    footer {
        position: initial;
    }
    
    footer > .hero-footer {
        float: none;
        width: 100%;
        border-top: 10px solid #D0E6F8;
    }
}

@media screen and (max-width: 767px) {
    button {
        width: 100%;
    }

    footer > .hero-footer {
        border-top: 10px solid #D0E6F8;
        width: 100%;
    }

    body, html {
        overflow-y: auto;
        overflow-x: auto;
        height: auto;
    }

    main {
        min-height: calc(100vh - 70px);
    }

    button {
		padding-left: 10px;
        margin-bottom: 20px;
	}

    h2 {
        font-size: 32px;
    }
}