/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
/* 	
--------------------------------------------------
PLUGINS
-------------------------------------------------- 
*/
/* 	
--------------------------------------------------
TABLE OF CONTENTS
-------------------------------------------------- 

1.0 SLICK CAROUSEL
2.0 LIGHTBOX
3.0 ANIMATE


*/
/*

BOOTSTRAP BREAKPOINTS

.col-xs-	< 768px		(container width 100%)
.col-sm-	> 768px		(container width 750px)
.col-md-	> 992px		(container width 970px)
.col-lg-	> 1200px	(container width 1170px)

*/
/*  
--------------------------------------------------
1.0 SLICK CAROUSEL            
-------------------------------------------------- 
*/
/*
* http://kenwheeler.github.io/slick/
*/
/* Slider */
/*  
--------------------------------------------------
2.0 LIGHTBOX          
-------------------------------------------------- 
*/
/*
* Lightbox for Bootstrap 3 by @ashleydw
* https://github.com/ashleydw/lightbox
*
* License: https://github.com/ashleydw/lightbox/blob/master/LICENSE
*/
.ekko-lightbox-container {
  position: relative;
}

.ekko-lightbox-nav-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
}

.ekko-lightbox-nav-overlay a {
  width: 49%;
  height: 100%;
  z-index: 100;
  display: block;
}

.ekko-lightbox .ion-chevron-left {
  float: left;
}

.ekko-lightbox .ion-chevron-right {
  float: right;
}

.ekko-lightbox-nav-overlay a::before {
  position: absolute;
  top: 50%;
  z-index: 100;
  display: block;
  width: 50px;
  height: 50px;
  font-size: 20px;
  text-align: center;
  line-height: 52px !important;
  color: white;
  background-color: #0096d7;
  transform: translateY(-50%);
  transition: background-color 0.3s ease-in-out 0s;
}

.ekko-lightbox-nav-overlay .ion-chevron-left::before {
  left: 0;
}

.ekko-lightbox-nav-overlay a.ion-chevron-right::before {
  right: 0;
}

html.no-touch .ekko-lightbox-nav-overlay a:hover::before {
  text-decoration: none;
  color: white;
  background-color: rgb(0, 132.2093023256, 189.5);
}

.ekko-lightbox .modal-footer {
  text-align: left;
}

.modal-backdrop.in {
  opacity: 0.85;
  background-color: black;
}

.ekko-lightbox .modal-content {
  box-shadow: none;
  border-radius: 0;
  border: none;
  background-color: transparent;
}

.ekko-lightbox .modal-header {
  border: 0;
  padding-left: 0;
  padding-right: 0;
}

.ekko-lightbox .modal-header .close {
  opacity: 0.5;
  color: white;
  text-shadow: 0;
  margin-top: -10px;
  font-size: 30px;
}

.ekko-lightbox .modal-header .close:hover {
  opacity: 1;
}

.ekko-lightbox .modal-header h4.modal-title {
  color: white;
  padding: 0;
}

.ekko-lightbox .modal-body {
  padding: 0;
}

.ekko-lightbox .modal-footer {
  opacity: 0.9;
  border: 0;
  color: white;
  padding: 0;
  margin: 16px 0;
}

.ekko-lightbox-nav-overlay a {
  opacity: 0.9;
  text-shadow: none;
}

.ekko-lightbox .modal-dialog {
  padding: 15px;
}

.ekko-lightbox {
  padding: 60px 15px 15px;
  margin: 0 auto;
  width: auto;
}

.ekko-lightbox .modal-header,
.ekko-lightbox .modal-body,
.ekko-lightbox .modal-content,
.ekko-lightbox .modal-footer,
.ekko-lightbox .modal-dialog {
  min-width: 100%;
  padding: 0;
  margin: 0 auto;
}

.ekko-lightbox .modal-header {
  padding: 10px 0;
}

.ekko-lightbox .modal-footer {
  padding: 20px 0;
}

@media (min-width: 1200px) {
  .ekko-lightbox .modal-header,
  .ekko-lightbox .modal-body,
  .ekko-lightbox .modal-content,
  .ekko-lightbox .modal-footer,
  .ekko-lightbox .modal-dialog {
    min-width: 1140px;
    max-width: 1140px;
  }
}
/*  
--------------------------------------------------
3.0 ANIMATE          
-------------------------------------------------- 
*/
/*
	Animate.css - http://daneden.me/animate
	Licensed under the MIT license - http://opensource.org/licenses/MIT

	Copyright (c) 2015 Daniel Eden
*/
.animated {
  animation-duration: 1.25s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
  animation-duration: 0.75s;
}
@keyframes bounce {
  0%, 100%, 20%, 53%, 80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  0%, 100%, 50% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}
@keyframes wobble {
  0% {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes bounceIn {
  0%, 100%, 20%, 40%, 60%, 80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0%, 100%, 60%, 75%, 90% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  100% {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0%, 100%, 60%, 75%, 90% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  100% {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0%, 100%, 60%, 75%, 90% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0%, 100%, 60%, 75%, 90% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transition-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transition-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  100% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  0% {
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    transform: translateY(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    transform: translateX(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    transform: translateX(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    transform: translateY(0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    transform: translateY(100%);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    transform: translateX(-100%);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    transform: translateX(100%);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    transform: translateY(-100%);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}
@keyframes rollInRight {
  0% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}
.rollInRight {
  animation-name: rollInRight;
}

/* 
EXTENDED WITH THIS 
http://www.oxygenna.com/tutorials/scroll-animations-using-waypoints-js-animate-css 
*/
.os-animation {
  opacity: 0;
}

.os-animation.animated {
  opacity: 1;
}

/*	
--------------------------------------------------
END
-------------------------------------------------- 
*/
/* 	
--------------------------------------------------
uSkinned.net
BASE
-------------------------------------------------- */
/* 	
--------------------------------------------------
TABLE OF CONTENTS 
-------------------------------------------------- 

1.0 LINKS
2.0 LISTS
3.0 MISC
4.0 TYPOGRAPHY

*/
/*

BOOTSTRAP BREAKPOINTS

.col-xs-	< 768px		(container width 100%)
.col-sm-	> 768px		(container width 750px)
.col-md-	> 992px		(container width 970px)
.col-lg-	> 1200px	(container width 1170px)

*/
/*	
--------------------------------------------------
1.0 LINKS
-------------------------------------------------- 
*/
/*	
--------------------------------------------------
2.0 LISTS
-------------------------------------------------- 
*/
ul,
ol {
  padding: 0;
  margin: 0 0 15px;
  line-height: 1.4;
}

ul {
  margin-left: 16px;
  list-style: disc outside;
}

ol {
  margin-left: 18px;
  list-style: decimal;
}

ul ul,
ol ol {
  padding: 4px 0 0 8px;
}

ul ul {
  list-style: circle outside;
}

ol ol {
  list-style: lower-roman;
}

li {
  margin-bottom: 4px;
}

dl dt {
  font-weight: 700;
  padding-bottom: 2px;
}

dl dd {
  padding-bottom: 4px;
}

ul.nav,
ol.nav,
nav ul,
nav ol,
ul.list,
ol.list,
nav ul li,
nav ol li,
ul.list li,
ol.list li {
  padding: 0;
  margin: 0;
  list-style: none;
  line-height: 1;
}

/* 	
-------------------------------------------------- 
3.0 MISC
-------------------------------------------------- 
*/
.image {
  position: relative;
  overflow: hidden;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  transform: scale(1);
}

.image img,
.apc.banner .image,
.apc.pod-windows .image {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.15);
  transition: transform 0.2s ease-in-out 0s, background-size 0.2s ease-in-out 0s;
}

.image img.lazyloaded,
.apc.banner .image.lazyloaded,
.apc.pod-windows .image.lazyloaded {
  transform: scale(1);
}

/* IMAGE TRANSITIONS */
.image,
.image.video {
  overflow: hidden;
  padding: 0;
}

html.no-touch .image a:hover img,
html.no-touch a:hover .image img,
html.no-touch .apc.pod-windows .item a:hover .image {
  transform: scale(1.05);
}

.ekko-lightbox img {
  width: auto;
  height: auto !important;
  margin: 0 auto;
}

.image .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 101;
  padding: 5px 10px 7px;
  font-size: 85%;
  font-style: italic;
  opacity: 0.8;
  color: white;
  background-color: rgba(11, 90, 156, 0.6);
}

.image.img-circle .caption {
  left: 50%;
  transform: translateX(-50%);
}

/*
.items-4 .image .caption {
    position: relative;
    padding: 5px 0;
    color: rgba($base-text, 1);
    background: none;
}
*/
i.fa,
i.before {
  margin-right: 5px;
}

i.fa.after,
i.after {
  margin-right: 0;
  margin-left: 5px;
}

/*	
--------------------------------------------------
END
-------------------------------------------------- 
*/
/* 	
--------------------------------------------------
uSkinned.net
PALETTE
-------------------------------------------------- 
*/
/* 	
--------------------------------------------------
TABLE OF CONTENTS
-------------------------------------------------- 

1.0 BACKGROUNDS
2.0 TEXT
3.0 BORDERS
4.0 BUTTONS

*/
/*	
--------------------------------------------------
1.0 BACKGROUNDS
-------------------------------------------------- 
*/
.c1-bg {
  background-color: #0096d7;
}

.c1-bg.bg-perc_90 {
  background-color: rgba(0, 150, 215, 0.9);
}

.c1-bg.bg-perc_80,
html.no-touch .apc.pod-windows .item a.info.c1-bg:hover::before {
  background-color: rgba(0, 150, 215, 0.8);
}

.c1-bg.bg-perc_70 {
  background-color: rgba(0, 150, 215, 0.7);
}

.c1-bg.bg-perc_60 {
  background-color: rgba(0, 150, 215, 0.6);
}

/*.c1-bg.bg-perc_50,
.apc.banner .item.overlay.c1-bg::before,
.apc.pod-windows .item.overlay .info.c1-bg::before {
    background-color: rgba($c1, 0.5);
}*/
.c1-bg.bg-perc_50,
.apc.pod-windows .item.overlay .info.c1-bg::before {
  background-color: red;
}

.c1-bg.bg-perc_40 {
  background-color: rgba(0, 150, 215, 0.4);
}

.c1-bg.bg-perc_30 {
  background-color: rgba(0, 150, 215, 0.3);
}

.c1-bg.bg-perc_20 {
  background-color: rgba(0, 150, 215, 0.2);
}

.c1-bg.bg-perc_10 {
  background-color: rgba(0, 150, 215, 0.1);
}

.c2-bg {
  background-color: #2e89b6;
}

.c2-bg.bg-perc_90 {
  background-color: rgba(46, 137, 182, 0.9);
}

.c2-bg.bg-perc_80,
html.no-touch .apc.pod-windows .item a.info.c2-bg:hover::before {
  background-color: rgba(46, 137, 182, 0.8);
}

.c2-bg.bg-perc_70 {
  background-color: rgba(46, 137, 182, 0.7);
}

.c2-bg.bg-perc_60 {
  background-color: rgba(46, 137, 182, 0.6);
}

/*.c2-bg.bg-perc_50,
.apc.banner .item.overlay.c2-bg::before,
.apc.pod-windows .item.overlay .info.c2-bg::before {
    background-color: rgba($c2, 0.5);
}*/
.c2-bg.bg-perc_50,
.apc.pod-windows .item.overlay .info.c2-bg::before {
  background-color: red;
}

.c2-bg.bg-perc_40 {
  background-color: rgba(46, 137, 182, 0.4);
}

.c2-bg.bg-perc_30 {
  background-color: rgba(46, 137, 182, 0.3);
}

.c2-bg.bg-perc_20 {
  background-color: rgba(46, 137, 182, 0.2);
}

.c2-bg.bg-perc_10 {
  background-color: rgba(46, 137, 182, 0.1);
}

.c3-bg {
  background-color: #0b5a9c;
}

.c3-bg.bg-perc_90 {
  background-color: rgba(11, 90, 156, 0.9);
}

.c3-bg.bg-perc_80,
html.no-touch .apc.pod-windows .item a.info.c3-bg:hover::before {
  background-color: rgba(11, 90, 156, 0.8);
}

.c3-bg.bg-perc_70 {
  background-color: rgba(11, 90, 156, 0.7);
}

.c3-bg.bg-perc_60 {
  background-color: rgba(11, 90, 156, 0.6);
}

/*.c3-bg.bg-perc_50,
.apc.banner .item.overlay.c3-bg::before,
.apc.pod-windows .item.overlay .info.c3-bg::before {
    background-color: rgba($c3, 0.5);
}*/
.c3-bg.bg-perc_50,
.apc.pod-windows .item.overlay .info.c3-bg::before {
  background-color: pink;
}

.c3-bg.bg-perc_40 {
  background-color: rgba(11, 90, 156, 0.4);
}

.c3-bg.bg-perc_30 {
  background-color: rgba(11, 90, 156, 0.3);
}

.c3-bg.bg-perc_20 {
  background-color: rgba(11, 90, 156, 0.2);
}

.c3-bg.bg-perc_10 {
  background-color: rgba(11, 90, 156, 0.1);
}

.c4-bg {
  background-color: #f0f3f4;
}

.c4-bg.bg-perc_90 {
  background-color: rgba(240, 243, 244, 0.9);
}

.c4-bg.bg-perc_80,
html.no-touch .apc.pod-windows .item a.info.c4-bg:hover::before {
  background-color: rgba(240, 243, 244, 0.8);
}

.c4-bg.bg-perc_70 {
  background-color: rgba(240, 243, 244, 0.7);
}

.c4-bg.bg-perc_60 {
  background-color: rgba(240, 243, 244, 0.6);
}

/*.c4-bg.bg-perc_50,
.apc.banner .item.overlay.c4-bg::before,
.apc.pod-windows .item.overlay .info.c4-bg::before {
    background-color: rgba($c4, 0.5);
}*/
.c4-bg.bg-perc_50,
.apc.pod-windows .item.overlay .info.c4-bg::before {
  background-color: pink;
}

.c4-bg.bg-perc_40 {
  background-color: rgba(240, 243, 244, 0.4);
}

.c4-bg.bg-perc_30 {
  background-color: rgba(240, 243, 244, 0.3);
}

.c4-bg.bg-perc_20 {
  background-color: rgba(240, 243, 244, 0.2);
}

.c4-bg.bg-perc_10 {
  background-color: rgba(240, 243, 244, 0.1);
}

.c5-bg,
#site {
  background-color: white;
}

.c5-bg.bg-perc_90 {
  background-color: rgba(255, 255, 255, 0.9);
}

.c5-bg.bg-perc_80,
html.no-touch .apc.pod-windows .item a.info.c5-bg:hover::before {
  background-color: rgba(255, 255, 255, 0.8);
}

.c5-bg.bg-perc_70 {
  background-color: rgba(255, 255, 255, 0.7);
}

.c5-bg.bg-perc_60 {
  background-color: rgba(255, 255, 255, 0.6);
}

/*.c5-bg.bg-perc_50,
.apc.banner .item.overlay.c5-bg::before,
.apc.pod-windows .item.overlay .info.c5-bg::before {
    background-color: rgba($c5, 0.5);
}*/
.c5-bg.bg-perc_50,
.apc.pod-windows .item.overlay .info.c5-bg::before {
  background-color: red;
}

.c5-bg.bg-perc_40 {
  background-color: rgba(255, 255, 255, 0.4);
}

.c5-bg.bg-perc_30 {
  background-color: rgba(255, 255, 255, 0.3);
}

.c5-bg.bg-perc_20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.c5-bg.bg-perc_10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.c6-bg {
  background-color: #dedede;
}

.c6-bg.bg-perc_90 {
  background-color: rgba(222, 222, 222, 0.9);
}

.c6-bg.bg-perc_80,
html.no-touch .apc.pod-windows .item a.info.c6-bg:hover::before {
  background-color: rgba(222, 222, 222, 0.8);
}

.c6-bg.bg-perc_70 {
  background-color: rgba(222, 222, 222, 0.7);
}

.c6-bg.bg-perc_60 {
  background-color: rgba(222, 222, 222, 0.6);
}

/*.c6-bg.bg-perc_50,
.apc.banner .item.overlay.c6-bg::before,
.apc.pod-windows .item.overlay .info.c6-bg::before {
    background-color: rgba($c6, 0.5);
}*/
.c6-bg.bg-perc_50,
.apc.pod-windows .item.overlay .info.c6-bg::before {
  background-color: red;
}

.c6-bg.bg-perc_40 {
  background-color: rgba(222, 222, 222, 0.4);
}

.c6-bg.bg-perc_30 {
  background-color: rgba(222, 222, 222, 0.3);
}

.c6-bg.bg-perc_20 {
  background-color: rgba(222, 222, 222, 0.2);
}

.c6-bg.bg-perc_10 {
  background-color: rgba(222, 222, 222, 0.1);
}

.modal-backdrop,
.modal-backdrop.in {
  background-color: black;
}

/*	
-------------------------------------------------- 
2.0 TEXT
-------------------------------------------------- 
*/
/* LINKS */
/* HEADINGS */
/* COLOURS */
.c1-text,
html.no-touch .btn.c1-text:hover,
.btn.c1-text:focus,
.btn.c1-text:active,
blockquote::before {
  color: #0096d7;
}

html.no-touch a.c1-text:not(.btn):hover,
a.c1-text:not(.btn):focus,
a.c1-text:not(.btn):active,
html.no-touch footer a:hover {
  color: rgb(0, 114.4186046512, 164);
}

.c1-text.text-perc_90 {
  color: rgba(0, 150, 215, 0.9);
}

.c1-text.text-perc_80 {
  color: rgba(0, 150, 215, 0.8);
}

.c1-text.text-perc_70 {
  color: rgba(0, 150, 215, 0.7);
}

.c1-text.text-perc_60 {
  color: rgba(0, 150, 215, 0.6);
}

.c1-text.text-perc_50 {
  color: rgba(0, 150, 215, 0.5);
}

.c1-text.text-perc_40 {
  color: rgba(0, 150, 215, 0.4);
}

.c1-text.text-perc_30 {
  color: rgba(0, 150, 215, 0.3);
}

.c1-text.text-perc_20 {
  color: rgba(0, 150, 215, 0.2);
}

.c1-text.text-perc_10 {
  color: rgba(0, 150, 215, 0.1);
}

.c2-text,
html.no-touch .btn.c2-text:hover,
.btn.c2-text:focus,
.btn.c2-text:active {
  color: #2e89b6;
}

html.no-touch a.c2-text:not(.btn):hover,
a.c2-text:not(.btn):focus,
a.c2-text:not(.btn):active {
  color: rgb(35.7105263158, 106.3552631579, 141.2894736842);
}

.c2-text.text-perc_90 {
  color: rgba(46, 137, 182, 0.9);
}

.c2-text.text-perc_80 {
  color: rgba(46, 137, 182, 0.8);
}

.c2-text.text-perc_70 {
  color: rgba(46, 137, 182, 0.7);
}

.c2-text.text-perc_60 {
  color: rgba(46, 137, 182, 0.6);
}

.c2-text.text-perc_50 {
  color: rgba(46, 137, 182, 0.5);
}

.c2-text.text-perc_40 {
  color: rgba(46, 137, 182, 0.4);
}

.c2-text.text-perc_30 {
  color: rgba(46, 137, 182, 0.3);
}

.c2-text.text-perc_20 {
  color: rgba(46, 137, 182, 0.2);
}

.c2-text.text-perc_10 {
  color: rgba(46, 137, 182, 0.1);
}

.c3-text,
html.no-touch .btn.c3-text:hover,
.btn.c3-text:focus,
.btn.c3-text:active,
blockquote {
  color: #0b5a9c;
}

html.no-touch a.c3-text:not(.btn):hover,
a.c3-text:not(.btn):focus,
a.c3-text:not(.btn):active {
  color: rgb(14.3592814371, 117.4850299401, 203.6407185629);
}

.c3-text.text-perc_90 {
  color: rgba(11, 90, 156, 0.9);
}

.c3-text.text-perc_80 {
  color: rgba(11, 90, 156, 0.8);
}

.c3-text.text-perc_70 {
  color: rgba(11, 90, 156, 0.7);
}

.c3-text.text-perc_60 {
  color: rgba(11, 90, 156, 0.6);
}

.c3-text.text-perc_50 {
  color: rgba(11, 90, 156, 0.5);
}

.c3-text.text-perc_40 {
  color: rgba(11, 90, 156, 0.4);
}

.c3-text.text-perc_30 {
  color: rgba(11, 90, 156, 0.3);
}

.c3-text.text-perc_20 {
  color: rgba(11, 90, 156, 0.2);
}

.c3-text.text-perc_10 {
  color: rgba(11, 90, 156, 0.1);
}

.c4-text,
html.no-touch .btn.c4-text:hover,
.btn.c4-text:focus,
.btn.c4-text:active {
  color: #f0f3f4;
}

html.no-touch a.c4-text:not(.btn):hover,
a.c4-text:not(.btn):focus,
a.c4-text:not(.btn):active {
  color: rgb(210.5769230769, 219.4615384615, 222.4230769231);
}

.c4-text.text-perc_90 {
  color: rgba(240, 243, 244, 0.9);
}

.c4-text.text-perc_80 {
  color: rgba(240, 243, 244, 0.8);
}

.c4-text.text-perc_70 {
  color: rgba(240, 243, 244, 0.7);
}

.c4-text.text-perc_60 {
  color: rgba(240, 243, 244, 0.6);
}

.c4-text.text-perc_50 {
  color: rgba(240, 243, 244, 0.5);
}

.c4-text.text-perc_40 {
  color: rgba(240, 243, 244, 0.4);
}

.c4-text.text-perc_30 {
  color: rgba(240, 243, 244, 0.3);
}

.c4-text.text-perc_20 {
  color: rgba(240, 243, 244, 0.2);
}

.c4-text.text-perc_10 {
  color: rgba(240, 243, 244, 0.1);
}

.c5-text,
html.no-touch .btn.c5-text:hover,
.btn.c5-text:focus,
.btn.c5-text:active,
.c1-bg blockquote:not(.c1-text):not(.c2-text):not(.c3-text),
.c2-bg blockquote:not(.c1-text):not(.c2-text):not(.c3-text),
.c3-bg blockquote:not(.c1-text):not(.c2-text):not(.c3-text),
.c1-bg blockquote:not(.c1-text):not(.c2-text):not(.c3-text)::before {
  color: white;
}

html.no-touch a.c5-text:not(.btn):hover,
a.c5-text:not(.btn):focus,
a.c5-text:not(.btn):active {
  color: rgb(229.5, 229.5, 229.5);
}

.c5-text.text-perc_90 {
  color: rgba(255, 255, 255, 0.9);
}

.c5-text.text-perc_80 {
  color: rgba(255, 255, 255, 0.8);
}

.c5-text.text-perc_70 {
  color: rgba(255, 255, 255, 0.7);
}

.c5-text.text-perc_60 {
  color: rgba(255, 255, 255, 0.6);
}

.c5-text.text-perc_50 {
  color: rgba(255, 255, 255, 0.5);
}

.c5-text.text-perc_40 {
  color: rgba(255, 255, 255, 0.4);
}

.c5-text.text-perc_30 {
  color: rgba(255, 255, 255, 0.3);
}

.c5-text.text-perc_20 {
  color: rgba(255, 255, 255, 0.2);
}

.c5-text.text-perc_10 {
  color: rgba(255, 255, 255, 0.1);
}

.c6-text,
html.no-touch .btn.c6-text:hover,
.btn.c6-text:focus,
.btn.c6-text:active {
  color: #dedede;
}

html.no-touch a.c6-text:not(.btn):hover,
a.c6-text:not(.btn):focus,
a.c6-text:not(.btn):active {
  color: rgb(196.5, 196.5, 196.5);
}

.c6-text.text-perc_90 {
  color: rgba(222, 222, 222, 0.9);
}

.c6-text.text-perc_80 {
  color: rgba(222, 222, 222, 0.8);
}

.c6-text.text-perc_70 {
  color: rgba(222, 222, 222, 0.7);
}

.c6-text.text-perc_60 {
  color: rgba(222, 222, 222, 0.6);
}

.c6-text.text-perc_50 {
  color: rgba(222, 222, 222, 0.5);
}

.c6-text.text-perc_40 {
  color: rgba(222, 222, 222, 0.4);
}

.c6-text.text-perc_30 {
  color: rgba(222, 222, 222, 0.3);
}

.c6-text.text-perc_20 {
  color: rgba(222, 222, 222, 0.2);
}

.c6-text.text-perc_10 {
  color: rgba(222, 222, 222, 0.1);
}

/*	
--------------------------------------------------
3.0 BORDERS
-------------------------------------------------- 
*/
.c1-borders {
  border-color: #0096d7;
}

.c1-borders.borders-perc_90 {
  border-color: rgba(0, 150, 215, 0.9);
}

.c1-borders.borders-perc_80 {
  border-color: rgba(0, 150, 215, 0.8);
}

.c1-borders.borders-perc_70 {
  border-color: rgba(0, 150, 215, 0.7);
}

.c1-borders.borders-perc_60 {
  border-color: rgba(0, 150, 215, 0.6);
}

.c1-borders.borders-perc_50 {
  border-color: rgba(0, 150, 215, 0.5);
}

.c1-borders.borders-perc_40 {
  border-color: rgba(0, 150, 215, 0.4);
}

.c1-borders.borders-perc_30 {
  border-color: rgba(0, 150, 215, 0.3);
}

.c1-borders.borders-perc_20 {
  border-color: rgba(0, 150, 215, 0.2);
}

.c1-borders.borders-perc_10 {
  border-color: rgba(0, 150, 215, 0.1);
}

.c2-borders {
  border-color: #2e89b6;
}

.c2-borders.borders-perc_90 {
  border-color: rgba(46, 137, 182, 0.9);
}

.c2-borders.borders-perc_80 {
  border-color: rgba(46, 137, 182, 0.8);
}

.c2-borders.borders-perc_70 {
  border-color: rgba(46, 137, 182, 0.7);
}

.c2-borders.borders-perc_60 {
  border-color: rgba(46, 137, 182, 0.6);
}

.c2-borders.borders-perc_50 {
  border-color: rgba(46, 137, 182, 0.5);
}

.c2-borders.borders-perc_40 {
  border-color: rgba(46, 137, 182, 0.4);
}

.c2-borders.borders-perc_30 {
  border-color: rgba(46, 137, 182, 0.3);
}

.c2-borders.borders-perc_20 {
  border-color: rgba(46, 137, 182, 0.2);
}

.c2-borders.borders-perc_10 {
  border-color: rgba(46, 137, 182, 0.1);
}

.c3-borders {
  border-color: #0b5a9c;
}

.c3-borders.borders-perc_90 {
  border-color: rgba(11, 90, 156, 0.9);
}

.c3-borders.borders-perc_80 {
  border-color: rgba(11, 90, 156, 0.8);
}

.c3-borders.borders-perc_70 {
  border-color: rgba(11, 90, 156, 0.7);
}

.c3-borders.borders-perc_60 {
  border-color: rgba(11, 90, 156, 0.6);
}

.c3-borders.borders-perc_50 {
  border-color: rgba(11, 90, 156, 0.5);
}

.c3-borders.borders-perc_40 {
  border-color: rgba(11, 90, 156, 0.4);
}

.c3-borders.borders-perc_30 {
  border-color: rgba(11, 90, 156, 0.3);
}

.c3-borders.borders-perc_20 {
  border-color: rgba(11, 90, 156, 0.2);
}

.c3-borders.borders-perc_10 {
  border-color: rgba(11, 90, 156, 0.1);
}

.c4-borders {
  border-color: #f0f3f4;
}

.c4-borders.borders-perc_90 {
  border-color: rgba(240, 243, 244, 0.9);
}

.c4-borders.borders-perc_80 {
  border-color: rgba(240, 243, 244, 0.8);
}

.c4-borders.borders-perc_70 {
  border-color: rgba(240, 243, 244, 0.7);
}

.c4-borders.borders-perc_60 {
  border-color: rgba(240, 243, 244, 0.6);
}

.c4-borders.borders-perc_50 {
  border-color: rgba(240, 243, 244, 0.5);
}

.c4-borders.borders-perc_40 {
  border-color: rgba(240, 243, 244, 0.4);
}

.c4-borders.borders-perc_30 {
  border-color: rgba(240, 243, 244, 0.3);
}

.c4-borders.borders-perc_20 {
  border-color: rgba(240, 243, 244, 0.2);
}

.c4-borders.borders-perc_10 {
  border-color: rgba(240, 243, 244, 0.1);
}

.c5-borders {
  border-color: white;
}

.c5-borders.borders-perc_90 {
  border-color: rgba(255, 255, 255, 0.9);
}

.c5-borders.borders-perc_80 {
  border-color: rgba(255, 255, 255, 0.8);
}

.c5-borders.borders-perc_70 {
  border-color: rgba(255, 255, 255, 0.7);
}

.c5-borders.borders-perc_60 {
  border-color: rgba(255, 255, 255, 0.6);
}

.c5-borders.borders-perc_50 {
  border-color: rgba(255, 255, 255, 0.5);
}

.c5-borders.borders-perc_40 {
  border-color: rgba(255, 255, 255, 0.4);
}

.c5-borders.borders-perc_30 {
  border-color: rgba(255, 255, 255, 0.3);
}

.c5-borders.borders-perc_20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.c5-borders.borders-perc_10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.c6-borders {
  border-color: #dedede;
}

.c6-borders.borders-perc_90 {
  border-color: rgba(222, 222, 222, 0.9);
}

.c6-borders.borders-perc_80 {
  border-color: rgba(222, 222, 222, 0.8);
}

.c6-borders.borders-perc_70 {
  border-color: rgba(222, 222, 222, 0.7);
}

.c6-borders.borders-perc_60 {
  border-color: rgba(222, 222, 222, 0.6);
}

.c6-borders.borders-perc_50 {
  border-color: rgba(222, 222, 222, 0.5);
}

.c6-borders.borders-perc_40 {
  border-color: rgba(222, 222, 222, 0.4);
}

.c6-borders.borders-perc_30 {
  border-color: rgba(222, 222, 222, 0.3);
}

.c6-borders.borders-perc_20 {
  border-color: rgba(222, 222, 222, 0.2);
}

.c6-borders.borders-perc_10 {
  border-color: rgba(222, 222, 222, 0.1);
}

/*	
-------------------------------------------------- 
END
-------------------------------------------------- 
*/
/* 	
--------------------------------------------------
uSkinned.net
LAYOUT
-------------------------------------------------- 
*/
/* 	
--------------------------------------------------
TABLE OF CONTENTS
-------------------------------------------------- 

1.0 GENERAL
2.0 HEADER
3.0 CONTENT
4.0 FOOTER
    4.1 FOOTER NAV
5.0 NAVIGATION
    5.1 MAIN NAV
    5.3 TOP NAV
    5.3 SUB
    5.4 BREADCRUMB
    5.5 PAGINATION
    5.6 SITEMAP
    5.7 SOCIAL
    5.8 QUICK LINKS
    5.10 SLICK CAROUSEL NAVIGATION
6.0 PROMO PODS
7.0 LISTING
    7.1 BLOG LISTING
    7.2 SEARCH LISTING
    7.3 SECTION LISTING
    7.4 GRID LISTING
8.0 SITE WIDE PODS
    8.1 BLOCKQUOTE POD
    8.2 CODE POD
    8.3 GENERAL POD
    8.4 IMAGE POD
    8.5 LISTING POD
    8.6 NEWSLETTER POD
    8.7 VIDEO POD
9.0 STANDARD PAGE COMPONENTS
    9.1 TABBED
    9.2 ACCORDION
    9.3 QUOTES
    9.4 IMAGES
    9.5 GALLERY
    9.6 RESOURCES
    9.7 TABLES
    9.8 COMMENTS
    9.9 AUTHOR BIO
    9.10 IMAGE SLIDESHOW
    9.11 PRICING MENU
10.0 ADVANCED PAGE COMPONENTS
    10.1 STANDARD PAGE COMPONENTS ON ADVANCED PAGE
    10.2 BANNER
        10.2.2 BANNER VIDEOS
    10.3 CTA STRIP
    10.4 PROMO PODS
    10.5 TEXT WITH IMAGE / VIDEO
    10.6 TEXT WITH SIGNUP
    10.7 SIGNUP WITH LISTING
    10.8 APC TABBED
    10.9 GRID
    10.10 IMAGE CAROUSEL
    10.11 FEATURED BLOGS
    10.12 POD WINDOWS
9.0 FORMS
    9.1 SITE SEARCH
    9.2 AJAX LOADING
    9.3 COOKIES
10.0 MISC
    10.1 OVERLAY ICONS

*/
/*

BOOTSTRAP BREAKPOINTS

.col-xs-	< 768px		(container width 100%)
.col-sm-	> 768px		(container width 750px)
.col-md-	> 992px		(container width 970px)
.col-lg-	> 1200px	(container width 1170px)

*/
/*	
----------------------------------------------------------------------------------------------------
1.0 GENERAL
---------------------------------------------------------------------------------------------------- 
*/
body {
  position: relative;
  background-color: #f0f3f4;
  animation-duration: 0.5s;
  animation-name: fadeIn;
}

body:not(.no-header) {
  padding-top: 70px;
}

#site {
  position: relative;
  z-index: 2;
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
  body:not(.no-header) {
    padding-top: 156px;
  }
}
@media (min-width: 1500px) {
  body.fixed-width #site,
  body.fixed-width header {
    right: auto;
    left: auto;
    max-width: 1500px;
    margin: 0 auto;
  }
}
/*	
----------------------------------------------------------------------------------------------------
2.0 HEADER
---------------------------------------------------------------------------------------------------- 
*/
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  min-height: 70px;
  z-index: 500;
  overflow: visible;
  background-color: #fff;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease-in-out 0s, height 0.3s ease-in-out 0s, top 0.3s ease-in-out 0s, bottom 0.3s ease-in-out 0s, box-shadow 0.3s ease-in-out 0s;
}

html.reveal-out header {
  bottom: 0;
  height: 100%;
  max-height: 100%;
  overflow: auto;
  padding: 70px 0 20px;
}

html.nav-up header,
html.nav-down header {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
}

html.nav-down.reached-top header {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

@media (min-width: 0) and (max-width: 991px) {
  header nav.cta-link {
    margin: 15px;
  }
  header nav.cta-link a {
    display: block;
  }
}
@media (min-width: 480px) and (max-width: 991px) {
  header .container {
    width: 100%;
  }
}
@media (min-width: 992px) {
  html.nav-up header {
    top: -75px;
  }
  html.nav-down header {
    top: 0;
  }
  html.reveal-out header {
    padding: 0;
    overflow: visible;
    bottom: auto;
  }
  html.reveal-out header,
  header,
  header .container {
    height: 156px;
  }
  header .container {
    position: relative;
  }
  header nav.cta-link {
    position: absolute;
    top: 86.5px;
    right: 15px;
    z-index: 1000;
  }
  /*header nav.cta-link a.btn {
      padding-top: 14px;
      height: 50px;
  }*/
}
/*	
----------------------------------------------------------------------------------------------------
3.0 CONTENT
---------------------------------------------------------------------------------------------------- 
*/
.content {
  padding: 15px 0;
}

.content:not(.apc) .left-col,
.content:not(.apc) .right-col,
.content:not(.apc) .mid-col,
.content:not(.apc) .wide-col {
  overflow: hidden;
}

@media (max-width: 991px) {
  .content .left-col,
  .content .right-col,
  .content .mid-col {
    padding-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .content {
    padding: 30px 0;
  }
}
@media (min-width: 992px) {
  .content {
    padding: 45px 0;
  }
}
@media (min-width: 1200px) {
  .content {
    padding: 60px 0;
  }
}
/*	
----------------------------------------------------------------------------------------------------
4.0 FOOTER
---------------------------------------------------------------------------------------------------- 
*/
/*  
----------------------------------------------------------------------------------------------------
5.0 NAV
---------------------------------------------------------------------------------------------------- 
*/
/*  
----------------------------------------------------------------------------------------------------
6.0 - 8.0 SPC, APC, SWP
---------------------------------------------------------------------------------------------------- 
*/
/*  
----------------------------------------------------------------------------------------------------
6.0 STANDARD PAGE COMPONENTS
---------------------------------------------------------------------------------------------------- 
*/
.spc {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.apc .spc {
  margin-bottom: 0;
}

.spc .overview {
  margin-bottom: 15px;
}

.spc .outro {
  margin-top: 15px;
}

.spc .overview .text :first-child,
.spc .outro .text :first-child {
  margin-top: 0;
}

.spc .overview .text :last-child,
.spc .outro .text :last-child {
  margin-bottom: 0;
}

body.standard-page .spc .overview .info,
body.standard-page .spc .outro .info {
  width: 100% !important;
  float: none !important;
}

.spc .heading.main {
  font-size: 25px;
  margin: 0;
}

.spc .overview .heading.main + .text,
.spc .outro .heading.main + .text {
  margin: 15px 0 0;
}

.spc .item.items-1,
.spc .item.items-2,
.spc .item.items-3,
.spc .item.items-4 {
  margin-top: 15px;
  margin-bottom: 15px;
}

@media (min-width: 500px) and (max-width: 991px) {
  .item.col-xs-12:not(.items-1) {
    width: 50% !important;
  }
  .item.col-xs-12:not(.items-1):nth-of-type(2n+1) {
    clear: both;
  }
}
@media (min-width: 500px) and (max-width: 599px) {
  .promo-pods .alt .item.col-xs-12:not(.items-1) {
    width: 100% !important;
  }
}
@media (min-width: 768px) {
  .spc .heading.main {
    font-size: 30px;
  }
  .container-fluid .spc {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 992px) {
  .spc .heading.main {
    font-size: 35px;
  }
  .item.items-2 {
    width: 50%;
  }
  .item.items-3 {
    width: 33.3333333%;
  }
  .item.items-4 {
    width: 25%;
  }
  .item.items-2.col-xs-12:nth-of-type(2n+1),
  .item.items-3.col-xs-12:nth-of-type(3n+1),
  .item.items-4.col-xs-12:nth-of-type(4n+1) {
    clear: both;
  }
}
@media (min-width: 1200px) {
  .spc .heading.main {
    font-size: 40px;
  }
}
/*  
--------------------------------------------------
6.0.1 PANEL BEHIND PROMO AND LISTING ITEMS 
-------------------------------------------------- 
*/
.promo-pods .row:not(.alt) .item,
section:not(.listing-with-form) .listing:not(.short) .item {
  position: relative;
  padding-bottom: 15px;
}

.promo-pods .alt .item {
  padding-bottom: 0 !important;
}

.promo-pods .row:not(.alt) .item .image,
.promo-pods .row:not(.alt) .item .heading,
.promo-pods .row:not(.alt) .item .text,
.promo-pods .row:not(.alt) .item .link,
section:not(.listing-with-form) .listing:not(.short) .item .image,
section:not(.listing-with-form) .listing:not(.short) .item .heading,
section:not(.listing-with-form) .listing:not(.short) .item .text,
section:not(.listing-with-form) .listing:not(.short) .item .link,
section:not(.listing-with-form) .listing:not(.short) .item .meta {
  position: relative;
  z-index: 2;
}

.promo-pods .item .image,
.listing .item .image {
  margin: 0 !important;
}

/*
.promo-pods .row:not(.alt) .item .image:not(.img-circle),
section:not(.listing-with-form) .listing:not(.short) .item .image:not(.img-circle) {
    margin-bottom: $base-half-spacing;
}
*/
.promo-pods .row:not(.alt) .item .image.img-circle,
section:not(.listing-with-form) .listing:not(.short) .item .image.img-circle {
  padding: 15px;
}

.promo-pods .alt .item .image {
  margin: 0;
}

.promo-pods .row:not(.alt) .item .heading,
.promo-pods .row:not(.alt) .item .text,
.promo-pods .row:not(.alt) .item .link,
section:not(.listing-with-form) .listing:not(.short) .item .heading,
section:not(.listing-with-form) .listing:not(.short) .item .text,
section:not(.listing-with-form) .listing:not(.short) .item .link,
section:not(.listing-with-form) .listing:not(.short) .item .meta {
  padding-right: 15px;
  padding-left: 15px;
}

.promo-pods .row:not(.alt) .item .heading,
section:not(.listing-with-form) .listing:not(.short) .item .heading {
  padding-top: 15px;
}

.promo-pods .row:not(.alt) .item .image.img-circle + .heading,
section:not(.listing-with-form) .listing:not(.short) .item .image.img-circle + .heading {
  padding-top: 0;
}

.promo-pods .row:not(.alt) .item::before,
section:not(.listing-with-form) .listing:not(.short) .item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  left: 15px;
  z-index: 0;
  border: 1px solid #dedede;
  background-color: white;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.025);
}

.content.c1-bg .promo-pods .row:not(.alt) .item::before,
.content.c1-bg .listing:not(.short) .item::before {
  background-color: rgb(0, 158.8953488372, 227.75);
  border: 1px solid rgb(0, 141.1046511628, 202.25);
}

.content.c2-bg .promo-pods .row:not(.alt) .item::before,
.content.c2-bg .listing:not(.short) .item::before {
  background-color: rgb(48.5723684211, 144.6611842105, 192.1776315789);
  border: 1px solid rgb(43.4276315789, 129.3388157895, 171.8223684211);
}

.content.c3-bg .promo-pods .row:not(.alt) .item::before,
.content.c3-bg .listing:not(.short) .item::before {
  background-color: rgb(11.8398203593, 96.871257485, 167.9101796407);
  border: 1px solid rgb(10.1601796407, 83.128742515, 144.0898203593);
}

.content.c6-bg .promo-pods .row:not(.alt) .item::before,
.content.c6-bg .listing:not(.short) .item::before {
  border: 1px solid #f0f3f4;
}

@media (min-width: 768px) {
  section:not(.listing-with-form) .listing:not(.short) .item .pull-right .image:not(.img-circle) {
    margin: 0;
  }
  section:not(.listing-with-form) .listing:not(.short) .item .pull-right .image.img-circle {
    top: 15px;
    right: 15px;
    padding: 0;
  }
  section:not(.listing-with-form) .listing:not(.short) .item .row .heading,
  section:not(.listing-with-form) .listing:not(.short) .item .row .text,
  :not(.listing-with-form) .listing:not(.short) .item .row .link,
  section:not(.listing-with-form) .listing:not(.short) .item .row .meta {
    padding: 0 0 0 15px;
  }
  section:not(.listing-with-form) .listing:not(.short) .item .row .info > :first-child {
    display: block;
    padding-top: 15px;
  }
}
@media (min-width: 992px) {
  .promo-pods .row:not(.alt) .item,
  section:not(.listing-with-form) .listing:not(.short) .item {
    padding-bottom: 30px;
  }
  /*
  .promo-pods .row:not(.alt) .item .image:not(.img-circle),
  section:not(.listing-with-form) .listing:not(.short) .item .image:not(.img-circle) {
      margin-bottom: $base-spacing;
  }
  */
  .promo-pods .row:not(.alt) .item .image.img-circle,
  section:not(.listing-with-form) .listing:not(.short) .item .image.img-circle {
    padding: 30px;
  }
  section:not(.listing-with-form) .listing:not(.short) .item .pull-right .image.img-circle {
    top: 30px;
    right: 30px;
    /*
    margin-bottom: $base-spacing;
    */
    padding: 0;
  }
  .promo-pods .row:not(.alt) .item .heading,
  section:not(.listing-with-form) .listing:not(.short) .item .heading {
    padding-top: 30px;
  }
  .promo-pods .row:not(.alt) .item .image.img-circle + .heading,
  section:not(.listing-with-form) .listing:not(.short) .item .image.img-circle + .heading {
    padding-top: 0;
  }
  .promo-pods .row:not(.alt) .item .heading,
  .promo-pods .row:not(.alt) .item .text,
  .promo-pods .row:not(.alt) .item .link,
  section:not(.listing-with-form) .listing:not(.short) .item .heading,
  section:not(.listing-with-form) .listing:not(.short) .item .text,
  section:not(.listing-with-form) .listing:not(.short) .item .link,
  section:not(.listing-with-form) .listing:not(.short) .item .meta {
    padding-right: 30px;
    padding-left: 30px;
  }
  section:not(.listing-with-form) .listing:not(.short) .item .row .heading,
  section:not(.listing-with-form) .listing:not(.short) .item .row .text,
  section:not(.listing-with-form) .listing:not(.short) .item .row .link,
  section:not(.listing-with-form) .listing:not(.short) .item .row .meta {
    padding: 0 0 0 30px;
  }
  section:not(.listing-with-form) .listing:not(.short) .item .row .info > :first-child {
    padding-top: 30px;
  }
}
/*  
--------------------------------------------------
6.1 TABBED
-------------------------------------------------- 
*/
nav.tabs .nav {
  border: 0 none;
  font-size: 16px;
}

.spc.listing nav.tabs {
  margin-bottom: 15px;
}

.text-center nav.tabs .nav li,
.text-right nav.tabs .nav li {
  display: inline-block;
  float: none;
}

.text-center nav.tabs .nav li {
  margin: 0 -2px;
}

.text-right nav.tabs .nav li {
  margin-right: -2px;
}

.spc nav.tabs .nav li:first-child {
  margin-left: 0;
}

.spc nav.tabs .nav li:last-child {
  margin-right: 0;
}

nav.tabs .nav li a {
  padding: 10px 15px;
  background: none;
  min-width: 50px;
  border-width: 1px;
  border-color: #dedede;
  border-radius: 0;
  background-color: #f0f3f4;
}

html.no-touch nav.tabs .nav li:not(.active) a:hover {
  background-color: rgb(225.2884615385, 231.2307692308, 233.2115384615);
}

nav.tabs .nav li.active a {
  color: #0b5a9c;
  border-bottom-color: white;
  background-color: white;
}

.spc.tabbed .tab-content {
  padding: 15px;
  border-width: 1px;
  border-style: solid;
  border-color: #dedede;
}

.spc.tabbed .tab-content {
  background-color: white;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.05);
}

.c1-bg .spc.tabbed .tab-content {
  border-color: white;
}

/*  
--------------------------------------------------
6.2 ACCORDION
-------------------------------------------------- 
*/
.spc.accordion .panel-group {
  margin: 0;
}

.spc.accordion .heading:not(.main) {
  margin: 5px 0 0;
  font-size: 16px;
}

.spc.accordion .heading:not(.main) a {
  position: relative;
  display: block;
  padding: 15px 45px 15px 15px;
  background-color: white;
  border-width: 1px;
  border-style: solid;
  border-color: #dedede;
  text-decoration: none !important;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.05);
}

html.no-touch .spc.accordion .heading:not(.main) a.collapsed:hover {
  background-color: #f0f3f4;
}

.spc.accordion .heading:not(.main) a:not(.collapsed) {
  color: #0b5a9c;
  background-color: #f0f3f4;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0);
}

.spc.accordion .heading:not(.main) a.collapsed {
  border-color: #dedede;
}

.spc.accordion .heading:not(.main) i {
  font-size: 15px;
  position: absolute;
  top: 15px;
  right: 15px;
  color: #0096d7;
}

.spc.accordion .heading:not(.main) a:not(.collapsed) i.ion-chevron-up,
.spc.accordion .heading:not(.main) a.collapsed i.on-chevron-down {
  display: block;
}

.spc.accordion .heading:not(.main) a.collapsed i.ion-chevron-up,
.spc.accordion .heading:not(.main) a:not(.collapsed) i.ion-chevron-down {
  display: none;
}

.accordion .panel-body {
  padding: 15px;
  border-width: 0 1px 1px;
  border-style: solid;
  border-color: #dedede;
  background-color: white;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.05);
}

/*  
--------------------------------------------------
6.3 QUOTES
-------------------------------------------------- 
*/
.spc.blockquotes .slides:nth-child(2) {
  padding-top: 15px;
}

.spc.blockquotes .slides:nth-last-child(2) {
  padding-bottom: 15px;
}

.spc.blockquotes .quotes .slides .item {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 15px;
}

.spc.blockquotes .quotes .slides .item {
  padding: 0 15px;
}

.spc.blockquotes .quotes .slides blockquote {
  padding-top: 30px;
}

.spc.blockquotes blockquote p {
  font-size: 22px;
}

@media (min-width: 480px) and (max-width: 991px) {
  .spc.blockquotes .row:not(.slides) .item {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .spc.blockquotes .row:not(.slides) .item:not(.items-1) {
    width: 50%;
  }
  .spc.blockquotes .row:not(.slides) .item:nth-of-type(2n+1) {
    clear: both;
  }
}
@media (min-width: 992px) {
  .spc.blockquotes blockquote {
    padding-top: 40px;
  }
  .spc.blockquotes blockquote p {
    font-size: 28px;
  }
  .spc.blockquotes blockquote cite {
    font-size: 14px;
  }
  .spc.blockquotes blockquote::before {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .spc.blockquotes blockquote p {
    font-size: 32px;
  }
}
/*  
--------------------------------------------------
6.4 IMAGES
-------------------------------------------------- 
*/
.spc.image img {
  display: block;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

/*  
--------------------------------------------------
6.5 GALLERY        
-------------------------------------------------- 
*/
.spc.gallery .slides,
.spc.gallery .row:not(.overview):not(.outro) {
  padding: 0 14px;
}

.spc.gallery .row:not(.overview):not(.outro) {
  padding-top: 15px;
  padding-bottom: 15px;
}

.spc.gallery .slides .item {
  margin-top: 0;
  margin-bottom: 0;
}

.spc.gallery .item {
  padding: 0 1px;
}

.spc.gallery .row:not(.overview):not(.outro) .item {
  padding: 1px;
  margin: 0;
}

.spc.gallery .item .image {
  position: relative;
}

@media (min-width: 480px) and (max-width: 991px) {
  .spc.gallery .row:not(.slides) .item {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .spc.gallery .row:not(.slides) .item:not(.items-1) {
    width: 50%;
  }
  .spc.gallery .row:not(.slides) .item:nth-of-type(2n+1) {
    clear: both;
  }
}
/*  
--------------------------------------------------
6.6 RESOURCES         
-------------------------------------------------- 
*/
.spc.resources .list-group {
  margin: 0;
}

.spc.resources .item {
  padding: 15px;
  border-radius: 0;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.05);
  border-color: #dedede;
  background-color: white;
}

.spc.resources .item:not(:last-child) {
  margin-bottom: 5px;
}

html.no-touch .spc.resources .item:hover {
  background-color: #f0f3f4;
}

.spc.resources .item .heading {
  display: block;
  font-size: 16px;
  margin: 0;
  color: #0b5a9c;
}

.spc.resources .item .heading i {
  color: #0096d7;
}

.spc.resources .item .heading + .text {
  margin-top: 10px;
}

.spc.resources .item .text :first-child {
  margin-top: 0;
}

.spc.resources .item .text :last-child {
  margin-bottom: 0;
}

.spc.resources .item .heading + .size,
.spc.resources .item .text + .size {
  margin-top: 10px;
}

.spc.resources .item .size {
  font-size: 12px;
}

/*  
--------------------------------------------------
6.7 PRICING MENU
-------------------------------------------------- 
*/
.spc.pricing-menu .head {
  padding: 10px 0 20px;
  margin-bottom: 10px;
  border-width: 0 0 2px;
  border-style: solid;
  border-color: #0096d7;
}

.spc.pricing-menu .head .heading {
  margin: 0;
  font-size: 14px;
}

.spc.pricing-menu .item {
  padding: 15px 0;
  border-width: 0 0 1px;
  border-style: solid;
  border-color: #dedede;
}

.spc.pricing-menu .item:last-of-type {
  border: 0 none;
}

.spc.pricing-menu .item .heading {
  text-transform: none;
  letter-spacing: 0;
  font-size: 16px;
  margin: 0 0 8px;
}

.spc.pricing-menu .item .text p {
  margin: 0 0 5px;
  font-size: 90%;
  font-style: italic;
}

.spc.pricing-menu .price p {
  margin: 5px 0 0;
}

@media (min-width: 992px) {
  .spc.pricing-menu .item .heading {
    font-size: 18px;
  }
  .spc.pricing-menu .item .price {
    text-align: right;
  }
  .spc.pricing-menu .price p {
    margin: 0 0 10px;
  }
}
/*  
--------------------------------------------------
6.9 UMB GRID
-------------------------------------------------- 
*/
.spc.umb-grid .container {
  width: 100%;
  padding: 0;
}

.spc.umb-grid .grid-section > div + div {
  margin-top: 15px;
}

@media (min-width: 0) and (max-width: 991px) {
  .spc.umb-grid .grid-section .column:first-of-type :first-child {
    margin-top: 0;
  }
  .spc.umb-grid .grid-section .column:last-of-type :last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .spc.umb-grid .grid-section > div + div {
    margin-top: 30px;
  }
  .spc.umb-grid .grid-section .column :first-child {
    margin-top: 0;
  }
  .spc.umb-grid .grid-section .column :last-child {
    margin-bottom: 0;
  }
}
/*  
--------------------------------------------------
6.10 PODS
-------------------------------------------------- 
*/
.promo-pods .item {
  position: relative;
  margin: 15px 0;
}

html.no-touch .promo-pods .item a:hover .heading,
html.no-touch .promo-pods .item a:hover .text {
  text-decoration: none;
}

.promo-pods .alt .item .image {
  margin: 0;
}

.promo-pods .item img {
  overflow: hidden;
}

.promo-pods .alt .item .info {
  position: absolute;
  /* right:0; bottom:0; left:0; */
  top: 0;
  right: 15px;
  bottom: 0;
  left: 15px;
  z-index: 2;
  padding: 15px;
  background-color: rgba(11, 90, 156, 0.8);
}

html.no-touch .promo-pods .alt .item a .info {
  background-color: rgba(11, 90, 156, 0.45);
}

html.no-touch .promo-pods .alt .item a:hover .info {
  background-color: rgba(11, 90, 156, 0.8);
}

.promo-pods .alt .item .info .inner {
  max-width: 420px;
}

.promo-pods .alt.text-center .item .info .inner {
  margin: 0 auto;
}

.promo-pods .alt.text-right .item .info .inner {
  float: right;
}

.promo-pods .item .heading {
  display: block;
  font-size: 18px;
  margin: 0;
  text-decoration: none;
}

.promo-pods .item .text {
  display: block;
  margin-top: 10px;
}

.promo-pods .item .text :first-child {
  margin-top: 0;
}

.promo-pods .item .text :last-child {
  margin-bottom: 0;
}

.promo-pods .item .text a {
  display: inline;
}

@media (min-width: 992px) {
  .promo-pods .item .heading {
    font-size: 22px;
  }
  .promo-pods .item.items-4 .heading {
    font-size: 22px;
  }
  .promo-pods .alt .item:not(.items-3):not(.items-4) .heading {
    font-size: 26px;
  }
}
@media (min-width: 1200px) {
  .promo-pods .item .heading {
    font-size: 26px;
  }
  .promo-pods .alt .item:not(.items-3):not(.items-4) .heading {
    font-size: 30px;
  }
}
/*  
----------------------------------------------------------------------------------------------------
6.11 LISTING   
---------------------------------------------------------------------------------------------------- 
*/
.listing {
  position: relative;
  height: 100%;
}

.apc .listing {
  padding: 0;
  margin: 0;
}

.listing .item {
  margin: 15px 0;
}

.listing .item .heading {
  display: block;
  font-size: 20px;
  margin: 0;
}

.listing .item .text {
  display: block;
  margin-top: 10px;
}

.listing .item .text :first-child {
  margin-top: 0;
}

.listing .item .text :last-child {
  margin-bottom: 0;
}

.listing .item .text a {
  display: inline;
}

.listing .item .link {
  margin: 20px 0 0;
}

@media (min-width: 0) and (max-width: 767px) {
  .spc.listing .item .pull-right {
    float: none;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .listing .item .heading {
    font-size: 22px;
  }
  .listing .item.items-4 .heading {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .listing .item .heading {
    font-size: 26px;
  }
}
/*  
--------------------------------------------------
6.11.1 BLOG LISTING   
-------------------------------------------------- 
*/
.meta {
  padding: 15px 0;
  margin-top: 30px;
  border-width: 1px 0 0;
  border-style: solid;
  border-color: #dedede;
}

.meta a {
  display: inline;
}

.listing .meta {
  font-size: 13px;
  border: 0 none;
  padding: 0;
}

.meta .author-date {
  padding-bottom: 10px;
}

.item div.meta {
  margin-top: 30px;
}

div.meta .comments + .categories {
  padding-top: 10px;
}

@media (min-width: 992px) {
  .listing.blog .item .heading {
    font-size: 20px;
  }
  .listing.blog .item.items-1 .heading {
    font-size: 26px;
  }
}
@media (min-width: 1200px) {
  .listing.blog .item .heading {
    font-size: 24px;
  }
  .listing.blog .item.items-1 .heading {
    font-size: 30px;
  }
}
/*  
--------------------------------------------------
6.11.2 SECTION LISTING   
-------------------------------------------------- 
*/
.listing.vertical .item {
  margin: 30px 0;
  padding-bottom: 30px;
  border-bottom: 1px solid #dedede;
}

.c1-bg .listing.vertical .item {
  border-color: rgb(0, 167.7906976744, 240.5);
}

.c2-bg .listing.vertical .item {
  border-color: rgb(48.5723684211, 144.6611842105, 192.1776315789);
}

.c3-bg .listing.vertical .item {
  border-color: rgb(12.6796407186, 103.7425149701, 179.8203592814);
}

.c6-bg .listing.vertical .item {
  border-color: rgb(209.25, 209.25, 209.25);
}

.listing.vertical .item:last-of-type {
  border: 0 none !important;
}

@media (min-width: 992px) {
  .listing.vertical .item.items-1 .heading {
    font-size: 26px;
  }
}
@media (min-width: 1200px) {
  .listing.vertical .item.items-1 .heading {
    font-size: 30px;
  }
}
/*  
--------------------------------------------------
6.11.3 GRID LISTING   
-------------------------------------------------- 
*/
/*  
--------------------------------------------------
6.11.4 SEARCH LISTING   
-------------------------------------------------- 
*/
.listing.search {
  margin: 15px 0;
}

.listing.search .item .heading {
  margin-top: 15px;
}

.listing.search .item .heading + .link,
.listing.search .item .text + .link {
  margin-top: 15px;
}

.listing.search .item .link {
  margin-top: 10px;
}

@media (min-width: 992px) {
  .listing.search .item .heading {
    margin-top: 30px;
  }
}
/*  
--------------------------------------------------
6.11.5 LISTING COMPONENT
-------------------------------------------------- 
*/
/*  
--------------------------------------------------
6.12 REUSABLE SWP
-------------------------------------------------- 
*/
/*  
--------------------------------------------------
6.14 RELATED CONTENT
-------------------------------------------------- 
*/
.spc.related-content .slides {
  padding-top: 15px;
  padding-bottom: 15px;
}

.spc.related-content .listing {
  overflow: visible;
}

.spc.related-content .listing .item {
  padding: 0 15px;
}

.spc.related-content .slides .item {
  margin-top: 0;
  margin-bottom: 0;
}

.spc.related-content .item .info {
  padding-bottom: 15px;
}

.spc.related-content .listing .item .meta {
  margin-bottom: 0;
}

.spc.related-content .item .image {
  margin-bottom: 15px;
}

.spc.related-content .item .heading {
  margin-top: 0;
}

@media (min-width: 768px) {
  .spc.related-content .item.items-1.wide-image .image {
    margin: 0;
  }
  .spc.related-content .item.items-1.wide-image .info {
    position: absolute;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .spc.related-content .text-left .item.items-1.wide-image .info {
    width: 40%;
    top: 0;
    bottom: 0;
    left: 15px;
  }
  .spc.related-content .text-center .item.items-1.wide-image .info {
    right: 15px;
    bottom: 0;
    left: 15px;
  }
  .spc.related-content .text-right .item.items-1.wide-image .info {
    width: 40%;
    top: 0;
    right: 15px;
    bottom: 0;
  }
}
@media (min-width: 992px) {
  .spc.related-content .item.items-1 .heading {
    font-size: 26px;
  }
  .spc.related-content .item .info {
    padding-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .spc.related-content .item.items-1 .heading {
    font-size: 30px;
  }
}
/*  
----------------------------------------------------------------------------------------------------
7.0 ADVANCED PAGE COMPONENTS
---------------------------------------------------------------------------------------------------- 
*/
.apc {
  position: relative;
  padding: 15px 0;
  overflow: hidden;
  height: 100%;
}

/*
.apc.c1-bg:not([style^="background-image:"]):not(.map)+.apc.c1-bg:not([style^="background-image:"]):not(.map),
.apc.c2-bg:not([style^="background-image:"]):not(.map)+.apc.c2-bg:not([style^="background-image:"]):not(.map),
.apc.c3-bg:not([style^="background-image:"]):not(.map)+.apc.c3-bg:not([style^="background-image:"]):not(.map),
.apc.c4-bg:not([style^="background-image:"]):not(.map)+.apc.c4-bg:not([style^="background-image:"]):not(.map),
.apc.c5-bg:not([style^="background-image:"]):not(.map)+.apc.c5-bg:not([style^="background-image:"]):not(.map),
.apc.c6-bg:not([style^="background-image:"]):not(.map)+.apc.c6-bg:not([style^="background-image:"]):not(.map) {
    padding-top: 0;
}
*/
.apc.pod-windows .container-fluid:first-child {
  margin-top: -15px;
}

.apc.pod-windows .container-fluid:last-child {
  margin-bottom: -15px;
}

.apc .overview {
  margin-bottom: 15px;
}

.apc .outro {
  margin-top: 15px;
}

.apc.no-padding .overview {
  margin-top: 15px;
}

.apc.no-padding .outro {
  margin-bottom: 15px;
}

.apc .overview .text :first-child,
.apc .outro .text :first-child {
  margin-top: 0;
}

.apc .overview .text :last-child,
.apc .outro .text :last-child {
  margin-bottom: 0;
}

.apc .overview.text-center .info,
.apc .outro.text-center .info {
  margin-right: auto;
  margin-left: auto;
  float: none;
}

.apc .overview.text-right .info,
.apc .outro.text-right .info {
  float: right;
}

.apc .image.video {
  position: relative;
}

.apc.banner {
  padding: 0 !important;
}

.apc.banner,
.apc.promo-pods {
  margin: 0;
}

.apc .heading.main {
  font-size: 25px;
  margin: 0;
}

.apc .overview .heading.main + .text,
.apc .outro .heading.main + .text {
  margin: 15px 0 0;
}

@media (min-width: 768px) {
  .apc {
    padding: 30px 0;
  }
  .apc.pod-windows .container-fluid:first-child {
    margin-top: -30px;
  }
  .apc.pod-windows .container-fluid:last-child {
    margin-bottom: -30px;
  }
  .apc.no-padding .overview {
    margin-top: 30px;
  }
  .apc.no-padding .outro {
    margin-bottom: 30px;
  }
  .apc .heading.main {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .apc {
    padding: 45px 0;
  }
  .apc.pod-windows .container-fluid:first-child {
    margin-top: -45px;
  }
  .apc.pod-windows .container-fluid:last-child {
    margin-bottom: -45px;
  }
  .apc.no-padding .overview {
    margin-top: 45px;
  }
  .apc.no-padding .outro {
    margin-bottom: 45px;
  }
  .apc .heading.main {
    font-size: 35px;
  }
}
@media (min-width: 1200px) {
  .apc {
    padding: 60px 0;
  }
  .apc.pod-windows .container-fluid:first-child {
    margin-top: -60px;
  }
  .apc.pod-windows .container-fluid:last-child {
    margin-bottom: -60px;
  }
  .apc.no-padding .overview {
    margin-top: 60px;
  }
  .apc.no-padding .outro {
    margin-bottom: 60px;
  }
  .apc .heading.main {
    font-size: 40px;
  }
}
/*  
--------------------------------------------------
7.1 STANDARD PAGE COMPONENTS ON ADVANCED PAGE
-------------------------------------------------- 
*/
.apc.standard-components .spc {
  margin-bottom: 0;
}

/*  
--------------------------------------------------
7.2 BANNER  
-------------------------------------------------- 
*/
.apc.banner {
  overflow: hidden;
  height: auto;
  position: relative;
  z-index: 0;
}

.apc.banner .item {
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.apc.banner .item.short,
.apc.banner .item.short .container,
.apc.banner .item.short .row {
  height: 35vh;
  min-height: 270px;
}

.apc.banner .item.medium,
.apc.banner .item.medium .container,
.apc.banner .item.medium .row {
  height: 50vh;
  min-height: 370px;
}

.apc.banner .item.takeover,
.apc.banner .item.takeover .container,
.apc.banner .item.takeover .row {
  height: 100vh;
}

body:not(.no-header) .apc.banner .item.takeover,
body:not(.no-header) .apc.banner .item.takeover .container,
body:not(.no-header) .apc.banner .item.takeover .row {
  height: 100vh;
  height: calc(100vh - 70px);
}

body.browser-ios:not(.no-header) .apc.banner .item.takeover,
body.browser-ios:not(.no-header) .apc.banner .item.takeover .container,
body.browser-ios:not(.no-header) .apc.banner .item.takeover .row {
  height: 100vh;
  height: calc(100vh - 138px);
}

body.browser-ios.no-header .apc.banner .item.takeover,
body.browser-ios.no-header .apc.banner .item.takeover .container,
body.browser-ios.no-header .apc.banner .item.takeover .row {
  height: 100vh;
  height: calc(100vh - 68px);
}

.apc.banner .item.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.apc.banner .item .image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* will not work on iOS: https://stackoverflow.com/questions/23236158/how-to-replicate-background-attachment-fixed-on-ios */
/* ONLY NEEDED FOR NON JQUERY PARALLAX */
body:not(.browser-ios) .apc.banner .item.parallax .image {
  background-attachment: fixed;
}

.apc.banner .info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  padding: 0;
}

.apc.banner .info .heading.main {
  margin: 0;
}

.apc.banner .info .heading.main + .text {
  margin-top: 5px;
}

.apc.banner .info .text :first-child {
  margin-top: 0;
}

.apc.banner .info .text :last-child {
  margin-bottom: 0;
}

.apc.banner .info .heading.main + .link {
  margin: 20px 0 0;
}

.apc.banner .info .text + .link {
  margin: 30px 0 0;
}

/* SCROLL PROMPT */
.apc.banner .scroll-prompt {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  z-index: 100;
  width: 100%;
  animation-duration: 1s;
  animation-delay: 3s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}

.apc.banner .scroll-prompt a {
  display: inline-block;
  width: 100%;
  height: 40px;
  margin: 0 auto;
  cursor: pointer;
  text-decoration: none !important;
}

.apc.banner .scroll-prompt a i {
  font-size: 30px;
  line-height: 40px;
  display: block;
  padding: 0;
  margin: 0 0 0 2px;
}

.apc.banner .scroll-prompt .mouse-scroll {
  position: relative;
  width: 21px;
  height: 35px;
  margin: 0 auto;
  border-width: 2px;
  border-style: solid;
  border-color: white;
  border-radius: 10px;
}

.apc.banner .scroll-prompt .mouse-scroll::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 7px;
  width: 3px;
  height: 6px;
  border-radius: 50%;
  background-color: white;
  animation-iteration-count: infinite;
  animation-duration: 1.25s;
  animation-delay: 3s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
}

@media (min-width: 768px) {
  .apc.banner .item.short,
  .apc.banner .item.short .container,
  .apc.banner .item.short .row {
    height: 40vh;
    min-height: 350px;
  }
  .apc.banner .item.medium,
  .apc.banner .item.medium .container,
  .apc.banner .item.medium .row {
    height: 60vh;
    min-height: 450px;
  }
  .apc.banner .item.takeover,
  .apc.banner .item.takeover .container,
  .apc.banner .item.takeover .row {
    height: 100vh;
  }
  body:not(.no-header) .apc.banner .item.takeover,
  body:not(.no-header) .apc.banner .item.takeover .container,
  body:not(.no-header) .apc.banner .item.takeover .row {
    height: 100vh;
    height: calc(100vh - 155px);
  }
  body.browser-ios:not(.no-header) .apc.banner .item.takeover,
  body.browser-ios:not(.no-header) .apc.banner .item.takeover .container,
  body.browser-ios:not(.no-header) .apc.banner .item.takeover .row {
    height: 100vh;
    height: calc(100vh - 181px);
  }
  body.browser-ios.no-header .apc.banner .item.takeover,
  body.browser-ios.no-header .apc.banner .item.takeover .container,
  body.browser-ios.no-header .apc.banner .item.takeover .row {
    height: 100vh;
    height: calc(100vh - 26px);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .apc.banner .info .table {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (min-width: 1200px) {
  .apc.banner .item.short,
  .apc.banner .item.short .container,
  .apc.banner .item.short .row {
    min-height: 400px;
  }
  .apc.banner .item.medium,
  .apc.banner .item.medium .container,
  .apc.banner .item.medium .row {
    min-height: 550px;
  }
  .apc.banner .scroll-prompt a {
    height: auto;
    padding-bottom: 20px;
  }
  .apc.banner .scroll-prompt a span {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    display: block;
    margin-top: 15px;
    display: none;
  }
  .apc.banner .scroll-prompt a i {
    font-size: 20px;
  }
}
@media (min-width: 1500px) {
  body.fixed-width .apc.banner .item {
    background-size: 1500px auto;
  }
}
/*  
--------------------------------------------------
7.2.2 BANNER VIDEOS
-------------------------------------------------- 
*/
.apc.banner .item .video .video-player {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  /* for accessing the video by click */
  overflow: hidden;
  transform: translate(-50%, -50%);
}

/*  
--------------------------------------------------
7.3 CTA STRIP  
-------------------------------------------------- 
*/
.apc.cta-strip .overview {
  position: relative;
  margin-bottom: 0;
}

.apc.cta-strip .link {
  margin-top: 30px;
}

@media (min-width: 992px) {
  .apc.cta-strip .text-left .link,
  .apc.cta-strip .text-right .link {
    position: absolute;
    top: 0;
    margin-top: 0;
  }
  .apc.cta-strip .text-left .heading + .text + .link,
  .apc.cta-strip .text-right .heading + .text + .link {
    top: auto;
    bottom: 0;
  }
  .apc.cta-strip .text-left .link {
    right: -315px;
  }
  .apc.cta-strip .text-right .link {
    left: -315px;
  }
  .apc.cta-strip .text-left .link .btn,
  .apc.cta-strip .text-right .link .btn {
    width: 212px;
  }
}
@media (min-width: 1200px) {
  .apc.cta-strip .text-left .link .btn,
  .apc.cta-strip .text-right .link .btn {
    min-width: 262px;
  }
  .apc.cta-strip .text-left .link {
    right: -380px;
  }
  .apc.cta-strip .text-right .link {
    left: -380px;
  }
}
/*  
--------------------------------------------------
7.5 TEXT WITH IMAGE / VIDEO
-------------------------------------------------- 
*/
.apc.text-with-slideshow .overlayicon {
  font-size: 60px;
}

@media (min-width: 0) and (max-width: 991px) {
  .apc.text-with-slideshow .slides {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .apc.text-with-slideshow.wide .slides {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  .apc.text-with-slideshow.wide {
    padding: 0;
  }
  .apc.text-with-slideshow .text-side {
    display: table;
  }
  .apc.text-with-slideshow .info {
    padding-top: 0;
    display: table-cell;
    vertical-align: middle;
  }
  .apc.text-with-slideshow.wide .info {
    padding: 45px 0;
  }
  .apc.text-with-slideshow .overlayicon {
    font-size: 100px;
  }
  .apc.text-with-slideshow:not(.wide) .pull-right .slides {
    margin-left: -15px;
  }
  .apc.text-with-slideshow:not(.wide) .pull-left .slides {
    margin-right: -15px;
  }
  .apc.text-with-slideshow.wide .slides {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (min-width: 1200px) {
  .apc.text-with-slideshow.wide .info {
    padding: 60px 0;
  }
  .apc.text-with-slideshow .overlayicon {
    font-size: 140px;
  }
}
/*  
--------------------------------------------------
7.6 TEXT WITH FORM  
-------------------------------------------------- 
*/
@media (min-width: 0) and (max-width: 767px) {
  .apc.text-with-form .text-side + .form-side {
    margin-top: 15px;
  }
  .apc.text-with-form .form-side + .text-side {
    margin-top: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .apc.text-with-form .text-side + .form-side {
    margin-top: 30px;
  }
  .apc.text-with-form .form-side + .text-side {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .apc.text-with-form .text-side {
    margin-top: 21px;
  }
}
@media (min-width: 1200px) {
  .apc.text-with-form .text-side {
    margin-top: 31px;
  }
}
/*  
--------------------------------------------------
7.7 LISTING WITH FORM
-------------------------------------------------- 
*/
.apc.listing-with-form .listing .item {
  margin: 15px 0 0;
  position: relative;
}

.apc.listing-with-form .listing .heading.main + .item {
  margin-top: 30px;
}

.apc.listing-with-form .listing .item .heading {
  font-size: 18px;
}

.apc.listing-with-form .listing.blog .item {
  padding-bottom: 15px;
}

.apc.listing-with-form .listing .item .meta {
  margin: 15px 0 0;
}

.apc.listing-with-form .listing .link {
  margin-top: 30px;
}

@media (min-width: 0) and (max-width: 767px) {
  .apc.listing-with-form .listing-side + .form-side {
    margin-top: 15px;
  }
  .apc.listing-with-form .form-side + .listing-side {
    margin-top: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .apc.listing-with-form .listing-side + .form-side {
    margin-top: 30px;
  }
  .apc.listing-with-form .form-side + .listing-side {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .apc.listing-with-form .listing-side {
    margin-top: 21px;
  }
  .apc.listing-with-form .listing .item .heading {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .apc.listing-with-form .listing-side {
    margin-top: 31px;
  }
  .apc.listing-with-form .listing .item .heading {
    font-size: 22px;
  }
}
/*  
--------------------------------------------------
7.10 POD WINDOWS
-------------------------------------------------- 
*/
.apc.pod-windows {
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
}

.apc.pod-windows .container-fluid {
  padding: 0;
}

.apc.pod-windows .container-fluid.window-spacing {
  padding: 7.5px;
}

.apc.pod-windows .windows {
  position: relative;
  -moz-column-count: 1;
  column-count: 1;
  -moz-column-gap: 0;
  column-gap: 0;
}

.apc.pod-windows .item {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}

.apc.pod-windows .item::before {
  content: "";
  display: block;
  padding-top: 50vh;
}

.apc.pod-windows .item .info {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: center;
}

.apc.pod-windows.c1-bg .window-spacing .item .info {
  border: 7.5px solid #0096d7;
}

.apc.pod-windows.c2-bg .window-spacing .item .info {
  border: 7.5px solid #2e89b6;
}

.apc.pod-windows.c3-bg .window-spacing .item .info {
  border: 7.5px solid #0b5a9c;
}

.apc.pod-windows.c4-bg .window-spacing .item .info {
  border: 7.5px solid #f0f3f4;
}

.apc.pod-windows.c5-bg .window-spacing .item .info {
  border: 7.5px solid white;
}

.apc.pod-windows.c6-bg .window-spacing .item .info {
  border: 7.5px solid #dedede;
}

.apc.pod-windows .item .info::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
}

.apc.pod-windows .item .info .image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-backface-visibility: hidden;
}

.apc.pod-windows .item .table {
  position: relative;
  z-index: 5;
}

.apc.pod-windows .item .heading {
  margin: 0;
  font-size: 25px;
}

.apc.pod-windows .item .secondary-heading + .heading {
  margin-top: 5px;
}

.apc.pod-windows .item .heading + .text {
  margin-top: 5px;
}

.apc.pod-windows .item .text :first-child {
  margin-top: 0;
}

.apc.pod-windows .item .text :last-child {
  margin-bottom: 0;
}

.apc.pod-windows .item .link {
  margin-bottom: 0;
}

.apc.pod-windows .item .link {
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 201;
  width: 100%;
  transition: bottom 0.4s ease-in-out 0s, opacity 0.3s ease-in-out 0s;
}

.apc.pod-windows .text-center .item .link {
  left: 50%;
  transform: translateX(-50%);
}

html.no-touch .apc.pod-windows .item a.info .link {
  bottom: -100%;
  opacity: 0;
}

html.no-touch .apc.pod-windows .item a:hover .link {
  bottom: 20px;
  opacity: 1;
}

.apc.pod-windows .item .info .overlayicon {
  background: none;
  font-size: 100px;
}

@media (min-width: 768px) {
  /* 4 WINDOWS */
  .apc.pod-windows .windows.windows-4 {
    -moz-column-count: 2;
    column-count: 2;
  }
  .apc.pod-windows .windows-4.big-window-first .item:nth-child(1)::before,
  .apc.pod-windows .windows-4.small-window-first .item:nth-child(2)::before {
    padding-top: 55vh;
    padding-top: calc(55vh - 50px);
  }
  .apc.pod-windows .windows-4.big-window-first .item:nth-child(2)::before,
  .apc.pod-windows .windows-4.small-window-first .item:nth-child(1)::before {
    padding-top: 45vh;
    padding-top: calc(45vh - 50px);
  }
  .apc.pod-windows .windows-4.big-window-first .item:nth-child(3)::before,
  .apc.pod-windows .windows-4.small-window-first .item:nth-child(4)::before {
    padding-top: 45vh;
    padding-top: calc(45vh - 50px);
  }
  .apc.pod-windows .windows-4.big-window-first .item:nth-child(4)::before,
  .apc.pod-windows .windows-4.small-window-first .item:nth-child(3)::before {
    padding-top: 55vh;
    padding-top: calc(55vh - 50px);
  }
  .apc.pod-windows .container .windows-4.big-window-first .item:nth-child(1)::before,
  .apc.pod-windows .container .windows-4.small-window-first .item:nth-child(2)::before {
    padding-top: 400px;
  }
  .apc.pod-windows .container .windows-4.big-window-first .item:nth-child(2)::before,
  .apc.pod-windows .container .windows-4.small-window-first .item:nth-child(1)::before {
    padding-top: 300px;
  }
  .apc.pod-windows .container .windows-4.big-window-first .item:nth-child(3)::before,
  .apc.pod-windows .container .windows-4.small-window-first .item:nth-child(4)::before {
    padding-top: 300px;
  }
  .apc.pod-windows .container .windows-4.big-window-first .item:nth-child(4)::before,
  .apc.pod-windows .container .windows-4.small-window-first .item:nth-child(3)::before {
    padding-top: 400px;
  }
  /* 3 WINDOWS */
  .apc.pod-windows .windows.windows-3 {
    -moz-column-count: 2;
    column-count: 2;
  }
  .apc.pod-windows .windows-3.big-window-first .item:nth-child(1)::before,
  .apc.pod-windows .windows-3.small-window-first .item:nth-child(3)::before {
    padding-top: 100vh;
  }
  .apc.pod-windows .windows-3.big-window-first .item:nth-child(2)::before,
  .apc.pod-windows .windows-3.big-window-first .item:nth-child(3)::before,
  .apc.pod-windows .windows-3.small-window-first .item:nth-child(1)::before,
  .apc.pod-windows .windows-3.small-window-first .item:nth-child(2)::before {
    padding-top: 50vh;
  }
  .apc.pod-windows .container .windows-3.big-window-first .item:nth-child(1)::before,
  .apc.pod-windows .container .windows-3.small-window-first .item:nth-child(3)::before {
    padding-top: 700px;
  }
  .apc.pod-windows .container .windows-3.big-window-first .item:nth-child(2)::before,
  .apc.pod-windows .container .windows-3.big-window-first .item:nth-child(3)::before,
  .apc.pod-windows .container .windows-3.small-window-first .item:nth-child(1)::before,
  .apc.pod-windows .container .windows-3.small-window-first .item:nth-child(2)::before {
    padding-top: 350px;
  }
  /* BASIC WINDOWS */
  .apc.pod-windows .windows.basic-windows.windows-4 {
    -moz-column-count: 4;
    column-count: 4;
  }
  .apc.pod-windows .windows.basic-windows.windows-3 {
    -moz-column-count: 3;
    column-count: 3;
  }
  .apc.pod-windows .windows.basic-windows.windows-2 {
    -moz-column-count: 2;
    column-count: 2;
  }
  .apc.pod-windows .windows.basic-windows.windows-1 {
    -moz-column-count: 1;
    column-count: 1;
  }
  .apc.pod-windows .basic-windows .item::before {
    padding-top: 50vh;
  }
  .apc.pod-windows .container .basic-windows .item::before {
    padding-top: 350px;
  }
  .apc.pod-windows .basic-windows .item::before {
    padding-top: 50vh;
  }
  .apc.pod-windows .container .basic-windows .item::before {
    padding-top: 350px;
  }
}
@media (min-width: 992px) {
  .apc.pod-windows .item .heading {
    font-size: 40px;
  }
  .apc.pod-windows .container .item .heading {
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  .apc.pod-windows .item .heading {
    font-size: 45px;
  }
  .apc.pod-windows .container .item .heading {
    font-size: 35px;
  }
  .apc.pod-windows .item .secondary-heading,
  .apc.pod-windows .item .heading,
  .apc.pod-windows .item .text,
  .apc.pod-windows .item .link {
    max-width: 400px;
  }
  .apc.pod-windows .text-center .item .secondary-heading,
  .apc.pod-windows .text-center .item .heading,
  .apc.pod-windows .text-center .item .text,
  .apc.pod-windows .text-center .item .link {
    margin-right: auto;
    margin-left: auto;
  }
  .apc.pod-windows .item .link {
    bottom: 30px;
  }
}
/*  
----------------------------------------------------------------------------------------------------
8.0 SITE WIDE PODS
---------------------------------------------------------------------------------------------------- 
*/
.swp {
  margin-bottom: 30px;
}

.swp .item {
  position: relative;
  margin-bottom: 30px;
}

.swp .item:last-child {
  margin-bottom: 0;
}

.swp .item .heading a {
  text-decoration: none;
}

.swp .item .heading i {
  font-size: 15px;
  display: none;
}

.swp .item .link {
  margin-bottom: 0;
}

/*  
----------------------------------------------------------------------------------------------------
8.1 BLOCKQUOTE POD
---------------------------------------------------------------------------------------------------- 
*/
.swp .item.blockquote-pod {
  text-align: center;
}

.swp blockquote::before {
  left: 50%;
  transform: translateX(-50%);
}

.swp blockquote p {
  font-size: 16px;
}

@media (min-width: 992px) {
  .swp blockquote p {
    font-size: 20px;
  }
}
/*  
----------------------------------------------------------------------------------------------------
8.2 CODEPOD
---------------------------------------------------------------------------------------------------- 
*/
/*  
----------------------------------------------------------------------------------------------------
8.3 GENERAL POD
---------------------------------------------------------------------------------------------------- 
*/
/* 
----------------------------------------------------------------------------------------------------
8.4 IMAGE POD
---------------------------------------------------------------------------------------------------- 
*/
/*  
----------------------------------------------------------------------------------------------------
8.5 LISTING POD
---------------------------------------------------------------------------------------------------- 
*/
.swp .item.listing-pod .inner > .heading {
  margin-bottom: 30px;
}

.swp .item.listing-pod .link {
  margin: 15px 0 0;
}

.swp .listing {
  margin: 0;
  padding: 0;
}

.swp .listing .item {
  margin: 0;
  padding: 0;
}

.swp .listing .item::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin: 10px 0 15px;
  background-color: #dedede;
}

.swp .listing .item:last-of-type::after {
  background-color: rgba(222, 222, 222, 0);
}

.swp .listing .item .heading {
  font-size: 16px;
}

.swp .listing .item .meta {
  margin: 0;
  padding: 10px 0 0;
  font-size: 12px;
  border: 0 none;
}

/*  
----------------------------------------------------------------------------------------------------
8.6 FORM POD
---------------------------------------------------------------------------------------------------- 
*/
.swp .item.form-pod .heading.main {
  font-size: 16px;
}

@media (min-width: 992px) {
  .swp .item.form-pod .heading.main {
    font-size: 20px;
  }
}
/*  
----------------------------------------------------------------------------------------------------
8.7 VIDEO POD
---------------------------------------------------------------------------------------------------- 
*/
/*  
----------------------------------------------------------------------------------------------------
9.0 FORMS
---------------------------------------------------------------------------------------------------- 
*/
textarea {
  resize: none;
}

fieldset {
  margin: 0 0 15px;
}

fieldset.buttons {
  margin: 0;
}

.heading.umbraco-forms-caption:not(.main) {
  color: inherit;
}

legend {
  color: inherit;
  border-color: inherit;
  padding: 0 0 8px;
  margin: 10px 0 15px;
}

.umbraco-forms-field {
  position: relative;
}

.umbraco-forms-field.titleanddescription:not(:first-child) {
  margin-top: 30px;
}

.umbraco-forms-field.titleanddescription:first-child .heading {
  margin-top: 0;
}

label {
  position: relative;
  font-weight: normal;
  display: block;
}

.radio label,
.checkbox label {
  padding-left: 20px;
  margin-bottom: 5px;
}

label em.req {
  font-style: normal;
  color: #a94442;
}

.umbraco-forms-field-wrapper > :first-child {
  min-height: 50px;
  border-width: 1px;
  border-style: solid;
  border-color: #dedede;
  border-radius: 0;
}
.umbraco-forms-field-wrapper > :first-child:focus-visible {
  outline: none;
  box-shadow: none;
}
.umbraco-forms-field-wrapper > :first-child:focus {
  border-color: #0096d7;
  box-shadow: 0 0 5px #0096d7;
}

.umbraco-forms-field.uploadafile .form-control {
  padding-top: 5px;
}

.radio label input[type=radio],
.checkbox label input[type=checkbox] {
  top: 5px;
  left: 0;
  margin: 0;
}

select,
select option {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.umbraco-forms-field.dropdown .form-control {
  position: relative;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 0;
  background: none;
}

.umbraco-forms-field.dropdown::after {
  font-family: "Ionicons";
  content: "\f123";
  position: absolute;
  top: 30px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  min-height: 40px;
  padding: 7px 15px 0 0;
  font-size: 15px;
  text-align: right;
  color: #5e5a5d;
  background-color: white;
  box-sizing: border-box;
}

/*.buttons .btn.prev+.btn.submit {
    float: right;
}*/
/* VALIDATION */
.input-validation-error {
  border-color: #a94442;
}

.input-validation-error:focus {
  border-color: #a94442;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(169, 68, 66, 0.5);
}

.field-validation-error {
  display: block;
  padding: 5px;
  font-size: 12px;
  background-color: #a94442;
  color: white;
}

.validation-summary-errors {
  color: #a94442;
}

.field-validation-valid {
  display: none;
}

.validation-summary-valid {
  display: none;
}

@media (min-width: 992px) {
  .form-control {
    padding: 15px;
  }
  .form-control,
  .umbraco-forms-field.dropdown::after {
    min-height: 50px;
  }
  .umbraco-forms-field.dropdown::after {
    padding: 15px 15px 0 0;
  }
  .umbraco-forms-field.uploadafile .form-control {
    padding-top: 10px;
  }
}
/*	
----------------------------------------------------------------------------------------------------
9.1.1 SITE SEARCH
---------------------------------------------------------------------------------------------------- 
*/
/*	
----------------------------------------------------------------------------------------------------
9.1.2 COMPONENT FORMS
---------------------------------------------------------------------------------------------------- 
*/
.swp .newsletter.form label {
  display: none;
}

.swp .newsletter.form .umbraco-forms-field::after {
  content: "*";
  position: absolute;
  top: 7px;
  right: 10px;
  z-index: 10;
  color: #a94442;
}

@media (min-width: 992px) {
  .apc .form-side .form .umbraco-forms-field.col-xs-12 {
    width: 100%;
    float: none;
  }
}
/*  
--------------------------------------------------
9.1.3 COMMENTS 
-------------------------------------------------- 
*/
#comments {
  padding-top: 30px;
}

/*  
--------------------------------------------------
9.2 AJAX LOADING         
-------------------------------------------------- 
*/
.ajax-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.ajax-wrap .ajax-loading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
}

.ajax-wrap .ajax-loading .loading {
  margin: 0;
  position: relative;
  text-align: center;
  display: table;
  width: 100%;
  height: 100%;
}

.ajax-wrap .ajax-loading .loading span.message {
  display: table-cell;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/images/icons/loading-on-white.gif");
}

/*  
--------------------------------------------------
9.3 COOKIES
-------------------------------------------------- 
*/
.cookie-notice {
  position: fixed;
  bottom: -100%;
  left: 0;
  z-index: 1000;
  opacity: 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0);
  transition: bottom 1s ease-in-out 0.2s, opacity 0.75s ease-in-out 0.1s, box-shadow 1s ease-in-out 0.2s;
}

.cookie-notice.open {
  bottom: 0;
  opacity: 1;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
}

.cookie-notice .heading {
  margin: 0;
}

.cookie-notice .heading + .text {
  margin-top: 5px;
}

.cookie-notice .text :first-child {
  margin-top: 0;
}

.cookie-notice .text :last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .cookie-notice {
    max-width: 460px;
  }
}
/*	
--------------------------------------------------
10.0 MISC
-------------------------------------------------- 
*/
iframe,
object,
embed {
  display: block;
}

.inner {
  padding: 15px;
}

.spc.quick-links .inner {
  padding-bottom: 5px;
}

.has-borders {
  border-width: 1px;
  border-style: solid;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.025);
}

.has-border-top {
  border-width: 1px 0 0;
  border-style: solid;
}

.has-border-bottom {
  border-width: 0 0 1px;
  border-style: solid;
}

.rounded {
  border-radius: 3px;
}

.item .table {
  margin: 0;
}

.table-cell {
  padding: 30px;
}

.item-square {
  padding-bottom: 100%;
}

.item-square .info {
  max-width: 640px;
  margin: 0 auto;
  padding: 0;
}

.item-square .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

div.table {
  display: table;
  width: 100%;
  height: 100%;
  margin: 0;
}

div.table-cell {
  display: table-cell;
  vertical-align: middle;
  padding: 0;
}

div.table-cell.align-top {
  vertical-align: top;
  padding-top: 140px;
}

div.table-cell.align-bottom {
  vertical-align: bottom;
  padding-bottom: 140px;
}

.no-padding {
  padding: 0 !important;
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.padding-top {
  padding-top: 30px !important;
}

.padding-bottom {
  padding-bottom: 30px !important;
}

.short-padding {
  padding: 20px 0 !important;
}

.short-padding-top {
  padding-top: 20px !important;
}

.short-padding-bottom {
  padding-bottom: 20px !important;
}

.no-margin {
  margin: 0 !important;
}

.no-margin-top {
  margin-top: 0 !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.margin-top {
  margin-top: 30px !important;
}

.margin-bottom {
  margin-bottom: 30px !important;
}

.short-margin {
  margin: 20px 0 !important;
}

.short-margin-top {
  margin-top: 20px !important;
}

.short-margin-bottom {
  margin-bottom: 20px !important;
}

.apc.map,
.apc.map .wide-col,
.apc.map .container-fluid .spc {
  padding: 0 !important;
}

@media (max-width: 991px) {
  .item-square {
    padding-bottom: 75%;
  }
  .apc.banner .item.short div.table-cell,
  .apc.banner .item.medium div.table-cell {
    padding: 0 !important;
  }
}
@media (min-width: 768px) {
  .item-square {
    padding-bottom: 50%;
  }
  .item-square .info {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .inner {
    padding: 20px;
  }
  .spc.quick-links .inner {
    padding-bottom: 10px;
  }
}
@media (min-width: 1200px) {
  .container-fluid .item-square {
    padding-bottom: 35%;
  }
  .inner {
    padding: 30px;
  }
  .spc.quick-links .inner {
    padding-bottom: 20px;
  }
}
/*	
--------------------------------------------------
10.1 OVERLAY ICONS
-------------------------------------------------- 
*/
.image a {
  display: block;
  position: relative;
  overflow: hidden;
}

.overlayicon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  padding: 0;
  margin: 0;
  background-color: rgba(11, 90, 156, 0);
  text-align: center;
  font-size: 40px;
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  opacity: 0;
  transition: background-color 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
}

.item.video-pod a .overlayicon,
div.video a .overlayicon {
  background-color: rgba(11, 90, 156, 0.25);
}

html.no-touch a:hover .overlayicon,
.item.video-pod a .overlayicon,
div.video a .overlayicon {
  opacity: 1;
}

html.no-touch a:hover .overlayicon,
html.no-touch .item.video-pod a:hover .overlayicon,
html.no-touch div.video a:hover .overlayicon {
  background-color: rgba(11, 90, 156, 0.75);
}

.overlayicon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.masonry .overlayicon::before {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  top: 35%;
}

@media (min-width: 992px) {
  .overlayicon {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  .overlayicon {
    font-size: 60px;
  }
}
/*  
--------------------------------------------------
10.2 AUTHOR BIO
-------------------------------------------------- 
*/
body.standard-page .spc + .spc.author-bio {
  margin-top: -30px;
}

.author-bio {
  overflow: hidden;
  height: 100%;
}

.author-bio nav.social {
  margin: 0;
}

.author-bio .heading.main {
  font-size: 18px;
}

.author-bio .heading.main + .row {
  padding-top: 15px;
}

.author-bio .info {
  padding-top: 15px;
  padding-bottom: 15px;
}

.author-bio .info p.heading {
  font-size: 18px;
}

@media (min-width: 0) and (max-width: 767px) {
  .author-bio {
    text-align: center;
  }
  .author-bio .image-wrap {
    max-width: 300px;
    float: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .author-bio .image-wrap {
    float: right !important;
  }
  .author-bio .info {
    padding-top: 0;
  }
  .author-bio .col-sm-8 .info {
    padding-top: 15px;
  }
}
@media (min-width: 992px) {
  .author-bio .heading.main {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .author-bio .heading.main {
    font-size: 22px;
  }
}
/*  
--------------------------------------------------
10.3 TABLES
-------------------------------------------------- 
*/
table {
  width: 100%;
  border-width: 1px 0 0 1px;
  border-style: solid;
  border-color: #dedede;
  background-color: #f0f3f4;
}

thead {
  color: white;
  background-color: #0b5a9c;
}

table th,
table td {
  padding: 15px;
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #dedede;
}

table tr:nth-of-type(even) td {
  background-color: white;
}

.tables table tr:nth-of-type(even) td,
.tables .body .item:nth-of-type(even) {
  background-color: white;
}

table th {
  font-weight: 500;
  font-size: 15px;
}

table tr p:first-of-type {
  margin-top: 0;
}

table tr p:last-of-type {
  margin-bottom: 0;
}

/*	
--------------------------------------------------
END
-------------------------------------------------- 
*/
.clearBoth:after,
.clearBoth:after,
.clear-both:after {
  display: block;
  content: "";
  clear: both;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* nunito-300 - latin */
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/nunito/nunito-v9-latin-300.eot"); /* IE9 Compat Modes */
  src: local("Nunito Light"), local("Nunito-Light"), url("../fonts/nunito/nunito-v9-latin-300.eot?#iefix") format("embedded-opentype"), url("../fonts/nunito/nunito-v9-latin-300.woff2") format("woff2"), url("../fonts/nunito/nunito-v9-latin-300.woff") format("woff"), url("../fonts/nunito/nunito-v9-latin-300.ttf") format("truetype"), url("../fonts/nunito/nunito-v9-latin-300.svg#Nunito") format("svg"); /* Legacy iOS */
}
/* nunito-regular - latin */
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/nunito/nunito-v9-latin-regular.eot"); /* IE9 Compat Modes */
  src: local("Nunito Regular"), local("Nunito-Regular"), url("../fonts/nunito/nunito-v9-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/nunito/nunito-v9-latin-regular.woff2") format("woff2"), url("../fonts/nunito/nunito-v9-latin-regular.woff") format("woff"), url("../fonts/nunito/nunito-v9-latin-regular.ttf") format("truetype"), url("../fonts/nunito/nunito-v9-latin-regular.svg#Nunito") format("svg"); /* Legacy iOS */
}
/* nunito-700 - latin */
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/nunito/nunito-v9-latin-700.eot"); /* IE9 Compat Modes */
  src: local("Nunito Bold"), local("Nunito-Bold"), url("../fonts/nunito/nunito-v9-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/nunito/nunito-v9-latin-700.woff2") format("woff2"), url("../fonts/nunito/nunito-v9-latin-700.woff") format("woff"), url("../fonts/nunito/nunito-v9-latin-700.ttf") format("truetype"), url("../fonts/nunito/nunito-v9-latin-700.svg#Nunito") format("svg"); /* Legacy iOS */
}
/* nunito-800 - latin */
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/nunito/nunito-v9-latin-800.eot"); /* IE9 Compat Modes */
  src: local("Nunito ExtraBold"), local("Nunito-ExtraBold"), url("../fonts/nunito/nunito-v9-latin-800.eot?#iefix") format("embedded-opentype"), url("../fonts/nunito/nunito-v9-latin-800.woff2") format("woff2"), url("../fonts/nunito/nunito-v9-latin-800.woff") format("woff"), url("../fonts/nunito/nunito-v9-latin-800.ttf") format("truetype"), url("../fonts/nunito/nunito-v9-latin-800.svg#Nunito") format("svg"); /* Legacy iOS */
}
/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
/* ----------------------------------
    SWA...
*/
.btn {
  padding: 7px 25px;
  margin: 0 0;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  text-align: center;
  outline: 0 none !important;
  border-radius: 0;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.15s ease-in-out 0s;
}
.btn:hover {
  box-shadow: 0 1.5px 0 rgba(0, 0, 0, 0.15);
}
@media (min-width: 992px) {
  .btn {
    font-size: 20px;
    line-height: 27px;
  }
}
.btn--no-shadow {
  box-shadow: none;
}
.btn--no-shadow:hover {
  box-shadow: none;
}

.btn-primary {
  background-color: #0096D7;
  border-color: #0096D7;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #fff;
  border-color: #0096D7;
  color: #0096D7;
}
.btn-primary:active {
  background-color: #0096D7;
  border-color: #0096D7;
  color: #fff;
}
.btn-primary.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: #fff !important;
  color: #0096D7;
}
.btn-secondary:active {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-tertiary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-tertiary:hover, .btn-tertiary:active, .btn-tertiary:focus {
  background-color: #0096D7 !important;
  color: #fff !important;
  border-color: #0096D7;
}

.btn-clear,
.umbraco-forms-navigation .btn {
  background-color: transparent;
  border-color: #333333;
  color: #333333 !important;
}
.btn-clear:hover, .btn-clear:focus,
.umbraco-forms-navigation .btn:hover,
.umbraco-forms-navigation .btn:focus {
  background-color: #333333;
  border-color: #333333;
  color: #fff !important;
}
.btn-clear:active,
.umbraco-forms-navigation .btn:active {
  background-color: transparent;
  border-color: #0096D7;
  color: #0096D7 !important;
}
.btn-clear.disabled,
.umbraco-forms-navigation .btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-clear--white,
.umbraco-forms-navigation .btn--white {
  border-color: #fff;
  color: #fff !important;
}
.btn-clear--white:hover, .btn-clear--white:focus,
.umbraco-forms-navigation .btn--white:hover,
.umbraco-forms-navigation .btn--white:focus {
  background-color: #fff;
  border-color: #fff;
  color: #333333 !important;
}
.btn-clear--white:active,
.umbraco-forms-navigation .btn--white:active {
  background-color: #fff;
  border-color: #fff;
  color: #333333 !important;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
.btn-loading i {
  display: none;
  color: #fff;
  padding: 13.5px 51.5px;
}
.btn-loading i:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 3px solid #ccc;
  border-top-color: #0096D7;
  animation: spinner 0.6s linear infinite;
}
.btn-loading span {
  display: block;
}
.btn-loading.loading span {
  display: none;
}
.btn-loading.loading i {
  display: block;
}

/* ---------------------------------------------------------------------------------------------------------

    uSkinned styles
*/
/*.btn.c1-bg {
    border-color: darken($c1, 5%);
}

html.no-touch .btn.c1-bg:hover,
.btn.c1-bg:active,
.btn.c1-bg:focus {
    color: darken($c1, 5%);
    border-color: darken($c1, 5%);
    background-color: rgba($c5, 1);
}

.btn.c2-bg {
    border-color: darken($c2, 5%);
}

html.no-touch .btn.c2-bg:hover,
.btn.c2-bg:active,
.btn.c2-bg:focus {
    color: darken($c2, 5%);
    border-color: darken($c2, 5%);
    background-color: rgba($c5, 1);
}

.btn.c3-bg {
    border-color: darken($c6, 5%);
}

html.no-touch .btn.c3-bg:hover,
.btn.c3-bg:active,
.btn.c3-bg:focus {
    color: lighten($c3, 10%);
    border-color: lighten($c3, 10%);
    background-color: rgba($c5, 1);
}

.btn.c4-bg {
    border-color: darken($c4, 5%);
}

html.no-touch .btn.c4-bg:hover,
.btn.c4-bg:active,
.btn.c4-bg:focus {
    color: rgba($c5, 1);
    border-color: darken($c4, 5%);
    background-color: rgba($c1, 1);
}

.btn.c5-bg {
    border-color: darken($c5, 5%);
}

html.no-touch .btn.c5-bg:hover,
.btn.c5-bg:active,
.btn.c5-bg:focus {
    color: rgba($c5, 1);
    border-color: darken($c5, 5%);
    background-color: rgba($c1, 1);
}

.btn.c6-bg {
    border-color: darken($c6, 5%);
}

html.no-touch .btn.c6-bg:hover,
.btn.c6-bg:active,
.btn.c6-bg:focus {
    color: rgba($c5, 1);
    border-color: darken($c5, 5%);
    background-color: rgba($c1, 1);
}

.btn.no-bg,
html.no-touch .btn.no-bg:hover,
.btn.no-bg:active,
.btn.no-bg:focus {
    background-color: transparent !important;
}*/
/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
body,
.base-text {
  color: #333333;
}

body .c1-bg {
  color: red !important;
}

body .c2-bg,
body .c3-bg {
  color: #f0f3f4;
  color: red !important;
}

body .c1-bg .base-text,
body .c2-bg .base-text,
body .c3-bg .base-text {
  color: #5e5a5d;
  color: red !important;
}

body {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 20px;
  -webkit-font-smoothing: antialiased;
}

input,
select,
textarea,
button {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 20px;
}

nav.main,
table thead th,
nav.tabs,
.pricing-menu .head .heading {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

footer .heading {
  font-size: 16px;
}

p {
  margin: 8px 0 15px;
}

p,
.text {
  line-height: 1.4;
}

.secondary-heading {
  margin: 0 0 5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p.caption {
  margin: 10px 0 0;
  font-size: 90%;
  font-style: italic;
  opacity: 0.6;
}

.intro {
  font-size: 130%;
}

.banner .intro {
  font-size: 140%;
  font-weight: 300;
}

b,
strong {
  font-weight: 800;
}

table {
  margin: 5px 0 30px;
}

blockquote {
  position: relative;
  padding: 30px 0 15px;
  margin: 15px 0;
  border: 0 none;
  font-size: 150%;
  font-style: italic;
  font-weight: 700;
}

blockquote::before,
blockquote::after {
  content: "\f347";
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  position: absolute;
}

blockquote::after {
  bottom: -5px;
  right: 0;
  font-size: 30px;
  transform: rotate(180deg);
}

blockquote::before {
  top: -5px;
  left: 0;
  font-size: 30px;
}

.text-center blockquote::before {
  left: 50%;
  transform: translateX(-50%);
}

.text-right blockquote::before {
  right: 0;
  left: auto;
}

blockquote p {
  font-weight: 700;
  letter-spacing: -0.02em;
}

blockquote cite {
  font-size: 12px;
  font-weight: 400;
}

.alert .info :first-child {
  margin-top: 0;
}

.alert .info :last-child {
  margin-bottom: 0;
}

a.skip-to-content {
  position: fixed;
  top: 10px;
  left: 50%;
  z-index: -1;
  width: auto;
  height: auto;
  font-size: 12px;
  transform: translateX(-50%);
}

a.skip-to-content:focus {
  z-index: 1001;
  clip: auto;
  padding: 0;
  margin: 0;
}

@media (min-width: 992px) {
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 22px;
  }
  h5,
  p.heading,
  .umbraco-forms-caption {
    font-size: 20px;
  }
  h6,
  .sub-heading {
    font-size: 18px;
  }
  .intro {
    font-size: 135%;
  }
  .banner .intro {
    font-size: 150%;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 45px;
  }
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 24px;
  }
  h5,
  p.heading {
    font-size: 20px;
  }
  h6,
  .sub-heading {
    font-size: 18px;
  }
  .intro {
    font-size: 140%;
  }
  .banner .intro {
    font-size: 150%;
  }
}
/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
/* -------------------------------------------------------------------------------------------

    SWA styles

*/
a {
  color: #333333;
  outline: 0 none !important;
  transition: all 0.2s ease-in-out 0s;
  text-decoration: none;
}
a:focus, a:hover, a:active {
  color: rgb(25.5, 25.5, 25.5);
}

/* -------------------------------------------------------------------------------------------

    uSkinned styles

*/
/*a,
a:focus,
a:active {
    color: $font-color__highlight;
}*/
/*html.no-touch a:hover {
    color: darken($font-color__highlight, 10%);
}

.apc.c1-bg a:not(.btn):not(.heading):not(.c1-text) {
    // color: rgba($c5, 1);
    color: pink !important
}

html.no-touch .c1-bg a:not(.btn):not(.c1-text):hover,
.c1-bg a:not(.btn):not(.c1-text):active,
.c1-bg a:not(.btn):not(.c1-text):focus {
    // color: darken($c5, 10%);
    color: pink !important
}

.apc.c2-bg a:not(.btn):not(.heading):not(.c2-text),
.apc.c3-bg a:not(.btn):not(.heading):not(.c3-text) {
    // color: rgba($c1, 1);
    color: pink !important
}

html.no-touch .c2-bg a:not(.btn):not(.c2-text):hover,
.c2-bg a:not(.btn):not(.c2-text):active,
.c2-bg a:not(.btn):not(.c2-text):focus,
html.no-touch .c3-bg a:not(.btn):not(.c3-text):hover,
.c3-bg a:not(.btn):not(.c3-text):active,
.c3-bg a:not(.btn):not(.c3-text):focus {
    // color: darken($c1, 10%);
    color: pink !important
}

html.no-touch .link.text-uppercase .c1-borders:hover,
.link.text-uppercase .btn.c1-borders:active,
.link.text-uppercase .btn.c1-borders:focus,
html.no-touch .link.text-uppercase .c2-borders:hover,
.link.text-uppercase .btn.c2-borders:active,
.link.text-uppercase .btn.c2-borders:focus,
html.no-touch .link.text-uppercase .c4-borders:hover,
.link.text-uppercase .btn.c4-borders:active,
.link.text-uppercase .btn.c4-borders:focus,
html.no-touch .link.text-uppercase .c5-borders:hover,
.link.text-uppercase .btn.c5-borders:active,
.link.text-uppercase .btn.c5-borders:focus {
    // border-color: rgba($c3, 1);
    color: pink !important
}

html.no-touch .link.text-uppercase .c3-borders:hover,
.link.text-uppercase .btn.c3-borders:active,
.link.text-uppercase .btn.c3-borders:focus {
    // border-color: rgba($c3, 1);
    color: pink !important
}

.slick-prev,
.slick-next,
.navigation nav.main ul li,
li.has-child ul li span a::before,
.promo-pods .item .info {
    transition: all 0.2s ease-in-out 0s; // todo : rwn : move to variables
}

html.no-touch a:hover,
html.touch a:hover,
a:focus,
a:active,
a:visited {
    text-decoration: none !important;
}


.btn + .btn {
    margin-left: 5px;
}

.text-center .btn + .btn {
    margin-left: 5px;
}

/*.text-right .btn {
    margin-left: 5px;
}*/
/*.btn-xs {
    font-size: 12px;
    padding: 8px 10px;
}

.btn-sm {
    font-size: 12px;
    padding: 10px 15px;
}

.btn-lg {
    border-width: 3px;
    padding: 15px 20px 17px;
    font-size: 20px;
}

a.close-button {
    display: block;
    width: 40px;
    height: 40px;
    position: relative;
    float: right;
    margin: $base-half-spacing $base-half-spacing 0 0;
    opacity: 1;
    transition: all 0.2s ease-in-out 0s;
}

a.close-button em {
    display: none;
}

a.close-button span {
    display: block;
    width: 40px;
    height: 2px;
    position: absolute;
    top: 0;
    right: 0;
}

a.close-button span.top {
    transform: rotate(45deg);
}

a.close-button span.bottom {
    transform: rotate(-45deg);
}

.link {
    margin: $base-half-spacing 0 0;
}

.link.text-uppercase a {
    display: inline-block;
    padding: 0 0 3px;
    border-width: 0 0 2px;
    border-style: solid;
}

#top-link-block {
    z-index: 200;
    position: relative;
}

#top-link-block a {
    display: block;
    margin: 0 auto;
    padding: $base-half-spacing;
    text-align: center;
}

@media (min-width:0) and (max-width:991px) {
    #top-link-block a {
        text-align: center;
        border-radius: 0;
        border: 0 none;
        box-shadow: 0 none;
    }
}

@media (min-width:992px) {

    html.no-touch a.close-button:hover {
        opacity: 0.6;
    }

    #top-link-block {
        position: fixed;
        bottom: -100%;
        right: 0;
        padding: 0;
        opacity: 0;
        transition: bottom 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
    }

    #top-link-block.affix.show {
        bottom: 0;
        opacity: 1;
    }

    #top-link-block a {
        width: 60px;
        font-size: 20px;
    }
}*/
/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
.heading {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

h1 {
  font-size: 30px;
}

h1.heading.main {
  margin-top: 0;
}

h2 {
  font-size: 25px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6,
.sub-heading {
  font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 10px 0;
}

.heading,
h1,
.tables .head {
  color: #333333;
}

/*.heading,
h1,
h2,
h3,
h4,
h5,
h6,
body .base-text h1,
body .base-text h2,
body .base-text h3,
body .base-text h4,
body .base-text h5,
body .base-text h6,
body .base-text .heading,
.tables .head {
    color: $font-color__primary;
}*/
/*.c1-bg h1:not(.c1-text):not(.c2-text):not(.c3-text),
.c1-bg h2:not(.c1-text):not(.c2-text):not(.c3-text),
.c1-bg h3:not(.c1-text):not(.c2-text):not(.c3-text),
.c1-bg h4:not(.c1-text):not(.c2-text):not(.c3-text),
.c1-bg h5:not(.c1-text):not(.c2-text):not(.c3-text),
.c1-bg h6:not(.c1-text):not(.c2-text):not(.c3-text),
.c1-bg .heading:not(.c1-text):not(.c2-text):not(.c3-text),
.c1-bg .secondary-heading:not(.c1-text):not(.c2-text):not(.c3-text),
.c2-bg h1:not(.c1-text):not(.c2-text):not(.c3-text),
.c2-bg h2:not(.c1-text):not(.c2-text):not(.c3-text),
.c2-bg h3:not(.c1-text):not(.c2-text):not(.c3-text),
.c2-bg h4:not(.c1-text):not(.c2-text):not(.c3-text),
.c2-bg h5:not(.c1-text):not(.c2-text):not(.c3-text),
.c2-bg h6:not(.c1-text):not(.c2-text):not(.c3-text),
.c2-bg .heading:not(.c1-text):not(.c2-text):not(.c3-text),
.c2-bg .secondary-heading:not(.c1-text):not(.c2-text):not(.c3-text),
.c3-bg h1:not(.c1-text):not(.c2-text):not(.c3-text),
.c3-bg h2:not(.c1-text):not(.c2-text):not(.c3-text),
.c3-bg h3:not(.c1-text):not(.c2-text):not(.c3-text),
.c3-bg h4:not(.c1-text):not(.c2-text):not(.c3-text),
.c3-bg h5:not(.c1-text):not(.c2-text):not(.c3-text),
.c3-bg h6:not(.c1-text):not(.c2-text):not(.c3-text),
.c3-bg .heading:not(.c1-text):not(.c2-text):not(.c3-text),
.c3-bg .secondary-heading:not(.c1-text):not(.c2-text):not(.c3-text) {
    color: rgba($c5, 1);
}*/
/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.nav-top__spacer {
  display: none;
  padding: 0 !important;
  margin: 10px 0 5px 10px !important;
  float: left;
}
.nav-top__spacer span {
  border-left: 1px solid #333333;
}
@media (min-width: 992px) {
  .nav-top__spacer {
    display: inline-block;
  }
}

@media (min-width: 992px) {
  .top-nav-wrapper {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: flex-end;
    grid-column-gap: 15px;
    margin-top: 32px;
  }
  .top-nav-wrapper .navigation nav.top {
    position: unset;
  }
  .top-nav-wrapper .site-search {
    position: unset;
    margin: 0;
  }
}

.slick-prev,
.slick-next,
.navigation nav.main ul li,
li.has-child ul li span a::before,
.promo-pods .item .info {
  transition: all 0.2s ease-in-out 0s;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
header #logo {
  position: absolute;
  top: 5px;
  left: 15px;
  z-index: 501;
}
@media (min-width: 992px) {
  header #logo {
    top: 22px;
  }
}

header #logo.no-image {
  top: 15px;
}
@media (min-width: 992px) {
  header #logo.no-image {
    top: 25px;
  }
}

header #logo a {
  display: block;
  text-indent: -9999px;
}

header #logo.no-image a {
  text-indent: 0;
  font-size: 30px;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
/*$main-nav__default-color: $color__foreground-primary;
$main-nav__default-color--active: $color__foreground-primary;*/
/* -------------------------------------------------------------------------

    uSkinned Styles
*/
html.reveal-out {
  overflow: hidden;
}

.navigation {
  position: relative;
  z-index: 5;
}

html.reveal-out .navigation {
  overflow: auto;
}

.navigation .reveal {
  display: none;
}

html.reveal-out .navigation .reveal {
  display: block;
}

header a.expand {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 300;
  width: 70px;
  height: 70px;
  display: block;
  text-indent: -9999px;
  text-decoration: none;
  cursor: pointer;
}

header a.expand span:before,
header a.expand span,
header a.expand span:after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  position: absolute;
  right: 15px;
  border-radius: 2px;
  background-color: #333333;
  opacity: 1;
  transition: transform 0.4s ease-in-out 0s, background-color 0.4s ease-in-out 0s, right 0.4s ease-in-out 0s, top 0.4s ease-in-out 0s, width 0.3s ease-in-out 0s;
}

header a.expand span {
  top: 50%;
  transform: translateY(-50%);
}

header a.expand span:before,
header a.expand span:after {
  right: 0;
}

header a.expand span:before {
  top: -10px;
}

header a.expand span:after {
  top: 10px;
}

header a.expand.active span {
  width: 0;
}

header a.expand.active span:before,
header a.expand.active span:after {
  top: 0;
  background-color: #0096D7;
}

header a.expand.active span::before {
  transform: rotate(-45deg);
}

header a.expand.active span::after {
  transform: rotate(45deg);
}

@media (min-width: 0) and (max-width: 991px) {
  html.reveal-out #site {
    height: 0px;
  }
}
@media (min-width: 992px) {
  html.reveal-out {
    overflow: auto;
  }
  html.reveal-out .navigation {
    overflow: visible;
  }
  header a.expand {
    display: none;
  }
  .navigation .reveal {
    display: block;
  }
}
html.touch .navigation nav.main > ul > li > span a {
  z-index: 99;
}

html.touch .navigation nav.main > ul > li.open > span > a {
  color: #333333;
}

/*html.no-touch .navigation nav.main > ul > li:hover > span > a {
    // hover
    color: $font-color__highlight;
}*/
.navigation nav.main > ul > li:focus-within > span > a {
  color: #333333;
}

@media (min-width: 992px) {
  .navigation {
    z-index: 500;
    position: relative;
    overflow: visible;
  }
  html.touch .navigation nav.main > ul > li.has-child > ul > li.has-child > span a {
    padding-right: 40px;
  }
  /*html.no-touch .navigation nav.main ul li.has-child ul li span a:hover::before {
      background-color: rgba($c5, 0.5);
  }

  html.no-touch .navigation nav.main ul li.has-child ul li span.active a:hover::before,
  .navigation nav.main ul li.has-child ul li span.active a::before {
      background-color: rgba($c1, 1);
  }*/
  html.touch .navigation nav.main ul li.has-child.open ul,
  html.no-touch .navigation nav.main ul li.has-child:hover ul {
    left: 0;
    right: 0;
  }
  html.touch .navigation nav.main ul li.has-child.open ul ul,
  html.no-touch .navigation nav.main ul li.has-child:hover ul ul {
    top: 0;
    left: -999em;
  }
  html.touch .navigation nav.main ul li ul li.has-child.open ul,
  html.no-touch .navigation nav.main ul li ul li.has-child:hover ul {
    left: 240px;
  }
  html.touch .navigation nav.main > ul > li.has-child.open:last-of-type ul,
  html.no-touch .navigation nav.main > ul > li.has-child:hover:last-of-type ul {
    right: 0;
    left: auto;
  }
  html.touch .navigation nav.main > ul > li.has-child.open:last-of-type ul ul,
  html.no-touch .navigation nav.main > ul > li.has-child:hover:last-of-type ul ul {
    left: -999em;
  }
}
@media (min-width: 992px) {
  .navigation nav.main ul li.has-child ul li span a {
    display: block;
    float: none;
    height: auto;
  }
  .navigation nav.main ul li.has-child ul li span i {
    top: 0;
    bottom: 0;
    font-size: 10px;
    padding-top: 18px;
    height: 100%;
  }
  .navigation nav.main ul li.has-child ul li span a::before {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .navigation nav.main ul li.has-child:focus-within ul {
    left: 0;
  }
  .navigation nav.main ul li.has-child:focus-within ul ul {
    top: 0;
    left: -999em;
  }
  .navigation nav.main ul li ul li.has-child:focus-within ul {
    left: 240px;
  }
  .navigation nav.main > ul > li.has-child:focus-within:last-of-type ul {
    right: 0;
    left: auto;
  }
  .navigation nav.main > ul > li.has-child:focus-within:last-of-type ul ul {
    left: -999em;
  }
  .navigation nav.main ul li.more-children ul.more-dropdown ul,
  .navigation nav.main ul li.more-children ul.more-dropdown i {
    display: none !important;
  }
  /* MULTI COLUMN DROPDOWN FOR MORE THAN 8*/
  .navigation nav.main > ul > li.has-child.multi-col > ul {
    width: 520px;
  }
  .navigation nav.main > ul > li.has-child.multi-col > ul > li {
    float: left;
    width: 260px;
  }
  .navigation nav.main > ul > li.has-child.multi-col > ul > li:nth-child(2n+1) {
    clear: both;
  }
}
/* -------------------------------------------------------------------------

    SWA Styles
*/
.main-nav__menu-togle-icon {
  color: #333333;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  padding: 10px 21px;
  text-align: center;
  cursor: pointer;
  z-index: 101;
}
.main-nav__menu-togle-icon:hover {
  cursor: pointer;
}
@media (min-width: 992px) {
  .main-nav__menu-togle-icon {
    /*width: 25px;
    height: 55px;
    padding-top: 32px;
    font-size: 10px;*/
    display: none;
  }
}

@media (min-width: 0) and (max-width: 991px) {
  .navigation nav.main {
    /*border-width: 0 0 1px;
    border-style: solid;
    border-color: red;*/
  }
}
@media (min-width: 992px) {
  .navigation nav.main {
    position: absolute;
    top: 80px;
    right: 0;
    z-index: 999;
    overflow: visible;
  }
}
@media (min-width: 992px) {
  .navigation nav.main > ul {
    position: relative;
    z-index: 1000;
    line-height: 0;
    overflow: visible;
    border: 0 none;
  }
}
.navigation nav.main > ul li span a {
  color: #333333;
  text-decoration: none;
}
@media (min-width: 992px) {
  .navigation nav.main > ul li span a {
    border-bottom: 2px solid transparent;
  }
}
@media (min-width: 992px) {
  .navigation nav.main > ul li span a:hover {
    color: #0096D7;
  }
}
.navigation nav.main > ul li span.active a {
  color: #0096D7;
}
@media (min-width: 992px) {
  .navigation nav.main > ul li span.active a {
    color: #333333;
    border-bottom-color: #0096D7;
  }
}
.navigation nav.main > ul li:hover span a {
  color: #0096D7;
}
.navigation nav.main > ul li:hover li span a {
  color: #333333;
}
.navigation nav.main > ul li:hover li span a:hover, .navigation nav.main > ul li:hover li span a:active, .navigation nav.main > ul li:hover li span a:focus {
  color: #0096D7;
}
@media (min-width: 992px) {
  .navigation nav.main > ul > li {
    float: left;
    z-index: 1000;
  }
}
@media (min-width: 1200px) {
  .navigation nav.main > ul > li {
    padding: 0 0 0 15px;
  }
}
@media (min-width: 992px) {
  .navigation nav.main > ul > li > span {
    position: relative;
    padding: 0 0 0 35px;
  }
}
.navigation nav.main > ul > li > span a {
  position: relative;
  padding: 10px 15px;
}
@media (min-width: 0) and (max-width: 991px) {
  .navigation nav.main > ul > li > span a {
    z-index: 99;
  }
}
@media (min-width: 992px) {
  .navigation nav.main > ul > li > span a {
    padding: 0 2px;
  }
}
.navigation nav.main > ul > li.has-child ul {
  position: relative;
}
@media (min-width: 992px) {
  .navigation nav.main > ul > li.has-child ul {
    /* mega-menu styles */
    position: absolute;
    top: 22px;
    left: -999em;
    height: auto;
    padding: 0;
    text-align: left;
    background-color: #fff;
    box-shadow: 3px 3px 0 rgba(51, 51, 51, 0.1);
    z-index: 2000;
  }
}
@media (min-width: 992px) {
  .navigation nav.main > ul > li.has-child ul li {
    position: relative;
  }
}
.navigation nav.main > ul > li.has-child ul ul {
  display: none;
}
@media (min-width: 992px) {
  .navigation nav.main ul {
    z-index: 500;
    position: relative;
    overflow: visible;
  }
}
@media (min-width: 0) and (max-width: 991px) {
  .navigation nav.main ul li {
    border-width: 1px 0 0;
    border-style: solid;
    border-color: #dedede;
  }
}
.navigation nav.main ul li span {
  position: relative;
  display: block;
}
.navigation nav.main ul li span a {
  z-index: 101;
}
@media (min-width: 0) and (max-width: 991px) {
  .navigation nav.main ul li span.active a::before {
    background-color: #0096D7;
  }
}
.navigation nav.main ul li a {
  display: block;
}
.navigation nav.main ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  height: 100%;
}
.navigation nav.main ul li ul li span > a {
  display: block;
  padding: 10px 15px 10px 25px;
}
@media (min-width: 992px) {
  .navigation nav.main ul li ul li span a {
    padding: 20px;
  }
}
.navigation nav.main ul li ul li span.active a {
  border-bottom-color: transparent;
  text-decoration: underline;
  color: #0096D7;
}
@media (min-width: 0) and (max-width: 991px) {
  .navigation nav.main ul li.has-child ul {
    display: none;
  }
}
@media (min-width: 0) and (max-width: 991px) {
  .navigation nav.main ul li.has-child.open-mobile > ul {
    display: block;
  }
}
@media (min-width: 0) and (max-width: 991px) {
  .navigation nav.main ul li.has-child.open > span i::before {
    transform: rotate(180deg);
  }
}
@media (min-width: 0) and (max-width: 991px) {
  .navigation nav.main ul li.more-children {
    display: none !important;
  }
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.navigation nav.top {
  position: relative;
  z-index: 602;
  padding: 0 0 0 15px;
}

.navigation nav.top > ul,
.navigation nav.top ul .dropdown-menu {
  font-size: 16px;
  border-radius: 0;
}

.navigation nav.top ul .dropdown-menu {
  z-index: 702;
}

.navigation nav.top ul > li.nav-top__item {
  display: block;
  margin: 15px 0;
}

.navigation nav.top li a {
  color: #333333;
}

html.no-touch .navigation nav.top li a:hover,
.navigation nav.top li a:focus,
.navigation nav.top li a:active {
  color: rgb(76.5, 76.5, 76.5);
}

.navigation nav.top li a i {
  color: #333333;
}

@media (min-width: 0) and (max-width: 991px) {
  .navigation nav.top ul .dropdown-menu {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    float: none !important;
    width: auto;
    background: none;
    border: 0 none;
    box-shadow: none;
  }
  .navigation nav.top ul .dropdown-menu li a {
    padding: 0;
    background: none !important;
  }
}
@media (min-width: 992px) {
  .navigation nav.top {
    padding: 0;
  }
  .navigation nav.top > ul,
  .navigation nav.top ul .dropdown-menu {
    font-size: 16px;
  }
  .navigation nav.top ul > li.nav-top__item {
    display: block;
    float: left;
    margin: 0 0 0 10px;
  }
  .navigation nav.top li a {
    display: block;
    padding: 0;
    height: 34px;
    line-height: 34px;
  }
  .navigation nav.top ul .dropdown-menu {
    top: 30px;
    right: -1px;
    margin: 0;
    padding: 0;
    border-color: #dedede;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.025);
  }
  .navigation nav.top ul .dropdown-menu li {
    margin: 0;
    float: none;
  }
  .navigation nav.top ul .dropdown-menu li a {
    display: block;
    padding: 10px 10px 12px;
    height: auto;
  }
}
/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
nav.sub {
  position: relative;
  overflow: hidden;
  height: 100%;
  margin-bottom: 30px;
}

nav.sub p.heading {
  font-size: 18px;
  margin: 0;
  border-width: 0 0 1px;
  border-style: solid;
  border-color: #dedede;
}

nav.sub.categories p.heading,
nav.sub p.heading a {
  display: block;
  color: #0b5a9c;
}

nav.sub .inner:not(.heading) {
  padding-top: 5px;
  padding-bottom: 5px;
}

nav.sub ul {
  margin: 0;
}

nav.sub ul ul ul {
  margin-left: 10px;
}

nav.sub ul li {
  position: relative;
}

nav.sub ul li a {
  display: block;
  padding: 10px 0;
  background: transparent;
  transition: all 0.2s ease-in-out 0s;
}

html.no-touch nav.sub ul li a:hover {
  padding-left: 3px;
}

/* ACTIVE */
nav.sub ul li.active > a {
  color: #0096d7;
}

nav.sub ul ul li a {
  padding: 6px 0 6px 10px;
}

html.no-touch nav.sub ul ul li a:hover {
  padding-left: 13px;
}

nav.sub ul ul li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 5px;
  height: 1px;
  background-color: rgba(11, 90, 156, 0.2);
}

nav.sub ul li.active > a,
html.no-touch nav.sub ul li.active > a:hover,
nav.sub ul li.active > a,
html.no-touch nav.sub ul li.active > a:hover {
  padding-left: 0;
}

nav.sub ul ul li.active > a,
html.no-touch nav.sub ul ul li.active > a:hover,
nav.sub ul ul li.active > a,
html.no-touch nav.sub ul ul li.active > a:hover {
  padding-left: 10px;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.breadcrumb-trail {
  overflow: hidden;
}
.breadcrumb-trail ol {
  padding: 15px 0;
  margin: 0 15px;
  font-size: 16px;
}
.breadcrumb-trail ol li {
  position: relative;
  display: inline-block;
}
.breadcrumb-trail ol li span {
  color: #333333;
}
.breadcrumb-trail ol li a {
  display: inline-block;
  padding-right: 6px;
}
.breadcrumb-trail ol li a span {
  display: inline-block;
  color: #0096D7;
}
.breadcrumb-trail ol li::after {
  content: "/";
  display: inline-block;
  color: #333333;
  padding-right: 2px;
}
.breadcrumb-trail ol li:last-child::after {
  display: none;
  content: "";
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.site-search {
  position: relative;
  margin: 15px 0;
}

.site-search fieldset {
  position: relative;
  pointer-events: all;
}

.site-search .umbraco-forms-field {
  padding: 0;
  margin: 0;
}

.site-search .form-control {
  width: 100%;
  height: 32px;
  min-height: 32px;
  padding-right: 32px;
  border: none;
  background-color: #F5F5F5;
  color: #333333;
  border-radius: 0 16px 16px 0;
  box-shadow: none;
  font-size: 16px;
}

header .site-search .form-control {
  width: 100%;
}
@media (min-width: 1200px) {
  header .site-search .form-control {
    width: 160px;
    transition: all 0.2s ease-in-out 0s;
  }
  header .site-search .form-control:focus {
    width: 260px;
  }
}

.site-search button.btn {
  width: 32px;
  height: 32px;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  font-size: 25px;
  text-align: center;
  border: 0 none;
  box-shadow: none !important;
  border-radius: 16px;
  border: 1px solid #0096D7;
}
.site-search button.btn:hover, .site-search button.btn:focus, .site-search button.btn:active {
  border-color: #0096D7;
  background-color: #fff;
  color: #0096D7;
}

header .site-search button.btn {
  width: 32px;
}

/*html.no-touch header .site-search button.btn.c1-bg.c5-text:hover,
header .site-search button.btn.c1-bg.c5-text:active,
header .site-search button.btn.c1-bg.c5-text:focus {
    // color: rgba($c5, 1);
    background-color: darken($color__brand-primary, 5%);
}*/
.site-search button i {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 20px;
  line-height: 1;
  transform: translate(-50%, -50%);
}

@media (min-width: 0) and (max-width: 991px) {
  header .site-search {
    margin: 30px 15px;
  }
}
/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
nav#pagination {
  padding: 30px 0;
}

nav#pagination .pagination {
  position: relative;
  overflow: hidden;
  min-height: 50px;
  margin: 0;
  display: block;
  font-size: 0;
}

.listing.shop nav#pagination {
  margin: 0;
}

nav#pagination .pagination,
nav#pagination .pagination li a,
nav#pagination .pagination li a span {
  border-radius: 0;
}

.listing.shop nav#pagination .pagination {
  border: 0 none;
}

nav#pagination .pagination li {
  border: 0 none;
  display: inline-block;
  font-size: 14px;
  margin: 0 2px;
}

nav#pagination .pagination li.prev,
nav#pagination .pagination li.next {
  position: absolute;
  top: 0;
  left: 0;
}

nav#pagination .pagination li.next {
  right: 0;
  left: auto;
}
nav#pagination .pagination li a {
  border-width: 1px;
  border-style: solid;
  border-color: #dedede;
  padding: 13px 20px;
  color: #0096d7;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.025);
}

html.no-touch nav#pagination .pagination li:not(.active) a:hover {
  color: white;
  border-color: #0096d7;
  background-color: #0096d7;
}

html.no-touch .pagination li a:hover,
.pagination li a:focus,
.pagination li a:active {
  box-shadow: 0 1.5px 0 rgba(0, 0, 0, 0.15);
}

nav#pagination .pagination li.prev,
nav#pagination .pagination li.next {
  margin: 0;
}

nav#pagination .pagination li.active a {
  font-weight: 700;
  color: white;
  border-color: #0b5a9c;
  background-color: #0b5a9c;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
nav.sitemap {
  overflow: hidden;
  height: 100%;
  position: relative;
}

nav.sitemap ul {
  margin: 0;
  padding: 0 0 8px;
}

nav.sitemap ul li {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
}

.c1-bg nav.sitemap ul li a {
  color: white;
}

html.no-touch .c1-bg nav.sitemap ul li a:hover {
  background-color: rgb(11, 181.2325581395, 255);
}

html.no-touch .c2-bg nav.sitemap ul li a:hover {
  background-color: rgb(51.1447368421, 152.3223684211, 202.3552631579);
}

html.no-touch .c3-bg nav.sitemap ul li a:hover {
  background-color: rgb(14.3592814371, 117.4850299401, 203.6407185629);
}

nav.sitemap ul li::before,
nav.sitemap ul li::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  background-color: #dedede;
  transition: all 0.3s ease-in-out 0s;
}

.c1-bg nav.sitemap ul li::before,
.c1-bg nav.sitemap ul li::after {
  background-color: rgb(11, 181.2325581395, 255);
}

.c3-bg nav.sitemap ul li::before,
.c3-bg nav.sitemap ul li::after {
  background-color: rgb(29.874251497, 143.880239521, 239.125748503);
}

nav.sitemap ul li::before {
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
}

nav.sitemap ul li::after {
  top: 16px;
  width: 5px;
  height: 1px;
}

html.no-touch nav.sitemap ul li a:hover {
  padding-left: 18px;
}

html.no-touch nav.sitemap ul li:hover::after {
  width: 10px;
  background-color: rgb(209.25, 209.25, 209.25);
}

html.no-touch .c1-bg nav.sitemap ul li:hover::after {
  background-color: rgb(62, 196.6511627907, 255);
}

nav.sitemap ul ul {
  margin-left: 16px;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
nav.social {
  align-self: flex-end;
}
@media (min-width: 768px) {
  nav.social {
    width: 100%;
  }
}

nav.social ul {
  line-height: 0;
  margin: 15px 0;
}

nav.social ul li {
  display: inline-block;
  position: relative;
  margin: 0 2px 5px 0;
}

nav.social ul li a {
  position: relative;
  display: block;
  float: left;
  text-indent: -9999px;
  width: 40px;
  height: 40px;
  background-image: url("/images/icons/social.png");
  background-repeat: no-repeat;
  background-size: 40px auto;
  border-radius: 20px;
}

nav.social ul li a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}

html.no-touch nav.social ul li a:hover::after {
  opacity: 0.25;
}

nav.social ul li.facebook a {
  background-position: left top;
}

nav.social ul li.twitter a {
  background-position: left -40px;
}

nav.social ul li.linkedin a {
  background-position: left -80px;
}

nav.social ul li.google_plus a {
  background-position: left -120px;
}

nav.social ul li.pinterest a {
  background-position: left -160px;
}

nav.social ul li.instagram a {
  background-position: left -200px;
}

nav.social ul li.flickr a {
  background-position: left -240px;
}

nav.social ul li.tumblr a {
  background-position: left -280px;
}

nav.social ul li.vimeo a {
  background-position: left -320px;
}

nav.social ul li.youtube a {
  background-position: left -360px;
}

nav.social ul li.dribble a {
  background-position: left -400px;
}

nav.social ul li.skype a {
  background-position: left -440px;
}

nav.social ul li.rss a {
  background-position: left -480px;
}

nav.social ul li.soundcloud a {
  background-position: left -560px;
}

nav.social ul li.behance a {
  background-position: left -600px;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.quick-links ul li {
  margin-bottom: 10px;
}

.quick-links ul li a {
  display: block;
  padding-left: 12px;
}

.quick-links ul li a::after {
  content: "\f125";
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 3px;
  left: 15px;
  font-size: 10px;
  display: block;
  color: #0b5a9c;
}

footer .quick-links ul li a::after {
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 992px) {
  html.no-touch .quick-links ul li a:hover {
    padding-left: 14px;
  }
}
@media (min-width: 1200px) {
  .wide-col .quick-links ul li,
  footer .quick-links ul li {
    width: 33.3333333%;
  }
}
/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.apc.banner .item.overlay .banner-text-underlay {
  padding: 40px 20px;
  background-color: rgba(0, 150, 215, 0.7);
}
@media (min-width: 768px) {
  .apc.banner .item.overlay .banner-text-underlay {
    padding: 40px 80px;
    display: grid;
    grid-template-columns: 1fr 0.4fr;
    grid-template-rows: auto auto auto;
    grid-row-gap: 5px;
  }
}
@media (min-width: 992px) {
  .apc.banner .item.overlay .banner-text-underlay {
    padding: 40px 80px;
  }
}

.slick-banner__main-heading {
  color: #fff;
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  letter-spacing: 0px;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .slick-banner__main-heading {
    font-size: 45px;
    line-height: 50px;
    grid-row: 1;
    grid-column-start: 1;
    grid-column-end: 1;
  }
}
@media (min-width: 992px) {
  .slick-banner__main-heading {
    font-size: 70px;
    line-height: 75px;
  }
}

.slick-banner__sub-heading {
  color: #fff;
  font-size: 18px;
  line-height: 21px;
  font-style: normal;
  font-stretch: normal;
  font-weight: 400;
  letter-spacing: 0px;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .slick-banner__sub-heading {
    font-size: 25px;
    line-height: 33px;
    grid-row: 2;
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
@media (min-width: 992px) {
  .slick-banner__sub-heading {
    font-size: 35px;
    line-height: 43px;
  }
}

.slick-banner__link {
  padding: 10px 0 0 0;
  margin: 0;
}
@media (min-width: 768px) {
  .slick-banner__link {
    grid-row: 3;
    padding-top: 15px;
  }
}
@media (min-width: 992px) {
  .slick-banner__link {
    padding-top: 30px;
  }
}

.slick-prev,
.slick-next {
  display: table;
}

.slick-prev i,
.slick-next i {
  position: relative;
  margin: 0 !important;
  display: block;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  z-index: 200;
  background: none;
  border: 0 none;
  cursor: pointer;
  color: white;
  background-color: #0096d7;
  transform: translateY(-50%);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.05);
}

.apc.c1-bg .slick-prev,
.apc.c1-bg .slick-next {
  background-color: #0b5a9c;
}

.slick-prev {
  left: 15px;
}

.slick-next {
  right: 15px;
}

.apc.banner .slick-prev,
.apc.text-with-slideshow .slick-prev {
  left: 0;
}

.apc.banner .slick-next,
.apc.text-with-slideshow .slick-next {
  right: 0;
}

html.no-touch .slick-prev:hover,
html.no-touch .slick-next:hover {
  background-color: rgb(0, 114.4186046512, 164);
  box-shadow: 1.5px 1.5px 0 rgba(0, 0, 0, 0.15);
}

html.no-touch .apc.c1-bg .slick-prev:hover,
html.no-touch .apc.c1-bg .slick-next:hover {
  background-color: rgb(7.6407185629, 62.5149700599, 108.3592814371);
}

.slick-prev i,
.slick-next i {
  font-size: 20px;
}

.apc.banner .slick-prev i,
.apc.banner .slick-next i {
  font-size: 20px;
}

ul.slick-dots {
  position: relative;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding-top: 15px;
  text-align: center;
}

.apc.banner ul.slick-dots,
.apc.text-with-slideshow ul.slick-dots {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  padding: 0;
}

ul.slick-dots li {
  margin: 0 10px;
  display: inline-block;
  width: 12px;
  height: 12px;
}

.text-left ul.slick-dots {
  left: 15px;
}

.text-left ul.slick-dots li {
  float: left;
  margin-right: 10px;
  margin-left: 0;
}

.text-right ul.slick-dots {
  right: 15px;
}

.text-right ul.slick-dots li {
  float: right;
  margin-right: 0;
  margin-left: 10px;
}

ul.slick-dots li button {
  border-radius: 50%;
  width: 15px;
  height: 15px;
  background-color: rgba(11, 90, 156, 0.4);
  transition: background-color 0.2s ease-in-out 0s, border-color 0.2s ease-in-out 0s;
}

ul.slick-dots li.slick-active button {
  background-color: rgba(0, 150, 215, 0.7);
}

.apc.banner ul.slick-dots li button,
.apc.text-with-slideshow ul.slick-dots li button,
.c1-bg ul.slick-dots li button,
.c2-bg ul.slick-dots li button,
.c3-bg ul.slick-dots li button {
  background-color: #fff;
}

.apc.banner ul.slick-dots li.slick-active button,
.apc.text-with-slideshow ul.slick-dots li.slick-active button,
.c1-bg ul.slick-dots li.slick-active button,
.c2-bg ul.slick-dots li.slick-active button,
.c3-bg ul.slick-dots li.slick-active button {
  background-color: rgba(0, 150, 215, 0.7);
}

@media (min-width: 0) and (max-width: 767px) {
  .apc.banner .slick-prev,
  .apc.banner .slick-next {
    top: auto;
    bottom: 0;
    transform: translateY(0);
  }
}
@media (min-width: 992px) {
  .apc.banner .slick-prev,
  .apc.banner .slick-next {
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1340px) {
  .apc:not(.banner):not(.text-with-slideshow) .slick-prev {
    left: -60px;
  }
  .apc:not(.banner):not(.text-with-slideshow) .container-fluid .wide-col .slick-prev {
    left: -15px;
  }
  .apc:not(.banner):not(.text-with-slideshow) .slick-next {
    right: -60px;
  }
  .apc:not(.banner):not(.text-with-slideshow) .container-fluid .wide-col .slick-next {
    right: -15px;
  }
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  z-index: 0;
}

.slick-slider * {
  outline: 0 none !important;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list,
.slick-track,
.slick-slide,
.slick-slide img {
  transform: translate3d(0, 0, 0);
  z-index: 0;
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  zoom: 1;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
}

/*
	.slick-slide {
		-moz-opacity:0.3;
		-webkit-opacity:0.3;
		-ms-opacity:0.3;
		opacity:0.3;
		}
	.slick-active {
		-moz-opacity:1;
		-webkit-opacity:1;
		-ms-opacity:1;
		opacity:1;
		}
		*/
/* Arrows */
/* Dots */
.slick-dots {
  position: absolute;
  bottom: -45px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.slick-wrapping-link:hover h1, .slick-wrapping-link:hover p {
  text-decoration: none !important;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.carousel-child-items {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .carousel-child-items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.carousel-child-items .carousel-child-item::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0;
  padding-bottom: 71.4285714286%;
}
@media (min-width: 400px) {
  .carousel-child-items .carousel-child-item::before {
    padding-bottom: 55.5555555556%;
  }
}
@media (min-width: 992px) {
  .carousel-child-items .carousel-child-item::before {
    padding-bottom: 75.1879699248%;
  }
}

.carousel-child-items .carousel-child-item {
  width: 100%;
  display: grid;
  position: relative;
  background-size: cover;
  min-height: 200px;
}
.carousel-child-items .carousel-child-item:nth-child(2) {
  -ms-grid-column: 2;
}
.carousel-child-items .carousel-child-item:nth-child(3) {
  -ms-grid-column: 3;
}

.carousel-child-item__holder {
  position: absolute;
  color: #fff !important;
  text-align: center;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(34, 34, 34, 0.55);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-content: center;
}
.carousel-child-item__holder:hover {
  text-decoration: none !important;
  color: #fff !important;
}
.carousel-child-item__holder:hover span, .carousel-child-item__holder:hover h2, .carousel-child-item__holder:hover p {
  text-decoration: none !important;
  color: #fff !important;
}

.carousel-child-item__holder-inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  align-items: center;
  margin: 0 15px;
  height: 100%;
}
@media (min-width: 768px) {
  .carousel-child-item__holder-inner {
    margin: 0 25px;
  }
}
@media (min-width: 992px) {
  .carousel-child-item__holder-inner {
    margin: 10px 44px;
    grid-template-rows: 0.5fr auto auto;
    height: 90%;
  }
}
@media (min-width: 1300px) {
  .carousel-child-item__holder-inner {
    grid-template-rows: 0.5fr auto auto auto;
  }
}

.carousel-child-item__date {
  font-size: 16px;
}
@media (min-width: 768px) {
  .carousel-child-item__date {
    font-size: 18px;
    line-height: 40px;
  }
}
@media (min-width: 992px) {
  .carousel-child-item__date {
    line-height: 26px;
  }
}

.carousel-child-item__heading {
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 35px;
}
@media (min-width: 768px) {
  .carousel-child-item__heading {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (min-width: 992px) {
  .carousel-child-item__heading {
    font-size: 35px;
  }
}

.carousel-child-item__subheading {
  padding: 0;
  margin: 0;
  font-size: 18px;
  display: none;
}
@media (min-width: 768px) {
  .carousel-child-item__subheading {
    font-size: 20px;
    line-height: 27px;
    padding-top: 5px;
    display: block;
  }
}
@media (min-width: 992px) {
  .carousel-child-item__subheading {
    display: none;
  }
}
@media (min-width: 1300px) {
  .carousel-child-item__subheading {
    display: block;
  }
}

.carousel-child-item__link {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .carousel-child-item__link {
    margin-top: 0;
  }
}

.ignore {
  display: none;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
footer {
  padding: 15px 0;
  color: #333333;
  background-color: #fff;
  margin-top: 40px;
}
@media (min-width: 768px) {
  footer {
    margin-top: 0;
    padding: 45px 0 25px 0;
  }
}
@media (min-width: 768px) {
  footer .footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 15px;
  }
}
@media (min-width: 992px) {
  footer .footer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    grid-row-gap: 0;
    grid-column-gap: 15px;
    margin: 0;
  }
  footer .footer-wrapper .footer-addresses {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  footer .footer-wrapper .social {
    margin-top: 40px;
  }
  footer .footer-wrapper .footer-tel-phone {
    align-self: center;
  }
}

footer p {
  padding: 0;
  margin: 0 0 5px 0;
  font-weight: 400;
}
footer p.heading {
  font-size: 23px;
  font-weight: 700;
  color: #333333;
}

@media (min-width: 768px) {
  footer .footer__links-list-wrapper {
    width: 50%;
  }
}
@media (min-width: 992px) {
  footer .footer__links-list-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 15px;
    width: 100%;
  }
}

footer .company-details {
  align-self: flex-end;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  footer .company-details {
    width: 100%;
  }
}
@media (min-width: 992px) {
  footer .company-details {
    margin-bottom: 0;
    margin-top: 40px;
  }
}
footer .company-details address {
  padding: 0;
  margin: 0 0 5px 0;
  font-weight: 400;
}
@media (min-width: 992px) {
  footer .company-details address p {
    float: left;
    width: 50%;
  }
  footer .company-details address p:nth-child(2) {
    padding-left: 10px;
  }
}
@media (min-width: 992px) {
  footer .company-details .tel-and-email {
    display: flex;
    margin-top: 40px;
  }
}
footer .company-details .tel-and-email .tel a, footer .company-details .tel-and-email .email a {
  color: #333333;
  margin-left: 5px;
}
footer .company-details .tel-and-email .tel a:hover, footer .company-details .tel-and-email .tel a:focus, footer .company-details .tel-and-email .tel a:active, footer .company-details .tel-and-email .tel a:visited, footer .company-details .tel-and-email .email a:hover, footer .company-details .tel-and-email .email a:focus, footer .company-details .tel-and-email .email a:active, footer .company-details .tel-and-email .email a:visited {
  color: #333333;
}
footer .company-details .tel-and-email .split {
  display: none;
}
@media (min-width: 992px) {
  footer .company-details .tel-and-email .split {
    display: inline-block;
    padding: 0 10px;
  }
}

.footer-social {
  width: 100%;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
nav.footer__links-list {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  nav.footer__links-list {
    margin-bottom: 0;
  }
}
nav.footer__links-list p {
  padding: 0;
  margin: 0 0 6px 0;
  font-size: 23px;
  line-height: 31px;
}
nav.footer__links-list ul li {
  display: block;
  padding: 6px 0;
  margin: 0;
}
nav.footer__links-list ul li a {
  color: #333333;
}
nav.footer__links-list ul li a:hover, nav.footer__links-list ul li a:focus, nav.footer__links-list ul li a:active, nav.footer__links-list ul li a:visited {
  color: #333333;
}

/*nav.footer {
    padding: 80px 0 0;
}

nav.footer ul {
    font-size: 12px;
}

nav.footer ul li {
    display: block;
    padding: 10px 0;
}

nav.footer ul li a,
nav.footer ul li div {
    display: inline;
    padding: 0;
}

footer nav.footer ul li.site-credit a {
    color: rgba($c1, 1);
}

html.no-touch footer nav.footer ul li.site-credit a:hover,
footer nav.footer ul li.site-credit a:focus,
footer nav.footer ul li.site-credit a:active {
    color: lighten($c1, 10%);
}

@media (min-width:768px) {
    nav.footer ul li {
        margin: 0 8px 0 0;
        padding: 0;
        display: inline-block;
    }

    nav.footer ul li.site-credit {
        clear: both;
        display: block;
        padding: 40px 0 0;
    }
}

@media (min-width:768px) and (max-width:991px) {
}

@media (min-width:992px) {
    nav.footer ul li.site-credit {
        float: right;
        clear: none;
        padding: 0;
    }
}*/
/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.newsletter-signup {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .newsletter-signup {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .newsletter-signup {
    margin-bottom: 0;
    width: 100%;
  }
}
.newsletter-signup .btn {
  height: 47px;
}

.newsletter-signup__heading {
  padding: 0;
  margin: 0 0 12px 0;
  font-size: 23px;
  line-height: 31px;
  color: #333333;
}

.newsletter-signup__fields {
  display: grid;
  grid-template-columns: auto 123px;
  grid-column-gap: 22px;
}

.newsletter-signup__email {
  border: none;
  display: inline-block;
  background-color: #f5f5f5;
  color: #333333;
  line-height: 27px;
  font-size: 20px;
  height: 47px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.page-banner__heading {
  color: #fff;
}

.page-banner__subheading {
  color: #fff;
}

.page-banner__text {
  color: #fff;
}

.page-banner__link {
  color: #fff;
}

.page-banner-text-underlay {
  padding: 40px 20px;
  background-color: rgba(0, 150, 215, 0.7);
}
@media (min-width: 768px) {
  .page-banner-text-underlay {
    padding: 40px 80px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-row-gap: 5px;
  }
}
@media (min-width: 992px) {
  .page-banner-text-underlay {
    padding: 40px 80px;
  }
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.news-article-rollup {
  /*display: grid;
  grid-template-columns: 1fr;*/
}
@media (min-width: 1200px) {
  .news-article-rollup {
    /*grid-template-columns: 1fr 1fr;
    grid-row-gap: 20px;
    grid-column-gap: 20px;*/
  }
}
.news-article-rollup .load-more-row {
  /*grid-column-start: 1;
  grid-column-end: 3;*/
  clear: both;
  text-align: right;
  margin-bottom: 40px;
}

.news-article-rollup .news-article-item::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0;
  padding-bottom: 55.5555555556%;
}
@media (min-width: 992px) {
  .news-article-rollup .news-article-item::before {
    padding-bottom: 75.1879699248%;
  }
}

.news-article-item-cell {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 992px) {
  .news-article-item-cell:nth-child(odd) .news-article-item {
    margin-left: 0;
    margin-right: 10px;
  }
}

.news-article-rollup .news-article-item {
  position: relative;
  background-size: cover;
  min-height: 200px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .news-article-rollup .news-article-item {
    margin-left: 10px;
    margin-right: 0;
  }
}
.news-article-rollup .news-article-item__holder {
  position: absolute;
  color: #fff;
  text-align: center;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(34, 34, 34, 0.55);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-content: center;
}
.news-article-rollup .news-article-item__holder:hover {
  color: #fff !important;
  text-decoration: none !important;
}
.news-article-rollup .news-article-item__holder-inner {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr auto 1fr;
  align-items: center;
}
@media (min-width: 992px) {
  .news-article-rollup .news-article-item__holder-inner {
    margin: 0 15px;
  }
}
@media (min-width: 1200px) {
  .news-article-rollup .news-article-item__holder-inner {
    margin: 0 44px;
  }
}
.news-article-rollup .news-article-item__date {
  font-size: 16px;
}
@media (min-width: 768px) {
  .news-article-rollup .news-article-item__date {
    font-size: 18px;
    line-height: 40px;
  }
}
.news-article-rollup .news-article-item__heading {
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 35px;
}
@media (min-width: 768px) {
  .news-article-rollup .news-article-item__heading {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (min-width: 1200px) {
  .news-article-rollup .news-article-item__heading {
    font-size: 35px;
  }
}
.news-article-rollup .news-article-item__subheading {
  padding: 0;
  margin: 0;
  font-size: 18px;
}
@media (min-width: 768px) {
  .news-article-rollup .news-article-item__subheading {
    font-size: 20px;
    line-height: 27px;
    padding-top: 5px;
  }
}
.news-article-rollup .news-article-item__link {
  margin-top: 15px;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.insights-rollup {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .insights-rollup {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .insights-rollup {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.insights-rollup .load-more-row {
  /*grid-column-start: 1;
  grid-column-end: 4;*/
  text-align: right;
}
.insights-rollup:first-child {
  margin-top: 0;
}

.insights-rollup .insight-item {
  width: 100%;
  display: grid;
  min-height: 200px;
  color: #333333;
  border: 2px solid #eee;
  padding: 16px 20px;
  margin-bottom: 20px;
}
.insights-rollup .insight-item__holder {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: flex-start;
  justify-content: flex-start;
}
.insights-rollup .insight-item__holder-inner {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr auto 1fr;
}
.insights-rollup .insight-item__date {
  font-size: 15px;
  line-height: 40px;
}
@media (min-width: 768px) {
  .insights-rollup .insight-item__date {
    font-size: 18px;
    line-height: 40px;
  }
}
.insights-rollup .insight-item__heading {
  padding: 0;
  margin: 0;
  font-size: 22px;
  line-height: 35px;
}
@media (min-width: 768px) {
  .insights-rollup .insight-item__heading {
    font-size: 30px;
    line-height: 35px;
  }
}
.insights-rollup .insight-item__summary {
  padding: 0;
  margin: 0;
  font-size: 18px;
}
@media (min-width: 768px) {
  .insights-rollup .insight-item__summary {
    font-size: 20px;
    line-height: 27px;
    padding-top: 5px;
  }
}
.insights-rollup .insight-item__link {
  margin-top: 15px;
}
.insights-rollup .insight-item__link span {
  color: #0096D7;
}
.insights-rollup .insight-item__link span:hover {
  text-decoration: underline;
}
.insights-rollup .insight-item__link span:hover, .insights-rollup .insight-item__link span:active, .insights-rollup .insight-item__link span:visited {
  color: #0096D7;
}
.insights-rollup .insight-item__link a {
  color: #0096D7;
}
.insights-rollup .insight-item__link a:hover {
  text-decoration: underline;
}
.insights-rollup .insight-item__link a:hover, .insights-rollup .insight-item__link a:active, .insights-rollup .insight-item__link a:visited {
  color: #0096D7;
}
.insights-rollup .insight-item:hover {
  color: #333333 !important;
  text-decoration: none !important;
}

.insight-topic-page__heading {
  grid-column-start: 1;
  color: #0096D7;
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .insight-topic-page__heading {
    grid-column-end: 3;
  }
}
@media (min-width: 1200px) {
  .insight-topic-page__heading {
    grid-column-end: 4;
  }
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.search-results__results-summary {
  font-weight: 400;
}
.search-results__results-summary__term {
  font-weight: 800;
}
.search-results__results-summary__count {
  font-weight: 800;
}
.search-results__results-summary--warning {
  font-weight: 700;
}

.search-result {
  margin-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
}
.search-result__heading a {
  color: #0096D7;
}
.search-result__text {
  font-size: 18px;
}
.search-result__link {
  font-size: 18px;
}
/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.form-container .form-container__field {
  margin-bottom: 20px;
}
.form-container .form-container__field label {
  display: block;
  margin: 0 0 9px 0;
  padding: 0;
  font-size: 16px;
  line-height: 21px;
  color: #333333;
}
.form-container .form-container__field .form-field {
  width: 100%;
  background-color: #f5f5f5;
  font-size: 16px;
  line-height: 21px;
  color: #333333;
  border: none;
  padding: 8px 4px;
  margin: 0;
}
@media (min-width: 768px) {
  .form-container .form-container__field .form-field {
    width: 60%;
  }
}
.form-container .form-container__field .form-field--wide {
  width: 100%;
}
@media (min-width: 768px) {
  .form-container .form-container__field .form-field--wide {
    width: 60%;
  }
}
.form-container .form-container__field .form-field.input-validation-error {
  border: 1px solid #a94442;
}

.umbraco-forms-hidden {
  display: none;
}

.umbraco-forms-navigation .col-md-12 {
  padding-inline: 0;
}

.umbraco-forms-container {
  padding-inline: 0;
}
.umbraco-forms-container .field-validation-error {
  background-color: transparent !important;
  color: #a94442 !important;
}
.umbraco-forms-container .umbraco-forms-field {
  width: 100%;
}
@media (min-width: 768px) {
  .umbraco-forms-container .umbraco-forms-field {
    width: 60%;
  }
}
.umbraco-forms-container .umbraco-forms-field label {
  display: block;
  margin: 0 0 9px 0;
  padding: 0;
  font-size: 16px;
  line-height: 21px;
  color: #333333;
}
.umbraco-forms-container .umbraco-forms-field-wrapper input,
.umbraco-forms-container .umbraco-forms-field-wrapper textarea {
  width: 100%;
}
.umbraco-forms-container .umbraco-forms-field-wrapper textarea {
  height: 142px;
}
.umbraco-forms-container .umbraco-forms-field-wrapper input[type=text],
.umbraco-forms-container .umbraco-forms-field-wrapper input[type=email],
.umbraco-forms-container .umbraco-forms-field-wrapper input[type=number],
.umbraco-forms-container .umbraco-forms-field-wrapper input[type=tel] {
  background-color: #f5f5f5;
  font-size: 16px;
  line-height: 21px;
  color: #333333;
  border: none;
  padding: 8px 4px;
  margin: 0;
}
.umbraco-forms-container .umbraco-forms-field-wrapper select {
  background-color: transparent;
  font-size: 16px;
  line-height: 21px;
  color: #333333;
  border: none;
  padding: 8px 4px;
  margin: 0;
}
.umbraco-forms-container .umbraco-forms-field-wrapper textarea {
  background-color: #f5f5f5;
  font-size: 16px;
  line-height: 21px;
  color: #333333;
  border: none;
  padding: 8px 4px;
  margin: 0;
}
.umbraco-forms-container .umbraco-forms-field-wrapper .radio label {
  padding-left: 20px;
}
.umbraco-forms-container .umbraco-forms-field.dropdown::after {
  color: #0096D7 !important;
  background-color: #f5f5f5;
}

.umbraco-forms-field {
  margin-bottom: 15px;
}

.content-grid-wrapper--has-widgets .umbraco-forms-container .umbraco-forms-field {
  width: 100%;
}
@media (min-width: 768px) {
  .content-grid-wrapper--has-widgets .umbraco-forms-container .umbraco-forms-field {
    width: 90%;
  }
}

fieldset.buttons {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  fieldset.buttons {
    margin-bottom: 0;
  }
}

.wide-form .form-container .form-container__field .form-field {
  width: 100%;
}
.wide-form .form-container .form-container__field .form-field--wide {
  width: 100%;
}
.wide-form .umbraco-forms-container .umbraco-forms-field {
  width: 100%;
}

.umbraco-forms-field-wrapper .checkboxlist input[type=checkbox] {
  position: unset;
}

@media only screen and (max-width: 1071px) {
  .umbraco-forms-field.dropdown::after {
    top: 50px !important;
  }
}
/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.related-content {
  background-color: #333333;
  color: #fff;
  position: relative;
  margin-bottom: 20px;
}
.related-content:last-child {
  margin-bottom: 0;
}
.related-content .related-content__flare-heading {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 20px;
  background-color: #0096D7;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 15px;
  padding: 0 20px;
  line-height: 40px;
  min-width: 250px;
}
@media (min-width: 768px) {
  .related-content .related-content__flare-heading {
    line-height: 25px;
    min-width: 0;
  }
}
@media (min-width: 1200px) {
  .related-content .related-content__flare-heading {
    line-height: 40px;
    min-width: 250px;
  }
}
.related-content .related-content__flare-heading span {
  text-transform: none;
}
.related-content .related-content__content-wrapper {
  padding: 70px 35px 20px 35px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .related-content .related-content__content-wrapper {
    padding: 70px 15px 20px 15px;
  }
}
@media (min-width: 1200px) {
  .related-content .related-content__content-wrapper {
    padding: 70px 35px 20px 35px;
  }
}
.related-content .related-content__section-heading {
  color: #0096D7;
  font-size: 25px;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 0;
}
.related-content ul {
  padding: 0;
  margin: 0 0 10px 2px;
}
.related-content ul li {
  padding: 0;
  margin: 0 0 5px 0;
  list-style: none;
}
.related-content ul li a {
  color: #fff;
  font-size: 16px;
  line-height: 20px;
}
.related-content a {
  color: #fff;
}
.related-content--floating {
  float: right;
}
.related-content--twitter {
  min-height: 250px;
  background-color: #fff;
}
.related-content--twitter .related-content__flare-heading {
  top: 0;
  right: 0;
}
.related-content--twitter .related-content__content-wrapper {
  padding: 40px 0 35px 0;
}
.related-content--twitter iframe {
  margin-top: 10px;
  background-color: #fff;
  width: 100%;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
@media (min-width: 768px) {
  .insights-intro-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 60px;
    grid-row-gap: 40px;
    justify-content: center;
  }
}
.insights-intro-panel .section-heading-row {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .insights-intro-panel .section-heading-row {
    grid-column-start: 1;
    grid-column-end: 3;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .insights-intro-panel .section-heading-row {
    margin-top: 0;
  }
}
.insights-intro-panel .insights-intro {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .insights-intro-panel .insights-intro {
    margin-bottom: 0;
  }
}
.insights-intro-panel .insights-intro--lead {
  grid-column-start: 1;
  grid-column-end: 3;
}
@media (min-width: 768px) {
  .insights-intro-panel .button-row {
    margin-bottom: 0;
  }
}
.insights-intro-panel .button-row {
  grid-column-start: 1;
  grid-column-end: 3;
  text-align: center;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.insights-intro {
  text-align: center;
  color: #333333;
}
.insights-intro .insights-intro__image {
  margin-bottom: 14px;
}
.insights-intro .insights-intro__heading {
  padding: 0;
  margin: 0 0 7px 0;
  font-size: 35px;
  line-height: 40px;
  font-weight: 400;
}
.insights-intro .insights-intro__summary {
  padding: 0;
  margin: 0 0 23px 0;
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
}
.insights-intro .insights-intro__link {
  color: #0096D7;
  text-decoration: none;
}
.insights-intro .insights-intro__link:hover, .insights-intro .insights-intro__link:active, .insights-intro .insights-intro__link:focus {
  text-decoration: underline;
}
/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
@media (min-width: 768px) {
  .discover-intro-panel {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 60px;
    justify-content: center;
  }
}
.discover-intro-panel .section-heading-row {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .discover-intro-panel .section-heading-row {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .discover-intro-panel .section-heading-row {
    margin-top: 0;
  }
}
.discover-intro-panel .section-heading-row .section-heading {
  border-bottom: none;
}
@media (min-width: 768px) {
  .discover-intro-panel .section-heading-row .section-heading {
    border-bottom: 5px solid #0096D7;
  }
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.discover-intro {
  margin-bottom: 40px;
  color: #333333;
  background-color: #f5f5f5;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .discover-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    color: #333333;
    background-color: #f5f5f5;
    margin-bottom: 0;
  }
}
.discover-intro .discover-intro__details {
  padding: 30px;
}
@media (min-width: 768px) {
  .discover-intro .discover-intro__details {
    padding: 60px 30px;
  }
}
@media (min-width: 1024px) {
  .discover-intro .discover-intro__details {
    padding: 30px 30px;
  }
}
@media (min-width: 1200px) {
  .discover-intro .discover-intro__details {
    padding: 60px 30px;
  }
}
.discover-intro .discover-intro__heading {
  padding: 0;
  margin: 0;
  color: #0096D7;
  font-size: 35px;
  line-height: 45px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .discover-intro .discover-intro__heading {
    line-height: 60px;
  }
}
.discover-intro .discover-intro__summary {
  padding: 0;
  margin: 0 0 23px 0;
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
}
/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.membership-intro-panel {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .membership-intro-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 20px;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .membership-intro-panel {
    grid-column-gap: 40px;
  }
}
@media (min-width: 1200px) {
  .membership-intro-panel {
    grid-column-gap: 60px;
    margin-left: -35px;
    margin-right: -35px;
  }
}
.membership-intro-panel .section-heading-row {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .membership-intro-panel .section-heading-row {
    margin-bottom: 0;
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
.membership-intro-panel .section-heading-row .section-heading {
  margin-bottom: 0;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.membership-intro {
  display: block;
  text-align: center;
  color: #fff !important;
  margin: 0;
  background-color: rgba(0, 150, 215, 0.7);
  margin-bottom: 30px;
  padding: 30px;
}
@media (min-width: 768px) {
  .membership-intro {
    margin-bottom: 0;
    padding: 30px 15px 45px 15px;
  }
}
@media (min-width: 992px) {
  .membership-intro {
    padding: 50px 45px 70px 45px;
  }
}
.membership-intro .membership-intro__heading {
  padding: 0;
  margin: 0 0 16px 0;
  font-size: 35px;
  line-height: 40px;
  font-weight: 400;
}
.membership-intro .membership-intro__summary {
  padding: 0;
  margin: 0 0 23px 0;
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
}
.membership-intro:hover {
  color: #fff !important;
  text-decoration: none !important;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.member-list--search-wrapper {
  float: right;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .member-list--search-wrapper {
    margin-top: 0;
  }
}
.member-list--search-wrapper input[type=text] {
  background-color: #f5f5f5;
  font-size: 16px;
  line-height: 21px;
  color: #333333;
  border: none;
  padding: 8px 4px;
  margin: 0;
  width: 120px;
  transition: all 0.2s ease-in-out 0s;
}
.member-list--search-wrapper input[type=text]:focus {
  width: 220px;
}

.members-list__letter-nav {
  padding: 0;
  margin: 0;
  display: none;
}
@media (min-width: 992px) {
  .members-list__letter-nav {
    display: flex;
    margin-bottom: 20px;
    padding-left: 80px;
    padding-top: 20px;
    border-top: 1px solid #f5f5f5;
  }
}
@media (min-width: 1200px) {
  .members-list__letter-nav {
    padding-left: 140px;
  }
}
.members-list__letter-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
  flex-grow: 1;
}
.members-list__letter-nav li a {
  font-size: 28px;
  font-weight: 400;
  color: #333333;
  border-bottom: 2px solid #0096D7;
}
.members-list__letter-nav li a:hover {
  color: #0096D7;
  text-decoration: none !important;
}
.members-list__letter-nav li span {
  font-size: 28px;
  font-weight: 400;
  color: #333333;
}

@media (min-width: 992px) {
  .members-list__group-wrapper {
    display: grid;
    grid-template-columns: 80px 1fr;
    padding-top: 20px;
    padding-bottom: 10px;
    border-top: 1px solid #f5f5f5;
  }
}
@media (min-width: 1200px) {
  .members-list__group-wrapper {
    grid-template-columns: 140px 1fr;
  }
}

.members-list__group-letter {
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  border-bottom: 1px solid #f5f5f5;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .members-list__group-letter {
    display: inline-block;
    border-bottom: none;
  }
}
.members-list__group-letter:hover, .members-list__group-letter:focus, .members-list__group-letter:active, .members-list__group-letter:visited {
  text-decoration: none;
}
.members-list__group-letter[aria-expanded=true] i::before {
  content: "\f139";
}
.members-list__group-letter span {
  font-size: 28px;
  font-weight: 400;
  color: #333333;
}
.members-list__group-letter span:hover {
  color: #0096D7;
}
.members-list__group-letter i {
  color: #333333;
}
@media (min-width: 992px) {
  .members-list__group-letter i {
    display: none;
  }
}

.members-list__group {
  padding: 0;
  margin: 10px 0 0 0;
  display: none;
}
@media (min-width: 992px) {
  .members-list__group {
    display: block;
    position: relative;
  }
  .members-list__group.collapse {
    height: auto !important;
  }
}
.members-list__group.in {
  display: block;
}
@media (min-width: 992px) {
  .members-list__group .members-list__group-jump-link {
    position: absolute;
    margin-top: -156px;
  }
}
.members-list__group .members-list__name {
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  border-bottom: 1px solid #f5f5f5;
  margin-bottom: 10px;
  padding-top: 7px;
}
@media (min-width: 992px) {
  .members-list__group .members-list__name {
    display: block;
    border-bottom: none;
  }
}
.members-list__group .members-list__name:hover, .members-list__group .members-list__name:focus, .members-list__group .members-list__name:active, .members-list__group .members-list__name:visited {
  text-decoration: none;
}
.members-list__group .members-list__name[aria-expanded=true] {
  color: #0096D7;
}
.members-list__group .members-list__name[aria-expanded=true] i::before {
  content: "\f147";
}
@media (min-width: 992px) {
  .members-list__group .members-list__name[aria-expanded=true] {
    background-color: #f5f5f5;
    margin-bottom: 0;
    margin-left: -15px;
    padding-left: 15px;
  }
  .members-list__group .members-list__name[aria-expanded=true] span {
    font-weight: bold;
  }
}
.members-list__group .members-list__name span {
  font-size: 20px;
  font-weight: 400;
  color: #333333;
}
.members-list__group .members-list__name span:hover {
  color: #0096D7;
}
.members-list__group .members-list__name i {
  color: #333333;
}
@media (min-width: 992px) {
  .members-list__group .members-list__name i {
    display: none;
  }
}
.members-list__group ul {
  padding: 0;
  margin: 0;
}
.members-list__group ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.members-list__group .members-list__member-details {
  display: none;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}
@media (min-width: 992px) {
  .members-list__group .members-list__member-details {
    background-color: #f5f5f5;
    margin-left: 0;
    padding: 0 15px 7px 15px;
    margin-left: -15px;
  }
  .members-list__group .members-list__member-details > p:first-child {
    /*margin-top: 0;
    padding-top: 4px;*/
  }
}
.members-list__group .members-list__member-details.in {
  display: block;
}
.members-list__group .members-list__member-details a {
  color: #0096D7;
  text-decoration: none;
}
.members-list__group .members-list__member-details a:hover {
  color: #333333;
  text-decoration: underline;
}
.members-list__group .members-list__member-details .members-list__address-wrapper {
  display: table;
}
.members-list__group .members-list__member-details .members-list__address-icon {
  display: table-cell;
  width: 35px;
}
.members-list__group .members-list__member-details .members-list__address {
  display: table-cell;
}
.members-list__group .members-list__member-details .members-list__address > p {
  margin-top: 0;
  padding-top: 8px;
}
.members-list__group .members-list__member-details .members-list__website {
  margin-top: 0;
  padding-top: 8px;
}
.members-list__group .members-list__member-details .members-list__website i.fa {
  width: 30px;
}

@media (min-width: 992px) {
  .nav-up .members-list__group .members-list__group-jump-link {
    margin-top: -85px;
  }
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
@media (min-width: 992px) {
  .member-search-results {
    margin-left: 15px;
  }
}
.member-search-results ul {
  padding: 0;
  margin: 0;
}
.member-search-results ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.member-search-results__details {
  display: none;
  margin-left: 15px;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}
@media (min-width: 992px) {
  .member-search-results__details {
    background-color: #f5f5f5;
    margin-left: 0;
    padding: 7px 15px 15px 15px;
  }
}
.member-search-results__details.in {
  display: block;
}
.member-search-results__details a {
  color: #333333;
  text-decoration: underline;
}
.member-search-results__details a:hover {
  color: #0096D7;
}

.member-search-results__name {
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  border-bottom: 1px solid #f5f5f5;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .member-search-results__name {
    display: block;
    border-bottom: none;
  }
}
.member-search-results__name:hover, .member-search-results__name:focus, .member-search-results__name:active, .member-search-results__name:visited {
  text-decoration: none;
}
.member-search-results__name[aria-expanded=true] {
  color: #0096D7;
}
.member-search-results__name[aria-expanded=true] i::before {
  content: "\f147";
}
.member-search-results__name span {
  font-size: 20px;
  font-weight: 400;
  color: #333333;
}
.member-search-results__name span:hover {
  color: #0096D7;
}
.member-search-results__name i {
  color: #333333;
}
@media (min-width: 992px) {
  .member-search-results__name i {
    display: none;
  }
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.inner a {
  text-decoration: underline;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.content-column-box {
  background-color: #333333;
  color: #fff;
  padding: 80px 30px 20px 30px;
  position: relative;
}
.content-column-box__meta {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 20px;
  background-color: #0096D7;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 15px;
  line-height: 40px;
  padding: 0 20px;
}
.content-column-box__post-date {
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 400;
  line-height: 40px;
}
.content-column-box__heading {
  padding: 0;
  margin: 0;
  font-size: 25px;
  line-height: 35px;
  font-weight: 400;
}
.content-column-box__subheading, .content-column-box__summary {
  padding: 0;
  margin: 0px 0 15px 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
}
.content-column-box__link {
  align-self: baseline;
}
.content-column-box--featured {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  position: relative;
  background-color: #333333;
}
.content-column-box--featured > div {
  color: #fff;
  padding: 20px 30px;
}
.content-column-box--featured .content-column-box__meta {
  background-color: #8BA939;
}
.content-column-box--featured:hover {
  color: #fff !important;
  text-decoration: none !important;
}
.content-column-box--no-image {
  padding-top: 45px;
}
.content-column-box:hover {
  color: #fff !important;
  text-decoration: none !important;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.topic-child-page {
  width: 100%;
  display: grid;
  color: #333333;
  border: 2px solid #eee;
  padding: 16px 20px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .topic-child-page:last-child {
    margin-bottom: 0;
  }
}
.topic-child-page__holder {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: flex-start;
  justify-content: flex-start;
}
.topic-child-page__holder-inner {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr auto 1fr;
}
.topic-child-page__heading {
  padding: 0;
  margin: 0;
  font-size: 22px;
  line-height: 35px;
}
@media (min-width: 768px) {
  .topic-child-page__heading {
    font-size: 30px;
    line-height: 35px;
  }
}
.topic-child-page__summary {
  padding: 0;
  margin: 0;
  font-size: 18px;
}
@media (min-width: 768px) {
  .topic-child-page__summary {
    font-size: 20px;
    line-height: 27px;
    padding-top: 5px;
  }
}
.topic-child-page__link {
  margin-top: 15px;
}
.topic-child-page__link a {
  color: #0096D7;
}
.topic-child-page__link a:hover {
  text-decoration: underline;
}
.topic-child-page__link a:hover, .topic-child-page__link a:active, .topic-child-page__link a:visited {
  color: #0096D7;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.discover-child-page {
  margin-bottom: 20px;
  color: #333333;
  background-color: #f5f5f5;
}
@media (min-width: 992px) {
  .discover-child-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    color: #333333;
    background-color: #f5f5f5;
    margin-bottom: 40px;
  }
}
.discover-child-page .discover-child-page__details {
  padding: 30px;
}
@media (min-width: 768px) {
  .discover-child-page .discover-child-page__details {
    padding: 60px 30px;
  }
}
@media (min-width: 1024px) {
  .discover-child-page .discover-child-page__details {
    padding: 30px 30px;
  }
}
@media (min-width: 1200px) {
  .discover-child-page .discover-child-page__details {
    padding: 40px 30px;
  }
}
.discover-child-page .discover-child-page__heading {
  padding: 0;
  margin: 0;
  color: #0096D7;
  font-size: 35px;
  line-height: 45px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .discover-child-page .discover-child-page__heading {
    line-height: 60px;
  }
}
.discover-child-page .discover-child-page__heading:hover {
  text-decoration: none !important;
  border: none !important;
}
.discover-child-page .discover-child-page__summary {
  padding: 0;
  margin: 0 0 23px 0;
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
}
.discover-child-page a.discover-child-page__heading-link:hover {
  text-decoration: none !important;
  border: none !important;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.home-page #content {
  margin-top: 0;
}

.home-page .insights {
  background-color: #f5f5f5;
}

.home-page .membership {
  background-color: rgba(0, 150, 215, 0.3);
  position: relative;
  background-size: cover;
  padding: 20px 0 20px 0;
}
@media (min-width: 768px) {
  .home-page .membership {
    margin-top: 40px;
    padding: 80px 0 50px 0;
  }
}
@media (min-width: 992px) {
  .home-page .membership {
    margin-top: 0;
  }
}
.home-page .membership .section-heading {
  color: #fff;
  border-color: #fff;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .home-page .membership .section-heading {
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .home-page .membership .section-heading {
    margin-bottom: 60px;
  }
}

.home-page .section-heading {
  color: #0096D7;
  font-size: 50px;
  line-height: 67px;
  display: inline-block;
  text-align: center;
  border-bottom: 5px solid #0096D7;
  padding: 0 2px;
  margin: 0;
}

.full-width-content-block {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 35px;
  margin-bottom: 35px;
}
.full-width-content-block > div {
  grid-row-gap: 0;
  grid-column-gap: 0;
  margin-bottom: 0;
}
.full-width-content-block .discover-child-page {
  opacity: 0;
  animation-duration: 0.75s;
  animation-fill-mode: both;
}
.full-width-content-block .discover-child-page .discover-child-page__details {
  justify-self: flex-start;
  padding-left: 30px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  .full-width-content-block .discover-child-page .discover-child-page__details {
    width: 485px;
    display: grid;
    height: 100%;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .full-width-content-block .discover-child-page .discover-child-page__details {
    width: 585px;
  }
}
.full-width-content-block .discover-child-page--right .discover-child-page__details {
  justify-self: flex-end;
}
@media (min-width: 992px) {
  .full-width-content-block .discover-child-page--right .discover-child-page__details {
    padding-left: 15px;
    padding-right: 30px;
  }
}

.sub-topics {
  margin-top: 25px;
}
.sub-topics details {
  margin-bottom: 25px;
}
.sub-topics summary {
  display: list-item;
  cursor: pointer;
  color: #0096D7;
}
.sub-topics summary h2 {
  display: inline;
}
.sub-topics summary:focus {
  outline: none;
}

.sub-topic {
  margin: 15px 0 25px 0;
}
.sub-topic img {
  height: auto !important;
}

.sub-topic-panel {
  border: 2px solid rgb(0, 150, 215);
  background-color: rgba(0, 150, 215, 0.1);
  border-radius: 4px;
  padding: 16px 20px;
  margin: 25px 0;
}
.sub-topic-panel h3 {
  font-weight: bold;
  color: rgb(0, 150, 215);
  font-size: 22px;
  line-height: 35px;
}
@media (min-width: 768px) {
  .sub-topic-panel h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (min-width: 992px) {
  .sub-topic-panel h3 {
    font-size: 35px;
  }
}
.sub-topic-panel img {
  height: auto !important;
}

.discover-child-page.section-visible {
  animation-name: fadeInLeft;
}

.discover-child-page--right.section-visible {
  animation-name: fadeInRight;
}

@keyframes fadeInUp {
  0% {
    transform: translate3d(0, 55%, 0);
    opacity: 0;
    transform: translate3d(0, 55%, 0);
  }
  to {
    transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInFromRight {
  0% {
    transform: translate3d(55%, 0, 0);
    opacity: 0;
    transform: translate3d(55%, 0, 0);
  }
  to {
    transform: translateX(0);
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInFromLeft {
  0% {
    transform: translate3d(-55%, 0, 0);
    opacity: 0;
    transform: translate3d(-55%, 0, 0);
  }
  to {
    transform: translateX(0);
    opacity: 1;
    transform: translateX(0);
  }
}
/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.umb-block-grid__layout-item blockquote {
  color: #0096D7;
  font-size: 24px;
  text-align: center;
}
.umb-block-grid__layout-item a {
  color: #0096D7;
}
.umb-block-grid__layout-item hr {
  border-color: #0096D7;
  border-width: 1px;
  margin: 20px 0 10px 0;
}

.content-grid-wrapper--has-widgets {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  grid-column-gap: 20px;
}
.content-grid-wrapper .container {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
.content-grid-wrapper .container .row {
  margin-top: 15px;
}
.content-grid-wrapper .container .row a {
  color: #0096D7;
  text-decoration: none;
}
.content-grid-wrapper .container .row a:active, .content-grid-wrapper .container .row a:visited, .content-grid-wrapper .container .row a:hover {
  color: #0096D7;
}
.content-grid-wrapper .container .row a:hover {
  text-decoration: underline;
}
.content-grid-wrapper .container .row hr {
  border-color: #0096D7;
  border-width: 1px;
  margin: 20px 0 10px 0;
}
.content-grid-wrapper .container .row blockquote {
  color: #0096D7;
  font-size: 24px;
  text-align: center;
}
.content-grid-wrapper .container .row blockquote:before, .content-grid-wrapper .container .row blockquote:after {
  color: #0096D7;
  font-size: 26px;
}
.content-grid-wrapper .container .row blockquote:after {
  content: "\f347";
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  bottom: 0;
  right: -4px;
  transform: rotate(180deg);
}
.content-grid-wrapper .container .row blockquote + p {
  text-align: center;
  font-size: 18px;
  font-style: italic;
}
.content-grid-wrapper .container .row img {
  width: 100%;
  height: auto;
  margin-top: 14px;
}
.content-grid-wrapper .container .row img + p {
  text-align: center;
  font-size: 18px;
  font-style: italic;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
#content {
  margin-top: 20px;
}

.content-column-box--featured {
  margin-bottom: 20px;
}

.content-layout-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-template-rows: auto;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  /* --------------------------------------
      Common
  */
}
.content-layout-grid .content-column-box--featured {
  grid-column-start: 1;
  grid-column-end: 2;
}
.content-layout-grid {
  /* --------------------------------------
      Newsroom
  */
}
.content-layout-grid .latest-news-column {
  grid-column-start: 1;
  grid-column-end: 2;
}
.content-layout-grid {
  /* --------------------------------------
      Insights
  */
}
.content-layout-grid .insights-column {
  grid-column-start: 1;
  grid-column-end: 3;
}
.content-layout-grid .content-grid-wrapper {
  grid-column-start: 1;
  grid-column-end: 3;
}
.content-layout-grid--no-featured.content-layout-grid--has-widgets .content-grid-wrapper {
  grid-column-start: 1;
  grid-column-end: 2;
}
.content-layout-grid--no-featured.content-layout-grid--has-widgets .insights-column {
  grid-column-start: 1;
  grid-column-end: 2;
}
@media (min-width: 1200px) {
  .content-layout-grid--no-featured.content-layout-grid--has-widgets .insights-column .insights-rollup {
    grid-template-columns: 1fr 1fr;
  }
  .content-layout-grid--no-featured.content-layout-grid--has-widgets .insights-column .insights-rollup .insight-topic-page__heading {
    grid-column-end: 3;
  }
}
.content-layout-grid--has-widgets .widgets-column {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 2;
  grid-column-end: 3;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.inner-content-page .content {
  padding-top: 0;
}
.inner-content-page footer {
  box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.05);
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.page__masthead {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 20px;
  margin-bottom: 24px;
}
.page__heading {
  color: #0096D7;
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  padding: 0;
  margin: 0 0 14px 0;
}

.page-summary-and-tags {
  background-color: #f5f5f5;
  padding: 24px 15px;
}
@media (min-width: 768px) {
  .page-summary-and-tags {
    padding: 24px 30px;
  }
}

.page__summary {
  color: #333333;
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  padding: 0;
  margin: 0 0 24px 0;
}

.page__tags {
  color: #333333;
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
}
.page__tags ul {
  display: inline-block;
  padding: 0;
  margin: 0;
}
.page__tags ul li {
  display: inline-block;
  padding: 0;
  margin: 0;
  list-style: none;
}
.page__tags ul li a {
  color: #0096D7;
}
.page__tags ul li a:active, .page__tags ul li a:hover, .page__tags ul li a:visited {
  color: #0096D7;
}
.page__tags ul li a:hover {
  text-decoration: underline;
}
.page__tags ul li a:after {
  display: inline-block;
  content: ",";
  color: #333333;
}
.page__tags ul li:last-child a:after {
  content: "";
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.news-article__masthead {
  /*display: grid;
  grid-template-columns: 2.5fr 1fr;
  grid-column-gap: 20px;*/
  margin-bottom: 24px;
}
.news-article__publish-date {
  color: #333333;
  font-size: 15px;
  text-transform: uppercase;
  line-height: 40px;
  font-weight: 400;
  padding: 0;
  margin: 0;
}

.news-article__heading {
  color: #0096D7;
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  padding: 0;
  margin: 0 0 14px 0;
}

.news-article-summary-and-tags {
  background-color: #f5f5f5;
  padding: 24px 15px;
}
@media (min-width: 768px) {
  .news-article-summary-and-tags {
    padding: 24px 30px;
  }
}

.news-article__summary {
  color: #333333;
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  padding: 0;
  margin: 0 0 24px 0;
}

.news-article__tags {
  color: #333333;
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
}
.news-article__tags ul {
  display: inline-block;
  padding: 0;
  margin: 0;
}
.news-article__tags ul li {
  display: inline-block;
  padding: 0;
  margin: 0;
  list-style: none;
}
.news-article__tags ul li a {
  color: #0096D7;
}
.news-article__tags ul li a:active, .news-article__tags ul li a:hover, .news-article__tags ul li a:visited {
  color: #0096D7;
}
.news-article__tags ul li a:hover {
  text-decoration: underline;
}
.news-article__tags ul li a:after {
  display: inline-block;
  content: ",";
  color: #333333;
}
.news-article__tags ul li:last-child a:after {
  content: "";
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.publication__masthead {
  margin-bottom: 24px;
}
.publication__publish-date {
  color: #333333;
  font-size: 15px;
  text-transform: uppercase;
  line-height: 40px;
  font-weight: 400;
  padding: 0;
  margin: 0;
}

.publication__heading {
  color: #0096D7;
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  padding: 0;
  margin: 0 0 14px 0;
}

.publication-summary-and-tags {
  background-color: #f5f5f5;
  padding: 24px 15px;
}
@media (min-width: 768px) {
  .publication-summary-and-tags {
    padding: 24px 30px;
  }
}

.publication__summary {
  color: #333333;
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  padding: 0;
  margin: 0 0 24px 0;
}

.publication__tags {
  color: #333333;
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
}
.publication__tags ul {
  display: inline-block;
  padding: 0;
  margin: 0;
}
.publication__tags ul li {
  display: inline-block;
  padding: 0;
  margin: 0;
  list-style: none;
}
.publication__tags ul li a {
  color: #0096D7;
}
.publication__tags ul li a:active, .publication__tags ul li a:hover, .publication__tags ul li a:visited {
  color: #0096D7;
}
.publication__tags ul li a:hover {
  text-decoration: underline;
}
.publication__tags ul li a:after {
  display: inline-block;
  content: ",";
  color: #333333;
}
.publication__tags ul li:last-child a:after {
  content: "";
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.search-results-page .site-search {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
.distillery-map #map {
  min-width: 200px;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
@media (min-width: 992px) {
  .distillery-map #map {
    min-height: 600px;
  }
}
.distillery-map .infowindow strong {
  color: #0096D7;
  font-size: 15px;
}
.distillery-map .infowindow p {
  margin-bottom: 5px !important;
  font-weight: 400;
  font-size: 13px;
}
.distillery-map .infowindow p strong {
  color: #333333;
  font-weight: 700;
  font-size: 13px;
}
.distillery-map .infowindow a {
  color: #0096D7 !important;
  text-decoration: underline;
}

/* --------------------------------------------
    Start : uSkinned variables
*/
/* 
    end : uSkinned variables
-------------------------------------------- */
@media (-ms-high-contrast: none) and (min-width: 992px), (-ms-high-contrast: active) and (min-width: 992px) {
  .top-nav-wrapper {
    float: right;
    margin-top: 10px;
  }
  .top-nav-wrapper .site-search {
    float: left;
  }
  .form-control {
    padding-top: 5px;
  }
  .carousel-child-items:after {
    display: block;
    content: "";
    clear: both;
  }
  .carousel-child-items .carousel-child-item {
    float: left;
    width: 33.333%;
  }
  .carousel-child-items .carousel-child-item .carousel-child-item__holder-inner {
    display: -ms-grid;
    -ms-grid-rows: 0.75fr 1fr 1fr;
  }
  .carousel-child-items .carousel-child-item .carousel-child-item__holder-inner .carousel-child-item__date {
    -ms-grid-row: 1;
  }
  .carousel-child-items .carousel-child-item .carousel-child-item__holder-inner .carousel-child-item__heading {
    -ms-grid-row: 2;
  }
  .carousel-child-items .carousel-child-item .carousel-child-item__holder-inner .carousel-child-item__subheading {
    display: none;
  }
  .carousel-child-items .carousel-child-item .carousel-child-item__holder-inner .carousel-child-item__link {
    -ms-grid-row: 3;
  }
  .insights-intro-panel .section-heading-row {
    margin-bottom: 40px;
  }
  .insights-intro-panel .insights-intro {
    margin-bottom: 40px;
  }
  .insights-intro-panel .insights-intro:nth-child(3) {
    float: left;
    width: 50%;
    padding-right: 30px;
    padding-left: 0;
  }
  .insights-intro-panel .insights-intro:nth-child(4) {
    float: right;
    width: 50%;
    padding-left: 30px;
    padding-right: 0;
  }
  .insights-intro-panel .button-row {
    clear: both;
  }
  .insights-intro-panel:after {
    display: block;
    content: "";
    clear: both;
  }
  .discover-intro-panel .section-heading-row {
    margin-bottom: 40px;
  }
  .discover-intro-panel .discover-intro {
    margin-bottom: 40px;
  }
  .discover-intro-panel .discover-intro .discover-intro__details {
    float: left;
    width: 50%;
  }
  .discover-intro-panel .discover-intro .discover-intro__image {
    float: right;
    width: 50%;
  }
  .discover-intro-panel .discover-intro:nth-child(odd) .discover-intro__details {
    float: right;
    width: 50%;
  }
  .discover-intro-panel .discover-intro:nth-child(odd) .discover-intro__image {
    float: left;
    width: 50%;
  }
  .discover-intro-panel .discover-intro:after {
    display: block;
    content: "";
    clear: both;
  }
  .discover-intro-panel:after {
    display: block;
    content: "";
    clear: both;
  }
  .membership-intro-panel .membership-intro {
    float: left;
    width: 48%;
  }
  .membership-intro-panel .membership-intro:nth-child(odd) {
    float: right;
  }
  .membership-intro-panel:after {
    display: block;
    content: "";
    clear: both;
  }
  footer .footer-wrapper {
    display: -ms-grid;
    -ms-grid-columns: 1fr 15px 1fr;
    -ms-grid-rows: auto 15px auto 15px auto;
  }
  footer .footer-wrapper > div:nth-child(2) {
    -ms-grid-column: 3;
  }
  footer .footer__links-list-wrapper {
    display: -ms-grid;
    -ms-grid-columns: 1fr 15px 1fr;
  }
  footer .footer__links-list-wrapper .footer__links-list:nth-child(2) {
    -ms-grid-column: 3;
  }
  footer .newsletter-signup {
    -ms-grid-column: 3;
  }
  footer .newsletter-signup input.newsletter-signup__email {
    width: auto;
  }
  footer .company-details {
    -ms-grid-column: 1;
    -ms-grid-row: 3;
  }
  footer .social {
    -ms-grid-column: 3;
    -ms-grid-row: 3;
  }
  footer .footer-addresses {
    -ms-grid-column: 1;
    -ms-grid-row: 3;
    -ms-grid-column-span: 3;
  }
  footer .footer-tel-phone {
    -ms-grid-column: 1;
    -ms-grid-row: 5;
  }
  footer .footer-social {
    -ms-grid-column: 3;
    -ms-grid-row: 5;
  }
  .content-column-box--featured {
    display: -ms-grid;
    -ms-grid-columns: 1fr;
    -ms-grid-rows: 1fr auto;
  }
  .content-column-box--featured > div {
    -ms-grid-row: 2;
  }
  .insights-rollup .insight-item {
    float: left;
    width: 33.3%;
  }
  .insights-rollup .insight-item .insight-item__holder-inner {
    display: -ms-grid;
    -ms-grid-rows: auto auto 1fr auto;
  }
  .insights-rollup .insight-item .insight-item__holder-inner .insight-item__date {
    -ms-grid-row: 1;
  }
  .insights-rollup .insight-item .insight-item__holder-inner .insight-item__heading {
    -ms-grid-row: 2;
  }
  .insights-rollup .insight-item .insight-item__holder-inner .insight-item__summary {
    -ms-grid-row: 3;
  }
  .insights-rollup .insight-item .insight-item__holder-inner .insight-item__link {
    -ms-grid-row: 4;
  }
  .insights-rollup .insight-item:nth-child(4n) {
    clear: both;
    /*&:after {
        content: '';
        display: block;
        clear: both;
    }*/
  }
  .insights-rollup:after {
    display: block;
    content: "";
    clear: both;
  }
  .discover-child-page .discover-child-page__details {
    width: 50%;
    float: left;
  }
  .discover-child-page > a {
    width: 50%;
    float: right;
  }
  .discover-child-page--right .discover-child-page__details {
    float: right;
  }
  .discover-child-page--right > a {
    float: left;
  }
  .discover-child-page:after {
    display: block;
    content: "";
    clear: both;
  }
}