/*

Theme Name: 2020 Eli Review Marketing Site
Theme URI: http://elireview.com
Author: Mike McLeod - Updates by CiesaDesign 08-2020
Author URI: http://mcleodm3.org
Description: Updates to the 2016 marketing site to improve responsiveness, support more resources, improve aesthetics.
Version: 1.5
License: None, all rights reserved.
License URI: http://elireview.com
Text Domain: marketingsite2020
*/



/* TEMPORARY STYLES FOR ITERIM PROBLEMS */


/* dealing with the ugly bedford videos for right now */


/* set the ugly screenr videos to full size */

.sidevideo {

	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	margin:40px 0;
}

.sidevideo iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}




/* END TEMP JUNK STYLES */

/*
input, textarea, select {
   -webkit-appearance: none;
}
*/



/*REQUIRED JUNK SETTINGS FOR WORDPRESS*/

.sticky {}
.screen-reader-text {}
.bypostauthor {}




@font-face { 
	font-family: 'Bitter Bold'; 
	src: url('../otf/bitter-bold.otf'); 
} 

@font-face { 
	font-family: 'Bitter Italic'; 
	src: url('../otf/bitter-italic.otf'); 
} 

@font-face {
  font-family: 'Bitter';
  src: url('../otf/bitter-regular.otf');
}


body, html {
  margin: 0px;
  padding: 0px;
  height: 100%;
  width: 100%;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, Sans-serif;
}

body {
  margin-top: -21px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Bitter", serif;
}

p, ul li, ol li {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}


a:link,
a:visited {
  /* color: #0090d0; */
  color: #1960b4;
}

a:hover,
a:focus {
  color: #D63D00;
}

.subheadspacer {
	font-weight: 800;
	margin-top: 35px;
	font-size: 30px;
}





/* MEDIA QUERIES - LAYOUT STRUCTURE */

/* @media (min-width: 1200px) and (max-width: 1250px) {
  .row {padding-left: 20px; padding-right: 20px; width: 1155px;}
}

@media (min-width: 1200px) and (max-width: 1200px) {
  .row {width: 973px;}
} */

@media (max-width: 1200px) {

  .subpage_header {
    padding-top: 10px;
    height: 115px !important;
  }

} 

@media (max-width: 960px) {

}

@media (max-width: 770px) {
 
  .entry-content .third {
     	width: 100%;    
  }
  .entry-content .two-thirds {
     	width: 100%;    
  }

  .frm-show-form {
	width: 90%;
    	margin: 0 auto;
  }
  .frm-show-form .frm_submit {
	text-align: center;
  }
  .frm-show-form .frm_submit input {
	margin: 20px 0 0 !important;
  }
}



/* STYLES FOR SUB-PAGES */ 

.subpage_header {
  background: #1960b4;
  height: 130px;
}






/*RESPONSIVE CONTAINERS FOR IMAGES AND VIDEO */


img.size-full {
    width: 100%;
    height: auto;
    line-height: 0 !important;
}



.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}




/* lists with style */


ul.fancylist {
    list-style-type: none;
}

ul.fancylist > li {
    position: relative;
    padding-left: 0.5em;
}

ul.fancylist > li:before {
    /* Unicode bullet symbol */
    content: '⦿';
    /* Bullet color */
    color: #ff8c50;
    position: absolute;
    left: -1em;
    width: 0.8em;
    font-weight: bold;
    text-align: right;
}


ol.fancycount {
    list-style-type: none;
    list-style-type: decimal !ie; /*IE 7- hack*/
    padding: 0;
    counter-reset: li-counter;
}
ol.fancycount > li {
    position: relative;
    padding-left: 0.5em;
    line-height: 1.5em;
}
ol.fancycount > li:before {
    position: absolute;
    left: -1em;
    width: 0.8em;
    font-weight: bold;
    text-align: right;
    color: #ff8c50;
    content: counter(li-counter) ". ";
    counter-increment: li-counter;
}



ul.fancylist, ol.fancycount {
    margin: 0 0 0 30px;
    padding:10px 20px 10px 0;
}

ol.fancycount > li:not(:last-child), ul.fancylist > li:not(:last-child) {
	margin-bottom: 25px;
}

ul.fancylist ul, ol.fancycount ul {
	margin:10px 0;
}

ol.fancycount > li.youarehere::before {
    counter-increment: li-counter 1;
    color: rgb(241, 105, 32);
    content: "✔ ";
}


/* STYLES FOR "BACK-TO-TOP" ARROW */

.gototop  { 
	display:none; 
	position:fixed; 
	right:50px; 
	bottom:30px; 
	color:#ff8c50; 
	font-weight:bold; 
	font-size: 3.0em;
	text-decoration:none; 
	margin: 0;
}

.gototop a	{
	opacity: .6;	
}

.gototop a:hover	{
	opacity: 1.0;
}



/* STYLES FOR BASIC TABLES IN THE BLOG */


.basictable {
	margin:30px;
	border:2px solid #175fb3;
	border-collapse: collapse;
	counter-reset: section;
}

.basictable th {
	background-color: #175fb3;
	color: white;
	text-align: left;
	margin:0;
	padding:10px 20px;
	font-weight: normal;
	 font-family: Bitter, serif;
}

.basictable td {
	vertical-align: top;
}

.basictable td ol {
	counter-increment: section !important;
}

.basictable td:first-of-type {
	width:45%;
}

.basictable ol li:before {
	content: counter(section) '. ' !important;
}







/* STYLES FOR REUSABLE RESOURCE BOXES */


/* RESOURCE TABLES */


.resource_table {
	width:100%;
	margin:30px auto;
	
}

.resource_cell {
	border:2px solid #1960b4;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;	
	margin-bottom: 50px;
}

.resource_header {
	color:#fff;
	background-color: #1960b4;
	margin:0 !important;
	padding:10px !important;
	font-weight: bold;
}

.resource_image {
	display: block;
	width: 25px;
	height: 25px;
	float: left;
	left: -1px;
	padding-right: 15px;
	position: relative;
}


.resource_pedagogy {
 	background: url('../png/ico_pedagogy.png') no-repeat 10% 10%;
}

.resource_technology {
 	background: url('../png/ico_technology.png') no-repeat 10% 10%;
}

.resource_resources {
 	background: url('../png/ico_resources.png') no-repeat 10% 10%;
}

.resource_list {
	margin:0;
	list-style-type: none;
	padding:10px;
}

.resource_list a {
	font-weight: bold;
}

.resource_list li:not(:last-of-type) {
	margin-bottom: 20px;
}

@media only screen and (min-width: 800px) {
	.resource_table_columns { display: table; border-spacing:10px; }
	.resource_table_columns .resource_cell { display:table-cell; width: 33.3%; height: 6em;}
	.resource_list li { font-size: 14px; }

	.resource_list {
		font-family: "Open Sans", "Helvetica Neue", sans-serif;
		line-height: 1.5em;
	}
}








/* RESPONSIVE IMAGES AND VIDEOS WITH DROP SHADOWS */

.alignright {
	float: right;
	margin:0 0 20px 20px;
}

.alignleft {
	float: right;
	margin:0 20px 20px 0;
}


.aligncenter {
	width: 100%;
}



.responsive_image_caption:before, .responsive_image_caption:after, .videoWrapper:before, .videoWrapper:after {
    content:"";
    position:absolute;
    z-index:-1;
    -webkit-box-shadow:0 0 20px rgba(35,57,65,0.8);
    -moz-box-shadow:0 0 20px rgba(35,57,65,0.8);
    box-shadow:0 0 20px rgba(35,57,65,0.8);
    top:50%;
    bottom:0;
    left:10px;
    right:10px;
    -moz-border-radius:100px / 10px;
    border-radius:100px / 10px;
}
.responsive_image_caption:after {
    right:10px;
    left:auto;
    -webkit-transform:skew(8deg) rotate(3deg);
       -moz-transform:skew(8deg) rotate(3deg);
        -ms-transform:skew(8deg) rotate(3deg);
         -o-transform:skew(8deg) rotate(3deg);
            transform:skew(8deg) rotate(3deg);
}

.responsive_image_caption, .videoWrapper {
  display: block;
  width: 100%;
	margin:40px 0 !important;
	padding:0;
    position:relative;
    -webkit-box-shadow:0 1px 4px rgba(35,57,65, 0.3), 0 0 40px rgba(35,57,65, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(35,57,65, 0.3), 0 0 40px rgba(35,57,65, 0.1) inset;
            box-shadow:0 1px 4px rgba(35,57,65, 0.3), 0 0 40px rgba(35,57,65, 0.1) inset;
}

.responsive_caption, figure.alignright figcaption {
	background-color: #f0f1f5;
	margin-top: -10px;
	font-style: italic;
	padding:20px;
	color: #a7a7a7;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display:block;
}








/* GALLERIES */

.gallery {
	margin-left: -0.5em;
	margin-right: -0.5em;
	background-color: #f0f1f5;
}
 
.gallery:after {
	display: table;
	content: "";
	clear: both;
}
 
.gallery-item {
	margin: 0;
	float: left;
	padding: 0.5em;
}
 
.gallery-item img {
	width: 100%;
	height: auto;
}
 
.gallery-columns-1 .gallery-item {
    width: 100%;
    float: none;
}
.gallery-columns-2 .gallery-item {
    width: 48%
}
.gallery-columns-3 .gallery-item {
    width: 31%
}
.gallery-columns-4 .gallery-item {
    width: 23%
}
.gallery-columns-5 .gallery-item {
    width: 18%
}
.gallery-columns-6 .gallery-item {
    width: 15%
}
.gallery-columns-7 .gallery-item {
    width: 13%
}
.gallery-columns-8 .gallery-item {
    width: 11%
}
.gallery-columns-9 .gallery-item {
    width: 10%
}
 
.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
	clear: left;
}


.gallery-caption {
	font-style: italic;
	color: #a7a7a7;
	line-height: 1.3em !important;
}




/*BASIC TABLES - THIS TIME GET IT RIGHT*/




.simpletable {
    border-collapse: collapse;
    border-spacing: 0;
    width:100%;
    font-family: 'Open Sans', sans-serif !important;
    line-height: 1.8em !important;
    font-size: 15px !important;
    color: #43545b;    
}


.simpletable > thead {
    background: #ebeae9;
}


.simpletable td, .simpletable th {
	vertical-align: top !important;
	text-align: left;
    padding:20px;
}


.simpletable > tbody > tr > th {
     text-align: left;
}

.ultrasimpletable {
	font-size: 14px !important;
	border:2px solid #43545b;
	margin:20px 0;
}

.ultrasimpletable th, .ultrasimpletable td {
	border:1px solid #43545b;
}


.ultrasimpletable > tbody > tr > th:first-child, .ultrasimpletable > tbody > tr > td:first-child {
     width:250px !important;
}

.ultrasimpletable > tbody > tr > th:not(:first-child), .ultrasimpletable > tbody > tr > td:not(:first-child) {
     text-align: center !important;
}


/* HTML FOR LEAD FORMS */

.no-bottom-margin {
  margin-bottom: 0px !important;
}
.checkbox-label {
  color: #434343;
 font-size: 15px !important;
 margin-bottom: 0px !important;
 margin-top: 13px;
 
}


#nextstepform h2 {
	margin: 0 !important;
    font-weight: 800;
    font-size: 32px;
}

#nextstepform h2 + p {
	margin-bottom: 30px;
}

#nextstepform h3 {
	margin: 0 0 20px 0 !important;
}

#nextstepform .frm-show-form {
	width: 100% !important;
}

#nextstepform {
    margin-top: 50px;
    padding-top: 30px;
	box-sizing: border-box;
}


#nextstepform .checkbox-label {
	margin-top: 20px;
}

.space-above {
  margin-top: 20px;
}



.questionblock {
	font-family: "Bitter Bold", 'Open Sans', sans-serif;
	font-size: 18px;
	padding-top: 30px;
	display: block;	
	line-height: 1.83em;
}


span.question {
	font-family: "Bitter Bold", 'Open Sans', sans-serif;
	font-size: 18px;
	padding-top: 20px;
	display: block;
}

#nextstepform .frm_form_field.frm_set  {
	margin-left: 20px;
}

#nextstepform .checkbox-label {
	margin-bottom: 10px !important;	
	font-weight: bold;
}

#nextstepform fieldset {
	border:none;
	padding:0;
}

#nextstepform {
	color: #434343;
    font-size: 15px !important;
font-family: 'Open Sans', sans-serif !important;
    line-height: 1.8em !important;
    font-size: 15px !important;
    color: #43545b;
}

#nextstepform  .recaptchabox {
	margin-left: 20px;
}


#nextstepform .frm_submit input[type="submit"] {
        font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, Sans-serif;
    border: 3px solid #F16C48;
    border-radius: 100px;
    padding: 8px 0;
    width:300px;
    background-color: transparent;
    font-size: 14px;
    cursor: pointer;
    margin-top: 30px;
}


#nextstepform .frm_submit input[type="submit"]:hover {
    background-color: #F16C48;
    color: #fff;
}



#nextstepform .frm_form_field input[type="text"], #nextstepform .frm_form_field input[type="email"], #nextstepform .frm_form_field textarea {
	width: 100%;
    padding: 10px;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    background: transparent;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
	box-sizing: border-box;
}

#nextstepform .frm_form_field textarea {
	height: 100px;
}


/* NEW FOOTER DESIGN */



.global_footer {
	background: #2C2C2C;
    padding: 25px 0px 50px 0;
    font-size: 14px;
    border-top: 10px solid #175fb3;
}


.global_footer a {
	color: #fff;
	text-decoration: none;
}


.wrapper {
  display: flex;  
  flex-flow: row wrap; 
}

.wrapper > * {
  padding: 10px;
  flex: 1 100%;
}



@media all and (max-width: 450px) {
  .navLinks ul { display: none; }
  .navLinks p {text-align: center;}
}


@media all and (max-width: 959px) {
  .footerabout { display: none; }
  .footerlinkbox { padding-bottom: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: 20px; }
}


@media all and (min-width: 770px) {
  .global_footer .footer-aside { flex: 1 auto; }
  .global_footer .footer-aside.logo { display: none; }
}

@media all and (min-width: 960px) {
  .main    { flex: 3 0px; }
  .main    { order: 2; }
  .global_footer .footer-aside { order: 3; max-width:275px;; align-items: center; justify-content: space-around; }
  .footermenus { padding-bottom: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: 20px; }
}


.global_footer .footer-aside {
	display: flex;
	flex-direction: column;
	justify-content: center;
	
}


.navLinkContainer {
	  display: flex;  
	  flex-direction: row;
	  justify-content: flex-start;
	  flex-wrap: nowrap;
	  align-items: stretch;
}



.navLinks {
	flex-grow: 1;
}

.navLinks p {
	text-transform: uppercase;
	  margin: 0 0 10px 0;
}

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

.navLinks li:not(:last-child) {
	margin-bottom: 10px;
}

.navLinks li a {
	color: #9FA3A7;
}

.navLinks a:hover, .footer-icons a:hover {
	color: #F16C48;
}

.footer-icons span {
	display: none;
}


.footer-subscribe {
	border: 3px solid #F16C48;
	border-radius: 100px;
	padding:8px 0;
	text-transform: uppercase;	
}

.footer-subscribe:hover {
	background-color: #F16C48;
	
}


.footer-icons {
	  margin: 0;
	  padding:0;
	  display: flex;  
	  flex-direction: row;
	  justify-content: space-between;
	  flex-wrap: nowrap;
	  align-items: flex-start;
	  list-style-type: none;
	  margin-bottom: 20px;
}

.footer-icons li {
	flex-grow: 1;
}

.footer-icons a {
	font-size: 25px;
}

.footer-social-box {
	width: 100%;
	text-align: center;
}

.footer-social p {
	font-size: 12px;
}

.global_footer .about p:first-of-type {
	text-transform: uppercase;
}

.global_footer .about p:not(:first-of-type) {
	color: #9FA3A7 !important;
}

.global_footer .about a {
	color: #F16C48;
}


.global_footer p {
	color: #fff;
}


.footerabout img {
	width:100%;
}

/* NEW STYLES FOR HEADER */

.header_section {
  background: #1960b4;
}


#logo{
	float: left;
	display: block;
}

#logo img {
	width: auto;
	height: 85px;
}

.header-container .banner-nav {
	float: right;
}


#menu-icon {

	display: hidden;
	width: 40px;
	height: 40px;
	background: #4C8FEC url('../svg/menu-icon.svg') center;
	top:20px;
    color: transparent; 

}


a:hover#menu-icon {

	background-color: #444;
	border-radius: 4px 4px 0 0;
}

.header-container .banner-nav ul {
	position: relative;
	list-style: none;
	top:15px;

}

.header-container .banner-nav li {

	display: inline-block;
	float: left;

}

.ubermenu-searchform {
	background: none !important;
}

input.ubermenu-search-input {
	border: 1px solid rgba(0, 0, 0, 0.3) !important;
	border-radius: 4px !important;
	background-color:#fff !important;
}

.subpage-ubermenu-container {
  /* background-color: #3fa9f4; */
  background-color: #0975C3;
}



/*MEDIA QUERY*/

@media only screen and (min-width : 699px) {

	.header-container .banner-nav a:not([title]) {
		display: none;
	}
	
	


	.header-container .banner-nav a[title="signin"], .header-container .banner-nav a[title="signup"] {
	    color: #fff !important;
	    text-decoration: none;
	    text-transform: uppercase;
	    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	    transition: 0.2s;
	    font-size: 13px;
	    
	    transition: 0.2s;
	    cursor: pointer;
	    display:inline-block;
	    border-radius: 100px;
	}
	
	
	.header-container .banner-nav a[title="signin"] {
	    background: transparent;
		border: 1px solid #fff;
	    margin-right: 20px;
	    padding: 10px 20px;
	}
	
	.header-container .banner-nav a[title="signin"]:hover {
	    background: rgba(255,255,255,0.2);
	}
	
	
	.header-container .banner-nav a[title="signup"] {
	    position: relative;
	    padding: 10px 45px 10px 20px;
		border: 1px solid #fff;
	}
	
	
	.header-container .banner-nav a[title="signup"]:after {
	    font-family: 'icomoon';
	    right: 20px;
	    top: 14px;
	    width: 1em;
	    position: absolute;
	    content: '\e60a';
	    font-size: 14px;
	}
	
	.header-container .banner-nav a[title="signup"]:hover {
	    
	    background: rgba(255,255,255,0.2);
	}
	

}


@media only screen and (max-width:700px) {

	a.ubermenu-responsive-toggle {
		display: none !important;
	}

	.header-container {

	}

	#menu-icon {

		display:inline-block;
		position: relative;
		top:20px;

	}

	.header-container .banner-nav ul, .header-container .banner-nav:active ul { 

		display: none;
		position: absolute;
		background: #fff;
		border: 5px solid #444;
		right: 0px;
		top: 40px;
		width: 50%;
		border-radius: 4px 0 4px 4px;
		padding:0;

	}

	.header-container .banner-nav li {

		text-align: center;
		width: 100%;
		padding: 10px 0;
		margin: 0;

	}

	.header-container .banner-nav a { 
		text-decoration: none;
	}


	.header-container .banner-nav li:nth-child(even) {

		background-color: #f6f6f6;

	}


	.header-container .banner-nav:hover ul,  .header-container .banner-nav:active ul {

		display: block;
		z-index: 1000000000;

	}



}





/* SUBPAGE HEADER AND BOX USEFULNESS */

.subpage {
	margin: 50px auto !important;
}



@media (min-width: 1200px) {

}


@media (max-width: 1200px) {

}

@media (min-width: 961px) {
	.subpage {
		/* width: 960px;
		margin: auto; */
	}
}

@media (max-width: 960px) {
	.subpage { padding: 0 50px 20px 50px; }
}

@media (min-width: 701px) {
	.subpage-header { font-size: 50px; margin-bottom: 20px; }
}


@media (max-width: 700px) {
	.subpage-header { font-size: 32px; margin-bottom: 10px;  }	
}


@media (max-width: 450px) {
	.subpage { padding: 0 20px 20px 20px; }
	.subpage { margin: 30px auto !important; }
}

.subpage-header {
	color: #1960b4;
	margin:0;
}

.subpage-subheader {
  font-weight: 100;
  font-size: 34px;
  color: #54666e;
  margin-bottom: 20px;
  line-height: 2em;	
}





/* INSTRUCTOR PROFILES IN UBERMENU */
	


a[title="teacherstories"] .ubermenu-target-text {
	display:none;
}



.dropdownprofilemug {
	width:100%;
	height: auto;
	border: 4px solid #fff;
    border-radius: 100%;
    box-sizing: border-box;
    -webkit-box-shadow: 0 1px 4px rgba(35,57,65, 0.3), 0 0 40px rgba(35,57,65, 0.1) inset;
    -moz-box-shadow: 0 1px 4px rgba(35,57,65, 0.3), 0 0 40px rgba(35,57,65, 0.1) inset;
    box-shadow: 0 1px 4px rgba(35,57,65, 0.3), 0 0 40px rgba(35,57,65, 0.1) inset;
    opacity: 0.7;
}


.dropdownprofilemug:hover {
	border: 4px solid #f16c48;
	opacity: 1;
}

.dropdownbio {
	font-weight: normal !important;
	text-align: center;
}

.dropdownbio_name {
	font-weight: bold;
}

.ubermenu-row-id-5621 {
	text-align: center;
}

.ubermenu-divider {
	padding: 10px 0 !important;
}

.ubermenu-row-id-5566_auto_1 {
	margin-bottom: 0 !important;
}

.ubermenu-row-id-5621 {
	margin-bottom: 0 !important;
}

.ubermenu-row-id-5621 .ubermenu-custom-content {
	text-align: center;
	color: #444444;
	font-size: 14px;
}



.menu-item-5593 iframe{
  width:100%;
  height: auto;
}






/* DEFAULT FLEXBOX STYLING */

.flexbasic {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	margin:20px 0;
}

.flexcell {
	flex-grow: 1;
	border:1px solid #d6d6d6;
	border-radius: 4px;
	padding:10px;
}

.flexcell > * {
	margin-top: 0;
}


.flexcell.flexhalves {
	width:47%;
	border:1px solid #2C2C2C;
}

.flexcell.flexhalves:not(:last-child) {
	margin-right: 10px;
}


.flexcell.flexthirds {
	width:28%;
}

.flexcell.flexthirds:not(:last-child) {
	margin-right: 10px;
}

@media (max-width: 700px) {
	.flexbasic { flex-direction: column; }
	.flexcell { width: 100% !important; padding:10px 0 !important; border:0 !important; }
}



/* A FEW ELEMENTS FOR THE 'LEARN' PAGE */

article.learn h2 {
	margin-bottom: 0;
}

article.learn h2 + p {
	margin-top: 0;
}

article.learn ul {
	padding-left: 20px;
}


/* FREE TRIAL FOOTER */

.trial-ad {
	background-color: #F2F2F2;
	padding:20px !important;
	text-align: center;
	color: #43545b;
	border:5px solid white;
	outline: solid 6px #F2F2F2;
	width: 100%;
	box-sizing: border-box;
	margin-top: 50px;
}

.trial-header {
	margin-top: 0 !important;
	font-family: "Bitter Bold", sans-serif;
}

.trial-bulb {
	width:75px;
	height: auto;
	margin-bottom: 20px;
}

.trial-button {
	background: #9B9B9B;
	border: 1px solid #979797;
	border-radius: 100px;
	padding:5px 15px;
	margin:5px 0;
	font-family: OpenSans;
	font-size: 15px;
	color: #FFFFFF;
	cursor: pointer;
}

.trial-ad p:last-child {
	margin-bottom: 0;
}

@media (max-width: 700px) {
	.wide-break {
		display: none;
	}
}

@media (min-width: 700px) {
	.narrow-break {
		display: none;
	}
}



.tribe-events-list-separator-month {
	display:block;
	padding:10px;
	background-color: #eee;
	margin: 50px 0 30px 0;
	font-weight: bold;
}


.calendar-list-title {
	margin-bottom: 0;
}

.calendar-dates-subheader {
	margin-top: 0;
	font-weight: bold;
	font-size: 1em;
}

.tribe-events-list-event-description {
    font-family: 'Open Sans', sans-serif !important;
    line-height: 1.8em !important;
    font-size: 15px !important;
    color: #43545b;	
}

.calendar-loop-single {
	margin: 0 0 60px 10px;
}

/*  UBERMENU OVERRIDES */

.ubermenu-skin-clean-white {
  font-size: 14px!important;
  color: #595959!important;
}
.ubermenu-skin-clean-white .ubermenu-submenu .ubermenu-item a {
  color: #595959!important;
}
.ubermenu-skin-clean-white .ubermenu-submenu .ubermenu-item a:hover,
.ubermenu-skin-clean-white .ubermenu-submenu .ubermenu-item a:focus {
  color: #D63D00!important;
  text-decoration: underline!important;
}

/* Updates as of 09/2020 */

.ubermenu-searchform label {
  display: block;
}

.ubermenu-1 {
  min-width: 100%;
}

a[class^="btn-"], a[class*=" btn-"] {
  color:#ffffff !important;
}

.btn {
  font-weight: bold;
}

.btn-primary {
  background-color: #175fb3;
  color: #ffffff;
  border-color: #175fb3;
}

.btn-secondary {
  background-color: #f16920;
  color: #ffffff;
  border-color: #f16920;
}

.btn-cta {
  color: #fff !important;
  text-decoration: none;
  transition: 0.2s;
  cursor: pointer;
  border: 3px solid #F16C48;
  border-radius: 100px;
  text-transform: uppercase;
}

.btn-cta:hover, .btn-cta:focus {
  background: #f16c48;
}

.btn-group-xl>.btn, .btn-xl {
  padding: .5rem 1.25rem;
  font-size: 1.5rem;
  line-height: 1.75;
}




table.fullbody {
    display: table;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 2px;
    border-color: gray;
    line-height: 1.4;
    font-family: 'Open Sans', sans-serif;
}