/* RESETS AND LOADING FONT */
html {
	box-sizing: border-box;
	font-size: 16px;
}

html, body {
	font-family: 'Open Sans', Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}

*, *:before, *:after {
	box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
	margin: 0;
	padding: 0;
	font-weight: normal;
	line-height: 1.2;
}

ol, ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}

.contained {
	width: 100%;
	max-width: 1480px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}
.d-none {display:none !important;}
.inline-block {
	display: inline-block;
}
.showMobile,
.showMobileLg {
	display: none;
}

header#mainHeader {
	background: #fff;
	width: 100%;
	border-bottom: 10px solid #00b8f5;
}

header#mainHeader .contained {
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}


section#topHero {
	background: url(./imgs/top-banner-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 405px;
}



section#topHero .contained {
	height: 405px;
	display: flex;
	align-items: center;
}

section#topHero .contained h1 {
	width: 60%;
	color: #fff;
	font-size: 50px;
	font-weight: 300;
}

section#topHero .contained h1 span {
	color: #00b8f5;
	font-size: 60px;
	font-weight: 800;
}


section#adhdAdultsHero {
	background: url(./imgs/adhd-adults.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 450px 450px;
	width: 100%;
	height: 600px;
	max-width: 1480px;
    margin: auto;
}
section#adhdCaregiverHero {
	background: url(./imgs/tree.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 400px 450px;
	width: 100%;
	height: 600px;
	max-width: 1480px;
    margin: auto;
}

section#adhdAdultsHero .contained,
section#adhdCaregiverHero .contained {
	height: 600px;
	display: flex;
	align-items: center;
}

section#adhdAdultsHero .contained h1,
section#adhdCaregiverHero .contained h1 {
	width: 60%;
	color: #222;
	font-size: 50px;
	font-weight: 300;
}

section#adhdAdultsHero .contained h1 span,
section#adhdCaregiverHero .contained h1 span {
	color: #00b8f5;
	font-size: 60px;
	font-weight: 800;
}
section#adhdAdultsHero img,
section#adhdCaregiverHero img {
    margin: 10px auto 20px;
}
section#books {
	background: url(./imgs/bg-lines.svg);
	background-size: cover;
	padding-top: 50px;
	padding-bottom: 20px;
}

section#books .booksHeading {
	color: #07457c;
	font-size: 22px;
	font-weight: 800;
}

section#books .booksHeading a {
	color: #00b8f5;
}

section#books .booksWrapper {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
}

section#books .booksWrapper .book {
	background: #fff;
	width: calc(50% - 25px);
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.35);
	padding: 25px 35px;
	margin-bottom: 50px;
	display: flex;
	flex-direction: column;
}

section#books .booksWrapper .book:nth-child(odd) {
	margin-right: 25px;
}

section#books .booksWrapper .book:nth-child(even) {
	margin-left: 25px;
}

section#books .booksWrapper .book.purple {
	border-top: 25px solid #9f5e94;
}

section#books .booksWrapper .book.blue {
	border-top: 25px solid #00b8f5;
}

section#books .booksWrapper .book.green {
	border-top: 25px solid #3e7400;
}

section#books .booksWrapper .book h2 {
	font-size: 33px;
	line-height: 1.1;
}

section#books .booksWrapper .book.purple h2 {
	color: #9f5e94;
}

section#books .booksWrapper .book.blue h2 {
	color: #00b8f5;
}

section#books .booksWrapper .book.green h2 {
	color: #3e7400;
}

section#books .booksWrapper .book .contentWrapper {
	display: flex;
	margin-top: 40px;
	flex: 1;
}

section#books .booksWrapper .book .contentWrapper .content {
	width: 52%;
	padding: 0 20px 0 0;
	display: flex;
	flex-direction: column;
}

section#books .booksWrapper .book .contentWrapper .content p {
	line-height: 1.675;
}

section#books .booksWrapper .book .contentWrapper .content p span {
	text-decoration: underline;
}

section#books .booksWrapper .book .contentWrapper .content ul {
	line-height: 1.4;
	list-style-type: disc;
	margin-left: 20px;
}

section#books .booksWrapper .book .contentWrapper .content ul li {
	margin: 5px 0;
}

section#books .booksWrapper .book .contentWrapper img {
	width: 48%;
	align-self: flex-start;
}

section#books .booksWrapper .book .buttons {
	margin-top: 15px;
	flex: 1;
	display: flex;
	align-items: flex-end;
	padding-bottom: 30px;
}

section#books .booksWrapper .book .buttons a {
	width: 140px;
	background: #fff;
	text-decoration: none;
	text-align: center;
	line-height: 2rem;
	font-weight: 600;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
	display: inline-block;
	padding: 2px 0;
	margin: 15px 8px 0 0;
	border-radius: 6px;
	transition: all 300ms ease-in-out;
}

section#books .booksWrapper .book.purple .buttons a {
	color: #9f5e94;
	border: 2px solid #9f5e94;
}

section#books .booksWrapper .book.purple .buttons a:hover {
	background: #9f5e94;
	color: #fff;
	border: 2px solid transparent;
}

section#books .booksWrapper .book.blue .buttons a {
	color: #00b8f5;
	border: 2px solid #00b8f5;
}

section#books .booksWrapper .book.blue .buttons a:hover {
	background: #00b8f5;
	color: #fff;
	border: 2px solid transparent;
}

section#books .booksWrapper .book.green .buttons a {
	color: #3e7400;
	border: 2px solid #3e7400;
}

section#books .booksWrapper .book.green .buttons a:hover {
	background: #3e7400;
	color: #fff;
	border: 2px solid transparent;
}

section#resources {
	background: url(./imgs/bottom-banner-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	padding: 40px 0;
}

section#resources .contained {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

section#resources .contained h3,
section#resources .contained .content {
	width: 50%;
	padding: 0 30px;
}

section#resources .contained h3 {
	color: #00b8f5;
	font-size: 33px;
	font-weight: 800;
	text-transform: uppercase;
	text-align: right;
}

section#resources .contained .spacer {
	background: #fff;
	width: 3px;
	min-height: 120px;
}

section#resources .contained .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

section#resources .contained .content p {
	width: 100%;
	max-width: 520px;
	color: #fff;
	font-size: 18px;
	margin-bottom: 15px;
}

section#resources .contained .content p:last-child {
	margin-bottom: 0;
}

section#resources .contained .content a {
	color: #00b8f5;
}

section#about {
	background: linear-gradient(-45deg, #00b8f5, #88ebff);
	overflow: hidden;
}

section#about .contained {
	display: flex;
}

section#about .contained .content,
section#about .contained .imgContainer {
	width: 50%;
}

section#about .contained .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 30px 0;
}

section#about .contained .content h3 {
	color: #3e7400;
	font-size: 33px;
	font-weight: 800;
	text-transform: uppercase;
}

section#about .contained .content p {
	color: #07457c;
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: .25px;
	margin-bottom: 30px;
}

section#about .contained .content a {
	background: #9f5e94;
	color: #fff;
	text-decoration: none;
	line-height: 2rem;
	font-weight: 600;
	padding: 2px 15px;
	border-radius: 6px;
	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
	transition: all 300ms ease-in-out;
}

section#about .contained .content a:hover {
	background: #fff;
	color: #9f5e94;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}

section#about .contained .imgContainer {
	display: flex;
	justify-content: center;
}

section#about .contained .imgContainer img {
	height: 500px;
}

footer {
	background: #eeeeee;
	padding: 50px 0;
}

footer .contained {
	display: flex;
}

footer .contained .brandLogo,
footer .contained .content {
	width: 50%;
}

footer .contained .content {
	display: flex;
	flex-direction: column;
}

footer .contained .content a {
	color: #00b8f5;
	font-size: 18px;
	text-decoration: none;
	margin-bottom: 10px;
}

footer .contained .content small {
	font-size: 13px;
	line-height: 1.5;
}
.healthcare-popup {
    background: #fff;
    max-width: 520px;
    margin: auto;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
}
.healthcare-popup h2 {
	font-size: 2.375rem;
    margin-bottom: 30px;
    line-height: 1.1;
    font-family: "Avenir Next Bold Cond";
    color: #002758;
}
@font-face {
  font-family: 'Avenir Next Bold Cond';
  src: url('./font/Avenir-Next-Condensed-Bold.ttf') format('truetype');
}

.healthcare-popup .button {
    padding: 10px 60px 11px;
    background-color: #087baf;
    font-size: 18px;
    color: #fff;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    display: inline-block;
    vertical-align: top;
    font-family: "Gotham A",sans-serif;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    border: 0;
}
.healthcare-popup .button.button-close:focus,
.healthcare-popup .button.button-close:hover {
    background-color: #75426b;
}

.healthcare-popup .button:focus,
.healthcare-popup .button:hover {
    text-decoration: none;
    background-color: #06597e;
}
.healthcare-popup .button.button-close {
    background-color: #965489;
}
.form-popup {
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background: #fff;
}
.form-popup .form-item {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}
.form-popup label {
    width: 100%;
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #07457c;
}
.form-popup input:not([type="checkbox"]), .form-popup select {
    width: 100%;
    padding: 5px;
    line-height: 24px;
    height: 36px;
    box-sizing: border-box;
    border: 1px solid #07457c;
    font-size: 16px;
}
.form-popup button {
    background: #965489;
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    margin: 20px 0 0;
}
.form-popup button:hover {
	cursor: pointer;
	background: #75426b;
}
.popup-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 20px;
    color: #07457c;
}
input[type='checkbox'] {
    vertical-align: middle;
}
span.verify-hcp {
    font-size: 14px;
    line-height: 16px;
    vertical-align: middle;
}
span.req {
    font-size: 14px;
    font-weight: 600;
    vertical-align: text-bottom;
}
.hidden {
	display:  none !important;
}