/* Font import */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');

/* html5doctor.com Reset Stylesheet */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

img {
    max-width: 100%;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}




/* Global */
body {
    background-color: #F5F5F5;
    font-family: 'Open Sans', sans-serif;
    color: #414042;
}
.container {
    width: 1000px;
    margin: 0 auto;
    max-width: 95%;
}

a {
    color: #265B8C;
    text-decoration: none;
}

h1, h2, h3, h4, h5 {
    line-height: 1.2em;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 36px;
    margin: 1em 0 .7em 0;
    font-weight: normal;
    color: #265B8C;
    text-align: center;
    font-family: adelle, serif;
    font-weight: 400;
    font-style: normal;
}

h3 {
    font-size: 25px;
    text-align: center;
    color: #414042;
    font-weight: normal;
    font-family: adelle, serif;
    font-style: italic;
}

.desktop-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

textarea {
    border: 2px solid #E6E7E8;
    font-size: 22px;
    color: #939598;
    padding: 0.5em;
    width: 100%;
    height: 180px;
    margin-bottom: 1em;
    margin-top: .5em;
}

select {
    border: 2px solid #DDDDDD;
    font-size: 22px;
    color: #939598;
    padding: 0.5em;
    width: 100%;
    margin-bottom: 1em;
    height: 50px;
    background-color: white;
}

header {
    margin-top: 50px;
    margin-bottom: 80px;
}

.thumbs-up {
    display: block;
    margin: -92px auto 0;
}

main {
    position: relative;
    background-color: white;
    padding: 32px;
    margin-bottom: 4em;
    border-radius: 1em;
    -webkit-box-shadow: 0px 0px 11px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 11px -1px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 11px -1px rgba(0,0,0,0.75);
}

.yellow-btn {
    background-color: #F99B25;
    color: white;
    border: 0;
    border-radius: 7px;
    padding: 13px 70px;
    font-size: 26px;
    font-weight: normal;
    margin: 0 auto;
    display: block;
}

.grey-bg {
    background-color: #E6E7E8;
    padding: 2em 1.5em 3em;
    border-radius: 0.5em;
}

footer {
    text-align: right;
    margin-bottom: 4em;
    margin-right: 2em;
}

footer p{
    margin-bottom: 1em;
}


@media (max-width: 768px){
    .desktop-only {
        display: none !important;
    }
		.container {
				max-width: 100%;
		}
    .mobile-only {
        display: block !important;
    }
    .two-col {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%; 
    }
    h1 {
        font-weight: normal;
        text-align: center;
        font-size: 24px;
    }
    h3 {
        text-align: center;
        font-size: 20px;
    }
    h4 {
        text-align: center;
        font-size: 20px;
    }
    main {
        border-radius: 0;
    }
    .hcpxchange-logo {
        margin: 0 auto;
        display: block;
    }
    .yellow-btn {
        width: 100%;
    }
    
    textarea {
        font-size: 18px;
    }
    .grey-bg {
        margin-bottom: 2em;
    }
    footer {
        text-align: left;
        margin-left: 10%;
        margin-right: 10%;
    }
}