/******************************************************************
Site Name: 
Author: Kook

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use SASS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************/
/*
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't 
understand (what's inside the media queries). We also need to
import the mixins file so SASS can understand the variables.
*/
/* import mixins */
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants. I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

******************************************************************/
/*********************
CLEARFIXIN'
*********************/
.cf {
  zoom: 1; }
  .cf:before, .cf:after {
    content: "";
    display: table; }
  .cf:after {
    clear: both; }

/*********************
TOOLS
*********************/
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*#303a41*/
/*darkblue*/
/*green*/
/*lightblue*/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/*********************
TYPOGRAPHY
*********************/
/* 	To embed your own fonts, use this syntax
	and place your fonts inside the
	library/fonts folder. For more information
	on embedding fonts, go to:
	http://www.fontsquirrel.com/
	Be sure to remove the comment brackets.
*/
/*	@font-face {
    	font-family: 'Font Name';
    	src: url('/library/fonts/font-name.eot');
    	src: url('/library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('/library/fonts/font-name.woff') format('woff'),
             url('/library/fonts/font-name.ttf') format('truetype'),
             url('/library/fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on December 20, 2018 */
@font-face {
  font-family: 'didact_gothicregular';
  src: url("/library/Client/fonts/didactgothic-regular-webfont.woff2") format("woff2"), url("/library/Client/fonts/didactgothic-regular-webfont.woff") format("woff");
  font-display: fallback;
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'ralewaybold';
  src: url("/library/Client/fonts/raleway-bold-webfont.woff2") format("woff2"), url("/library/Client/fonts/raleway-bold-webfont.woff") format("woff");
  font-display: fallback;
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'ralewayregular';
  src: url("/library/Client/fonts/raleway-regular-webfont.woff2") format("woff2"), url("/library/Client/fonts/raleway-regular-webfont.woff") format("woff");
  font-display: fallback;
  font-weight: normal;
  font-style: normal; }

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

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

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

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

.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid; }

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f; }

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8; }

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4; }

.alert-success {
  border-color: #deeaae;
  background: #e6efc2; }

/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);

transition-property: property_name; 				
transition-duration: duration; 				
transition-timing-function: timing_function; 				
transition-delay: delay;


*/
/*needed for when using scroll-down easing to anchor point on page*/
.scrollpoint {
  display: block;
  position: relative;
  top: -110px;
  visibility: hidden; }

/*********************
Border Radius
*********************/
/*
USAGE: @include border-radius($small-border-radius);
*/
/*********************
Image zoom
*********************/
/*
USAGE: @include transform($zoom);
*/
/*********************
BOX Shadow
*********************/
/*
USAGE: @include box-shadow($boxshadow);
*/
/*********************
Align Center
*********************/
/*
USAGE: 
@include center(); 
@include center(true, false);
@include center(false, true); 
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); 
@mixin css-gradient($from: #dfdfdf, $to: #f8f8f8) {
	background-color: $to;
	background-image: -webkit-gradient(linear, left top, left bottom, from($from), to($to));
	background-image: -webkit-linear-gradient(top, $from, $to);
	background-image: -moz-linear-gradient(top, $from, $to);
	background-image: -o-linear-gradient(top, $from, $to);
	background-image: linear-gradient(to bottom, $from, $to);
}*/
/*********************
BOX SIZING
*********************/
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/* @include box-sizing(border-box); */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/********************************************
MIXIN CREATED FOR WHEN YOU NEED A BREAKPOINT
********************************************/
/*
USAGE: @include bp(baby-screen) {
    width: 100%;
  }
*/
/*********************
BUTTONS
*********************/
.button, button {
  padding: 0.3em 1.25em;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #231f20;
  background: transparent;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-radius: 2px;
  line-height: 2; }
  .button:hover, .button:focus, button:hover, button:focus {
    background: #b4ce2d;
    border-color: #b4ce2d;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }

.button.primary, #pushMenu .button {
  background: #35495e;
  border: none; }
  .button.primary:hover, .button.primary:focus, .button.primary:active, #pushMenu .button:hover, #pushMenu .button:focus, #pushMenu .button:active {
    background: #2c3c4e;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }

.button.tertiary {
  background: #a2b928;
  border: none; }
  .button.tertiary:hover, .button.tertiary:focus, .button.tertiary:active {
    background: #a2b928;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }

/*#bottomBlocks .button, #cta .button, .holdForm .button*/
/*body.fullWidth #content #leftcol > div:nth-child(even) .button,*/
.button.secondary {
  border: 1px solid #fff;
  background: transparent; }
  .button.secondary:hover, .button.secondary:focus, .button.secondary:active {
    background: #fff;
    border-color: #fff;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }

.button.showHide {
  /*&.bigger {
        &:before{line-height: 2.1;}
    }*/ }
  .button.showHide:before {
    content: "\f107";
    font-family: FontAwesome;
    position: relative;
    float: right;
    margin-left: 0.5em;
    font-size: large;
    line-height: 1.6;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
  .button.showHide.open {
    background: #594f51; }
    .button.showHide.open:before {
      content: "\f106";
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out; }

/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.

The grid below is a combination of the 1140 grid and Twitter Boostrap. 
I liked 1140 but Boostrap's grid was way more detailed so I merged them 
together, let's see how this works out. If you want to use 1140, the original 
values are commented out on each line.

******************************************************************/
.onecol {
  width: 5.801104972%; }

/* 4.85%;  } /* grid_1  */
.twocol {
  width: 14.364640883%; }

/* 13.45%; } /* grid_2  */
.threecol {
  width: 22.928176794%; }

/* 22.05%; } /* grid_3  */
.fourcol {
  width: 31.491712705%; }

/* 30.75%; } /* grid_4  */
.fivecol {
  width: 40.055248616%; }

/* 39.45%; } /* grid_5  */
.sixcol {
  width: 48.618784527%; }

/* 48%;    } /* grid_6  */
.sevencol {
  width: 57.182320438000005%; }

/* 56.75%; } /* grid_7  */
.eightcol {
  width: 65.74585634900001%; }

/* 65.4%;  } /* grid_8  */
.ninecol {
  width: 74.30939226%; }

/* 74.05%; } /* grid_9  */
.tencol {
  width: 82.87292817100001%; }

/* 82.7%;  } /* grid_10 */
.elevencol {
  width: 91.436464082%; }

/* 91.35%; } /* grid_11 */
.twelvecol {
  width: 99.999999993%; }

/* 100%;   } /* grid_12 */
.onecol, .twocol, .threecol, .fourcol, .fivecol, .sixcol, .sevencol, .eightcol, .ninecol, .tencol, .elevencol, .twelvecol {
  position: relative;
  float: left;
  margin-left: 2.762430939%; }

.first {
  margin-left: 0; }

.last {
  float: right; }

/*masonry plugin
******************************************************************/
.grid:after {
  content: '';
  display: block;
  clear: both; }

.grid-sizer,
.grid-item {
  width: 19%; }

.gutter-sizer {
  width: 1%; }

.grid-item {
  min-height: 120px;
  float: left;
  margin-bottom: 1%; }

.grid-item--width2 {
  width: 50%; }

.grid-item--height2 {
  min-height: 240px; }

body:not(.admindex) .grid > br {
  display: none; }

/******************************************************************
Site Name: 
Author: 

Stylesheet: 481px and Up Stylesheet

This stylesheet is loaded for larger devices. It's set to 
481px because at 480px it would load on a landscaped iPhone.
This isn't ideal because then you would be loading all those
extra styles on that same mobile connection. 

A word of warning. This size COULD be a larger mobile device,
so you still want to keep it pretty light and simply expand
upon your base.scss styles.

******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
ul.responsive3 .slideshow_caption p.h1, .heading h1 {
  font-size: 2em; }

blockquote .h2, body.Home #topblocks h2 {
  font-size: 1.6em; }

.slideshow_caption a.button, #bottomblocks .button {
  font-size: 1.1em; }

.header h6 {
  font-size: 0.8em; }

/*********************
GENERAL STYLES
*********************/
/*********************
LAYOUT & GRID STYLES
*********************/
.row-small {
  max-width: 1200px; }

.row {
  max-width: 1600px; }

header .row {
  max-width: 1600px; }

/*********************
HEADER STYLES
*********************/
/*.header {
	.menu {
		margin: 0 auto;
		width: 100%;
	}
	
	#accountMenu {
		
	}
	
	
	#logo {
		position: absolute;
		left: 2%;
	}
	
}*/
/***********************
HERO - INNER PAGES
************************/
body:not(.Home) #Hero .topBlock h1, body:not(.Home) #Hero .topBlock .h1 {
  padding: .5em 1em;
  width: auto;
  bottom: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0); }

/*********************
NAVIGATION STYLES
*********************/
.menuWrap {
  width: 95%; }

.topMenu {
  text-align: right; }
  .topMenu a.toggleMenu {
    margin-top: 0.75em;
    padding: 2% 4%; }

/*********************
CONTENT STYLES
*********************/
/* content area all inner pages */
blockquote:before {
  /*margin-bottom:5em;*/
  float: left;
  font-size: 2em; }

/*********************
HOME STYLES
*********************/
body.Home #content #leftcol > div > div > div.last img body.Landing #content #leftcol > div {
  padding: 4em 0; }

/*********************
BLOCK LAYOUT
**********************/
.columnlayout > div, .columnlayout li {
  width: 50%; }

/*********************
NEWS LISTING
*********************/
div.listingImg {
  float: left;
  width: 30%; }

div.listingTxt {
  float: left;
  width: 70%; }

div.caseStudy {
  float: left;
  width: 48%;
  padding: 1em 0 2em 0;
  position: relative;
  margin-right: 1.9%; }

/*********************
GALLERY
*********************/
#gallery li {
  width: 22.5%;
  margin-right: 2%; }

/*********************
VIDEOS
*********************/
.videoWrapper {
  margin-left: 0px;
  margin-right: 0px; }

/*************************
THIS IS FOR THE PARALLAX SCROLL
*************************/
#trusticons .parallax-window {
  position: relative;
  padding: 5em 0;
  height: 500px;
  text-align: center;
  margin-top: 0; }

/*********************
FOOTER STYLES
*********************/
#confidence {
  background: black; }

#address form {
  margin: 0 0; }

#footer > div {
  text-align: left; }
  #footer > div #copyright .first a {
    display: inline; }
  #footer > div #facebook {
    text-align: center; }

/*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
/*SLIDER*/
/* Bug fix for flashing on Slick slideshow */
/*Full width slider with captions */
ul.responsive3 .slick-list .slick-track .slick-slide img {
  /*height: 520px;*/ }

ul.responsive3 .slick-slider .slick-active img {
  margin-left: -400px; }

/*Fix to prevent last slide flashing*/
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-perspective: 1000px; }

/*************************
STICKY BACK TO TOP
*************************/
.cd-top {
  bottom: 1em; }

/*********************
Sticky CTA
*********************/
#stickyCTA {
  bottom: 1em;
  right: 4em;
  text-align: right;
  width: 340px;
  /*turn onn button styling for mobile*/ }
  #stickyCTA .button.cta {
    width: auto;
    border-radius: 2px; }

/* OVERWRITES NEEDED FOR HISITE BOOKING FORM */
#widgetForm {
  text-align: left; }

#HDbookingWidget > div {
  width: auto; }

/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet Landscape

Needed to change the menu styling from mobile to desktop

******************************************************************/
.mobileOnly {
  display: none; }

.desktopOnly {
  display: inline-block; }

h1, .h1 {
  font-size: 2em; }

h2, .h2, #homeMission {
  font-size: 1.8em; }

.bigger, h3, .h3, h4, .h4 {
  font-size: 1.2em; }

.submenu a, .topMenu .nav li a {
  font-size: 0.9em; }

#homeMission {
  font-weight: 700; }

/*************************
Colours
*************************/
.white {
  color: #fff; }

/*********************
LAYOUT & GRID STYLES
*********************/
.row, body.Home #content #leftcol > div > div, body.fullWidth #leftcol > div > div, body.Apartment #leftcol > div > div {
  padding: 2em 0; }

/* Reduce padding on some rows*/
#breadcrumbs .row, #bookForm .row {
  padding: 1em 0; }

#content .row, body.fullWidth #leftcol > div > div:first-of-type {
  padding: 0 0 2em 0; }

/*Increase padding content some rows */
#homeBlocks .row {
  padding: 2em 0; }

/* Restrict width on some rows and content areas that behave like rows*/
/*Homepage Confidence triggers reponding via flex*/
ul.confidence li {
  width: 25%; }
  ul.confidence li:first-child {
    animation-duration: 2s;
    animation-delay: 0s; }
  ul.confidence li:nth-child(2) {
    animation-duration: 3s;
    animation-delay: 0.3s; }
  ul.confidence li:nth-child(3) {
    animation-duration: 3s;
    animation-delay: 0.6s; }
  ul.confidence li:nth-child(4) {
    animation-duration: 3s;
    animation-delay: 0.9s; }

#aboutBlocks {
  padding: 0em; }
  #aboutBlocks > div {
    width: 40%;
    flex: 1 1 auto;
    display: inline-block;
    margin: 0em;
    position: relative;
    overflow: hidden; }
  #aboutBlocks img {
    display: block;
    height: auto;
    max-width: inherit;
    position: absolute;
    z-index: 0; }
  #aboutBlocks p {
    margin: 0; }
  #aboutBlocks .box {
    padding: 3em; }

/*********************
SPRITE
*********************/
#logo {
  width: 100px;
  height: 52px;
  background-size: 100px 52px; }

/*********************
HEADER STYLES
*********************/
body.Home .header {
  /*height: 112.09px;*/ }

.header {
  height: 112.09px; }
  .header .row {
    position: relative;
    min-height: 90px; }
  .header #logo, .header #accountMenu {
    transform: none; }
  .header #logo {
    left: 0%;
    top: 0.5em; }
  .header #accountMenu {
    top: 10%;
    right: 0; }
  .header h6 {
    position: absolute;
    top: 30%;
    right: 0;
    text-align: right; }
  .header #mainMenu {
    display: inline-block;
    position: absolute;
    right: 0%;
    bottom: 0%; }

#bookForm.smallSearch {
  top: 90px; }

#bookForm .row {
  min-height: unset; }

/**************************
HERO - Home
***************************/
/*body.Home #imageslider {max-height: 570px; overflow:hidden;}*/
body:not(.Home) #hero .topBlock img {
  max-width: 1200px; }

/*hero*/
/*********************
NAVIGATION STYLES
*********************/
/*#touchMenu*/
.menu-btn {
  display: none; }

/*.menuWrap {
	width: 74.30939226%;
}*/
#mainMenu {
  /*padding: 1em 0 0.5em 0;*/ }

.topMenu {
  text-align: right;
  margin-left: auto;
  margin-right: auto;
  float: right;
  clear: none;
  /* end .nav */ }
  .topMenu a.toggleMenu {
    display: none; }
  .topMenu .nav {
    position: relative;
    width: auto;
    border: 0;
    display: inline;
    /* end .menu ul li */ }
    .topMenu .nav > li {
      display: inline-block;
      padding: 0 0.4em;
      /*Prominent contact link*/
      /*&:last-child {
                > a {
                    background: $color-secondary;
                    @include border-radius($small-border-radius);
                    padding: 0.5em 1em;
                    @include transition(all 0.5s ease-in-out);

                    &:hover, &:focus, &:active, &.activerootmenulink {
                        background: darken($color-secondary, 15%);
                        @include transition(all 0.5s ease-in-out);
                        color: $white;
                    }
                }
            }*/
      /*turn some of the main nav items OFF for public*/
      /*&:first-child > a{
				display:none;
			}
			
			&:nth-child(6) {
				display:none;
			}
			&:nth-child(7) {
				display:none;
			}
			*/ }
      .topMenu .nav > li > a {
        outline: none; }
        .topMenu .nav > li > a:hover, .topMenu .nav > li > a:focus {
          background: transparent; }
        .topMenu .nav > li > a.parent:after {
          content: "\f107";
          font-family: "Font Awesome 5 Pro";
          font-weight: 300;
          display: block;
          float: right;
          font-size: large;
          padding-left: 0.3em;
          line-height: 1.5; }
      .topMenu .nav > li:first-child {
        display: none; }
      .topMenu .nav > li:nth-child(2) {
        background: #b4ce2d; }
        .topMenu .nav > li:nth-child(2) a {
          color: white;
          font-weight: 900; }
    .topMenu .nav li {
      position: relative;
      /* highlight current page */
      /*
			plan your menus and drop-downs wisely.
			*/
      /* showing sub-menus */ }
      .topMenu .nav li a {
        padding: 0.5em 0em;
        background: none;
        border-bottom: none; }
        .topMenu .nav li a.parent:before {
          display: none; }
      .topMenu .nav li a.activerootmenulink {
        color: #35495e; }
      .topMenu .nav li ul,
      .topMenu .nav li ul.sub-menu,
      .topMenu .nav li ul.children {
        position: absolute;
        z-index: 9999;
        left: -9999px;
        border-top: 2px solid #35495e; }
        .topMenu .nav li ul li,
        .topMenu .nav li ul.sub-menu li,
        .topMenu .nav li ul.children li {
          /*
					if you need to go deeper, go nuts
					just remember deeper menus suck
					for usability.
					*/ }
          .topMenu .nav li ul li a,
          .topMenu .nav li ul.sub-menu li a,
          .topMenu .nav li ul.children li a {
            padding: 0.5em 0.5em;
            display: block;
            width: 250px;
            border-top: none;
            border-radius: 0;
            margin-right: 0; }
            .topMenu .nav li ul li a:hover, .topMenu .nav li ul li a:focus,
            .topMenu .nav li ul.sub-menu li a:hover,
            .topMenu .nav li ul.sub-menu li a:focus,
            .topMenu .nav li ul.children li a:hover,
            .topMenu .nav li ul.children li a:focus {
              border-top: none; }
          .topMenu .nav li ul li ul,
          .topMenu .nav li ul.sub-menu li ul,
          .topMenu .nav li ul.children li ul {
            border-top: none; }

/* end .topMenu */
.nav > li.hover > ul {
  left: 0; }

.nav li li ul {
  left: -9999px;
  z-index: 99;
  position: absolute; }

.nav li li.hover ul {
  left: 100%;
  top: 0;
  z-index: 99;
  position: absolute; }

/* active state on home - not sure where else to put this for now*/
/*********************
BLOCK LAYOUT
**********************/
.columnlayout > div, .columnlayout li {
  width: 100%; }

/*Top blocks inner pages*/
/*body:not(.Home) .topBlock {	
	> div {	
        width: 50%;	
        align-self:center;
	}

    max-height: 445px;
    overflow: hidden;
    
}*/
/*Right Blocks*/
#rightcol h4 {
  text-align: left; }

/*Bottom Blocks*/
#bottomBlocks .block {
  margin-bottom: 2em;
  margin: 0 auto; }

/*layout needed for list items */
#bottomBlocks #block_26 ul li {
  display: inline-block;
  width: 48%;
  margin-bottom: 0.5em; }

/*spacing needed for upcoming events blocks */
.columnlayout.eventsBlocks {
  justify-content: space-between; }
  .columnlayout.eventsBlocks > article, .columnlayout.eventsBlocks > div {
    width: 46%; }

/*Full width slider */
body.Home #hero {
  overflow: hidden; }

ul.responsive3 {
  max-height: none; }
  ul.responsive3 .slick-list .slick-track .slick-slide {
    /*height:500px;*/ }
    ul.responsive3 .slick-list .slick-track .slick-slide:before {
      background-color: rgba(0, 0, 0, 0.35); }
    ul.responsive3 .slick-list .slick-track .slick-slide img {
      /*height: 420px;*/ }
    ul.responsive3 .slick-list .slick-track .slick-slide .slideshow_caption {
      text-align: center;
      /*margin: 0 auto;padding:2em; max-width:50%;*/ }
  ul.responsive3 .slick-slider .slick-active img {
    margin-left: 0; }
  ul.responsive3 .slick-prev, ul.responsive3 .slick-next {
    top: 50%; }
  ul.responsive3 .slick-next {
    right: 0px; }
  ul.responsive3 .slick-prev {
    left: 0; }
  ul.responsive3 .slick-slider .slick-track, ul.responsive3 .slick-slider .slick-list {
    -webkit-perspective: 1000px; }

.slick-slider {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  max-width: 100%;
  overflow: hidden; }
  .slick-slider.responsive2 {
    background: transparent; }
    .slick-slider.responsive2 .slick-slide {
      padding: 2em;
      margin: 0em 2em 0em 2em;
      background: #fff;
      border: 1px solid #e6e6e6;
      display: block;
      overflow: hidden; }
      .slick-slider.responsive2 .slick-slide img {
        /*padding: 1em;*/ }

/*************************
PRODUCTS
*************************/
.products .slideshow_fade_container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }
  .products .slideshow_fade_container img {
    width: 30%;
    flex: 1 1 auto;
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 0em 1.5em; }

/*************************
STICKY BACK TO TOP
*************************/
.cd-top {
  height: 50px;
  width: 50px; }

/*********************
Sticky CTA
*********************/
/******************************************************************
Site Name: 
Author: 

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop. 

******************************************************************/
.header #accountmenu h2 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.header .clearHeader > .row {
  min-height: 120px; }

.header .clearHeader #logo {
  width: 125px;
  height: 60px;
  background-size: 125px 60px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.header .darkHeader > .row {
  min-height: 100px; }

.header .darkHeader #logo {
  width: 125px;
  height: 60px;
  background-size: 125px 60px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.header #mainMenu {
  bottom: 10%; }

#content {
  height: auto; }

/*.slick-prev, .slick-next { top: 50%; }
.slick-next { right: 50px; }
.slick-prev { left: 50px; }
.slick-slider .slick-track, .slick-slider .slick-list { -webkit-perspective: 1000px; }*/
/* 
you can call the larger styles if you want, but there's really no need 
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
/* IE 8 and below Target every third home services div to remove right padding - adjascent slibling selectors*/
/*target every 4th*/
.columnlayout div + div + div + div,
.columnlayout div + div + div + div + div + div + div + div,
.columnlayout div + div + div + div + div + div + div + div + div + div + div + div {
  margin-right: 0%;
  border-right: none; }

/*target every other*/
.columnlayout div + div + div + div + div,
.columnlayout div + div + div + div + div + div + div + div + div .columnlayout div + div + div + div + div + div + div + div + div + div + div + div + div {
  margin-right: 2%; }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  #logo {
    background-image: url("../images/logo-2x.png"); } }

/*# sourceMappingURL=ie.css.map */
