/* IMPORT SITE CUSTOM STYLES */
/* common mix-ins */
/* ROUNDED CORNERS */
/* Implementation */
#RoundedCornerExample {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

/* SHADOW */
#ShadowExample {
  -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
}

/* TRANSITION */
/* Implementation */
#TransitionExample {
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

#TransitionExample:hover {
  opacity: 0;
}

/* GRADIENT */
/* Implementation */
#GradientExample {
  background-color: #663333;
  background-image: -webkit-linear-gradient(left, #663333, #333333);
  background-image: -moz-linear-gradient(left, #663333, #333333);
  background-image: -o-linear-gradient(left, #663333, #333333);
  background-image: -ms-linear-gradient(left, #663333, #333333);
  background-image: linear-gradient(left, #663333, #333333);
}

/* QUICK GRADIENT	 */
/* Implementation */
#QuickGradientExample {
  background-color: #bada55;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}

/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }

  50% {
    transform: translateY(8%);
  }

  65% {
    transform: translateY(-4%);
  }

  80% {
    transform: translateY(4%);
  }

  95% {
    transform: translateY(-2%);
  }

  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }

  50% {
    -webkit-transform: translateY(8%);
  }

  65% {
    -webkit-transform: translateY(-4%);
  }

  80% {
    -webkit-transform: translateY(4%);
  }

  95% {
    -webkit-transform: translateY(-2%);
  }

  100% {
    -webkit-transform: translateY(0%);
  }
}

/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }

  50% {
    transform: translateY(-8%);
  }

  65% {
    transform: translateY(4%);
  }

  80% {
    transform: translateY(-4%);
  }

  95% {
    transform: translateY(2%);
  }

  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }

  50% {
    -webkit-transform: translateY(-8%);
  }

  65% {
    -webkit-transform: translateY(4%);
  }

  80% {
    -webkit-transform: translateY(-4%);
  }

  95% {
    -webkit-transform: translateY(2%);
  }

  100% {
    -webkit-transform: translateY(0%);
  }
}

/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }

  50% {
    transform: translateX(-8%);
  }

  65% {
    transform: translateX(4%);
  }

  80% {
    transform: translateX(-4%);
  }

  95% {
    transform: translateX(2%);
  }

  100% {
    transform: translateX(0%);
  }
}

@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }

  50% {
    -webkit-transform: translateX(-8%);
  }

  65% {
    -webkit-transform: translateX(4%);
  }

  80% {
    -webkit-transform: translateX(-4%);
  }

  95% {
    -webkit-transform: translateX(2%);
  }

  100% {
    -webkit-transform: translateX(0%);
  }
}

/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }

  50% {
    transform: translateX(8%);
  }

  65% {
    transform: translateX(-4%);
  }

  80% {
    transform: translateX(4%);
  }

  95% {
    transform: translateX(-2%);
  }

  100% {
    transform: translateX(0%);
  }
}

@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }

  50% {
    -webkit-transform: translateX(8%);
  }

  65% {
    -webkit-transform: translateX(-4%);
  }

  80% {
    -webkit-transform: translateX(4%);
  }

  95% {
    -webkit-transform: translateX(-2%);
  }

  100% {
    -webkit-transform: translateX(0%);
  }
}

/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}

@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }

  30% {
    transform: translateY(-8%) scaleX(0.5);
  }

  40% {
    transform: translateY(2%) scaleX(0.5);
  }

  50% {
    transform: translateY(0%) scaleX(1.1);
  }

  60% {
    transform: translateY(0%) scaleX(0.9);
  }

  70% {
    transform: translateY(0%) scaleX(1.05);
  }

  80% {
    transform: translateY(0%) scaleX(0.95);
  }

  90% {
    transform: translateY(0%) scaleX(1.02);
  }

  100% {
    transform: translateY(0%) scaleX(1);
  }
}

@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }

  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }

  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }

  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }

  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }

  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }

  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }

  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }

  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}

/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }

  60% {
    transform: translateY(-7%) scaleY(1.12);
  }

  75% {
    transform: translateY(3%);
  }

  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}

@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }

  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }

  75% {
    -webkit-transform: translateY(3%);
  }

  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}

/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.1);
  }

  80% {
    transform: scale(0.9);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale(1.1);
  }

  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}

/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}

@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }

  50% {
    transform: scale(0.95);
  }

  80% {
    transform: scale(1.05);
  }

  90% {
    transform: scale(0.98);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }

  50% {
    -webkit-transform: scale(0.95);
  }

  80% {
    -webkit-transform: scale(1.05);
  }

  90% {
    -webkit-transform: scale(0.98);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}

@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }

  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }

  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}

@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }

  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }

  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}

/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}

@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }

  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }

  35% {
    transform: rotate(2deg) scaleY(1);
  }

  50% {
    transform: rotate(-2deg);
  }

  65% {
    transform: rotate(1deg);
  }

  80% {
    transform: rotate(-1deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }

  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }

  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }

  50% {
    -webkit-transform: rotate(-2deg);
  }

  65% {
    -webkit-transform: rotate(1deg);
  }

  80% {
    -webkit-transform: rotate(-1deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
  }
}

/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}

@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }

  60% {
    transform: translateY(-100%) scaleY(1.1);
  }

  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }

  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }

  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }

  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }

  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }

  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }

  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }

  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }

  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}

/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }

  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}

/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0%);
  }

  50% {
    transform: translateY(8%);
  }

  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }

  50% {
    -webkit-transform: translateY(8%);
  }

  100% {
    -webkit-transform: translateY(0%);
  }
}

/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(4deg);
  }

  100% {
    transform: rotate(-4deg);
  }
}

@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }

  50% {
    -webkit-transform: rotate(4deg);
  }

  100% {
    -webkit-transform: rotate(-4deg);
  }
}

/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}

@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }

  40% {
    transform: scaleY(1.02);
  }

  60% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(1);
  }
}

@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }

  40% {
    -webkit-transform: scaleY(1.02);
  }

  60% {
    -webkit-transform: scaleY(0.98);
  }

  80% {
    -webkit-transform: scaleY(1.01);
  }

  100% {
    -webkit-transform: scaleY(0.98);
  }

  80% {
    -webkit-transform: scaleY(1.01);
  }

  100% {
    -webkit-transform: scaleY(1);
  }
}

/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}

@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }

  40% {
    transform: scaleY(1.02);
  }

  60% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(1);
  }
}

@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }

  40% {
    -webkit-transform: scaleY(1.02);
  }

  60% {
    -webkit-transform: scaleY(0.98);
  }

  80% {
    -webkit-transform: scaleY(1.01);
  }

  100% {
    -webkit-transform: scaleY(0.98);
  }

  80% {
    -webkit-transform: scaleY(1.01);
  }

  100% {
    -webkit-transform: scaleY(1);
  }
}

/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}

@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }

  40% {
    transform: scaleX(1.02);
  }

  60% {
    transform: scaleX(0.98);
  }

  80% {
    transform: scaleX(1.01);
  }

  100% {
    transform: scaleX(0.98);
  }

  80% {
    transform: scaleX(1.01);
  }

  100% {
    transform: scaleX(1);
  }
}

@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }

  40% {
    -webkit-transform: scaleX(1.02);
  }

  60% {
    -webkit-transform: scaleX(0.98);
  }

  80% {
    -webkit-transform: scaleX(1.01);
  }

  100% {
    -webkit-transform: scaleX(0.98);
  }

  80% {
    -webkit-transform: scaleX(1.01);
  }

  100% {
    -webkit-transform: scaleX(1);
  }
}

/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}

@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }

  40% {
    transform: scaleX(1.02);
  }

  60% {
    transform: scaleX(0.98);
  }

  80% {
    transform: scaleX(1.01);
  }

  100% {
    transform: scaleX(0.98);
  }

  80% {
    transform: scaleX(1.01);
  }

  100% {
    transform: scaleX(1);
  }
}

@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }

  40% {
    -webkit-transform: scaleX(1.02);
  }

  60% {
    -webkit-transform: scaleX(0.98);
  }

  80% {
    -webkit-transform: scaleX(1.01);
  }

  100% {
    -webkit-transform: scaleX(0.98);
  }

  80% {
    -webkit-transform: scaleX(1.01);
  }

  100% {
    -webkit-transform: scaleX(1);
  }
}

#breadcrumb {
  height: 25px;
}

.alert {
  padding: 0px;
  background-color: #3151b9;
  border-radius: 0;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
}

.alert a {
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  background-color: #3151b9;
  color: #ffffff;
  margin-top: -1px;
  margin-bottom: -1px;
}

.alert a:hover {
  background-color: #1c2e68;
  color: #ffffff;
}

.alert:hover {
  background-color: #1c2e68;
  color: #ffffff;
}

.alert .alertIcn {
  line-height: 1;
}

.alert .headline {
  line-height: 1.2;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow-x: hidden;
}

#NavMobileModal .fade.in,
#SearchModal .fade.in,
#ContactModal .fade.in {
  background-color: #3151b9;
}

#NavMobileModal .modal-dialog .modal-content .close,
#SearchModal .modal-dialog .modal-content .close,
#ContactModal .modal-dialog .modal-content .close {
  color: black;
  color: #f88b06 !important;
  font-size: 70px !important;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  opacity: 1 !important;
  font-weight: 700 !important;
  margin-right: 20px;
}

#NavMobileModal .modal-dialog .modal-content .modal-body a,
#SearchModal .modal-dialog .modal-content .modal-body a,
#ContactModal .modal-dialog .modal-content .modal-body a {
  color: white;
}

#NavMobileModal .modal-dialog .modal-content .modal-body a:hover,
#SearchModal .modal-dialog .modal-content .modal-body a:hover,
#ContactModal .modal-dialog .modal-content .modal-body a:hover {
  text-decoration: underline;
}

#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button {
  background-color: #f88b06;
}

#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button:hover {
  background-color: #945304;
}

body #header {
  width: 100%;
  background-color: #ffffff;
}

body #header a.logo-hold {
  width: 220px;
  display: inline-block;
  float: left;
}

@media (max-width: 380px) {
  body #header a.logo-hold {
    width: 185px;
  }
}

body #header a.logo-hold img {
  width: 100%;
}

body #header .header-top {
  display: block;
  width: 100%;
  padding: 0px 0px 10px;
  box-shadow: 0px 5px #e55802d1;
  position: relative;
  z-index: 2;
  background-color: white;
  position: fixed;
  top: 0px;
}

@media (max-width: 991px) {
  body #header .header-top {
    padding-top: 0px;
  }
}

body #header .header-top.fixed {
  position: fixed;
}

body #header .header-top>.container {
  margin-top: 15px;
}

body #header .header-top .help-button {
  background-color: #f88b06;
  color: white;
  display: inline-block;
  float: right;
  padding: 16px 17px;
  line-height: 24px;
}

body #header .header-top .help-button span {
  display: block;
  font-size: 28px;
  text-transform: uppercase;
}

body #header .header-top .help-button span.light {
  font-size: 30px;
}

body #header .header-top .help-button:hover {
  background-color: #ec6f03;
}

body #header .nav-hold {
  display: inline-block;
  float: none !important;
  text-align: center;
  width: calc(100% - 420px);
  padding: 0px !important;
}

@media (max-width: 991px) {
  body #header .nav-hold {
    text-align: right;
    width: auto;
    float: right !important;
    margin-top: 20px;
  }
}

body .help-bar {
  background-color: #f88b06;
  color: white;
  text-align: center;
  display: inline-block;
  width: 100%;
  padding: 6px 0px 5px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

body .help-bar:hover {
  color: white;
  background-color: #ec6f03;
}

body .orange-bar {
  background-color: #ec6f03;
  background-image: url('/themes/correa/images/pattern.png');
  padding: 7px 0 5px;
  color: white;
  background-blend-mode: multiply;
  box-shadow: 0px 5px rgba(99, 96, 96, 0.2);
  position: relative;
  z-index: 1;
  margin-top: 115px;
}

@media (max-width: 1330px) {
  body .orange-bar {
    padding: 9px 0 5px;
  }
}

@media (max-width: 991px) {
  body .orange-bar {
    height: 0px;
    overflow: hidden;
  }
}

body .orange-bar a {
  color: white;
}

body .orange-bar .center {
  display: inline-block;
}

body .orange-bar .congress-years {
  text-transform: uppercase;
  font-size: 24px;
  margin-right: 30px;
  vertical-align: sub;
}

@media (max-width: 1330px) {
  body .orange-bar .congress-years {
    font-size: 20px;
    margin-right: 5px;
  }
}

body .orange-bar .stat {
  font-size: 16px;
  border: 2px solid white;
  padding: 1px 5px 3px;
  margin-right: 10px;
}

@media (max-width: 1330px) {
  body .orange-bar .stat {
    font-size: 15px;
  }
}

body .orange-bar .stat-name {
  max-width: 115px;
  font-size: 12px;
  display: inline-block;
  margin-right: 15px;
  vertical-align: bottom;
  line-height: 13px;
}

@media (max-width: 1200px) {
  body .orange-bar .stat-name {
    margin-right: 9px;
  }
}

body .orange-bar .stats-contianer {
  display: inline-block;
}

body .orange-bar .social-list {
  position: relative;
  top: 2px;
}

@media (max-width: 1200px) {
  body .orange-bar .social-list {
    display: none;
  }
}

body .orange-bar .social-list li {
  padding: 0px;
}

body .orange-bar .social-list li a {
  font-size: 16px;
}

@media (max-width: 1330px) {
  body .orange-bar .social-list li a {
    font-size: 14px;
  }
}

body .orange-bar .social-list li a:hover {
  color: #373736;
}

body .orange-bar .social-list li+li {
  padding-left: 14px;
}

@media (max-width: 1330px) {
  body .orange-bar .social-list li+li {
    padding-left: 11px;
  }
}

#newsroom .modal-dialog .modal-content .close {
  color: black;
  color: #f88b06 !important;
  font-size: 70px !important;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  opacity: 1 !important;
  font-weight: 700 !important;
  margin-right: 20px;
}

body .navbar {
  background-color: transparent;
  /*width: 660px;*/
  display: inline-block;
}

body .navbar .nav-pills {
  display: inline-block;
  width: auto;
}

body .navbar .nav-pills>li {
  border: none;
  width: auto;
  /*border-bottom: 0px solid !important;*/
}

body .navbar .nav-pills>li a {
  color: #373736;
  text-transform: uppercase;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 20px;
  padding: 27px 21px;
}

@media (max-width: 1200px) {
  body .navbar .nav-pills>li a {
    padding: 27px 12px;
  }
}

body .navbar .nav-pills>li .dropdown-menu {
  background-color: #ffffff;
  border: 1px solid #373736;
}

body .navbar .nav-pills>li .dropdown-menu li {
  padding: 5px 15px;
}

body .navbar .nav-pills>li .dropdown-menu li a {
  color: #373736;
  text-transform: uppercase;
  padding: 17px 21px;
}

body .navbar .nav-pills>li .dropdown-menu li a:hover {
  background-color: transparent;
}

body .navbar .nav-pills>li .dropdown-menu li:hover {
  background-color: #3151b9;
  color: black;
}

body .navbar .nav-pills>li .dropdown-menu li:hover a {
  color: #ffffff;
  background-color: transparent;
}

body .navbar .nav-pills>li .dropdown-menu:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: -18px;
  left: 35px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 18px solid #000;
}

body .navbar .nav-pills>li .dropdown-menu:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: -17px;
  left: 36px;
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-bottom: 17px solid white;
}

body .navbar .nav-pills>li:hover a,
body .navbar .nav-pills>li.selected a {
  /*color: @yellow;*/
  color: #3151b9;
}

body .navbar .togglemenu {
  color: #373736;
  font-size: 32px;
}

body .navbar .togglemenu .menulabel {
  display: none;
}

body .navbar .srchbuttonmodal {
  color: #373736;
  font-size: 21px;
  position: relative;
  /*top: 2px;
			margin-right: 8px;
			width: 30px;
			float:left;*/
}

@media (max-width: 991px) {
  body .navbar .srchbuttonmodal {
    font-size: 29px;
  }
}

body .navbar .srchbutton {
  color: #373736;
}

body .navbar #search {
  /*width: 0%;
			display: inline-block;
			overflow: hidden;
			position: absolute;
			left: 0;*/
}

body .navbar #search.showme {
  /*width: 96%;*/
}

body .navbar #search #sitesearch {
  /*padding: 12px 0px;*/
}

body .navbar #search #sitesearch #search-field {
  /*width: 575px;
					border: none;
					background-color: #6BB336;
					color: white;
					border-bottom: 3px solid white;*/
  /*&::-webkit-input-placeholder {
					color:white;
					}
					&::-moz-placeholder {
					color:white;
					}
					&:-moz-placeholder {
					color:white;
					}
					&:-ms-input-placeholder {
					color:white;
					}*/
}

body .navbar #search #sitesearch button {
  /*background-color:@green;
					color: white;
					border: none;
					padding: 3px 6px;
					margin-left: -5px;*/
}

body#home .navbar .nav-pills>li .dropdown-menu li a:hover {
  background-color: transparent;
}

#NavMobileModal .modal-dialog {
  margin-top: 40px;
}

#NavMobileModal .modal-dialog .modal-content .close {
  color: black;
  color: #f88b06 !important;
  font-size: 70px !important;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  opacity: 1 !important;
  font-weight: 700 !important;
  margin-right: 20px;
}

#NavMobileModal .modal-dialog .modal-content .modal-header .close {
  /*color: black;
				    	margin-right: 30px;*/
}

#NavMobileModal .modal-dialog .modal-content .modal-body {
  padding: 30px;
}

#NavMobileModal .modal-dialog .modal-content .modal-body a {
  color: black;
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li {
  text-align: center;
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li:last-child {
  border: none;
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li>a {
  color: white;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li>a:hover {
  text-decoration: underline;
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li .dropdown-menu {
  margin: 0 0 20px 0;
  padding: 0;
  position: relative;
  text-align: center;
  display: block !important;
  box-shadow: none !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 18px;
  width: 100%;
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li .dropdown-menu>li>a {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  color: white;
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li .dropdown-menu>li>a:hover {
  text-decoration: underline;
}

#header .nav-hold.right-slide-search,
#header .nav-hold.right-search-modal {
  padding: 20px 0;
  float: right;
}

#header .nav-hold.right-slide-search .navbar,
#header .nav-hold.right-search-modal .navbar {
  width: auto;
}

#header .nav-hold.right-slide-search .nav-pills,
#header .nav-hold.right-search-modal .nav-pills {
  right: 28px;
  position: relative;
}

@media (max-width: 1200px) {

  #header .nav-hold.right-slide-search .nav-pills,
  #header .nav-hold.right-search-modal .nav-pills {
    right: 11px;
  }
}

#header .nav-hold.right-slide-search .srchbutton,
#header .nav-hold.right-search-modal .srchbutton {
  right: 0;
  position: absolute;
  top: 15px;
  z-index: 2;
}

#header .nav-hold.right-slide-search .togglemenu,
#header .nav-hold.right-search-modal .togglemenu {
  margin-left: 13px;
}

#header .nav-hold.right-slide-search #search,
#header .nav-hold.right-search-modal #search {
  width: 0%;
  overflow: hidden;
  position: absolute;
  right: 30px;
  top: 0;
  transition: 0.3s width ease-in;
}

#header .nav-hold.right-slide-search #search.showme,
#header .nav-hold.right-search-modal #search.showme {
  width: 93%;
}

#header .nav-hold.right-slide-search #search #sitesearch,
#header .nav-hold.right-search-modal #search #sitesearch {
  padding: 12px 0px;
}

#header .nav-hold.right-slide-search #search #sitesearch #search-field,
#header .nav-hold.right-search-modal #search #sitesearch #search-field {
  position: absolute;
  width: 100%;
  border: none;
  background-color: #ffffff;
  color: #373736;
  border-bottom: 3px solid #373736;
}

#header .nav-hold.right-slide-search #search #sitesearch #search-field::-webkit-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-webkit-input-placeholder {
  color: #373736;
}

#header .nav-hold.right-slide-search #search #sitesearch #search-field::-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-moz-placeholder {
  color: #373736;
}

#header .nav-hold.right-slide-search #search #sitesearch #search-field:-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-moz-placeholder {
  color: #373736;
}

#header .nav-hold.right-slide-search #search #sitesearch #search-field:-ms-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-ms-input-placeholder {
  color: #373736;
}

#header .nav-hold.right-slide-search #search #sitesearch #search-field:focus,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:focus {
  outline: none;
}

#header .nav-hold.right-slide-search #search #sitesearch button,
#header .nav-hold.right-search-modal #search #sitesearch button {
  background-color: #ffffff;
  color: #373736;
  border: none;
  padding: 3px 6px;
  margin-left: -5px;
  position: absolute;
  right: 0;
  font-size: 13px;
}

#header .nav-hold.right-search-modal .srchbutton {
  display: none !important;
}

#header .nav-hold.right-search-modal #search {
  display: none;
}

#header .nav-hold.right-search-modal .srchbuttonmodal {
  display: inline-block !important;
  font-size: inherit;
  top: -34px;
  font-size: 15px;
}

@media (max-width: 991px) {
  #header .nav-hold.right-search-modal .srchbuttonmodal {
    font-size: 28px;
    top: -1px;
  }
}

#SearchModal .modal-dialog .modal-content .modal-body #sitesearchmodal{
  padding: 40px 40px 0px 0px;
  width: 100%;
}

#SearchModal .modal-dialog .modal-content .modal-body #sitesearchmodal input[type="search"]{
  color: rgba(0, 0, 0, 0.8);
  width: 88%;
  font-size: 34px;
  font-weight: 300;
  border: none;
  padding: 10px;
  float: left;
  margin: 0;
}

#SearchModal .modal-dialog .modal-content .modal-body #sitesearchmodal button{
  background-color: #f88b06;
  height: 69px;
  border: none;
  font-size: 28px;
  padding: 14px;
  width: 12%;
}

#header .nav-hold.hamburger-and-search,
#header .nav-hold.hamburger-only {
  float: right;
}

#header .nav-hold.hamburger-and-search .togglemenu,
#header .nav-hold.hamburger-only .togglemenu {
  display: inline-block !important;
  margin-left: 13px;
  margin-top: 1px;
}

#header .nav-hold.hamburger-and-search .srchbuttonmodal,
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: inline-block !important;
}

#header .nav-hold.hamburger-and-search .srchbutton,
#header .nav-hold.hamburger-only .srchbutton {
  display: none !important;
}

#header .nav-hold.hamburger-and-search #search,
#header .nav-hold.hamburger-only #search {
  display: none;
}

#header .nav-hold.hamburger-and-search .menulabel,
#header .nav-hold.hamburger-only .menulabel {
  display: none;
}

#header .nav-hold.hamburger-and-search .nav-pills,
#header .nav-hold.hamburger-only .nav-pills {
  display: none;
}

#header .nav-hold.hamburger-and-search.pull-left,
#header .nav-hold.hamburger-only.pull-left {
  float: left;
}

#header .nav-hold.hamburger-and-search.pull-left .togglemenu,
#header .nav-hold.hamburger-only.pull-left .togglemenu {
  float: left;
  margin-left: 0;
  margin-right: 13px;
}

#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: none !important;
}

#home .banner {
  height: 500px;
  background-image: url(/themes/correa/images/banner.jpg);
  position: relative;
  background-size: cover;
  background-position: right;
  max-width: 1500px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  #home .banner {
    height: 400px;
  }
}

@media (max-width: 767px) {
  #home .banner {
    height: 340px;
  }
}

@media (max-width: 479px) {
  #home .banner {
    height: 200px;
  }
}

#home .banner a {
  bottom: 13px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0px;
  color: white;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  font-size: 32px;
  line-height: 23px;
  text-shadow: 3px 2px 5px black;
}

@media (max-width: 380px) {
  #home .banner a {
    font-size: 23px;
  }
}

#home .banner a:hover {
  color: white;
}

.services {
  background-color: #1239b8;
  text-align: center;
  color: white;
  padding: 80px 0 20px;
  background-image: url('/themes/correa/images/pattern.png');
  max-width: 1500px;
  margin: 0 auto;
}

.services a {
  display: inline-block;
  color: white;
  margin-bottom: 60px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .services a {
    min-height: 175px;
  }
}

.services a .service-icon {
  background-color: white;
  height: 120px;
  margin: 0 auto;
  width: 120px;
  border-radius: 120px;
  text-align: center;
  border: 5px solid #1a46ae;
  margin-bottom: 15px;
}

@media (max-width: 560px) {
  .services a .service-icon {
    height: 90px;
    width: 90px;
  }
}

@media (max-width: 560px) {
  .services a .service-icon img {
    width: 40px;
  }
}

.services a:hover {
  color: #f88b06;
}

.services a:hover .service-icon {
  border-color: #f88b06;
}

.services a:hover .service-icon img {
  filter: invert(1) hue-rotate(-28deg);
}

@media (max-width: 560px) {
  .services a {
    min-height: 125px;
  }
}

@media (max-width: 469px) {
  .services a {
    min-height: 150px;
  }
}

.social-area {
  padding: 50px 0px 70px;
  text-align: center;
  background-color: #f6f6f6;
  max-width: 1500px;
  margin: 0 auto;
}

.social-area h3 {
  text-transform: uppercase;
  margin-bottom: 50px;
  font-size: 32px;
}

.social-area .social-icon {
  height: 48px;
  width: 48px;
  border-radius: 48px;
  color: white;
  margin: 0 auto;
  text-align: center;
  display: block;
  padding-top: 2px;
  font-size: 27px;
  margin-bottom: 15px;
}

.social-area .social-icon.twitter {
  background-color: #78cdf0;
  border: 3px solid #78cdf0;
}

.social-area .social-icon.facebook {
  background-color: #537bbd;
  border: 3px solid #537bbd;
}

.social-area .social-icon.instagram {
  background-color: #734495;
  border: 3px solid #734495;
}

.social-area iframe,
.social-area #instamedia {
  border: 1px solid #97989a !important;
  max-width: 320px !important;
  width: 100% !important;
}

@media (max-width: 380px) {

  .social-area iframe,
  .social-area #instamedia {
    max-width: 290px !important;
  }
}

.social-header {
  color: #373736;
  text-transform: uppercase;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: block;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .social-header {
    margin-top: 30px;
  }
}

.social-header:hover {
  color: #f88b06;
}

.social-header:hover .social-icon {
  color: #f88b06;
  background-color: white;
  border: 3px solid #f88b06;
}

#instamedia {
  width: 320px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  #instamedia {
    width: 215px;
  }
}

@media (max-width: 767px) {
  #instamedia {
    width: 320px;
  }
}

#instamedia a {
  display: inline-block;
  border: 3px solid white;
  height: 106px;
  width: 106px;
}

@media (max-width: 1200px) {
  #instamedia a {
    width: 95px;
  }
}

@media (max-width: 991px) {
  #instamedia a {
    width: 106px;
  }
}

@media (max-width: 380px) {
  #instamedia a {
    height: 95px;
    width: 95px;
  }
}

#instamedia a .instaimage {
  height: 100%;
  width: 100%;
}

#instamedia a .instaimage img {
  height: 100%;
  width: 100%;
}

@media (max-width: 991px) {

  #instamedia a:last-child,
  #instamedia a:nth-child(7),
  #instamedia a:nth-child(8) {
    display: none;
  }
}

@media (max-width: 767px) {

  #instamedia a:last-child,
  #instamedia a:nth-child(7),
  #instamedia a:nth-child(8) {
    display: inline-block;
  }
}

.newsletter-signup {
  padding: 80px 0px;
  background-image: url(/themes/correa/images/disney.jpg);
  background-size: cover;
  font-size: 28px;
  text-align: center;
  max-width: 1500px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .newsletter-signup {
    padding: 55px 25px;
  }
}

@media (max-width: 380px) {
  .newsletter-signup {
    font-size: 22px;
    padding: 55px 15px;
  }
}

.newsletter-signup .lora {
  color: white;
}

@media (max-width: 767px) {
  .newsletter-signup .lora {
    margin-left: 30px;
    float: none !important;
  }
}

.newsletter-signup form {
  width: calc(100% - 350px);
  float: right;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .newsletter-signup form {
    width: 100%;
  }
}

.newsletter-signup .field {
  height: 65px;
  font-size: 18px;
  border: 0px;
  padding: 0 20px;
  font-style: italic;
  width: 100%;
  color: #373736;
}

@media (max-width: 380px) {
  .newsletter-signup .field {
    height: 55px;
    font-size: 16px;
    width: calc(100% - 85px);
  }
}

.newsletter-signup .submit {
  height: 65px;
  background-color: #f88b06;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  border-radius: 0px;
  border: 0px;
  padding: 10px 20px;
  font-size: 18px;
  margin-left: -8px;
  background-image: url('/themes/correa/images/pattern.png');
  position: relative;
}

@media (max-width: 380px) {
  .newsletter-signup .submit {
    height: 55px;
    font-size: 14px;
    padding: 6px 12px;
    top: -1px;
  }
}

.newsletter-signup .submit:hover {
  background-color: #ec6f03;
}

.newsletter-signup #newsletter-confirmation {
  width: 100%;
  display: block;
  position: relative;
}

.newsletter-signup #newsletter-confirmation span {
  padding: 7px 20px;
  background: rgba(0, 0, 0, 0.36);
  width: auto;
  border-radius: 24px;
}

.office-locations {
  background-color: #ec6f03;
  color: white;
  background-image: url('/themes/correa/images/pattern.png');
  padding: 70px 0px;
}

@media (max-width: 767px) {
  .office-locations {
    padding: 70px 90px;
    padding-top: 30px;
  }
}

@media (max-width: 620px) {
  .office-locations {
    padding: 30px 40px 70px;
  }
}

.office-locations .orange {
  height: 215px;
  width: 220px;
  text-transform: uppercase;
  background-image: url(/themes/correa/images/orange.png);
  background-size: contain;
  background-repeat: no-repeat;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 32px;
  background-position: center center;
}

@media (max-width: 767px) {
  .office-locations .orange {
    margin: 0 auto 30px;
  }
}

.office-locations .orange .visit {
  margin-top: 20px;
  display: block;
  margin-left: 13px;
}

@media (max-width: 597px) {

  .office-locations .col-sm-4,
  .office-locations .col-sm-4.col-xs-6 {
    width: 100%;
  }
}

@media (max-width: 597px) {
  .office-locations .address {
    display: block;
    width: 220px;
    margin: 0 auto 20px;
  }
}

.office-locations .address .location {
  font-size: 24px;
}

.office-locations .address a {
  font-size: 12px;
  color: white;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}

/*
default interior styles

commonly made fixes / tweaks
*/
.modal-backdrop {
  z-index: 1;
}

.modal-dialog {
  z-index: 5;
}

.table-display {
  display: table;
}

.cell {
  display: table-cell;
  vertical-align: middle;
}

.background-image {
  background-repeat: no-repeat;
  background-size: cover;
}

.background-image .with-height {
  width: 100%;
  height: 100%;
  display: inline-block;
}

body.no-breadcrumbs #breadcrumb a {
  display: none;
}

li.previous {
  margin-right: 10px;
}

.fancybox-title-float-wrap .child {
  white-space: pre-line !important;
}

.toggle-btn.active,
.btn-block.hover {
  background-color: #ec6f03 !important;
}

#breadcrumb a {
  color: #cecece;
  text-transform: uppercase;
  font-weight: bold;
}

#breadcrumb a:hover {
  color: #3151b9;
}

#form_thomas_search .col-xs-9 {
  padding-right: 0;
}

#filter-legislation {
  margin: 0;
}

#filter-legislation h3 {
  margin-top: 0;
}

#filter-legislation aside form select {
  font-size: 16px;
}

#filter-legislation #session_select,
#filter-legislation #sponsored {
  height: 33px;
  font-size: 16px;
}

#filterbuttons a {
  background-color: transparent;
  color: #3151b9;
  padding-left: 0px;
  padding-right: 20px;
}

#filterbuttons a:hover {
  color: #1c2e68;
}

#listblocks {
  margin-top: 40px;
}

#listblocks .block {
  display: table;
  height: 110px;
}

#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  background-color: #3151b9;
  font-weight: bold;
  color: white;
  transition: 0.3s background-color ease-in;
  text-transform: uppercase;
  background-image: url('/themes/correa/images/pattern.png');
}

#listblocks .block a .media-heading {
  top: 2px;
}

#listblocks .block a:hover {
  background-color: #1c2e68;
}

a.anchor {
  display: block;
  position: relative;
  top: -350px;
  visibility: hidden;
}

#typenav li a {
  color: #373736;
}

#typenav li.active a {
  color: #373736;
  background-color: white;
}

#typenav li.active a:before {
  content: url(/themes/correa/images/baby-orange.png);
  display: inline-block;
  position: absolute;
  left: -8px;
}

#typenav.affix {
  top: 150px;
  position: fixed !important;
}

@media (max-width: 1330px) {
  #typenav.affix {
    max-width: 262px;
  }
}

@media (max-width: 1200px) {
  #typenav.affix {
    max-width: 212px;
  }
}

@media (max-width: 991px) {
  #typenav.affix {
    max-width: 157px;
  }
}

.small-caps {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin: 20px 0;
  color: #373736;
}

.small-caps:hover {
  color: #3151b9;
}

h2:focus {
  outline: none;
}

@media (max-width: 767px) {
  body#district .embed-responsive-16by9 {
    padding-bottom: 81.25%;
  }
}

@media (max-width: 497px) {
  body#district .embed-responsive-16by9 {
    padding-bottom: 106.25%;
  }
}

@media (max-width: 350px) {
  body#district .embed-responsive-16by9 {
    padding-bottom: 156.25%;
  }
}

#about #sam-first {
  margin-top: 30px;
}

#about p {
  font-size: 20px;
  line-height: 35px;
}

@media (max-width: 991px) {
  #about p {
    font-size: 18px;
    line-height: 30px;
  }
}

#about #sam-first p::first-letter {
  font-size: 80px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  line-height: 50px;
  float: left;
  position: relative;
  top: 100px;
  margin-right: 7px;
}

#about .timeline-container {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}

#about .timeline-container.first {
  height: 100%;
}

#about .timeline-container.second {
  margin-top: 105px;
}

@media (max-width: 767px) {
  #about .timeline-container.second {
    margin-top: 50px;
  }
}

#about .line {
  height: 100%;
  width: 1px;
  background-color: black;
  display: inline-block;
  position: absolute;
  left: calc(50% - 10px);
}

#about .timeline {
  height: 100%;
  display: inline;
  float: left;
  position: relative;
  top: 0px;
  padding: 60px 70px 60px 50px;
}

@media (max-width: 991px) {
  #about .timeline {
    padding: 40px 40px 50px 23px;
  }
}

#about .timeline .small {
  margin-bottom: 200px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  #about .timeline .small {
    width: 260px;
    margin-bottom: 175px;
  }
}

@media (max-width: 991px) {
  #about .timeline .small {
    margin-bottom: 124px;
  }
}

@media (max-width: 690px) {
  #about .timeline .small {
    width: 240px;
    margin-bottom: 245px;
  }
}

#about .second-timeline {
  display: inline;
  float: left;
  position: relative;
  top: -28px;
  padding: 0px 70px 0px 50px;
  /* margin-top: 50px; */
}

#about .second-timeline .small {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  #about .second-timeline .small {
    width: 260px;
  }
}

#about .baby-orange {
  position: relative;
  top: -3px;
  left: 5px;
}

#about .second-line {
  width: 1px;
  background-color: black;
  height: 200px;
  position: absolute;
  display: inline-block;
  top: -102px;
  z-index: 0;
  left: calc(50% - 10px);
}

#about .dot {
  border: 1px solid black;
  height: 13px;
  width: 13px;
  border-radius: 13px;
  background-color: white;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  top: -100px;
}

@media (max-width: 991px) {
  #about .dot {
    top: -62px;
  }
}

@media (max-width: 690px) {
  #about .dot {
    top: -120px;
  }
}

#about .image-breakout {
  position: relative;
  z-index: 1;
}

#about .image-breakout img {
  width: 100%;
}

#about .image-breakout .highlight {
  background-color: white;
  position: absolute;
  bottom: 50px;
  left: 40%;
  padding: 22px;
  max-width: 690px;
}

@media (max-width: 1200px) {
  #about .image-breakout .highlight {
    max-width: 595px;
  }
}

@media (max-width: 991px) {
  #about .image-breakout .highlight {
    max-width: 515px;
  }
}

@media (max-width: 891px) {
  #about .image-breakout .highlight {
    max-width: 100%;
    left: 30px;
    right: 30px;
  }
}

@media (max-width: 767px) {
  #about .image-breakout .highlight {
    padding: 11px;
    bottom: 30px;
  }
}

@media (max-width: 600px) {
  #about .image-breakout .highlight {
    position: relative;
    bottom: 0px;
    left: 0px;
    right: 0px;
  }
}

#about .image-breakout .highlight #sam-outlined {
  border: 2px solid #ec6f03;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  padding: 27px 50px;
}

@media (max-width: 1200px) {
  #about .image-breakout .highlight #sam-outlined {
    padding: 27px 40px;
  }
}

@media (max-width: 991px) {
  #about .image-breakout .highlight #sam-outlined {
    padding: 19px 27px;
  }
}

@media (max-width: 767px) {
  #about .image-breakout .highlight #sam-outlined {
    padding: 15px 20px;
  }
}

#about .image-breakout .highlight #sam-outlined p {
  margin-bottom: 0;
  font-size: 27px;
  line-height: 42px;
}

@media (max-width: 1200px) {
  #about .image-breakout .highlight #sam-outlined p {
    font-size: 24px;
    line-height: 36px;
  }
}

@media (max-width: 991px) {
  #about .image-breakout .highlight #sam-outlined p {
    font-size: 20px;
    line-height: 25px;
  }
}

@media (max-width: 767px) {
  #about .image-breakout .highlight #sam-outlined p {
    font-size: 18px;
    line-height: 22px;
  }
}

#about .about-buttons {
  max-width: 990px;
  width: 100%;
  margin: 30px auto;
  padding: 0px 25px;
}

#about .about-buttons a {
  width: 33%;
  border: 5px solid white;
  background-color: #ec6f03;
  color: white;
  text-transform: uppercase;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 24px;
  vertical-align: top;
  line-height: 25px;
  display: inline-table;
  height: 105px;
}

@media (max-width: 991px) {
  #about .about-buttons a {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  #about .about-buttons a {
    width: 32%;
    font-size: 20px;
  }
}

@media (max-width: 497px) {
  #about .about-buttons a {
    width: 100%;
  }
}

#about .about-buttons a:hover {
  background-color: #f88b06;
}

body#issues #mainlist li {
  border-bottom: 0px;
  margin-bottom: 0px;
  padding: 30px 45px;
  border: 1px solid #373736;
  margin-top: 50px;
}

body#issues #mainlist li h2 {
  color: #373736;
}

body#issues #mainlist li:nth-child(even) {
  background-color: #fcf0e2;
  border: 0px;
}

body#issues #mainlist li:focus {
  outline-color: #f88b1e;
}

body#guestbook #header {
  display: none;
}

body#guestbook .guestbooklogo {
  width: 100%;
  display: block;
  text-align: center;
}

body#guestbook .guestbooklogo img {
  width: 100%;
  max-width: 300px;
}

body#guestbook .main_page_title {
  display: none;
}

input#copyTarget {
  position: absolute;
  z-index: -1;
  width: 50px !important;
  height: 9px !important;
}

#copyButton {
  top: -3px;
  position: relative;
}

body#media-view #content {
  color: white;
  background: #373736;
}

body#media-view #featured-details-header {
  color: #ffffff;
  font-size: 32px;
  margin-top: 20px;
}

@media (max-width: 550px) {
  body#media-view #featured-details-header {
    font-size: 26px;
  }
}

body#media-view #featured-details-header a {
  color: #ffffff;
}

body#media-view #featured-details-header a:hover {
  text-decoration: underline;
}

body#media-view #featured-details-description {
  color: #ffffff;
}

body#media-view #featured-details-description .main_page_title {
  color: #ffffff;
}

body#media-view #featured-details-description p {
  line-height: 25px;
}

body#media-view #share-footer a {
  color: #ec6f03;
}

body#media-view #share-footer a:hover {
  color: #ffffff;
}

#share-buttons li {
  float: right;
}

#share-buttons #share-copy-link {
  cursor: pointer;
}

#multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #3151b9;
}

#multimedia-browser ul.nav-tabs li a:hover {
  background: #ec6f03;
}

#multimedia-browser ul.nav-tabs li.active {
  background-color: #3151b9;
}

#multimedia-browser ul.nav-tabs li.active a {
  background: transparent;
}

#multimedia-browser ul.nav-tabs li.active a:hover {
  background: transparent;
}

#multimedia-browser .loading div#search-results-header {
  display: none;
}

#multimedia-browser .status {
  background-color: #ec6f03;
  color: #ffffff;
}

#multimedia-browser .pagination {
  background-color: #3151b9;
}

#multimedia-browser .row .media-thumbnail a {
  color: #373736;
}

#multimedia-browser .row .media-thumbnail a:hover {
  color: #3151b9;
}

body#multimedia.new #newscontent.video {
  padding: 0;
}

body#multimedia.new #video-content {
  background-color: #373736;
  padding: 40px 80px;
  position: relative;
}

body#multimedia.new #video-content:after {
  content: '';
  background-color: #373736;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  right: -1000px;
  top: 0;
}

body#multimedia.new #video-content:before {
  content: '';
  background-color: #373736;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  left: -1000px;
  top: 0;
}

body#multimedia.new #video-content input#copyTarget {
  position: absolute;
  z-index: -1;
}

body#multimedia.new #video-content #media-player iframe {
  height: 500px;
}

@media (max-width: 767px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 340px;
  }
}

@media (max-width: 550px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 220px;
    min-height: 220px;
  }
}

body#multimedia.new #video-content #featured-details-header {
  color: #ffffff;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 32px;
  margin-top: 20px;
}

@media (max-width: 550px) {
  body#multimedia.new #video-content #featured-details-header {
    font-size: 26px;
  }
}

body#multimedia.new #video-content #featured-details-header a {
  color: #ffffff;
}

body#multimedia.new #video-content #featured-details-header a:hover {
  text-decoration: underline;
}

body#multimedia.new #video-content #featured-details-description {
  color: #ffffff;
}

body#multimedia.new #video-content #featured-details-description p {
  line-height: 25px;
}

body#multimedia.new #video-content #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}

body#multimedia.new .media-header {
  color: #ec6f03 !important;
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 0;
}

body#multimedia.new #share-buttons {
  float: right;
  padding: 18px;
}

body#multimedia.new #share-buttons #share-youtube a {
  color: white;
}

body#multimedia.new #share-buttons #share-copy-link {
  cursor: pointer;
}

body#multimedia.new #share-buttons #share-link-button-container {
  display: grid;
}

body#multimedia.new #share-footer #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}

body#multimedia.new #share-footer #share-buttons {
  float: right;
  padding: 18px;
}

body#multimedia.new #share-footer #share-buttons #share-youtube a {
  color: white;
}

body#multimedia.new #share-footer #share-buttons #share-copy-link {
  cursor: pointer;
}

body#multimedia.new #share-footer #share-buttons #share-link-button-container {
  display: grid;
}

body#multimedia.new #share-footer #share-buttons #share-link-button-container input#copyTarget {
  position: absolute;
  z-index: -1;
}

body#multimedia.new #multimedia-browser {
  padding: 50px 80px;
}

body#multimedia.new #multimedia-browser .multimedia-content {
  margin-left: -15px;
  margin-right: -15px;
}

body#multimedia.new #multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #3151b9;
  border-bottom: 0px;
  display: none;
}

body#multimedia.new #multimedia-browser ul.nav-tabs li a {
  color: #3151b9 !important;
  font-size: 52px;
  text-transform: uppercase;
}

body#multimedia.new #multimedia-browser ul.nav-tabs li a:hover {
  background: #ec6f03;
}

body#multimedia.new #multimedia-browser ul.nav-tabs li.active {
  background-color: white;
}

body#multimedia.new #multimedia-browser ul.nav-tabs li.active a {
  background: transparent;
}

body#multimedia.new #multimedia-browser ul.nav-tabs li.active a:hover {
  background: transparent;
}

body#multimedia.new #multimedia-browser ul.nav-tabs li a[data-target='#all-tab-content'],
body#multimedia.new #multimedia-browser ul.nav-tabs li a[data-target='#audio-tab-content'] {
  display: none !important;
  width: 0;
  overflow: hidden;
  padding: 0;
}

body#multimedia.new #multimedia-browser legend {
  display: none;
}

body#multimedia.new #multimedia-browser .loading div#search-results-header {
  display: none;
}

body#multimedia.new #multimedia-browser .status {
  background-color: #ec6f03;
  color: #ffffff;
  padding: 0 13px;
  margin-top: -18px;
}

body#multimedia.new #multimedia-browser .multimedia-tools #search-mm input {
  text-transform: uppercase;
  font-size: 13px;
}

body#multimedia.new #multimedia-browser .multimedia-tools .date-btn,
body#multimedia.new #multimedia-browser .multimedia-tools .search-media-btn {
  background-color: #3151b9;
  text-transform: uppercase;
}

body#multimedia.new #multimedia-browser .multimedia-tools select {
  color: #bcbaba;
  text-transform: uppercase;
  font-size: 13px;
}

body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
  color: #bcbaba;
  text-transform: uppercase;
  font-size: 13px;
}

body#multimedia.new #multimedia-browser .pagination {
  background-color: white;
  color: #373736;
}

body#multimedia.new #multimedia-browser .pagination .listing-increment a {
  color: #373736;
}

body#multimedia.new #multimedia-browser .pagination .listing-increment a:hover {
  color: #ec6f03;
}

body#multimedia.new #multimedia-browser .pagination .listing-increment a.selected {
  color: #ec6f03;
}

body#multimedia.new #multimedia-browser .pagination.first-one {
  display: none !important;
}

body#multimedia.new #multimedia-browser .media-thumbnail {
  height: 185px;
  width: 25%;
  margin: 0;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 40px;
  padding-right: 20px;
  padding-left: 20px;
}

body#multimedia.new #multimedia-browser .media-thumbnail img {
  margin-top: -32px;
  width: 100%;
}

body#multimedia.new #multimedia-browser .media-thumbnail .image a {
  color: #373736;
  height: 165px;
  overflow: hidden;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  display: inline-block;
}

body#multimedia.new #multimedia-browser .media-thumbnail .image a:hover {
  color: #3151b9;
}

body#multimedia.new #multimedia-browser .media-thumbnail a {
  color: #373736;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  height: 96px;
  overflow: hidden;
  display: inline-block;
}

body#multimedia.new #multimedia-browser .media-thumbnail a:hover {
  color: #3151b9;
}

body#multimedia.new #multimedia-browser .media-thumbnail:hover a {
  color: #3151b9;
}

@media (max-width: 1300px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }

  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 190px;
  }
}

@media (max-width: 1230px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }

  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }

  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 83%;
  }
}

@media (max-width: 990px) {
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 157px;
  }
}

@media (max-width: 900px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 50%;
  }

  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }

  body#multimedia.new #multimedia-browser .multimedia-tools select {
    width: 39%;
  }

  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 80%;
  }
}

@media (max-width: 768px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }

  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 240px;
  }

  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }

  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }

  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 84%;
  }
}

@media (max-width: 560px) {
  body#multimedia.new #share-buttons {
    padding: 0;
  }

  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }

  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 160px;
  }

  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }

  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }

  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}

@media (max-width: 480px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }

  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }

  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }

  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}

@media (max-width: 430px) {
  body#multimedia.new #share-buttons {
    padding: 0;
  }

  body#multimedia.new #multimedia-browser {
    padding: 50px 70px;
  }

  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }

  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }

  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }

  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}

body footer {
  background-color: #202d60;
  padding: 50px 0px;
}

body footer .footernav {
  text-align: center;
}

@media (max-width: 597px) {
  body footer .footernav {
    column-count: 2;
  }
}

body footer .footernav a {
  color: white;
  font-size: 20px;
}

body footer .footernav a:hover {
  text-decoration: underline;
}

body footer .footernav .footer-header {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 1px solid white;
}

@media (max-width: 991px) {
  body footer .footernav .footer-header {
    line-height: 21px;
  }
}

body footer .footernav .footer-header:hover {
  text-decoration: none;
  color: #f88b06;
}

body footer .footernav .footer-link {
  font-size: 14px;
  display: inline-block;
  position: relative;
}

body footer .footernav .footer-link:hover {
  text-decoration: none;
  color: white;
}

body footer .footernav .footer-link:hover:before {
  content: url(/themes/correa/images/baby-orange.png);
  display: inline-block;
  position: absolute;
  left: -20px;
}

body footer .footernav .footer-column {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  width: 150px;
}

@media (max-width: 1200px) {
  body footer .footernav .footer-column {
    width: auto;
    max-width: 150px;
    margin-right: 10px;
  }
}

@media (max-width: 991px) {
  body footer .footernav .footer-column {
    max-width: 90px;
  }
}

@media (max-width: 767px) {
  body footer .footernav .footer-column {
    max-width: 100%;
  }
}

@media (max-width: 597px) {
  body footer .footernav .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }
}

body footer .footernav .footer-column .f {
  line-height: 16px;
  margin-bottom: 13px;
}

body footer .footernav .footer-column.social {
  text-align: center;
  width: auto;
}

@media (max-width: 597px) {
  body footer .footernav .footer-column.social {
    text-align: left;
    width: 100%;
  }
}

body footer .footernav .footer-column.social div:not(.f) {
  margin: 15px 0px;
}

@media (max-width: 767px) {
  body footer .footernav .footer-column.social div:not(.f) {
    width: 50%;
    display: inline-block;
    float: left;
  }
}

@media (max-width: 597px) {
  body footer .footernav .footer-column.social div:not(.f) {
    width: 100%;
  }
}

body footer .footernav .footer-column.social a:hover {
  color: #f88b06;
}

body footer .footernav .footer-column+.footer-column {
  margin-left: 10px;
}

body footer .subfooternav {
  /*float:left;*/
  background-color: #1c2e68;
}

body footer .subfooternav a {
  color: white;
}

body footer .subfooternav a:hover {
  text-decoration: underline;
}

body footer .subfooternav li {
  padding-top: 3px;
}

body footer .subfooternav li:first-child {
  /*border-right:1px solid black;
					padding-right: 10px;*/
}

body footer .subfooternav li+li {
  border-left: 1px solid white;
  padding-right: 10px;
}

body .centered-nav .footer-ul {
  text-align: center;
}

body .left-aligned-nav .footer-ul,
body .left-aligned-nav .footer-ul.footernav {
  text-align: left;
}

body .left-aligned-nav .footer-ul li:first-child,
body .left-aligned-nav .footer-ul.footernav li:first-child {
  padding-left: 0px;
}

body .right-aligned-nav .footer-ul,
body .right-aligned-nav .footer-ul.footernav {
  text-align: right;
}

body .right-aligned-nav .footer-ul li:last-child,
body .right-aligned-nav .footer-ul.footernav li:last-child {
  padding-right: 0px;
}

body .right-aligned-nav .subfooternav li:first-child {
  /*border-left:1px solid black;
						padding-right: 10px;*/
}

#flagForm #flag-options .head {
  background-color: #3151b9;
  color: #ffffff;
}

/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
      }*/
      width: 100%;
      display: table;
      margin-bottom: 2rem;
}

.hide-on-submit {
  display: none !important;
}

/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

paste available font families here

font-family: 'Source Sans Pro', sans-serif;
font-family: 'Lora', serif;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/* you should name colors as their name (ie @blue)
  above but make sure to assign these following site
  colors to them
*/
.sans,
.regular {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
}

.bold {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
}

.light {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
}

.black {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 900;
}

.semibold {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
}

.lora {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-style: italic;
}

body {
  font-size: 18px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
}

.pattern {
  background-image: url('/themes/correa/images/pattern.png');
}

/*anchor stlyes*/
a,
.light-bg-link {
  color: #3151b9;
}

a:hover,
.light-bg-link:hover {
  text-decoration: none;
  color: #1c2e68;
}

/* Used in:
- Footer
- NavModal
*/
.dark-bg-link {
  color: white;
}

.dark-bg-link:hover {
  text-decoration: underline;
}

select {
  background: #fff;
  width: 55px;
  height: auto;
  color: black;
  border: 1px solid silver;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 0px;
  margin: 0 auto;
  padding: 10px 10px 10px 30px;
  vertical-align: bottom;
  font-size: 16px;
}

p {
  margin-bottom: 30px;
  line-height: 30px;
}

h2.title {
  margin-top: 7px;
}

/*button styles*/
.pager li .btn,
.btn,
.btn-defualt,
.btn:visited,
.btn-defualt:visited,
btn:focus,
.btn-default:focus,
.search-media-btn,
#main_column form .btn {
  background-color: #3151b9;
  color: white;
}

.pager li .btn:hover,
.btn:hover,
.btn-defualt:hover,
.btn:visited:hover,
.btn-defualt:visited:hover,
btn:focus:hover,
.btn-default:focus:hover,
.search-media-btn:hover,
#main_column form .btn:hover {
  background-color: #1c2e68;
  color: white;
}

.btn.btn-block.custom {
  padding: 20px;
  font-size: 22px;
  margin-top: 30px;
}

body {

  width: 100%;
  margin: 0 auto;
  background-color: #fff;

}

/*interior page content default styles */
#content {
  background-color: white;
  padding-bottom: 50px;
  max-width: 1500px;
  margin: 0 auto;
}

div.breakout {
  display: inline-block;
  background-color: #fcf0e2;
  padding: 10px 30px 20px;
  margin-bottom: 20px;
  width: 100%;
  min-height: 170px;
}

@media (max-width: 767px) {
  #multimedia-browser .row .media-thumbnail {
    display: block;
    float: none !important;
    margin: 1em 0;
    width: 100%;
  }
}

.ieold .ieoldonly {
  display: block !important;
}

.ie .ieonly {
  display: block !important;
}

.ie .notie {
  display: none !important;
}

.ie11 .ieonly {
  display: block !important;
}

.ie11 .notie {
  display: none !important;
}

.ie10 .ieonly {
  display: block !important;
}

.ie10 .notie {
  display: none !important;
}

.ie9 .ieonly {
  display: block !important;
}

.ie9 .notie {
  display: none !important;
}

.ie8 .ieonly {
  display: block !important;
}

.ie8 .notie {
  display: none !important;
}

.ie7 .ieonly {
  display: block !important;
}

.ie7 .notie {
  display: none !important;
}

.ie6 .ie7only {
  display: block !important;
}

.ie6 .navbar-toggle {
  display: block !important;
}

/*newsroom*/
.newsroom__title {
  color: #000;
  text-transform: uppercase;
}

.newsroom__section {
  display: flex;
  flex-flow: row-reverse;
}

.newsroom__nav {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-top: 16.2rem;
}

.newsroom__nav-list-item {
  background-image: url(/themes/correa/images/pattern.png);
  color: #fff;
  background-color: #f88b06;
  margin: 0 0 3rem 0;
  min-width: 20rem;
  transition: 0.3s background-color ease-in;
}

.newsroom__nav-list-item:hover {
  background-color: rgb(90%, 43%, 12%);
}

#typenav.newsroom__typenav.affix {
  top: 20rem;
  -webkit-transition: top 2s;
  transition: top 2s;
}

.newsroom__nav-list-item.active,
#typenav .newsroom__nav-list-item.active .newsroom__nav-link {
  background-color: rgb(90%, 43%, 12%);
  background-image: url(/themes/correa/images/pattern.png);
  color: #fff;
  transition: 0.3s background-color ease-in;
}

#typenav .newsroom__nav-list-item.active .newsroom__nav-link:before {
  content: '';
}

.newsroom__nav,
#typenav .newsroom__nav-list-item .newsroom__nav-link {
  color: #fff;
  font-weight: bolder;
}

.newsroom__aside {
  flex: 2;
  margin: 0;
}

.newsroom__header {
  text-align: right;
  text-transform: uppercase;
}

.newsroom__header :not(:first-child) {
  padding-top: 6rem;
}

.newsroom__header-link {
  color: #000;
}

.newsroom__article {
  background-color: rgb(96%, 96%, 96%);
  border-right: 4px solid rgb(90%, 43%, 12%);
  box-sizing: border-box;
  padding: 2rem 2rem;
  position: relative;
}

.newsroom__link {
  color: #000;
  text-transform: uppercase;
}

.newsroom__date {
  position: absolute;
  right: 3rem;
}

.newsroom__title {
  padding-top: 4rem;
}

#breadcrumb>ol li:first-child,
.nobreadcrumbs #breadcrumb a {
  display: inline-block;
}

#filterbuttons a {
  color: #fff;
  background-color: #f88b06;
  background-image: url(/themes/correa/images/pattern.png);
  margin: 0 0 3rem 0;
  min-width: 20rem;
}

#filterbuttons a:hover {
  background-color: rgb(90%, 43%, 12%);
  background-image: url(/themes/correa/images/pattern.png);
  color: #fff;
}

#filterbuttons a:nth-child(1) {
  margin: 0px 15px 0px 0px;
}

#newscontent #press .title a,
#newscontent #letters .title a,
#newscontent #news .title a {
  color: #000;
  text-transform: uppercase;
}

#newscontent .subtitle {
  color: #F68B20;
  font-family: 'Lora Bold';
  font-style: italic;
}

#default #filtermodal .modal-backdrop.in {
  opacity: .98;
  background-color: rgb(22%, 34%, 72%);
}


body.accomplishments .orange_circle{
  color:#ffffff; 
  font-size: 3.8em; 
  font-family: serif; 
  background: #F68B20;
  border-radius: 0.8em; 
  -moz-border-radius: 0.8em; 
  -webkit-border-radius: 0.8em; 
  display: inline-block; 
  font-weight: bold; 
  line-height: 1.6em; 
  text-align: center; 
  width: 1.6em;
}

body.accomplishments .breakout{
    display: inline-block;
    background-color: #fcf0e2;
    padding: 3rem;
    margin-bottom: 20px;
    width: 100%;
    min-height: 170px;
}

body.accomplishments .breakout .item{
margin-bottom: 2rem;
}

body.accomplishments .event_title {
  color: #F68B20;
}

/* ---  Landing Page Styles */
body#landing_page{
max-width: 1800px;
background-color: #b9b8b8;
}

body#landing_page #header{
display: none;

}

body#landing_page .landing__holder{
display: block;
overflow: hidden;
height: 100%;
width: 100%;
padding-bottom: 0;
max-width: 100%;
}

body#landing_page .landing__background{

background-size: cover;
width: 100%;
background-repeat: no-repeat;
height: 100%;
background-position: center;
position: relative;

}

@media (max-width: 991px) {

body#landing_page .landing__background{
height: 100%;
max-height: 100%;
position: relative;
overflow: auto;
background-position: left;
padding-bottom: 0;
}

}

@media (max-width: 630px) {
  body#landing_page .landing__background{
    background-position-x: 25%;
  } 
}

body#landing_page .landing__whitespace{
position: absolute;
z-index: 0;
top: -10rem;
width: 100rem;
height: 200rem;
right: -1%;
background-color: white;
border-left: 5rem solid #F68B20;
transform: rotate(20deg);
transition: transform .2s ease-in-out;
}

body#landing_page.orange .landing__whitespace{
  background-color: #FCF0E3;
}

@media (max-width: 1725px) {
  body#landing_page .landing__whitespace{
    right: -3%;
  }
}

@media (max-width: 1650px) {
  body#landing_page .landing__whitespace{
    right: -7%;
  }
}

@media (max-width: 1530px) {
  body#landing_page .landing__whitespace{
    right: -12%;
  }
}
@media (max-width: 1400px) {
body#landing_page .landing__whitespace{
transform: rotate(25deg);
}

}
@media (max-width: 1300px) {
body#landing_page .landing__whitespace{
transform: rotate(30deg);
}
}

@media (max-width: 1200px) {
body#landing_page .landing__whitespace{
transform: rotate(33deg);
}
}

@media (max-width: 991px) {
body#landing_page .landing__whitespace{
display: none;
}
}

body#landing_page.orange .landing__orangespace{
 display: none;
  }

  @media (max-width: 991px) {
  body#landing_page.orange .landing__orangespace{
  position: absolute;
  display: block;
  z-index: -1;
  bottom: -125rem;
  width: 140rem;
  height: 115rem;
  right: -30rem;
  background-color: #FCF0E3;
  border-left: 0;
  transform: rotate(-20deg);
  }
}
body#landing_page .landing__maincontent{
position: absolute;
bottom: 2rem;
z-index: 10;
width: 100%;
max-width: 1300px;
margin: 0 auto;
left: 0;
right: 0;
}

@media (max-width: 991px) {
  body#landing_page .landing__content{
    display:flex;
    flex-direction: column-reverse;
  }
}


@media (max-width: 1300px) {
body#landing_page .landing__maincontent{
padding: 0 2rem;
}

}

@media (max-width: 991px) {
  body#landing_page .landing__maincontent{
    margin-top: 55rem;
    position: relative;
    background-color: white;
    bottom: 0;
    display: table;
    padding-bottom: 50px;
    overflow: hidden;
  }
}
@media (max-width: 630px) {
  body#landing_page .landing__maincontent{
    margin-top: 50rem;
  } 
}

body#landing_page .landing__logo {

width: 100%;
display: block;
text-align: center;
padding: 33px 0;
position: relative;
z-index: 5;

}

@media (max-width: 991px) {
body#landing_page .landing__logo {
position: absolute;
top: 0;
}
}

body#landing_page .landing__logo img {

width: 100%;
max-width: 300px;

}

@media (max-width: 1150px) {
body#landing_page .landing__logo img {
max-width: 250px;
}

}

@media (max-width: 991px) {
  body#landing_page .landing__logo img {
    max-width: 330px;
  }
}

body#landing_page .landing__form{
background-color: white;
border-radius: 5px;
padding: 1rem;
box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.75);
width: 100%;
max-width: 500px;
display: table;
position: absolute;
bottom: 0;
right: 0;
}


@media (max-width: 991px) {
  body#landing_page .landing__form{
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    float: none;
    display: table;
    position: relative;
    bottom: 0;
    padding: 0;
  }
}

@media (max-width: 991px) {
  body#landing_page.orange .landing__form{
    background-color: transparent;
  }
}


body#landing_page #newsletter-confirmation{
background-color: white;
border-radius: 5px;
padding: 0;
box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.75);
width: 100%;
max-width: 500px;
float: right;
display: table;
position: relative;
bottom: -18rem;
opacity: 0;
transition: opacity .3s ease-in;
}

@media (max-width: 991px) {
body#landing_page #newsletter-confirmation{
box-shadow: none;
width: 100%;
max-width: 100%;
float: none;
display: table;
position: relative;
bottom: 0;
}

}
body#landing_page #newsletter-confirmation.active{
opacity: 1;
padding: 4rem;
}

body#landing_page .landing__form h2{
color: #F68B20;
font-size: 28px;
} 

body#landing_page .landing__form label{
font-size: 14px;
}

body#landing_page .landing__form input{
height: 45px;
width: 100%;
}

body#landing_page .landing__form .bottomrow .item{
padding: 0;
padding-right: 10px;
}

body#landing_page .landing__form .bottomrow .item:last-child{
padding-right: 0px;
}

@media (max-width: 767px) {
  body#landing_page .landing__form .bottomrow .item{
    padding: 0;
    padding-right: 0px;
  }
}

body#landing_page .landing__form .submit{
background-color: #6DBE45;
color: white;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 700;
text-transform: uppercase;
padding: 0;
margin-top: 0;
}

@media (max-width: 991px) {
body#landing_page .landing__form .submit__button{
width: 100%;
display: block;
text-align: center;
}
}

@media (max-width: 991px) {
body#landing_page .landing__form .submit{
max-width: 150px;
margin: 0 auto;
}
}

body#landing_page .landing__form .submit:hover{
background-color: #F68B20;
}

body#landing_page .landing__maintext{
width: 100%;
max-width: 430px;
position: absolute;
right: 0;
bottom: 0;
padding-bottom: 3rem;
}

@media (max-width: 991px) {
body#landing_page .landing__maintext{
  float: none;
  max-width: 100%;
  position: relative;
}
}

body#landing_page .landing__maintext .amend-textarea{
  width: 100%;
  max-width: 400px;
}

body#landing_page .landing__maintext .amend-textarea ul{
  margin-bottom: 30px;
}

body#landing_page .landing__maintext .amend-textarea ul li{
  margin-bottom: 10px;
}

body#landing_page .landing__maintext .amend-textarea .check i{
  padding: 5px;
  background-color: #6DBE45;
  border-radius: 2px;
  color: white;
  font-size: 12px;
  margin-right: 10px;
}

@media (max-width: 991px) {
  body#landing_page .landing__maintext .amend-textarea{
    max-width: 100%;
  }
}


body#landing_page .landing__maintext .main_page_title{
  color: #F68B20;
  font-size: 32px;
  margin-bottom: 3rem;
}

@media (max-width: 991px) {
  body#landing_page .landing__maintext .main_page_title{
    color: white;
    font-size: 30px;
    margin-bottom: 3rem;
    padding: 1.5rem 0;
    margin-top: 0;
    background-color: #F68B20;
    position: relative;
  }

  body#landing_page .landing__maintext .main_page_title:before{
    content: '';
    width: 100px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100px;
    background-color: #F68B20;
  }
  body#landing_page .landing__maintext .main_page_title:after{
    content: '';
    width: 100px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -100px;
    background-color: #F68B20;
  }
}


body#landing_page .landing__footer--subtext{
  font-size: 12px;
  color: white;
  font-family: 'Source Sans Pro', sans-serif;
  padding: 1rem 3rem;
  width: 100%;
  max-width: 500px;
}

@media (max-width: 991px) {
  body#landing_page .landing__footer--subtext{
    color: black;
    font-size: 16px;
    padding: 0;
    max-width: 100%;
  }
}

body#landing_page .landing__footer--subtext a{
  color: white;
}
@media (max-width: 991px) {
  body#landing_page .landing__footer--subtext a{
    color: black;

  }
}

body#landing_page .landing__footer--subtext a:hover{
  color: white;
  text-decoration: underline;
}

@media (max-width: 991px) {
  body#landing_page .landing__footer--subtext a:hover{
    color: black;
    text-decoration: underline;
  }
}

body#landing_page .landing__footer--button {
  text-align: right;
}

@media (max-width: 991px) {
  body#landing_page .landing__footer--button {
    text-align: center;
    padding-top: 8rem;
  }
}

body#landing_page .landing__footer--button .btn{
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 15px;
}


/*clean landing page */

body#landing_clean{
  max-width: 100%;
  background-color: #b9b8b8;
  }
  
  body#landing_clean #header{
  display: none;
  
  }
  
  body#landing_clean .landing__holder{
  display: block;
  
  }

  @media(max-width:991px){
    body#landing_clean .landing__holder{
      padding-bottom: 20px; 
    }
  }
  

  body#landing_clean .landing__maincontent{
  position: relative;
  
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;

  }
  
 
  
  @media (max-width: 1300px) {
  body#landing_clean .landing__maincontent{
  padding: 0 2rem;
  }
  
  }
  
  @media (max-width: 991px) {
    body#landing_clean .landing__maincontent{
      margin-top: 0rem;
      position: relative;
      background-color: white;
      bottom: 0;
      display: table;
      padding-bottom: 50px;
      overflow: hidden;
    }
  }


  
  body#landing_clean .landing__logo {
  
  width: 100%;
  display: block;
  text-align: center;
  padding: 35px;
  position: relative;
  z-index: 5;
  
  }
  
  @media (max-width: 991px) {
  body#landing_clean .landing__logo {
  position: relative;
  top: 0;
  }
  }
  
  body#landing_clean .landing__logo img {
  
  width: 100%;
  max-width: 300px;
  
  }
  
  @media (max-width: 1150px) {
  body#landing_clean .landing__logo img {
  max-width: 300px;
  }
  
  }
  
  @media (max-width: 991px) {
    body#landing_clean .landing__logo img {
      max-width: 280px;
    }
  }

  @media (max-width: 767px) {
    body#landing_clean .landing__logo img {
      max-width: 250px;
    }
  }
  
  body#landing_clean .landing__form{
  background-color: white;
  padding: 1rem;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  display: table;
  position: relative;
  
  }

  @media (max-width: 991px) {
    body#landing_clean .landing__form {
      max-width: 100%;
      padding: 0rem;
    }
  }
  

  
  
  body#landing_clean #newsletter-confirmation{

  padding: 0;

  width: 100%;
  float: right;
  display: table;
  position: relative;
  opacity: 0;
  transition: opacity .3s ease-in;
  }
  
  @media (max-width: 991px) {
  body#landing_clean #newsletter-confirmation{
  box-shadow: none;
  width: 100%;
  max-width: 100%;
  float: none;
  display: table;
  position: relative;
  bottom: 0;
  }
  }

  body#landing_clean #newsletter-confirmation.active{
  opacity: 1;
  padding: 4rem;
  }
  
  body#landing_clean .landing__form h2{
  color: #F68B20;
  font-size: 28px;
  } 
  
  body#landing_clean .landing__form label{
  font-size: 14px;
  }
  
  body#landing_clean .landing__form input{
  height: 45px;
  width: 100%;
  }
  
  body#landing_clean .landing__form .bottomrow .item{
  padding: 0;
  padding-right: 10px;
  }
  
  body#landing_clean .landing__form .bottomrow .item:last-child{
  padding-right: 0px;
  }
  
  @media (max-width: 767px) {
    body#landing_clean .landing__form .bottomrow .item{
      padding: 0;
      padding-right: 0px;
    }
  }
  
  body#landing_clean .landing__form .submit{
  background-color: #6DBE45;
  color: white;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0;
  margin-top: 0;
  font-size: 18px;
  }
  
  @media (max-width: 991px) {
  body#landing_clean .landing__form .submit__button{
  width: 100%;
  display: block;
  text-align: center;
  }
  }
  
  @media (max-width: 991px) {
    body#landing_clean .landing__form .submit{
    max-width: 150px;
    margin: 0 auto;
    }
  }
  
  body#landing_clean .landing__form .submit:hover{
  background-color: #F68B20;
  }
  
  body#landing_clean .landing__maintext{
  width: 100%;
  padding-bottom: 3rem;
  max-width: 500px;
  margin: 0 auto;
  }
  
  @media (max-width: 991px) {
    body#landing_clean .landing__maintext{
      float: none;
      max-width: 100%;
      position: relative;
    }
  }
  
  body#landing_clean .landing__maintext .amend-textarea{
    width: 100%;

  }
  
  body#landing_clean .landing__maintext .amend-textarea ul{
    margin-bottom: 30px;
  }
  
  body#landing_clean .landing__maintext .amend-textarea ul li{
    margin-bottom: 10px;
  }
  
  body#landing_clean .landing__maintext .amend-textarea .check i{
    padding: 5px;
    background-color: #6DBE45;
    border-radius: 2px;
    color: white;
    font-size: 12px;
    margin-right: 10px;
  }
  
  @media (max-width: 991px) {
    body#landing_clean .landing__maintext .amend-textarea{
      max-width: 100%;
    }
  }
  
  
  body#landing_clean .landing__maintext .main_page_title{
    color: #F68B20;
    font-size: 32px;
    margin-bottom: 3rem;
  }
  
  @media (max-width: 991px) {
    body#landing_clean .landing__maintext .main_page_title{
      color: #F68B20;
      font-size: 30px;
      margin-bottom: 3rem;
      padding: 1.5rem 0;
      margin-top: 0;

      position: relative;
    }
  }

  body#landing_clean .landing__footer{
    background-color: #FCF0E3;
    display: table;
    width: 100%;
  }

  @media (max-width: 991px) {
    body#landing_clean .landing__footer{
      background-color: #fff;
    }

  }

  body#landing_clean .landing__footer--holder{
    display: table;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  body#landing_clean .landing__footer--column{
    padding: 0;
  }

  @media (max-width: 991px) {
    body#landing_clean .landing__footer.first{
     padding: 15px;
    }
  }

  body#landing_clean .landing__footer--subtext{
    font-size: 12px;
    color: black;
    font-family: 'Source Sans Pro', sans-serif;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  
  
  @media (max-width: 991px) {
    body#landing_clean .landing__footer--subtext{
      color: black;
      font-size: 16px;
      max-width: 100%;
    }
  }
  
  body#landing_clean .landing__footer--subtext a{
    color: black;
  }
  @media (max-width: 991px) {
    body#landing_clean .landing__footer--subtext a{
      color: black;
  
    }
  }
  
  body#landing_clean .landing__footer--subtext a:hover{
    color: black;
    text-decoration: underline;
  }
  
  @media (max-width: 991px) {
    body#landing_clean .landing__footer--subtext a:hover{
      color: black;
      text-decoration: underline;
    }
  }
  
  
  body#landing_clean .landing__footer--button {
    text-align: right;
    width: 100%;
    margin: 0 auto;
    max-width: 500px;
    padding: 3rem;
  }
  
  @media (max-width: 991px) {
    body#landing_clean .landing__footer--button {
      text-align: center;
      padding: 2rem;
      background-color: #FCF0E3;
      max-width: 100%;
    }
  }
  
  body#landing_clean .landing__footer--button .btn{
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 15px;
  }
  
