
h1 {
	margin: 0;
}

.hm-section-heading {
	font-weight: normal;
}

@media screen and (min-width: 1200px) {
	.hm-section-heading {
		margin-top: 30px;
		margin-bottom: 40px;
	}
}

/* ---- Home Hero banner ---- */

/* 1. Trying to stop/hide the flash of all the sliders sitting one after the other, but still allowing for flexible heights */

.hero-banner-slider {
	margin: 0;
	padding: 0;
	height: 100%;
	background: #f3f3f3;
	/*[1]*/
	max-height: 60vh;
	overflow: hidden;
}

.hero-banner-slider .slick-dots {
	border-bottom: 1px solid #a2a2a2;
}

.js-ready .hero-banner-slider {
	/*[1]*/
	max-height: none;
}

.hero-banner-slider li {
	list-style: none;
	margin: 0;
}

.hero-banner-slider a {
	color: inherit;
	text-decoration: inherit;
	display: block;
}

.hero-banner__img-tag {
	background: no-repeat;
	background-size: cover;
	padding-top: 55%;
	position: relative;
}

.hero-banner__img-tag__tagline {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	color: #ffffff;
	text-align: center;
	line-height: 1.15;
	padding: 0 15%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	        align-items: center;
	background: rgba(0,0,0,.25);
	margin: 0;
	font-size: 3rem;
	text-shadow: 0 0 30px rgba(0,0,0,1);

	font-family: Freeland W05 Regular, Brush Script MT, cursive;
}

.hero-banner__text-area {
	padding: 20px;
	color: #ffffff;
}

.hero-banner__price {
	line-height: 1;
}

.hero-banner__price__amount {
	font-size: 2.8rem;
	font-weight: bold;
}

.hero-banner__price__descript {
	font-size: 1.4rem;
	opacity: 0.75;
}

.hero-banner__heading {
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0;
}


.hero-banner:hover .button,
.hero-banner:focus .button,
.hero-banner:active .button {
	color: #00265e;
	background-color: #ffffff;
}


.hero-banner--img {
	display: block;
	padding-top: 160%;
	background: no-repeat top center;
	background-size: contain;
}


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

	.hero-banner--img {
		padding-top: 96.5%;
	}

	.hero-banner__text-area {
		padding: 40px;
	}

	.hero-banner__img-tag__tagline {
		font-size: 5rem;
	}
}
/* Padding calcs to mimic the max width on sections */
@media screen and (min-width: 800px) {
	.hero-banner__text-area {
		padding-left: calc(50% - 360px);
		padding-right: calc(50% - 360px);
	}
}

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

	.hero-banner-slider .slick-dots {
		border-bottom: 0px;
	}
	.hero-banner__text-area {
		padding-left: calc(50% - 460px);
		padding-right: calc(50% - 460px);
	}
}

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

	.hero-banner__img-tag {
		float: left;
		width: 60%;
		padding-top: 36%;
	}
	.hero-banner__text-area {
		width: 40%;
		float: left;
		padding-left: 30px;
		padding-right: 30px;
	}

	.hero-banner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.hero-banner--img {
		padding-top: 36%;
	}

	.hero-banner__img-tag {
		min-height: 36%;
	}

	.hero-banner__text-area {
		display: flex;
		flex-flow: column nowrap;
		justify-content: space-around;
	}
}

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

	.hero-banner__img-tag {
		width: 60%;
		padding-top: 36%;
	}
	.hero-banner__text-area {
		width: 40%;
		max-width: 500px;
		padding-left: 5%;
		padding-right: 0px;
	}

	.hero-banner__img-tag__tagline {
		font-size: 6.6rem;
	}

	.hero-banner__price__amount {
		font-size: 3.4rem;
	}

}

/* video fallback banner if banners expire */
.hero-banner-fallback {
	margin-top: 48px;
	background-size: cover;
	color: #ffffff;
	text-align: center;
	padding: 30px;
	font-size: 3.6rem;
	line-height: 1.2;
	min-width: 300px;
	min-height: 140px;
	position: relative;
	overflow: hidden;
	background: #444444;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	        align-items: center;
}

.hero-banner-fallback:before {
	content: '';
	padding-top: 50%;
}

.hero-banner-fallback__videobg {
    background: no-repeat center center;
    background-size: cover;
    position: absolute;
    top: -1px;
    bottom: -1px;
    right: -1px;
    left: -1px;
    z-index: 0;
}

.hero-banner-fallback__videobg video {
    -webkit-transform: translateZ(0);
       -moz-transform: translateZ(0);
       -ms-transform: translateZ(0);
       -o-transform: translateZ(0);
       transform: translateZ(0);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner-fallback__tagline {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	color: #ffffff;
	text-align: center;
	line-height: 1.15;
	padding: 0 15%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	        align-items: center;

    background: rgba(0,0,0,.3);
    text-shadow: 0 0 30px rgba(0,0,0,.20);
	font-family: Freeland W05 Regular, Brush Script MT, cursive;

	margin: 0;
}

@media screen and (min-width: 580px) {
	.hero-banner-fallback {
		font-size: 7rem;
		padding: 60px;
	}
}

@media screen and (min-width: 1000px) {
    .hero-banner-fallback {
		margin-top: 0px;
		max-height: 300px;
		max-height: 60vh;
    }

    .hero-banner-fallback:before {
    	padding-top: 50%;
    }

}

@media screen and (min-width: 1380px) {
	.hero-banner-fallback {
		font-size: 9rem;
		min-height: 60vh;
		padding: 80px;
	}
}







/*  ---- Featured seminars ---- */



.section--editorial,
.section--specials,
.section--seminars,
.section--social-links {
	border-bottom: 1px solid #979797;
	text-align: center;
}

.section--editorial:last-child,
.section--specials:last-child,
.section--seminars:last-child,
.section--social-links:last-child {
	border-bottom: 0px;
}


/* ---- Social Links Promo ---- */

.section--social-links {
	text-align: center;
}

@media screen and (min-width: 1000px) {
	.section--social-links {
		font-size: 2.2rem;
	}
	.section--social-links__subheading {
		color: #003E7E;
		font-size: 2.8rem;
		margin: 50px 0 30px;
	}
}


.big-icon-list__link:hover .icon-dinkus--fb {
	background-color: #3b5998;
}

.big-icon-list__link:hover .icon-dinkus--ig {
	background-color: #d93175;
}

.big-icon-list__link:hover .icon-dinkus--yt {
	background-color: #d33937;
}

.big-icon-list__link:hover .icon-dinkus--blog {
	background-color: #549d00;
}

.big-icon-list__link:hover .icon-dinkus--podcast {
	background-color: #862cc3;
}

.big-icon-list--social-media .big-icon-list__link:hover svg path {
	fill: #fff;
}


/* ---- Advertised Specials Promo ---- */

.section--advertised-specials {
	background-color: #d2d2d2;
	position: relative;
	text-align: center;
	margin-top: -1px;
}

.section--advertised-specials p {
	text-transform: uppercase;
}


@media screen and (min-width: 600px) {
	.section--advertised-specials .section:before,
	.section--advertised-specials .section:after {
		content: '\00a0';
		position: absolute;
		top: 0;
		bottom: 0;
		width: 100%;
		width: 50vw;
		background: no-repeat;
		background-size: auto 100%;
	}

	.section--advertised-specials .section:before {
		right: calc(100% - 30px);
		background-image: url(../images/img-ad-specials-left.jpg);
		background-position: right 3vw top;
	}

	.section--advertised-specials .section:after {
		left: calc(100% - 30px);
		background-image: url(../images/img-ad-specials-right.jpg);
		background-position: left 3vw top;
	}
}

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

	.section--advertised-specials .section:before {
		right: calc(100% - 50px);
	}

	.section--advertised-specials .section:after {
		left: calc(100% - 50px);
	}
}

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

	.section--advertised-specials .section:before {
		right: calc(100% - 80px);
	}

	.section--advertised-specials .section:after {
		left: calc(100% - 80px);
	}
}


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

	.section--advertised-specials .section:before {
		right: calc(100% - 130px);
	}

	.section--advertised-specials .section:after {
		left: calc(100% - 130px);
	}
}



@media screen and (min-width: 1400px) {
	.section--advertised-specials .section:before {
		right: calc(100% - 30px);
	}

	.section--advertised-specials .section:after {
		left: calc(100% - 30px);
	}
}



/* ---- Custom Image Promo Layout section ---- */


.section--img-promo {
	margin: 15px 0;
	border-top: 20px solid #f3f3f3;
	border-bottom: 20px solid #f3f3f3;
	background: #eaecea;
	text-align: center;
}


.section--img-promo:last-child {
	margin-bottom: 0;
}

.section--editorial + .section--img-promo,
.section--specials + .section--img-promo,
.section--seminars + .section--img-promo,
.section--social-links + .section--img-promo {
	margin-top: -1px;
}


.hm-img-promo-layout__desktop {
	display: none;
}

@media screen and (min-width: 700px) {
	.hm-img-promo-layout__desktop {
		display: block;
	}
	.hm-img-promo-layout__mobile {
		display: none;
	}
}
