/* GLOBAL STYLES */
html {
	box-sizing: border-box;
	width:100%;
	height:100%;
	margin:0;
	padding:0;
}

body {
	width:100%;
	min-height:100%;
	padding: 10px;
	margin:0;
	box-sizing: border-box;
	color: #323e48;
	background: #ffffff;
	font-family: 'robotolight';
	font-size: 16px;
	line-height: 1.6em;
	overflow-x: hidden;
}

body.active-nav{
	overflow-x: hidden;
	position: fixed;
}

body.active-modal {
	overflow: hidden;
	position: static;
}

div,
img {
	display: block;
}

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

p {
	margin: 0;
	margin-bottom: 15px;
}

p:last-child {
	margin-bottom: 0;
}

p strong {
	font-family: 'robotobold';
}

h1,h2,h3,h4,h5,h6 {
	margin: 0;
	padding: 0;
	margin-bottom: 10px;
}

h1 {
	font-family: 'ridleyThin';
	font-size: 2em;
	line-height: 1.3em;
	letter-spacing: -.5px;
}

h2 {
	font-family: 'ridleyThin';
	font-size: 1.5em;
	line-height: 1.2em;
}

h3 {
	font-family: 'ridleyThin';
	font-size: 1.17em;
	line-height: 1.3em;
}

h4 {
	font-family: 'robotoLight';
	font-size: 1em;
}

h5 {
	font-size: .83em;
}

h6 {
	font-size: .67em;
}

h1 strong, h2 strong, h3 strong {
	font-family: 'ridleyBold';
}

a,
a:hover {
	text-decoration: none;
}

a {
	color: #00aeef;
	transition: .3s ease;
}

hr {
	border-top: 1px solid #f3f3f3;
    margin: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    margin: 30px 0;
}

hr.no-margin {
    margin: 0;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.list-50 li {
	display: inline-block;
	width: 48%;
	vertical-align: top;
	margin-right: 3%;
}

ul.list-50 li:nth-child(2n) {
	margin-right: 0;
}

.article-single-post-content ul li,
.content-full-editor ul li,
.content-video-left ul li, 
.content-video-right ul li,
.content-image-left ul li,
.content-image-right ul li,
.individual-level ul li,
ul.list-50 li {
	position: relative;
	padding: 0 0 0 15px;
	margin-bottom: 6px;
	box-sizing: border-box;
}

.article-single-post-content ul li:before,
.content-full-editor ul li:before,
.content-video-left ul li:before, 
.content-video-right ul li:before,
.content-image-left ul li:before,
.content-image-right ul li:before,
.individual-level ul li:before,
ul.list-50 li:before {
	display: block;
	position: absolute;
	left: 0;
	top: 7.5px;
	content: '';
	background-image: url('../../svg/ul-square.svg');
	background-size: 6px 6px;
	background-repeat: no-repeat;
	background-position: center center;
	width: 6px;
	height: 6px;
}

ul.list-50 li:before {
	background-image: url('../../svg/ul-square.svg');
}

ul.white li:before {
	background-image: url('../../svg/ul-square-white.svg');
}

ol {
	margin: 0;
	padding: 0 0 0 18px; 
}

ol li {
	padding: 0 0 6px 5px;
}

.align-left {
	text-align: left;
}

.align-center {
	text-align: center;
}

.aligncenter {
	margin: 0 auto;
}

.align-right {
	text-align: right;
}

.padding-left-50 {
	padding-left: 50px;
}

.padding-right-50 {
	padding-right: 50px;
}

.padding-bottom-30 {
	padding-bottom: 30px;
}

.padding-right-30 {
	padding-right: 30px;
}

.margin-bottom-60 {
	margin-bottom: 60px;
}

a.btn {
	display: inline-block;
	position: relative;
	font-family: 'ridleyBold';
    padding: 10px 15px;
    background: transparent;
    border: 2px solid #00aeef;
    color: #000000;
    text-transform: uppercase;
    letter-spacing:1px;
    transition: .3s ease;
    box-sizing: border-box;
}

.btn:hover {
	background: #00aeef;
	color: #ffffff;
}

.btn-solid,
.btn-solid-white {
	display: inline-block;
	position: relative;
	font-family: 'ridleyBold';
    padding: 8px 13px!important;
    background: #00aeef;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing:1px;
    transition: .3s ease;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 4px;
}

.btn-solid-white {
	background: #ffffff;
	color: #00aeef;
}

.btn-solid:hover {
	background: #323e48;
}

.btn-solid-white:hover {
	color: #ffffff;
	background: #323e48;
}

.btn-simple,
.btn-simple-white {
	display: inline-block;
	position: relative;
	font-family: 'ridleyBold';
    padding-right: 30px;
    color: #000000;
    text-transform: uppercase;
    transition: .3s ease;
    box-sizing: border-box;
}

.btn-simple:after,
.btn-simple-white:after {
	display: block;
	position: absolute;
	top: 0;
	right: 5px;
	font-family: 'rekon-icons';
	content: '\e907';
	font-size: 16px;
	color: #00aeef;
	transition: .3s ease;
}

.btn-simple-white {
	color: #ffffff;
}

.btn-simple:hover:after,
.btn-simple-white:hover:after {
	right: 0;
}

.scroll-top {
	display: none;
	position: fixed;
	bottom: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	background: rgba(0,174, 239,.9);
}

.scroll-top.active {
	display: block;
}

.scroll-top:before {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	content: '';
	background-image: url('../../svg/chevron-up-white.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 20px;
	height: 15px;
		
}

blockquote {
	font-family: 'ridleyLight';
	font-size: 1.2em;
	background: #f9f9f9;
	margin: 30px 0;
	border-left: solid 4px #00aeef !important;
	padding: 22px 25px !important;
}

.modal-overlay,
.rekon-events-modal-overlay {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	visibility: hidden;
	background: rgba(255,255,255,0.98);
	opacity: 0;
	transition: .3s ease;
	z-index: 10000;
	overflow: auto;
}

.active-modal .modal-overlay,
.rekon-events-active-modal .rekon-events-modal-overlay {
	visibility: visible;
	opacity: 1;
}

.modal-close {
	display: none;
	position: absolute;
	top: 30px;
	right: 30px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	transition: opacity .5s ease;
	z-index: 10000;
}

.modal-close:before {
	display: block;
	position: absolute;
	top:0;
	left: 0;
	font-family: 'rekon-icons';
	content: "\e915";
	font-size: 30px;
	color: #323e48;
}

.active-modal .modal-close,
.rekon-events-active-modal .modal-close {
	display: block;
}

.resources-cont {
	padding: 50px;
	overflow-y: scroll;
	-webkit-overflow-y: scroll;
}



.black-overlay {
	display: block;
	position: absolute;
	top:0;
	left:0;
	background: rgba(0,0,0,0.7);
	width: 100%;
	height: 100%;
}

.white-overlay {
	display: block;
	position: absolute;
	top:0;
	left:0;
	background: rgba(255,255,255,0.7);
	width: 100%;
	height: 100%;
}

.blue-overlay {
	display: block;
	position: absolute;
	top:0;
	left:0;
	background: rgba(0,174,239,0.7);
	width: 100%;
	height: 100%;

}

/* SITE PADDINGS */
.row-padding-small {
	padding: 30px 0;
}

.row-padding-small-bottom {
	padding: 0 0 30px 0;
}

.row-padding-large,
.row-padding {
	padding: 60px 0;
}

.row-padding-large-top,
.row-padding-large-top-footer {
	padding: 120px 0 60px 0;
}

.row-padding-large-bottom {
	padding: 60px 0 120px 0;
}

.row-padding-large-tb {
	padding: 120px 0 120px 0;
}

.row-padding-top,
.row-padding-large-top-pad {
	padding: 60px 0 0 0;
}

.row-padding-bottom,
.row-padding-large-bottom-pad {
	padding: 0 0 60px 0;
}

.row-padding-large-no-pad {
	padding: 0;
}

.padding-left-30 {
	padding-left: 30px;
}

.padding-top-100 {
	padding-top: 100px;
}

.padding-bottom-100 {
	padding-bottom: 100px;
}

.margin-bottom-60 {
	margin-bottom: 60px;
}

.no-desktop {
	display: none;
}

/* Medium */
@media only screen and (max-width : 768px) {
	h1 {
	font-size: 2.2em;
	}
	
	h2 {
		font-size: 1.8em;
	}
	
	h3 {
		font-size: 1.6em;
	}
	
	ul.list-50 li {
		width: 100%;
	}
	
	.padding-left-50 {
		padding-left: 0;
	}
}