/* =============================================================================================
	BASE STYLES AND LAYOUT
============================================================================================= */

/* ------------------------------------------------------------------------ Page Styles & Resets */

html {
	position: relative; /*for sticky footer*/
  	min-height: 100%;
}

body {
	font: normal 100%/1.6 'Poppins', Arial, Helvetica, sans-serif; 
	color: black;	
	font-weight: 400;
	background-color: #FFF;
} 

.preload * { /* Transitions fire only after page load http://css-tricks.com/transitions-only-after-page-load/ */
	-webkit-transition: none !important;
		transition: none !important;
	}


@media (min-width: 992px) {
	/*if the header is fixed, add this class to the body*/
	.body--fixed-header {
		padding-top: 74px; /*This will change depending on the height of the header*/
	}
	
}


/* ------------------------------------------------------------------------ Bootstrap Override */

.dropdown-item.active, .dropdown-item:active {
	background-color: transparent;
	color: #ff4774 !important;
}

.overflow--hidden {
	overflow: hidden;
}

@media screen and (min-width: 1440px) {
	.pt-12 {
		padding-top: 10rem;
	}
	.section.p-12 {
		padding-top: 10rem !important;
		padding-bottom: 10rem !important;
	}
}

@media screen and (min-width: 1200px) and (max-width: 1439px) {
	.section.p-12 {
		padding-top: 10rem;
		padding-bottom: 8rem;
	 }	 
}

@media screen and (max-width: 991px) {
	.pt-12 {
		padding-top: 4rem;
	}
}

/*---------------------------------------------------- custom hamburger */

#hamburger-icon {
    width: 32px;
    height: 18px;
    position: relative;
    margin: 0;
    margin-left: 0;
    outline: none;
    padding: 0;
    background-color: transparent;
    top: 0;
  }
  #hamburger-icon .line {
    display: block;
    background: white;
    width: 28px;
    height: 2px;
    position: absolute;
    left: 2px;
    border-radius: 4px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
  }
  #hamburger-icon .line.line-1 {
	top: 0;
  }
  #hamburger-icon .line.line-2 {
	top: 50%;
  }
  #hamburger-icon .line.line-3 {
	top: 100%;
  }

  #hamburger-icon.active .line-1 {
	transform: translateY(8px) translateX(0) rotate(45deg);
	-webkit-transform: translateY(8px) translateX(0) rotate(45deg);
	-moz-transform: translateY(8px) translateX(0) rotate(45deg);
  }
  #hamburger-icon.active .line-2 {
	opacity: 0;
  }
  #hamburger-icon.active .line-3 {
	transform: translateY(-10px) translateX(0) rotate(-45deg);
	-webkit-transform: translateY(-10px) translateX(0) rotate(-45deg);
	-moz-transform: translateY(-10px) translateX(0) rotate(-45deg);
  }
  @media(max-width: 991px)
  {
	#hamburger-icon {
		display: inline-block;
		margin: auto 8px auto auto;
	}
  }  
  @media all and (max-width: 991px) and (min-width: 576px) and (-ms-high-contrast:none)
  {
	#hamburger-icon { 
	position: absolute;
	right: 8px;
	top: 18px;
	} /* IE10 */
  *::-ms-backdrop, #hamburger-icon { 
	position: absolute;
	right: 8px;
	top: 18px;
   } /* IE11 */
  }

  @media all and (max-width: 575px) and (-ms-high-contrast:none)
  {
	#hamburger-icon { 
	top: 10px;
	position: absolute;
	right: 8px;
	} /* IE10 */
  *::-ms-backdrop, #hamburger-icon { 
	top: 10px;
	position: absolute;
	right: 8px;
   } /* IE11 */
  }
/* ------------------------------------------------------------------------- Utilities */

.flex-row--fix {
	max-width: 100%;
	margin:  0;	
}


/* ------------------------------------------------------------------------ Keyboard Accessibility */

.skip-link { 
	position:absolute; 
	left:-10000px; 
	top:0; 
	width:1px; 
	height:1px; 
	overflow:hidden;
	background-color: #666;
	color: #fff;
	font-size: 0.875rem;
	text-decoration:none;
	z-index: 1100;
	padding:0.5rem 0.625rem; 
} 

.skip-link:focus, .skip-link.sr-only-focusable:active, .skip-link.sr-only-focusable:focus {
	position: absolute; 
	outline: none; 
	left:0;
	outline: none; 
	width:auto; 
	height:auto;
} 

.skip-link:hover {
	color: #fff;
	background-color: #777;
}

a:focus, .carousel-control-next:focus,.carousel-control-prev:focus, .btn:focus, .carousel__link:focus .carousel__btn, .form-control-file:focus {
	outline: solid thin rgba(0, 0, 0, 0.5);
	box-shadow: none;
} 

.sidenav__header-link:focus, .card__header-link:focus {outline: solid thin rgba(255, 255, 255, 0.5);}

a:hover, a:active { outline: none !important; } /*...not with mouse (kinda) */


/* ------------------------------------------------------------------------ Headers */

h1, h2, h3,
.h1, .h2, .h3  { 		
	font-weight: 700;
	line-height:1em;
	text-transform: uppercase;
	font-family: 'Barlow Condensed', Arial, Helvetica, sans-serif;
}	

h1, .h1 {	
	font-size: 2.6rem;	
	text-transform: uppercase;
}
	
h2, .h2 {
	font-size: 2rem; 
}
		
h3, .h3 { 
	font-size: 1.5rem; 
}	
	
@media screen and (min-width: 1680px) {
	h1, .h1 {	
		font-size: 9.75rem;	
	}
	
	.inside--page h1, .inside--page .h1 {
		font-size: 7rem;
	}

	h2, .h2 {
		font-size: 3.375rem; 
	}
}

@media screen and (min-width: 1440px) and (max-width: 1679px) {
	h1, .h1 {	
		font-size: 8.5rem;	
	}
	.inside--page h1, .inside--page .h1 {
		font-size: 6rem;
	}
	h2, .h2 {
		font-size: 3rem; 
	}
}

@media screen and (min-width: 992px) and (max-width: 1439px) {
	h1, .h1 {
		font-size: 6.3em;
	}
	.inside--page h1, .inside--page .h1 {
		font-size: 5.5rem;
	}
	h2, .h2 {
		font-size: 2.8rem; 
	}
}

@media screen and (max-width: 991px) {
	h1, .h1 {
		font-size: 4.8em;
	}
	h2, .h2 {
		font-size: 2.4rem;
	}
}

@media screen and (max-width: 575px) {
	h1, .h1 {
		font-size: 3.1em;
	}
	h2, .h2 {
		font-size: 2rem;
	}
}

	
/* ------------------------------------------------------------------------ Lists */

ul, .list { 
	list-style: none; 
	list-style-position: outside;
	padding-left: 0;
}

ul li, .list__item {	
    padding: 0 0 0.25rem 1rem;
	background: url(../../images/arrow-right-gray.svg) no-repeat left 0.625rem;
	background-size: 0.625rem 0.625rem;
	background-position: left;
}

ul ul, .list__sub-list {
	margin-top: 0.25rem;
}


ul ol {
	padding-left: 1.375rem;
	margin-top: 0.25rem;
}

ul ol li {
	background-image: none;
	padding-left: 0;
}
		
ol {
	padding-left: 1rem;
}	

ol li {padding-bottom: 0.25rem;}

ol ol {
	padding-left: 2.25rem;
	margin-top: 0.25rem;
}

ol ul {margin-top: 0.25rem;}
		
li:last-child { 
	padding-bottom:0;
}

.anchor__list li {
	color: white;
	padding-bottom: 5px;
}
		
					
/* ------------------------------------------------------------------------ Other Base Text Styles */

.color-inherit {
	color: inherit;
}	

.text-muted {
	color: #888!important;
}

.intro-text {
	font-size:1.25rem;
}

.note {
	font-size: .875rem;
}

sup, sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup { 
	top: -0.5em; 
}

sub { 
	bottom: -0.25em; 
}

@media (min-width: 1440px) {	

	.intro-text {
		font-size:1.625rem;
		line-height: 1.6;
	}	

}

	
/* ------------------------------------------------------------------------ Links */

a { 
	color: #ac0324; 
	font-weight: 700;
	transition: all 0.25s ease-in-out;
}	

a:hover {
	text-decoration: none;
	color: #6e1b2c;
}

main a { 
	word-wrap: break-word; 
}

a img {
	border: none;
	-webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
	transition: opacity 0.25s;
}				

a img:hover { 
	opacity: .9;
}		

.btn {
	padding: .5rem 2rem;
	border-radius:5px;
	text-transform: uppercase;
	cursor: pointer;
}

.btn-group-lg>.btn, .btn-lg {
	font-size: 1.125rem;
}

.btn-primary {
	background-color: #666;
	border-color: #666;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:not([disabled]):not(.disabled).active, .btn-primary:not([disabled]):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
	background-color: #777;
	border-color: #777;
	box-shadow: none;
}

.btn--rounded {
	border-radius:100rem;
}

.btn--outline {
	background-color: transparent;
	border: 2px solid #666;
}

.btn--outline:hover,
.btn--outline:active,
.btn--outline:not([disabled]):not(.disabled).active, .btn--outline:not([disabled]):not(.disabled):active, .show>.btn--outline.dropdown-toggle {
	background-color: transparent;
	border-color: #777;
	box-shadow: none;
}

.carousel__link:hover .carousel__btn {
	background-color: transparent;
	border-color: #777;
}

@media(min-width:768px){
 a[href^="tel:"] {
  pointer-events: none;
 }
 
 .contact--btn.phone-button {
   pointer-events: all !important;
 }
}

/* ----------------------------------------------------------------------- Tiny MCE Templates */
	.content__block {
		background-color: #f4f4f4;
		padding: 40px;
		box-shadow: 0px 1px 12px -5px #000000 !important;
		border-left: 6px solid #ac0324;
		margin-bottom: 4rem;
	}
	/* .content__block:first-of-type {
		margin-top: 4rem;
	} */
	.content__block.remove--styling {
		border: 0;
		box-shadow: none !important;
		padding: 0;
		background-color: white;
	}

	.content__block:last-child {
		margin-bottom: 1rem;
	}
	
	.content__block h2 {
		margin-bottom: 1.5rem;
	}
	section.p-12 .text-limiter p:first-of-type {
		margin-bottom: 2rem !important;
	}

	@media screen and (max-width: 1025px) {
		section.p-12 .intro-text {
			margin-bottom: 2rem;
		}
		h2.info-head {
			padding: 2rem 0;
		}
	}

	@media screen and (max-width: 767px) {
		.content__block {
			border-left: 0;
			border-top: 6px solid #ac0324;
		}
	}

	@media screen and (max-width: 575px) {
		.content__block {
			padding: 32px 16px;
			margin-bottom: 3rem;
		}	
	}

/* ------------------------------------------------------------------------ Images */
	
img {
	max-width: 100%;
	height: auto!important; 
}

   .img--float-left, .img--float-right { 
	margin: .5rem 0 1rem 0;	
}

@media (min-width: 576px) {	
	.img--float-left {
		float: left;
		margin: .5rem 1.5rem .375rem 0;
		max-width:50%;
		}
		
	.img--float-right {
		float: right;
		margin: .5rem 0 .375rem 1.5rem;
		max-width:50%;
		}
}

@media (min-width: 768px) {	
	.img--float-left, 
	.img--float-right { max-width:33%; }
}	

	
/* ------------------------------------------------------------------------ SVG's */

svg {
	width: 1rem;
	height: 1rem;
}	
	

/* ------------------------------------------------------------------------ Horizontal Rules */

hr, .hr { 
	margin: 1.5rem auto;
}	

@media (min-width: 768px) {

	hr, .hr {
		margin: 2rem auto;
	}

}	



/* =============================================================================================
	HEADER
============================================================================================= */

.print-header { display:none; }
	
.logo { 
	flex: 1;
	display: block;
	max-width: 225px
}

.logo__img {
	max-width: 11.875em; 
	width: 100%;
	transition: all .2s ease-in-out;
}

.header {
	border-bottom: 1px solid #ddd;
}

.header--fixed-top {
	transition: all .2s ease-in-out;
}

.header__content {
	margin-top: 0.75rem;
}

.header--dark {
    border-bottom: none;
    background-color: #222;
	z-index: 99;
	position: fixed;
	width: 100%;
	max-width: 100%;
}

@media (min-width: 768px) {	
		
	.logo__error-page {
		margin:1.5rem auto 2.5rem auto;
		float: none;
	}

}

@media (min-width: 992px) {	

	.header__content { 
		margin-top: 0;
		margin-left:1.5em;
	}

	header { 
		padding-top: 2rem;
		padding-bottom: 2rem;
	}	

	.header--fixed-top {
		position: fixed;
	    top: 0;
	    right: 0;
	    left: 0;
	    z-index: 1040;    
	}

	.header--fixed-top.header--scroll .logo__img {
		max-width: 8rem;
	}

	.header--dark-transparent-lg {
		background-color: transparent;
	}

	.header--dark-transparent-lg.header--scroll {
		background-color: rgb(34, 34, 34);
		padding: 1rem 0 !important;
	}	
}

@media (min-width: 1200px) {	

	.header__content { 
		margin-left:2em;
	}

}

@media screen and (max-width: 991px) {
	.logo__img {
		max-width: 8rem;
	}

	header { 
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
}

@media screen and (max-width: 575px) {
	.logo__img {
		max-width: 6rem;
	}
	header { 
		padding-top: .5rem;
		padding-bottom: .5rem;
	}	
}
		
/* ------------------------------------------------------------------------ Video */
@media screen and (max-width: 991px) {
	.my-background-video {
		display: none !important;;
	}
	.carousel__image {
		background-image: url('/images/video/video-bg-mobile.jpg') !important;
	}
}

/* ------------------------------------------------------------------------ TopLinks */

.top-links { 
	padding-bottom: 0.5rem;
}

.top-links__link { 
	text-decoration:none;
	font-size: 0.8rem;
	font-weight: 400;
	padding: 0 0.5rem;
	color: #444;
}

.top-links__link:hover {
	text-decoration:underline;
	color: #777 ;
}	

@media (min-width: 768px) {
		
	.top-links__link {
		font-size: 0.9375rem;
	}

}

@media (min-width: 992px) {

	.top-links {
		padding: 0;
	}

	.top-links__link:last-child { 
		padding-right: 0;
	}

}


/* ------------------------------------------------------------------------ Seach Area */

.search-form__input {
	border-radius: 0;
	border-right: 0;
}

.search-form__btn {
	position: relative;
	width: 3rem;
	padding: .5rem .75rem;
	border-radius: 0;
}

.search-form__btn:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background: url(../../images/search-icon.svg) no-repeat center;
	background-size: 1.25rem auto;
	width: 100%;
	height: 100%;

}


/* ------------------------------------------------------------------------ Navbar Nav */

.navbar-nav .nav-link {
	border-bottom: 1px solid #ddd;
	color: #444;
	text-transform: capitalize;
	padding: .625rem 0;
	position: relative;
}

.navbar-nav .nav-item {
	background-image: none;
	padding: 0;
}

.navbar-nav .nav-item.active .nav-link {
	color: white;
}

.navbar-nav .nav-item.active:hover .nav-link, .navbar-nav .nav-link:hover {
	color: white;
}

.navbar-nav .dropdown-menu {
	border: 0;
	padding-top: 0;
	background-color: #eee;
	border-radius: 0;
	margin:0;
	padding:0;
}

.navbar-nav .dropdown-menu li.active > .dropdown-item {
	color: #666;
	font-weight: 700;
}

.navbar-nav .dropdown-item {
	border-bottom: 1px solid #fff;
	padding: .625rem 1.5rem;
}

.navbar-nav li {
	padding: 0;
	background-image: none;
}

.navbar-nav .dropdown-item:hover {
	background-color: transparent;
	color: #ff4774;
}

.navbar-nav .dropdown-item:active {
	color:rgb(51, 51, 51);
	color: #ff4774;
}

.navbar-nav .dropdown-item:focus {
	background-color:#eee;
}

.navbar-nav .dropdown-menu .dropdown-menu {
	background-color: #ddd;
}

.navbar-nav.sm-collapsible .dropdown-menu .dropdown-menu {
	margin:0;
}

.navbar-nav .dropdown-item .dropdown-item {
	background-color: inherit;
}

.navbar-nav:not(.sm-collapsible) .nav-link .sub-arrow {
	display: none;
	border:0;
}

.navbar-nav.sm-collapsible .sub-arrow {
	border: none;
	width: 2rem;
	margin-right: 0;
}

.navbar-nav:not(.sm-collapsible) .dropdown-item .sub-arrow, .navbar-nav:not(.sm-collapsible):not([data-sm-skip]) .dropdown-menu .dropdown-toggle::after {
    border: none;
    width: .625rem;
    height: .625rem;
    background-image: url(../../images/arrow-right-gray.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: .625rem .625rem;
}

.dropdown-toggle::after {
   display:none
}

.navbar-nav--dark .nav-link {
	color: #fff;
	border-bottom: 1px solid #333;
}

.navbar-nav--dark .dropdown-menu {
	background-color: #222;
}

.navbar-nav--dark .dropdown-item {
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,.1);;
}

.navbar-nav--dark .dropdown-item:active {
	color:#ff4774;
}

.navbar-nav--dark  .dropdown-item:focus {
	background-color:#222;
}

.navbar-nav--dark .dropdown-menu .dropdown-menu {
	background-color: #333;
}

.sub-arrow {
	background-image: url(../../images/arrow-right-white.svg);
    width: 14px !important;
    height: 14px !important;
    background-size: cover;
	position: absolute;
	background-repeat: no-repeat;
    right: 0;
	top: 16px;
	transition: all .2s ease-in-out;
}   

.nav-item.dropdown.show .sub-arrow {
	transform: rotate(90deg);
}

.navbar-nav--dark:not(.sm-collapsible) .dropdown-item .sub-arrow, .navbar-nav--dark:not(.sm-collapsible):not([data-sm-skip]) .dropdown-menu .dropdown-toggle::after {
    background-image: url(../../images/arrow-right-white.svg);
}

@media screen and (min-width: 992px) {
	.navbar-nav .nav-item.active .nav-link:after, .navbar-nav .nav-item .nav-link.highlighted:after, .navbar-nav .nav-item.active:hover .nav-link:after, .navbar-nav .nav-item .nav-link:hover:after {
		content: "";
		position: absolute;
		bottom: -1px;
		left: 0;
		width: 100%;
		height: 4px;
		border-bottom: 4px solid #ff4774;
		transition: border-color 0.25s;
	}
	
}

@media screen and (min-width: 1440px) {
	.navbar-nav .nav-link {
		padding: .5rem 0!important;
		margin-right: 1.5rem;
		font-size: 1.25rem;
		border-bottom: 0;
	}
	.navbar-nav .nav-item:last-child .nav-link {
		margin-right:0; 
	}

}

@media screen and (min-width: 992px) and (max-width: 1439px) {	
	.navbar {
		margin-top: 0; 
	}

	.navbar-nav .nav-item.active .nav-link {
		position: relative;
	}

	.navbar-nav .nav-item.active .nav-link:after {
		content: "";
		position: absolute;
		bottom: -1px;
		left: 0;
		width: 100%;
		height: 4px;
		border-bottom: 4px solid #ff4774;
    	transition: border-color 0.25s;
	}

	.navbar-nav .nav-item.active:hover .nav-link:after {
		border-color: #ff4774;
	}

	.navbar-nav .nav-link {
		padding: .5rem 0!important;
		margin-right: 1.5rem;
		font-size: 1.1rem;
		border-bottom: 0;
	}
	.navbar-nav .nav-item:last-child .nav-link {
		margin-right:0; 
	}

	.navbar-nav .dropdown-menu {
		padding: 0;
		min-width: 15rem !important;
	}

	@media (min-width: 992px) {	

		.navbar-nav--dark .nav-link {
			border-bottom: 0;
		}
	
	}	
}

@media (min-width: 1200px) {

	.navbar-nav .nav-link {
		margin-right: 2rem;
	}

}

@media screen and (max-width: 991px) {
	.navbar-nav--dark .nav-item:last-of-type .nav-link {
		border-bottom: none !important;
	}
	.navbar-nav .nav-item .nav-link.highlighted {
		border-bottom: 1px solid #333 !important;
	}
	.navbar-nav .nav-item.active:hover .nav-link, .navbar-nav .nav-link:hover {
		border-bottom: 1px solid #333 !important;
	}
	.navbar-nav .nav-item.active .nav-link {
		border-bottom: 1px solid #333 !important;
	}

	.nav-item.active a.nav-link{
		color: #FF4773 !important;
		outline: none !important;
	}
	.dropdown-item.active {
		color: #FF4773 !important;
		outline: none !important;
	}
}


/* ------------------------------------------------------------------------ Navbar Toggler */

.navbar-toggler {
	padding: 0 0 0 1rem;
	border: none;
	cursor: pointer;
}

.navbar-toggler-icon {
    background-image: url(../../images/menu-icon.svg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	background-image: url(../../images/menu-icon-open.svg);
}

.navbar-toggler--dark .navbar-toggler-icon {
    background-image: url(../../images/menu-icon-reverse.svg);
}

.navbar-toggler--dark[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url(../../images/menu-icon-open-reverse.svg);
}


@media (min-width: 992px) {

	.navbar-toggler {
		display: none;
	}

}



/* =============================================================================================
	MAIN CONTENT AREA
============================================================================================= */

.aside {
	z-index: 1;
}

@media (min-width: 1600px) {
	.container {
	    max-width: 1600px;
	}
}

@media (min-width: 1440px) {
	main p,
	main li,
	label,
	table {
		font-size: 1.25rem;
	}	
}

@media (min-width: 1440px) and (max-width: 1599px) {
	.container {
	    max-width: 1440px;
	}
}

@media (min-width: 992px) and (max-width: 1399px) {		
	
	.aside {
		padding-left: 1rem
	}
	
	.main--full-width {
		width: 100%;
		padding-left: 0;
	}

	main p,
	main li,
	label,
	table {
		font-size: 1.025rem;
	}	
					
}


/* not for Template 3*/
@media (min-width: 1680px){ 
	.container {
	    max-width: 1600px;
	}
}

@media screen and (max-width: 991px) {
	main {
		padding-top: 85px;
		transition: padding-top .2s ease-in-out;
	}
	.aside {
	    margin: 4rem 0 1rem 0;
	}
}

@media screen and (max-width: 767px) {
	main {
		padding-top: 70px;
	}
}

@media screen and (max-width: 575px) {
	main {
		padding-top: 56px;
	}
	.aside {
		margin: 3rem 0 0 0;
	}
}



/* ------------------------------------------------------------------------ Sidenav */

.sidenav {
	background-color: #eee;
}

.sticky--block.sticky-top {
	top: 140px; /*This will change depending on the height of the header*/
}

.sidenav.sticky-top {
	top: 102px; /*This will change depending on the height of the header*/
}

.sidenav__header {
	padding: .75rem 1.25rem;
	background-color: #222;
}

.sidenav__header-link {
	color: #fff;
	display: block;
	transition: all 0.25s;
}

.sidenav__header-link:hover {
 	color: #777; 
 	text-decoration: none;
}

.sidenav__list {
	list-style: none;
}

.sidenav__item {
	line-height: 1.4;
	padding: 0;
	border-top: 1px solid #fff;
	background-image: none;
}

.sidenav__item.active > .sidenav__link {
    color: #666;
    font-weight: 700;
}

.sidenav__link {
	display: block;
	font-size: 1rem;
	padding: .75rem 1.5rem;
	color: #444;
	font-weight: 400;
}

.sidenav__link:hover { 
	background-color: rgba(0,0,0,.1);
	color: #444;
	text-decoration: none;
}

.sidenav__sub-list {
	background-color: #ddd;
	margin:0;
}

.sidenav__sub-list .sidenav__item { 
	background: url(../../images/arrow-right-gray.svg) no-repeat 2rem 1.125rem;
	background-size: 0.625rem 0.625rem;
}

.sidenav__sub-list .sidenav__link {
	padding-left: 3rem ;
}

.side-consult {
    width: 100%;
	text-align: center;
	border-radius: 5px;
	background-position: center;
	padding: 20px 68px;
	background-size: cover;
	position: relative;
	background-image: url('../../images/contact-us.jpg');
}

.side-consult .dark--mask {
	position: absolute;
	top: 0;
	left:0;
	right: 0;
	bottom:0;
	background-color: rgba(0,0,0,.4);
}

.side-consult .contact__btns {
    display: flex;
    flex-flow: row nowrap;
    margin-top: 24px;
    position: relative;
    max-width: 75%;
    margin: 24px auto 0;
}

.side-consult  .contact__btns.fullsize {
	max-width: 100%;
}

.side-consult h3 {
	color: white;
    z-index: 2;
    position: relative;
    font-size: 37px;
    text-transform: capitalize;
	font-weight: 500;
	margin: 0;
}

.side-consult .contact--btn {
    width: 80px;
    height: 80px;
    margin: auto;
    float: left;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid #cfcfcf;
    display: flex;
	align-content: center;
	cursor: pointer;
	transition: all .4s ease-in-out;
}

.side-consult span {
font-size:10px; font-weight: normal;
}

.side-consult .contact--btn:hover img {
	transform: scale(.9);
}
.side-consult .contact--btn:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.side-consult .contact--btn img {
	margin: auto;
	transform: scale(.8);
	transition: all .4s ease-in-out;
	align-self: center;
}

.side-consult .fullsize .contact--btn img {
	margin-right: 8px;
}

.cnt-info {
    width: 100%;
    height: 80px;
    margin: auto;
    float: left;
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid #cfcfcf;
    display: flex;
    align-content: center;
    cursor: pointer;
    transition: all .2s ease-in-out;
	display: none;
}

.cnt-info p {
	color: white;
	margin: auto;
	font-weight: bold;
	font-size: 14px;
}

.contact--btn p {
	color: white;
	margin: auto !important;
	font-weight: bold;
	font-size: 14px;
	display: none;
	white-space: nowrap;
	margin-left: 0 !important;
	width: auto !important;
	transition: all .4s ease-in-out;
}

.returnTo {
    text-align: center;
    position: relative;
    display: none;
    height: 0;
    transition: all .4s ease-in-out;
    overflow: hidden;
    max-width: 75%;
    margin: auto;
    color: #FFF;
    cursor: pointer;

}

.returnTo a img {
	transition: all .4s ease-in-out;
		transform: scale(0.9);
}

.returnTo a {
    color: white;
    z-index: 4;
    margin: 8px 0 0 auto;
    border: 2px solid #cfcfcf;
    background-color: #838383;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 5px;
    max-width: 45px;
    display: block;
    transition: all .4s ease-in-out;
}

.returnTo a:hover img {
	transform: scale(1);
}


@media screen and (max-width: 1450px) {
	.side-consult {
		padding: 20px 20px;
	}
}

@media screen and (max-width: 1200px) {
	.side-consult h3 {
		font-size: 32px;
	}
}

@media screen and (min-width: 991px) and (max-width: 1200px) {
	.contact--btn p {
		margin-left: auto !important;
	}
	.side-consult .fullsize .contact--btn img {
		display: none;
	}
}

@media screen and (min-width: 992px) {
	.aside .sticky-top {
		margin-bottom: 1rem;
	}
}

@media screen and (max-width: 991px) {

	.aside .sticky-top {
		position: static; /*disable on smaller screens*/
	}

	.side-consult .contact--btn {
		width: 40%;
	}
	
	.side-consult .contact__btns, .returnTo {
		max-width: 275px;
	}

}

@media screen and (max-width: 400px) {
	.contact--btn p {
		margin-left: auto !important;
	}
	.side-consult .fullsize .contact--btn img {
		display: none;
	}
}

/* ----------------------------------------------------------------------- Course Page */
@media screen and (max-width: 991px) {
	.course-order1 {
		order: 1;
	}
	.course-order2 {
		order: 2;
	}
}

.course__glance {
	position: sticky;
    top: 112px;
}
.course__glance .info-section {
	border-bottom: 2px solid #ac0324;
	padding: 14px 12px;
}
.course__glance .info-section:last-of-type {
	border-bottom: none;
}
.course__glance .info-section .s-title {
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 12px;
}
.course__glance .info-section .s-info {
	font-weight: normal;
	font-size: 14px;
}
.course__glance .info-section ul li {
	font-size: 14px;
}
.course__glance .info-section ul {
	margin-bottom: 0;
}
.course__glance .info-section p:last-child {
	margin-bottom: 0 !important;
}
/* ------------------------------------------------------------------------ Homepage */

	.checkmark-icon {
		width: 100%;
		max-width: 105px;
	}

	.info-head {
		font-size: 4.5rem;
		text-transform: uppercase;
		padding: 2rem 0;
		max-width: 700px;
		text-align: center;
		margin: 0 auto;
		line-height: 1em;
	}

	.info-head--wide {
		font-size: 4.5em;
		text-transform: uppercase;
		padding: 2rem 0;
		max-width: 1050px;
		text-align: center;
		margin: 0 auto;
		line-height: 1em;
	}

	.text--red {
		color: #ac0324;
	}

	.text--center {
		text-align: center;
	}

	span {
		display: block;
	}

	.lrg--text {
		text-transform: uppercase;
		font-weight: 700;
		font-size: 2.8em;
		line-height: 1em;
		transition: all 0.25s;
		margin-bottom: 0;
	}

	.text-limiter {
		max-width: 1025px;
		text-align: center;
		margin: 0 auto;
		float: none;
	}

	.news__text, .news__text a {
	    color: #fff;
	}
	
	.news__text {

	}

	.news__text p {
		margin-bottom: 1rem;
		line-height: 2.4rem;
		font-size: 1.25rem;
	}

	.news__text.consult--txt p {
		margin-bottom: 0;
	}
	.news__text.consult--txt p:first-of-type {
		margin-bottom: .8rem;
	}
	.news__text.consult--txt p img {
		margin-right: 12px;
		max-width: 1em;
	}
	.news__text.consult--txt p a {
		font-weight: 400;
		font-size: 1.8rem;
	}
	.news__text.consult--txt p a:hover {
		text-decoration: none;
		color: #ff4774;
	}

	.news__text p:last-of-type {
		margin-bottom: 0;
	}

	.news__text h2 {
		text-transform: uppercase;
		margin-bottom: 2rem;
	}

	.news__section .background--pattern {
		background-image: url(../../images/backgrounds/news-pattern.jpg);
		background-size: cover;
		background-position: center;
		padding: 140px 150px;
		display: flex;
	}

	.news__section .background--pattern .consult--txt {
		margin: auto;
	}

	.news__section .background--img {
		background-size: cover;
		background-position: center;
		background-image: url(../../images/banners/news-bg.jpg);
	}

	.news__section .about--img {
		background-size: cover;
		background-position: center;
		background-image: url(../../images/backgrounds/about-bg.jpg);
	}

	.mission--bg {
		background-image: url(../../images/backgrounds/food-safety-bg-2.jpg);
		background-size: cover;
		background-position: bottom;
	}

	.mission__text {
		color: white;
		text-shadow: 2px 2px 2px black;
		max-width: 580px;
		margin-left: auto;
		margin: auto;
		text-align: center;
		padding: 40px 0;
	}

	.half--back {
		background-size: cover;
		background-position: center;
		padding: 100px;
	}

	.mission--bg .row {
		background-color: rgba(0,0,0,.3);
	}

	.text--black {
		color: black !important;
	}
	.news__text.consult--txt h2 {
		margin-bottom: .5rem;
	}

	.homePage .cta--splash.mobile--splash {
		position: absolute;
		z-index: 1;
		bottom: -1px;
		width: 100%;
		display: none;
		min-height: auto;
	}

	@media screen and (min-width: 1440px) {
	}

	@media screen and (max-width: 1439px) {
		.info-head--wide {
			font-size: 3.5em;
		}
		.news__text.consult--txt p a {
			font-size: 1.4rem;
		}
		.news__section .background--pattern {
			padding: 90px 75px;
		}
		.news__text p {
			line-height: 2.2rem;
			font-size: 1.1rem;
		}
	}

	@media screen and (max-width: 1200px) {
		.news__section .background--pattern {
			padding: 120px 77px;
		}
		.homePage .cta--splash.mobile--splash { 
			display: block;
		}
		.homePage .cta--splash {
			display: none;
		}
	}

	@media screen and (max-width: 1100px) {
		.news__section .background--pattern {
		    padding: 80px 50px;
		}
		.half--back {
			padding: 80px 50px;
		}
	}

	@media screen and (max-width: 991px) {
		.info-head {
			font-size: 3em;
		}
		.info-head--wide, .info-head, .lrg--text {
			font-size: 2.8em;
			line-height: 1em;
		}
		.news__text.consult--txt p a {
			font-size: 1.1rem;
		}
		.background--img {
			min-height: 350px;
		}
	}

	@media screen and (max-width: 767px) {
		.news__text {
			margin: auto;
		}
		.news__text.consult--txt {
			text-align: center;
		}
		.news__text.consult--txt p a {
			font-size: 1.4rem;
		}
		.news__text p {
			line-height: 2rem;
			font-size: 1rem;
		}
		.checkmark-icon {
			max-width: 75px;
		}
	}

	@media screen and (max-width: 575px) {
		.info-head {
			font-size: 2.2em;
		}
		.info-head--wide, .info-head, .lrg--text {
			font-size: 2.3em;
			line-height: 1em;
		}
		.news__text.consult--txt p a {
			font-size: 1.1rem;
		}
		.news__section .background--pattern {
			padding: 52px 15px;
		}
	}

/* ------------------------------------------------------------------------ Sections */

.section { 
	position: relative;
}

div.section.bottom--level {
	padding: 0 !important;
	position: relative;
}

.section--grey {
	background-color: #eee;
}

.aboutPage .section--grey {
	background-color: #eee;
	border-top: 15px solid #ac0324;
}

.section--red {
	background-color: #ac0324;
	color: white;
}

.section--darkgrey {
	background-color: #ddd;
}
.gallery-section {
	position: relative;
}
section .intro-text {
	margin-bottom: 4rem;
}

.courseCategoryPage section.section .intro-text {
	margin-bottom: 2rem;
}

@media (min-width: 1680px) {	
	.section { 
		padding: 8rem 0; 
	}
	.footer {
		padding: 8rem 0; 
		height: 384px;
	}
	.body--sticky-footer {
		padding-bottom: 384px;
	}
	.section.intro-mob {
		padding: 8rem 0 0 0;
	}
	.gallery-section
	{
		margin-bottom: 9rem;
	}
	.courseLandingPage .section.cta--section {
		margin-bottom: -8rem;
	}
	.cta--section {
		padding: 5rem 0 8rem 0;
	}
}

@media (min-width: 1440px) and (max-width: 1679px) {	
	.section { 
		padding: 6rem 0; 
	}
	.body--sticky-footer {
		padding-bottom: 321px;
	}
	.footer {
		padding: 6rem 0; 
		height: 321px;
	}
	.section.intro-mob {
		padding: 6rem 0 0 0;
	}
	.gallery-section
	{
		margin-bottom: 7rem;
	}
	.courseLandingPage .section.cta--section {
		margin-bottom: -6rem;
	}
	.cta--section {
		padding: 4rem 0 6rem 0;
	}
}

@media screen and (min-width: 1200px) and (max-width: 1439px) {
	.section.p-12 {
		padding-top: 6rem;
		padding-bottom: 4rem;
	}
}

@media screen and (min-width: 1200px) {
	.homePage .cta--section {
		padding:0;
	}
}
@media screen and (max-width: 1199px) {
	.section.p-12 {
		padding-top: 0;
	}
}

@media screen and (min-width: 768px) and (max-width: 1439px) {	
	.section { 
		padding: 4rem 0; 
	}
	section.section .intro-text {
		margin-bottom: 3rem;
	}
	.footer {
		padding: 4rem 0; 
		height: 258px;
	}
	.body--sticky-footer {
		padding-bottom: 258px;
	}
	.section.intro-mob {
		padding: 4rem 0 0 0;
	}
	.courseLandingPage .section.cta--section {
		margin-bottom: -4rem;
	}
	.cta--section {
		padding: 3rem 0 4rem 0;
	}
	.gallery-section
	{
		padding: 0 15px;
		margin-bottom: 5rem;
	}
}

@media screen and (max-width: 991px) and (min-width: 768px) {
	body.body--sticky-footer {
	    padding-bottom: 494px;
	}	
	.footer {
	    padding: 4rem 0; 
	        height: 494px;
	}
}

@media screen and (width: 768px) {
	body.body--sticky-footer {
		padding-bottom: 256px;
	}
}

@media screen and (max-width: 767px) {	
	.section { 
		padding: 3rem 0; 
	}
	.footer {
		padding: 3rem 0; 
	}
	.section.intro-mob {
		padding: 3rem 0 0 0;
	}
	.courseLandingPage .section.cta--section {
		margin-bottom: -3rem;
	}
	.gallery-section
	{
		padding: 0 15px;
		margin-bottom: 4rem;
	}
	.side-consult {
		margin-bottom: 1rem;
	}
	.cta--section {
		padding: 2rem 0 3rem 0;
	}
}

@media screen and (max-width: 575px) {
	section.section .intro-text {
		margin-bottom: 3rem;
	}
	.cta--section {
		padding: 0 0 2rem 0;
	}
	.gallery-section {
		margin-bottom: 4rem;
	}
}
/* ---------------------------------------------------------------------SWIPER CAROUSEL- */
.swiper-container {
	width: 100%;
  }
  
  .swiper-slide {
	background-position: center;
	background-size: cover;
	width: 300px;
	height: 300px;
  }
  .swiper-button-prev, .swiper-button-next
  {
	background-color: rgba(1,1,1,.7);
	width: 50px;
    height: 50px;
	transition: all .2s ease-in-out;
}
  .swiper-button-prev:hover, .swiper-button-next:hover
  {
	background-color: rgba(1,1,1,.6);
	transform: scale(1.1);
  }
  .swiper-button-next, .swiper-container-rtl .swiper-button-prev
  {
	background-image: url('/images/icons/right-arrow.png');
	right: -8px;
  }
  .swiper-button-prev, .swiper-container-rtl .swiper-button-next
  {
	  left: -8px;
	background-image: url('/images/icons/left-arrow.png');
  }


@media(max-width: 1100px)
{
	.swiper-slide
	{
		height: 30vw;
	}	
}

@media screen and (max-width: 991px) {
	.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
		right: 4px;
	}
	.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
		left: 4px;
	}
	.swiper-button-prev, .swiper-button-next {
		width: 40px;
		height: 40px;
		background-size: 21px 30px;
	}
}

@media(max-width: 767px)
{
	.swiper-slide
	{
		height: 52vw;
	}
	.swiper-button-prev, .swiper-button-next
	{
		background-size: 16px 29px;
	}
	.swiper-button-prev, .swiper-container-rtl .swiper-button-next
	{
		left: 1px;
	}
	.swiper-button-next, .swiper-container-rtl .swiper-button-prev
	{
		right: 1px;
	}
	.swiper-button-prev, .swiper-button-next
	{
		width: 40px;
		height: 40px;
	}
}

@media screen and (max-width: 575px) {
	.swiper-button-prev, .swiper-button-next {
		width: 30px;
		height: 30px;
	}
	.swiper-button-prev, .swiper-button-next {
		background-size: 16px 21px;
	}

	.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
		right: 8px;
	}

	.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
		left: 8px;
	}
}


/* ------------------------------------------------------------------------ Carousel */	

.carousel__link {
	display: block;
}

.carousel__btn {
	transition: all 0.25s;
}

.carousel__link:hover .carousel__btn {
	background-color: #000;
}

.carousel__image {
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 22rem;
	background-color: #ddd;
	background-position: center;
	transition: opacity 0.25s ease-in-out;
}

/* .carousel__link:hover .carousel__image {
	opacity: .9;
} */

.carousel__heading {
    /* font-size: 4.5rem; */
    line-height: 1.3;
    font-weight: 700;
    margin-bottom:1rem;
    text-shadow: -2px 2px 3px rgba(0, 0, 0, 0.35);
}

.carousel__link:hover {
	text-decoration: none;
}

.carousel__subheading {
    text-shadow: -2px 2px 3px rgba(0, 0, 0, 0.35);
	font-weight:400;
}

.carousel-indicators li {
	padding: 0;
}

.carousel-caption { 
    max-width: 64rem;
	margin: 0 auto;
	width: 100%;
    padding: .5rem 1rem;
    transition: all 0.25s;
}

.carousel-caption .carousel__heading {
    font-family: 'Barlow Condensed', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    white-space: pre-wrap;
	line-height: 1em;
	white-space: nowrap;
}

.inside--page .carousel-caption .carousel__heading {
	white-space: pre-wrap;
}

.carousel-caption .carousel__subheading {
	font-weight: 400;
	font-size: 2.5rem;
	margin-bottom: 0;
	flex-flow: row nowrap;
	white-space: nowrap;
}

.red-line {
	display: block;
	border-top: 7px solid #dd0036;
	margin: auto;
	width: 100%;
	align-self: center;
}
.red-line:first-of-type {
	margin-right: 20px;
}
.red-line:last-of-type {
	margin-left: 20px;
}

.carousel-control-next, .carousel-control-prev {
	align-items: stretch;	
}

.carousel-control-next-icon, .carousel-control-prev-icon {
	width: 2rem;
	height: 2rem;
	margin-top: 6.5rem;
	transition: all 0.25s;
}

.carousel-control-prev-icon {
	background-image: url(../../images/carousel-control-prev-icon-white.svg);
}

.carousel-control-next-icon {
	background-image: url(../../images/carousel-control-next-icon-white.svg);
}

@media screen and (max-width: 1680px) {
	.carousel-caption {
		max-width: 58rem;
	}
}

@media screen and (min-width: 992px) and (max-width: 1439px) {
	.carousel-caption {
		max-width: 43.5rem;
	}
	.carousel-caption .carousel__subheading {
		font-size: 1.8em;
	}
}

@media screen and (max-width: 767px) {
	.red-line:first-of-type{
		margin-right: 8px;
	}
	.red-line:last-of-type{
		margin-left: 8px;
	}
}

@media screen and (min-width: 576px) {	

	.carousel__image {
		min-height: 32rem;
	}

	.carousel-control-next-icon, .carousel-control-prev-icon {
		margin-top: 8rem;
	}

	.carousel-control-prev:hover {
	padding-right: .75rem;
	}

	.carousel-control-next:hover {
		padding-left: .75rem;
	}

}

@media screen and (min-width: 1201px) {
	.carousel--100vh {
		height:100vh; 
		min-height: 500px;
   }

   .carousel--100vh .carousel__image {
	   height: 100vh;
	   min-height: 500px;
	   padding-bottom: 0;
   }

   .carousel--100vh .carousel-caption {
		bottom:38%;
		transform: translateY(50%);
	}
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
	.carousel--100vh {
		height:77vh; 
		min-height: 400px;
   }

   .carousel--100vh .carousel__image {
	   height: 77vh;
	   min-height: 400px;
	   padding-bottom: 0;
   }

   .carousel--100vh .carousel-caption {
	bottom:55%;
	transform: translateY(73%);
	}
}

@media (min-width: 992px) {	

	.carousel__image {
		min-height: auto;
		height: 0;
		padding-bottom: 34%;
	}

	/* .carousel__link:hover .carousel-caption {
		transform: translateY(-.375rem);
	} */

	.carousel__image:after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100%;
		/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.25+100 */
		background: -moz-linear-gradient(top, rgba(0,0,0,.2) 0%, rgba(0,0,0,0.6) 100%);
		background: -webkit-linear-gradient(top, rgba(0,0,0,.2) 0%,rgba(0,0,0,0.6) 100%);
		background: linear-gradient(to bottom, rgba(0,0,0,.2) 0%,rgba(0,0,0,0.6) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#40000000',GradientType=0 );
		z-index: 1;
	}

	.carousel-control-next, .carousel-control-prev {
		align-items: center;
	}

	.carousel-control-next-icon, .carousel-control-prev-icon {
		width: 3rem;
		height: 3rem;
		margin-top:0;
	}

	.carousel--65vh {
		height:75vh; 
		min-height: 365px;
   }

   .carousel--65vh .carousel__image {
		height: 75vh !important;
   }

   .carousel--65vh .carousel-caption {
		bottom: 48%;
		transform: translateY(50%);
   }
}

@media (min-width: 1200px) {
	.carousel__image {
		padding-bottom: 30%;
	}
}

@media (min-width: 1920px) {
	.carousel__image {
		min-height: 36rem;
		padding-bottom: 0;
	}
}

@media screen and (max-width: 991px) {
	.carousel-caption {
		bottom: 50%;
		transform: translateY(50%);
		right: 0;
		left: 0;
		z-index: 1;
		max-width: 32.6rem;
	}
	.carousel__image:after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.3);
		z-index: 1;
	}

	.carousel-caption .carousel__subheading {
		font-weight: 400;
		font-size: 1.4em;
		margin: 0;
		display: flex;
	}
	.carousel--100vh .carousel-caption {
		bottom:55%;
		transform: translateY(50%);
	}
}

@media screen and (max-width: 575px) {
	.carousel-caption .carousel__heading {
		white-space: pre-wrap;
		line-height: 1em;
		/* font-size: 3.6em; */
	}
	.carousel-caption .carousel__subheading {
		font-weight: 400;
		font-size: 15px;
	}
	.carousel-caption {
		max-width: 21.7rem;
	}
	.red-line {
		border-top: 2px solid #dd0036;
	}
}

@media screen and (max-width: 575px) and (-ms-high-contrast:none)
{
	.carousel-caption { max-width: 90%; } /* IE10 */
	*::-ms-backdrop, .carousel-caption { max-width: 90%; } /* IE11 */
}

@media screen and (max-width: 400px) {
	.carousel-caption .carousel__subheading {
		font-size: 12px;
	}
}


/* ------------------------------------------------------------------------ Jumbotron/banner */

.jumbotron {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 0;
	margin-bottom: 0;
	min-height: 15rem;
	background-color: #ddd;
}

@media (min-width: 576px) {	
	.jumbotron {
		min-height: 18rem;
	}
}

@media (min-width: 992px) {	
	.jumbotron {
		min-height: 22rem;
	}

	.jumbotron {
		min-height: 30rem;
	}
}

@media (min-width: 1200px) {	
	.jumbotron {
		min-height: 24rem;
	}
}


/* ------------------------------------------------------------------------ Callouts */

.callout-group__callout {
	display: block;
	font-weight: 400;
	position: relative;
	color: inherit;
	cursor:pointer;
	background-color: white;
	transition: all .25s ease-in-out;
	padding: 42px 32px;
	flex-grow: 2;
	box-shadow: 0px 1px 12px -4px #919191 !important;
}

.callout-group__callout:active {
	box-shadow: 0px 1px 12px -4px #919191 #000000;
}

.callout-group__callout:hover {
	text-decoration: none;
	color: inherit;
}

.callout-group__image {
	height: 0;
	padding-bottom: 63%;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all 0.25s ease-in-out;
}

.callout-group__callout:hover .callout-group__image {
	opacity: 0.9;
	transform: scale(1.01);
}

.callout-group__heading {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
    text-align: left;
    transition: all 0.25s;
}

.callout-group__callout:hover .callout-group__heading{
	color: #000;
}

.callout-group__text {
	font-size: 1.25rem;
    text-align: left;
    margin-bottom: 12px;
    color: black;
}


.callout-group__icon {
    width: 3.5em;
    height: 3.5em;
    margin: -12px auto 12px 0;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.25s ease-in-out;
}

.callout-group__callout:hover .callout-group__icon {
	opacity: 0.9;
	transform: translateY(-.5em);
}

.callout-group__callout:hover .h2 {
	color: #ac0324;
}



.callout-group__callout--blog:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.25);
}

.callout-group__callout--blog .callout-group__caption {
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: #FFF;
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 0 1rem;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

.callout-group__callout--blog:hover .callout-group__heading{
	color: #fff;
}

.cta--section {
	position: relative;
}

.inside--page .cta--splash {
	position: absolute;
    z-index: 1;
    bottom: 0;
    width: 100%;
    max-height: 240px !important;
    min-height: auto !important;
}

.inside--page .bottom--level .cta--splash {
    position: absolute;
    z-index: 1;
    bottom: -1px;
    width: 100%;
}

section.cta--section .cta--splash {
    position: absolute;
	z-index: 1;
	min-height: 1025px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.home__callouts {
	display: flex;
	overflow: hidden;
	padding-top: 20px;
	padding-bottom: 20px;
	flex-flow: row nowrap;
}

.home__callouts a {
	margin: 0 24px;
	width: 23%;
	transition: all .2s ease-in-out;
}

.home__callouts a:first-of-type {
	margin-left: 0;
}
.home__callouts a:last-of-type {
	margin-right: 0;
}

.home__callouts a:hover {
	transform: translateY(-20px) !important;
}

.landing__callouts {
	display: flex;
	flex-flow: row wrap;
}

.landing__callouts a {
	margin: 0 24px;
	width: 20%;
}

.landing__callouts a:first-child {
	margin-left: 0;
}
.landing__callouts a:last-child {
	margin-right: 0;
}

.landing__callouts a:hover {
	transform: translateY(-20px) !important;
}

.now--offering h2 {
	margin-bottom: 0;
}
.now--offering h2:last-of-type {
	margin-bottom: 1.5rem;
}

.h2 {
	transition: all .25s ease-in-out;
}

.landing__callouts a:hover .h2 {
	color: #ac0324;
}

.callout-group__heading {
	padding-bottom: 18px;
}

.landing__callouts .callout-group__heading {
	margin-bottom: .6rem;
	line-height: 1em;
	transition: all .2s ease-in-out;
}

.callout--index {
	z-index: 1;
	position: relative;
}

.center__image {
	text-align: center;
}

.courseLandingPage .text--red {
	font-size: 2.4rem;
}

.callout-group div.landing__callouts a:last-of-type {
	margin-bottom: 1rem !important;
}

@media screen and (min-width: 1440px) {
	.inside--page .bottom--level {
		padding: 3.5rem 0px !important;
	}
}

@media screen and (min-width: 1200px) {
	.homePage .section.bottom--level {
		display: none;
	}
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
	.courseLandingPage .callout-group {
		padding-top: 1rem !important; 
		padding-bottom: 1rem !important;
   }
   .serviceLandingPage .callout-group {
	padding-top: 1rem !important; 
	padding-bottom: 2rem !important;
	}
}

@media screen and (min-width: 992px) and (max-width: 1439px) {
	.inside--page .bottom--level {
		padding: 3rem 0px !important;
	}
}

@media screen and (max-width: 1439px) {
	.callout-group__callout {
		padding: 35px 25px;
	}
	.callout-group__text {
		font-size: 1.1rem;
	}
	.h2.callout-group__heading {
		font-size: 2.2rem;
	}


	.landing__callouts a {
		width: 47%;
	}

	.landing__callouts a:nth-child(2), .landing__callouts a:nth-child(4) {
		margin-right: 0;
	}
	.landing__callouts a:nth-child(1), .landing__callouts a:nth-child(3) {
		margin-left: 0;
	}

	.landing__callouts a:nth-child(1), .landing__callouts a:nth-child(2) {
		margin-bottom: 40px !important;
	}
}

@media screen and (max-width: 1200px) {
	.h2.callout-group__heading {
		font-size: 2rem;
	}
	.home__callouts {
		flex-flow: row wrap;
	}
	.home__callouts a {
		width: 46%;
	}

	.home__callouts a:nth-child(1), .home__callouts a:nth-child(3) {
		margin-left: 0;
	}
	.home__callouts a:nth-child(2), .home__callouts a:nth-child(4) {
		margin-right: 0;
	}
	.home__callouts a:nth-child(1), .home__callouts a:nth-child(2) {
		margin-bottom: 44px !important;
	}
}

@media screen and (max-width: 991px) and (min-width: 768px) {
	.landing__callouts a:nth-child(3), .landing__callouts a:nth-child(4) {
		margin-bottom: 0 !important;
	}
}

@media screen and (max-width: 1025px) {
	.md--white {
		color: white;
	}
}

@media screen and (max-width: 991px) {
	.home__callouts {
		flex-flow: row wrap;
	}
	.courseLandingPage .text--red {
		font-size: 2.1rem;
	}
	.home__callouts a {
		margin: 0 auto;
		width: 45%;
	}
	.cta--section img {
		display: none;
	}
	.home__callouts a {
		margin: 0 24px !important;
		width: 42%;
	}
	.landing__callouts {
		margin-bottom: 1rem;
	}

	.landing__callouts .callout-group__heading {
		font-size: 2.2em;
		margin-bottom: .4rem;
		line-height: 1em;
	}

	.callout-group {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.callout-group div.landing__callouts a {
		margin-left: 0 !important;
		margin-right: 0 !important;
		margin-bottom: 48px !important;
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.landing__callouts a {
		width: 100%;
		margin-bottom: 28px !important
	}
	.landing__callouts a:last-child {
		margin-bottom: 0 !important;
	}
	.landing__callouts a:hover {
		transform: translateY(0%) !important;
	}
	.courseLandingPage .text--red {
		font-size: 1.9rem;
	}
	.home__callouts a {
		margin-left: 0 !important;
		margin-right: 0 !important;
		width: 100% !important;
		max-width: none;
		margin-bottom: 44px !important;
	}
	.home__callouts a:last-of-type {
		margin-bottom: 0 !important;
	}
	.home-callouts {
		padding-top: 4rem;
	}
}

@media screen and (max-width: 575px) {
	.home__callouts {
		flex-flow: column nowrap;
	}
	.courseLandingPage .text--red {
		font-size: 1.7rem;
	}
	.home__callouts a {
		width: 100%;
	}
	.landing__callouts .callout-group__heading {
		font-size: 1.8em;
		margin-bottom: .4rem;
		line-height: 1em;
	}
	.callout-group__text {
		font-size: 1.1rem;
	}

	.landing__callouts a {
		width: 100%;
	}

	.landing__callouts a {
		margin-bottom: 32px !important;
	}
	.landing__callouts a:last-of-type {
		margin-bottom: 0 !important;
	}
	.landing__callouts a:hover {
		transform: translateY(0%);
	}
	.section.intro-mob {
		padding: 3rem 0;
	}
	.serviceLandingPage .intro-mob {
		padding-bottom: 0;
	}
}

/* ------------------------------------------------------------------------ Cards */

.card, .card-header:first-child  {
	border-radius: 0;
}

.card:hover {
	text-decoration: none;
}

.card-header {
	background-color: #222;
    border-bottom: 0;
    color: #fff;
    font-weight: 700;
}

.card__header-link {
	color: #fff;
	display: block;
	transition: all 0.25s;
}

.card__header-link:hover {
 	color: #777; 
 	text-decoration: none;
}

.card__header-no-link {
	transition: all 0.25s;
}

.card:hover .card__header-no-link {
	color: #777;
}

.card-text {
	font-size: 1rem;
	font-weight: 400;
	color: black;
}

.card__date, .card:hover .card__date {
	color: #888;
}

.card-text small {
	font-size: 90%;
}


/* ------------------------------------------------------------------------ List Group */

.list-group__link {
	display: block;
	font-weight: 400;
	transition: all 0.25s;
	padding: 1.0rem 1.25rem;
}

.list-group__link:hover {
	text-decoration: none;
	background-color: #f8f8f8;
}

.list-group__link:hover .list-group__heading {
	text-decoration: underline;
}

.list-group-item, .list-group-item:last-child {
	padding: 0;
	background-image: none;
}


.list-group-item.active {
	background-color: #666;
    border-color: #666;
}


/* ------------------------------------------------------------------------ Accordions */

.accordion {
	position: relative;
}

.accordion .card  {
	background-color: #f4f4f4;
	border:none;
}

.accordion-header {
    color: #fff;
    cursor: pointer;
    padding: 1.25em;
    font-size: 1.25em;
    line-height: 1;
    color: var(--white);
    font-weight: bold;
    border-bottom: solid 2px #fff;
    transition: all 0.25s;
    position: relative;
    background-color: #222;
}

.accordion-header p {
    width: 90%;
    margin-bottom: 0;
    display: inline-block;
}

.accordion-header.active {
    background: #ac0324;
    color: #fff;
    transition: all 0.25s;
}

.accordion-header:hover {
    background: #ac0324;
    color: #fff;
}

.accordion-content {
    display: block;
    border-bottom: 2px solid #fff;
    background: #f4f4f4;
    padding: 1.5rem;
}



/* ------------------------------------------------------------------------ Pagination */

.page-item {
	font-size: 1rem;
	background-image: none;
	padding: 0;
}

.page-link {
	font-weight: 400;
	color: #666;
}

.page-item.active .page-link {
	background-color: #666;
	border-color: #666;
}


/* ------------------------------------------------------------------------ Tables */

.table {
	background-color: #fff;
}

.table .thead-dark th {
	background-color: #222;
    border: none;
}

.table td, .table th {
    border-top: 1px solid rgba(0,0,0,.125);
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f8f8f8;
}

.table td {vertical-align: middle;}

.table-md td, .table-md th {padding: .5rem;}

.table .custom-control {
	margin: 0;
	padding-left: 1.5rem;
    }
		

/* ------------------------------------------------------------------------ Forms */
	
legend { font-size: 1.25rem;}

.required-input, .field-validation-error {
	color: #e7004c !important;
	font-size: 0.875rem;
	font-weight:bold;
}

.registrationPage label {
	float: left;
}

.registrationPage .required-input, .registrationPage .field-validation-error {
	float: left;
}

.contactPage .required-input {
	float: left;
}
.contactPage label {
	float: left;
}

.contactPage .intro-text {
	margin-bottom: 0;
}

.btn.btn-primary {
	border-radius: 0;
	background-color: #ac0324;
	border: none;
	font-family: 'Barlow Condensed', Arial, Helvetica, sans-serif;
	font-size: 1.5rem;
}

.btn.btn-primary:hover {
	background-color: #6e1b2c;
}

.contactPage .container.container--interior {
	padding-bottom: 8rem;
}

.contactPage iframe {
	margin-bottom: -7px;
}

.form-text {
	font-style: italic;
	font-size: 80%;
    font-weight: 400;
    }

.form-control {
	border-radius:0;
	border-color: #ddd;
	padding: .5rem .75rem;
}

.form-control:focus {
	box-shadow: none;
	border-color: rgba(0, 0, 0, 0.5);
}

select.form-control:not([size]):not([multiple]) {
    height: calc(2.5rem + 2px);
}

.form-control-file {cursor: pointer;}

/*custom radio and checkbox*/
.custom-control {
	padding-left: 1.75rem;
	margin-bottom: 0;
	cursor: pointer;
}

.custom-control-description {
	font-weight: 400;
}

.custom-control-indicator {
	top: .375rem;
	width: 1.125rem;
    height: 1.125rem;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 2px;
}

.custom-control-input:checked~.custom-control-indicator {
	background-color: #666;
	border-color: #666;
}

.custom-control-input:focus ~ .custom-control-indicator {
    box-shadow: none;
    border-color: #000;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}	

@media screen and (max-width: 1439px) {
	.contactPage .container.container--interior {
		padding-bottom: 4rem;
	}
}

@media screen and (max-width: 991px) and (min-width: 576px) {
	.contactPage form {
		margin: 4rem 0 0 0;
	}
	.contactPage .content__block.remove--styling:nth-child(2), .contactPage .content__block.remove--styling:nth-child(2) .intro-text {
		margin-bottom: 0;
	}
}

@media screen and (max-width: 575px) {
	.contactPage form {
		margin: 0;
	}
	.contactPage .intro-text {
		font-size: 1.05rem;
	}
	.contactPage .container.container--interior {
		padding-bottom: 3rem;
	}
}

/* --------------------------------------------------------- Payment Page */

.simplePage .content__block {
	background-color: #f4f4f4;
    padding: 40px;
    box-shadow: 0px 1px 12px -5px #000000 !important;
    border-left: 6px solid #ac0324;
}

.simplePage .content__block:last-of-type {
	margin-bottom: 1rem;
}

.mail__payment p {
	float: left;
	margin-bottom: 0;
}
.mail__payment img {
    float: left;
    margin-right: 12px;
    width: 32px;
    margin-top: 5px;
}

.clearfix {
	clear: both;
}

@media screen and (max-width: 767px) {
	.simplePage .content__block {
		border-left: 0;
		border-top: 6px solid #ac0324;
	}
}

/* ---------------------------------------------------------Contact Page */


.contact-fulton a {
	display: block;
	width: 100%;
	margin: 12px 0;
}

.contact-fulton a:hover {
	text-decoration: none; 
}
.contact-fulton a img {
	width: 24px;
	margin-right: 12px;
}
			
/* =============================================================================================
	FOOTER
============================================================================================= */

.print-footer { 
	display:none;
}

.footer { 
	background-color: #222222;
	color: white;
}

.footer__rkd {
	display: inline-block;
	width: 5.625rem; 
}

.footer__copyright {
	margin-bottom: 0;
	font-size: 0.875rem;
	color: white;
}	

.footer__link {
	margin-right: 1rem;
	color: white;
	width: 100%;
	font-size: 1.25rem;
	margin-bottom: 4px;
}

.footer__link:hover {
	color: #ff4774;
	text-decoration: none;
}
		
.footer__icon {
	display: inline-block;
	width: 2.125rem;
	height: 2.125rem;
	margin: 0 .5rem 0 0;
	background-repeat: no-repeat;
	background-position: center center;
	border: 1px solid #ddd;
	border-radius:50%;
	background-size: 1.5rem 1.5rem;
}

.foot-cert {
	display: flex;
	flex-flow: row nowrap;
}

.foot-cert p {
    margin: auto;
    font-size: 1.125rem;
    font-weight: 700;
    margin-right: 24px;
    direction: rtl;
    text-align: right;
}

.foot-cert img {
	max-height: 128px;
}

.footer__links img {
	width: 21px;
	margin-top: -2px;
	margin-right: 12px;
}

.footer__social p {
	font-size: 1.125rem;
	margin:0;
}

.footer .container, .footer .container {
	height: 100%;
	display: flex;
	flex-flow: column nowrap;
}

.footer .container, .footer .container .row {
	width: 100%;
	margin: auto;
}



@media screen and (min-width: 1600px) {
	.footer {
		overflow: hidden;
		width: 100%;
		position: absolute;
	    bottom: 0;
	    right: 0;
	}
	.footer__link {
		font-size: 1.5rem;
	}
}

@media screen and (min-width: 768px) {

	.footer {
		overflow: hidden;
		width: 100%;
		position: absolute;
	    bottom: 0;
	    right: 0;
	}
}

@media screen and (max-width: 1200px) {
	.foot-cert p {
		font-size: 1.125rem;
	}
}

@media screen and (max-width: 991px) {
	.foot-cert {
		flex-flow: column nowrap;
		margin: auto;
				margin-bottom: 1rem;
	}
	.text-md-left {
		text-align: center !important;
	}
	.foot-cert p {
		text-align: center;
		margin-right: auto;
		margin-bottom: 16px;
	}

	.footer__link {
		margin-right: 0;
	}

	.footer__links {
		margin-top: 16px;
		text-align:center;
	}
	.footer .row {
		flex-wrap: wrap;
	}

	.footer__social {
		text-align: center;
	}
}

@media screen and (max-width: 575px) {
	.footer__link {
		font-size: 1.25rem;
	}
	.foot-cert p {
		font-size: 1.125rem;
	}
}

@media screen and (max-width: 400px) {
	.footer__link {
		font-size: 1.05rem;
	}
	.foot-cert p {
		font-size: 1rem;
	}
	.footer__social p {
    		font-size: 1rem;
    	}
}
