@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

.animated.infinite {
  animation-iteration-count: infinite; }

.animated.hinge {
  animation-duration: 2s; }

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s; }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0); }
  70% {
    animation-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 {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
.flash {
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    transform: scale3d(1, 1, 1); } }
.pulse {
  animation-name: pulse; }

@keyframes rubberBand {
  from {
    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); }
  to {
    transform: scale3d(1, 1, 1); } }
.rubberBand {
  animation-name: rubberBand; }

@keyframes shake {
  from, to {
    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 headShake {
  0% {
    transform: translateX(0); }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    transform: translateX(2px) rotateY(3deg); }
  50% {
    transform: translateX(0); } }
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake; }

@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); }
  to {
    transform: rotate3d(0, 0, 1, 0deg); } }
.swing {
  transform-origin: top center;
  animation-name: swing; }

@keyframes tada {
  from {
    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); }
  to {
    transform: scale3d(1, 1, 1); } }
.tada {
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    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); }
  to {
    transform: none; } }
.wobble {
  animation-name: wobble; }

@keyframes jello {
  from, 11.1%, to {
    transform: none; }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }
.jello {
  animation-name: jello;
  transform-origin: center; }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-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); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }
.bounceIn {
  animation-name: bounceIn; }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-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); }
  to {
    transform: none; } }
.bounceInDown {
  animation-name: bounceInDown; }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-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); }
  to {
    transform: none; } }
.bounceInLeft {
  animation-name: bounceInLeft; }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    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); }
  to {
    transform: none; } }
.bounceInRight {
  animation-name: bounceInRight; }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    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); }
  to {
    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); }
  to {
    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); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }
.bounceOutDown {
  animation-name: bounceOutDown; }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }
.bounceOutLeft {
  animation-name: bounceOutLeft; }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    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); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }
.bounceOutUp {
  animation-name: bounceOutUp; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.fadeIn {
  animation-name: fadeIn; }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInDown {
  animation-name: fadeInDown; }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInDownBig {
  animation-name: fadeInDownBig; }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInLeft {
  animation-name: fadeInLeft; }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInLeftBig {
  animation-name: fadeInLeftBig; }

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInRightBig {
  animation-name: fadeInRightBig; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInUp {
  animation-name: fadeInUp; }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInUpBig {
  animation-name: fadeInUpBig; }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
.fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0); } }
.fadeOutDown {
  animation-name: fadeOutDown; }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }
.fadeOutDownBig {
  animation-name: fadeOutDownBig; }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); } }
.fadeOutLeft {
  animation-name: fadeOutLeft; }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig; }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0); } }
.fadeOutRight {
  animation-name: fadeOutRight; }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }
.fadeOutRightBig {
  animation-name: fadeOutRightBig; }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0); } }
.fadeOutUp {
  animation-name: fadeOutUp; }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }
.fadeOutUpBig {
  animation-name: fadeOutUpBig; }

@keyframes flip {
  from {
    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; }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in; } }
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip; }

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX; }

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    transform: perspective(400px); } }
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY; }

@keyframes flipOutX {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flipOutY {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY; }

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    transform: none;
    opacity: 1; } }
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out; }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in; }

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1; } }
.rotateIn {
  animation-name: rotateIn; }

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }
.rotateInDownLeft {
  animation-name: rotateInDownLeft; }

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }
.rotateInDownRight {
  animation-name: rotateInDownRight; }

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }
.rotateInUpLeft {
  animation-name: rotateInUpLeft; }

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }
.rotateInUpRight {
  animation-name: rotateInUpRight; }

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1; }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }
.rotateOut {
  animation-name: rotateOut; }

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft; }

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
.rotateOutDownRight {
  animation-name: rotateOutDownRight; }

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft; }

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    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; }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }
.hinge {
  animation-name: hinge; }

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom; }
  50% {
    transform: rotate(-10deg); }
  70% {
    transform: rotate(3deg); }
  to {
    opacity: 1;
    transform: scale(1); } }
.jackInTheBox {
  animation-name: jackInTheBox; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    transform: none; } }
.rollIn {
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
.rollOut {
  animation-name: rollOut; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
.zoomIn {
  animation-name: zoomIn; }

@keyframes zoomInDown {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    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); }
  to {
    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); }
  to {
    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); }
  to {
    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); }
  to {
    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 {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }
.slideInDown {
  animation-name: slideInDown; }

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }
.slideInLeft {
  animation-name: slideInLeft; }

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }
.slideInRight {
  animation-name: slideInRight; }

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }
.slideInUp {
  animation-name: slideInUp; }

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0); } }
.slideOutDown {
  animation-name: slideOutDown; }

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0); } }
.slideOutLeft {
  animation-name: slideOutLeft; }

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0); } }
.slideOutRight {
  animation-name: slideOutRight; }

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0); } }
.slideOutUp {
  animation-name: slideOutUp; }

.blue {
  color: #063d75; }

.lightblue {
  color: #74b3fc; }

.bluebg {
  background: #00346c; }

.greybg {
  background: #eee; }

.white {
  color: #fff; }

.beige {
  color: #807969; }

.darktext {
  color: #053d74; }

.darktext .title {
  color: #053d74; }

.darktext p {
  color: #000; }

body {
  margin: 0;
  padding: 0;
  background: #f8f8f8;
  font-family: Helvetica, sans-serif;
  color: #555454; }

a img {
  border: 0; }

img {
  max-width: 100%;
  display: block; }

p {
  line-height: 1.5;
  padding-bottom: 24px;
  font-size: 1.3em; }

.center-vert, .colorcols .col-inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }

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

.aligncenter {
  text-align: center; }

img.aligncenter {
  margin: 0 auto; }

.alignleft {
  float: left;
  margin: 0 16px 16px 0; }

.alignright {
  float: right;
  margin: 0 0 16px 16px; }

@media only screen and (max-width: 450px) {
  .alignright {
    float: none;
    margin: 0 auto; } }
a {
  color: #0062aa;
  text-decoration: none; }

a:hover {
  color: #2977d1; }

ul.nolist {
  list-style: none;
  margin: 0;
  padding: 8px 0 0 8px; }

ul.nolist li {
  padding-bottom: 8px; }

@media only screen and (max-width: 800px) {
  .no-mobile {
    display: none; } }
.btn, button {
  cursor: pointer;
  background: #fff;
  color: #0062aa;
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
  padding: 16px;
  border: 0;
  display: inline-block;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
  text-transform: uppercase; }

.btn:hover, button:hover {
  background: #fff;
  color: #2977d1; }

.btn:hover a {
  color: #2977d1; }

.btn.dark, button.dark {
  color: #fff;
  background: #0062aa; }
  .btn.dark:hover, button.dark:hover {
    background: #2977d1; }

.btn.babybluebtn, button.babybluebtn {
  color: #fff;
  background: #2977d1; }
  .btn.babybluebtn:hover, button.babybluebtn:hover {
    background: #063d75;
    color: #FFF; }

.btn.lightbluebtn, button.lightbluebtn {
  color: #fff;
  background: #7eacdf; }
  .btn.lightbluebtn:hover, button.lightbluebtn:hover {
    background: #063d75;
    color: #FFF; }

.inline-list, .main-menu-wrap {
  margin: 24px 0;
  padding: 0;
  list-style: none; }

.inline-list li, .main-menu-wrap li {
  display: inline-block;
  margin-right: 2em; }

.pipe-list li {
  padding-right: 1em;
  margin-right: 1em;
  border-right: 1px solid #666; }

.pipe-list li:last-child, .pipe-list li.no-border {
  border: none; }

.arrowed li {
  background: none;
  padding-left: 26px;
  background-size: auto 100%;
  margin-bottom: 12px; }

.arrowed li::before {
  content: ' > ';
  display: inline-block;
  color: #ffe126;
  margin-right: 0.5em; }

h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  padding: 0; }

.h1, .h2, .h3, .h4, .h5, .h6 {
  padding: 0;
  line-height: 1.2; }

.h1 {
  font-size: 42px;
  font-weight: normal;
  margin: 12px 0; }

.h2 {
  font-size: 32px;
  font-weight: normal;
  margin: 8px 0; }

.h3 {
  font-size: 27px;
  text-transform: uppercase;
  font-weight: normal;
  margin: 8px 0; }

.h4 {
  font-size: 26px;
  font-weight: normal;
  margin: 8px 0;
  padding: 0 0 16px 0; }

.h5 {
  font-size: 20px;
  font-weight: normal; }

@media only screen and (max-width: 600px) {
  .h1 {
    font-size: 36px; } }
.table {
  border-collapse: collapse;
  margin-top: 24px;
  width: 100%; }
  .table td, .table th {
    padding: 12px 6px;
    border: 1px solid #ccc;
    text-align: center; }
  .table img {
    display: inline-block;
    max-width: 20px; }

.table-wrap {
  overflow-x: auto; }

header {
  width: 100%;
  max-width: 1680px;
  top: 0;
  background: #fff;
  vertical-align: bottom;
  overflow: hidden; }

#logo {
  float: left;
  max-width: 130px;
  margin: 25px 0 0 45px; }

.top-links {
  float: right; }
  .top-links .search {
    text-transform: none;
    color: #666;
    padding: 0;
    font-size: 1em;
    font-weight: 400; }
    .top-links .search:hover {
      color: #999; }
    .top-links .search:after {
      content: '';
      background: url("i/search-dark.png");
      background-size: cover;
      display: inline-block;
      width: 16px;
      height: 16px;
      margin-left: 6px;
      vertical-align: middle; }

.top-links a {
  color: #666; }

.top-links .btn {
  padding-top: 14px;
  padding-bottom: 12px;
  border-radius: 2px; }

.main-menu-wrap {
  clear: right;
  font-family: "brandon-grotesque",sans-serif;
  float: right;
  text-transform: uppercase;
  font-size: 1.2em; }
  .main-menu-wrap .current-menu-item a, .main-menu-wrap .current-menu-parent a {
    color: #74b3fc; }
  .main-menu-wrap a:hover {
    color: #db030d; }
  .main-menu-wrap li {
    margin-right: 1.8em; }
  .main-menu-wrap .sub-menu, .main-menu-wrap .mobile-only {
    display: none; }

.nav-toggle {
  color: #063d75;
  display: none; }

.nav-toggle .icon-bar {
  background: #063d75;
  width: 100%;
  height: 3px;
  display: block;
  margin: 4px 0; }

.mobile-menu > div {
  padding: 12px 4%; }
.mobile-menu form {
  padding-top: 12px; }
.mobile-menu input {
  font-size: 1em;
  padding: 11px 2px 11px 2px; }
.mobile-menu button {
  vertical-align: top; }
.mobile-menu ul {
  margin: 0;
  padding: 0; }
  .mobile-menu ul li {
    border: 0; }
    .mobile-menu ul li * {
      vertical-align: middle; }
.mobile-menu img {
  max-width: 10%;
  display: inline-block; }

@media only screen and (max-width: 1200px) {
  .main-menu-wrap {
    font-size: 1.1em; }
    .main-menu-wrap li {
      margin-right: 1.15em; } }
@media only screen and (max-width: 1000px) {
  .main-menu-wrap {
    font-size: 1em; }
    .main-menu-wrap li {
      margin-right: 1em; } }
@media only screen and (max-width: 920px) {
  .main-menu-wrap {
    position: absolute;
    right: -110%;
    width: 35%;
    min-width: 150px;
    box-shadow: 0 18px 18px rgba(5, 56, 111, 0.8);
    top: 119px;
    transition: right 0.3s;
    z-index: 1000;
    background: #f5f5f5;
    display: none; }
    .main-menu-wrap ul {
      margin: 0;
      padding: 0; }
    .main-menu-wrap .menu-main-menu-container > ul > li.menu-item-has-children > a:after {
      font-size: 14px;
      content: '▼';
      float: right;
      transform: rotate(0deg);
      transition: transform 300ms; }
    .main-menu-wrap .menu-main-menu-container > ul > li.menu-item-has-children.open > a:after {
      transform: rotate(180deg); }
    .main-menu-wrap li {
      display: block;
      border-top: 1px solid #ccc;
      margin-right: 0; }
      .main-menu-wrap li a {
        display: block;
        padding-top: 10px;
        padding-left: 4%;
        padding-right: 4%;
        padding-bottom: 10px; }
    .main-menu-wrap .mobile-only {
      display: block;
      border-top: 1px solid #ccc; }
    .main-menu-wrap .sub-menu {
      display: none; }
      .main-menu-wrap .sub-menu li {
        margin-bottom: 4px;
        border-top: 1px solid #ddd; }
      .main-menu-wrap .sub-menu a {
        padding-left: 24px;
        color: #0062aa; }
      .main-menu-wrap .sub-menu .current-menu-item a {
        color: #74b3fc; }
    .main-menu-wrap .opening .sub-menu {
      display: block;
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.3s;
      font-size: 0.9em; }
    .main-menu-wrap li.open.opening ul.sub-menu {
      max-height: 500px; }

  .opening .main-menu-wrap {
    display: block; }

  .open .main-menu-wrap {
    right: 0; }

  .nav-toggle {
    display: block;
    float: right;
    clear: right;
    margin-right: 2em; }

  .top-links {
    margin-bottom: 6px; }

  #logo {
    max-width: 100px;
    margin: 25px 0 0 5%; } }
@media only screen and (max-width: 750px) {
  .top-links li:first-child, .top-links li:nth-child(2), .top-links li:nth-child(3) {
    display: none; } }
@media only screen and (max-width: 500px) {
  .top-links li:nth-child(4) {
    display: none; }

  .top-links button {
    font-size: 0.6em; }

  .main-menu-wrap {
    top: 116px;
    width: 100%; } }
/* DO NOT EDIT VIA WP, CHANGES WILL GET OVERWRITTEN */
.disclaimer {
  font-size: 0.75em; }

.gradientbg {
  background: #fff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #eee 0%, #fff 10%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #eee 0%, #fff 10%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #eee 0%, #fff 10%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }

.stdalign {
  max-width: 40%; }

.content a {
  font-weight: bold; }

.block:after {
  display: block;
  content: "";
  clear: both; }

.block.no-clear:after {
  clear: none; }

.pad-lg {
  padding: 48px 0; }

.stdblock, .pad-med {
  padding: 36px 0; }

.stdblock img {
  height: auto; }

.ruledblock .block-inner {
  overflow: auto;
  padding-bottom: 36px;
  border-bottom: 1px solid #000; }

.stdblock.ruledblock {
  padding-bottom: 0; }

.checks, .arrowed {
  list-style: none;
  margin: 0;
  padding: 0 0 20px 0; }

.checks li {
  margin-bottom: 10px; }

.checks img.check {
  vertical-align: top;
  max-width: 20px;
  width: 5%;
  margin-right: 8px;
  display: inline-block; }

.checks .check-content {
  display: inline-block;
  width: 91%;
  margin-top: 1px;
  line-height: 1.2; }

.title {
  font-family: "brandon-grotesque", sans-serif; }

.bordertitle {
  border: 5px solid #000;
  border-width: 5px 0; }

.sr-only, .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }
  .sr-only:focus, .screen-reader-text:focus {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: auto;
    height: auto;
    display: inline-block;
    background: #333;
    color: #eee;
    overflow: visible;
    text-decoration: underline;
    clip: initial;
    padding: 12px; }

.wrap {
  overflow: hidden;
  position: relative;
  max-width: 1680px;
  background: #fff;
  margin: 0 auto;
  transition: background 0.3s; }

.wrap.active .wrap-overlay {
  content: ' ';
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  opacity: 0.95; }

.search-nav {
  padding: 0;
  background: url("i/slsearch.jpg") no-repeat top left;
  background-size: cover; }

.login-nav {
  padding: 0;
  background: #1d8ce1; }

.login-nav .header {
  color: #fff;
  font-size: 16px;
  position: absolute;
  top: 200px;
  left: 25%;
  width: 40%; }

.login-nav .header span {
  padding-bottom: 16px;
  font-size: 40px;
  display: block; }

.login-nav .login-inner::before, .dropnav .dropnav-inner:before {
  content: ' ';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: #197fce; }

.login-nav .login-inner, .dropnav .dropnav-inner {
  width: 100%;
  height: 100%;
  background-image: url("i/login-bg.jpg");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 25% auto;
  border-right: 25px solid #197fce;
  box-sizing: border-box; }

.login-nav .login-inner {
  min-height: 550px;
  position: relative; }

.location-form {
  background: #1b81d0;
  padding: 8px;
  width: 80%;
  margin: 0 auto 36px auto; }

.dropnav .contact {
  width: 80%;
  margin: 0 auto; }

.location-nav form, .call-nav form {
  border: 1px solid #fff;
  text-align: center;
  padding-bottom: 12px; }

.location-nav a:hover, .call-nav a:hover {
  color: #fff; }

.location-nav .h1:before {
  content: ' ';
  display: inline-block;
  background: url("i/locate.png") no-repeat top left;
  width: 40px;
  height: 34px;
  margin-right: 4px;
  background-size: auto 100%;
  margin-top: 6px;
  vertical-align: top; }

.location-nav input, .call-nav input, .branch-hero input {
  width: 40%;
  padding: 13px 13px 14px 13px;
  vertical-align: middle;
  font-size: 16px;
  border: 0;
  border-radius: 6px; }

.dropnav {
  color: #fff; }

.location-nav .col:nth-child(2), .call-nav .col:nth-child(2) {
  border: 1px solid #053d74;
  border-width: 0 1px; }

header button:focus {
  outline: 1px dotted #fff; }

.content {
  background: #fff;
  background-position: center bottom;
  background-size: 100% auto;
  background-repeat: no-repeat; }

.breadcrumbs {
  max-width: 1000px;
  margin: 0 auto 12px auto;
  padding: 0; }

.no-hero .breadcrumbs {
  margin-top: 24px; }

.breadcrumbs li {
  display: inline-block; }

.breadcrumbs a {
  font-weight: 400;
  color: #7a7a7a; }

.breadcrumbs a:hover {
  color: #35a1f5; }

.breadcrumbs li::after {
  content: ' | ';
  padding: 0 12px;
  display: inline-block; }

.breadcrumbs li:last-child::after {
  display: none; }

.block-inner {
  max-width: 1000px;
  margin: 0 auto; }

@media only screen and (max-width: 1000px) {
  .block-inner {
    max-width: 94%; }

  .breadcrumbs {
    width: 94%;
    margin-right: 3%;
    margin-left: 3%; } }
.full .block-inner {
  max-width: none; }

.home-roots .block-inner:before {
  content: ' ';
  background: url("i/home-root-top.png") no-repeat top center;
  background-size: 100% auto;
  display: block;
  height: 24px; }

.home-roots .block-inner:after {
  content: ' ';
  background: url("i/home-root-bot.png") no-repeat top center;
  background-size: 100% auto;
  display: block;
  height: 24px; }

.home-roots {
  color: #807969;
  text-align: center;
  line-height: 1.5;
  font-size: 18px;
  padding: 50px 0 100px; }

@media only screen and (max-width: 600px) {
  .home-roots {
    padding: 25px 0 50px; } }
.block.photo-block img {
  width: 25%;
  float: left; }

.block.photo-block .main {
  width: 49%;
  margin-right: 2%; }

.block.photo-block .tr {
  width: 49%;
  margin-bottom: 2%; }

.block.photo-block .mid {
  margin-right: 2.2%; }

.block.photo-block .mid,
.block.photo-block .br {
  width: 23.4%; }

@media only screen and (max-width: 600px) {
  .block.photo-block .main,
  .block.photo-block .tr {
    margin: 0 0 12px 0;
    width: 100%; }

  .block.photo-block .mid {
    margin-right: 2%; }

  .block.photo-block .mid,
  .block.photo-block .br {
    width: 49%; } }
.block.full-image {
  position: relative; }

.block.full-image > img, .block.full-image > picture img, .two-col-img .col > img {
  width: 100%;
  display: block; }

.two-col-img .col, .full-background {
  position: relative; }

.full-image .block-inner, .two-col-img .col .block-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.lost-art .block-inner {
  text-align: center;
  height: auto;
  top: 50%;
  transform: translateY(-50%); }

.lost-art .title {
  display: inline-block;
  font-size: 32px;
  color: #ffe126;
  padding: 4px 0;
  border: 5px solid #fff;
  border-width: 5px 0; }

.lost-art .title span {
  display: block;
  font-size: 60px;
  letter-spacing: 0.9px;
  line-height: 48px;
  color: #fff; }

.lost-art div.placeholder {
  display: inline-block;
  margin: 0 20px; }

.play-button {
  height: 100px;
  width: 100px; }

.play-button path {
  transition: fill 300ms; }

.play-button:hover path {
  fill: #ffe126; }

.lost-art p {
  text-align: left;
  vertical-align: top;
  width: 26%;
  display: inline-block;
  color: #fff;
  line-height: 1.5; }

@media only screen and (max-width: 720px) {
  .lost-art .block-inner {
    position: static;
    transform: none; }

  .lost-art .block-inner a {
    position: absolute;
    top: 20%;
    left: 50%;
    margin-left: -50px; }

  .lost-art .title {
    margin: 24px 0;
    border-color: #010101; }

  .lost-art p {
    display: none; }

  .lost-art .title span {
    color: #010101; } }
@media only screen and (max-width: 360px) {
  .lost-art .block-inner a {
    position: absolute;
    top: 8%; }

  .lost-art .title {
    font-size: 28px; }

  .lost-art .title span {
    font-size: 48px; } }
.home-personal-business {
  text-align: center;
  margin-bottom: 36px; }

.two-col-img.home-personal-business .block-inner {
  top: auto;
  bottom: 24px;
  height: auto; }

.home-personal-business .title {
  color: #fff;
  font-size: 23px;
  margin-bottom: 12px; }

.home-personal-business .title :first-child {
  display: block;
  width: 40%;
  margin: 0 auto;
  font-size: 30px;
  border-bottom: 5px solid #fff;
  margin-bottom: 12px; }

.home-personal-business .title :last-child {
  display: block;
  font-size: 48px; }

@media only screen and (max-width: 900px) {
  .two-col-img.home-personal-business .block-inner {
    position: relative;
    top: -80px; } }
@media only screen and (max-width: 830px) {
  .two-col-img .col {
    width: 100%;
    float: none; }

  .two-col-img .col :last-child {
    margin-bottom: 0; } }
.local-big {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 38px; }

.local-big .title {
  width: 217px;
  display: inline-block;
  text-align: center;
  color: #807969;
  font-size: 72px;
  line-height: 1;
  border-bottom: 5px solid #000;
  vertical-align: top; }

.local-big .title .border {
  font-size: 24px;
  display: block; }

.local-big .title .placeholder {
  font-size: 108px;
  line-height: 1;
  display: block; }

.title .borderbit {
  margin: 0 auto;
  display: block; }

.title .borderbit:before,
.title .borderbit:after,
.local-big .title .border:before,
.local-big .title .border:after {
  content: ' ';
  background: #000;
  margin-left: 20px;
  display: inline-block;
  height: 5px;
  width: 42px;
  vertical-align: middle; }

.title .borderbit:before,
.local-big .title .border:before {
  margin: 0 20px 0 0; }

.local-big p {
  line-height: 1.5;
  text-align: left;
  display: inline-block;
  font-size: 16px;
  color: #030303;
  width: 38%;
  margin-left: 8%; }

@media only screen and (max-width: 500px) {
  .local-big .title {
    display: block;
    margin: 0 auto; }

  .local-big p {
    margin: 12px 0 0 0;
    width: auto; } }
.block.mobile-banking {
  color: #00346c; }

.mobile-banking .block-inner {
  left: 35%;
  right: 30%;
  top: 30%;
  width: auto; }

.mobile-banking .title {
  font-size: 48px; }

.mobile-banking .placeholder {
  font-size: 20px;
  display: block;
  margin-bottom: 12px; }

.mobile-banking ul {
  list-style: none;
  padding: 0 0 24px 0;
  margin: 0;
  width: 80%;
  -webkit-column-count: 2;
  /* Chrome, Safari, Opera */
  -moz-column-count: 2;
  /* Firefox */
  column-count: 2;
  column-rule: 1px solid  #00346c; }

@media only screen and (max-width: 1100px) {
  .mobile-banking .title {
    font-size: 30px;
    line-height: 1.1; } }
@media only screen and (max-width: 900px) {
  .mobile-banking .block-inner {
    top: 22%; }

  .mobile-banking {
    font-size: 14px; }

  .mobile-banking .placeholder {
    font-size: 18px; } }
@media only screen and (max-width: 780px) {
  .mobile-banking .block-inner {
    max-width: 380px;
    margin: 24px auto;
    position: static; } }
@media only screen and (max-width: 500px) {
  .mobile-banking .block-inner {
    max-width: 94%; } }
/* business_banking2.php */
.business-services {
  text-align: left;
  padding: 36px 0;
  background: #063d75;
  color: #fff; }

.business-services .title {
  font-size: 48px;
  padding: 24px 0;
  text-align: center; }

.business-services img {
  display: block;
  width: 25%;
  height: auto;
  min-width: 75px;
  margin-bottom: 18px; }

.business-services p:first-child {
  margin: 0;
  padding: 0; }

.business-services h2 {
  font-size: 30px;
  font-weight: 400; }

.business-services a {
  color: #79c3fc;
  text-decoration: none;
  display: block; }

.business-services a:hover {
  color: #ffe126; }

.business-services .col {
  vertical-align: top;
  text-align: left;
  width: 24%;
  margin: 36px 4.5%;
  display: inline-block; }
  
.switch-kit {
  text-align: left;
  padding: 36px 0;
  background: #6aade4;
  color: #fff; }

.switch-kit .title {
  font-size: 48px;
  padding: 24px 0;
  text-align: center; }

.switch-kit img {
  display: block;
  width: 25%;
  height: auto;
  min-width: 75px;
  margin-bottom: 18px; }

.switch-kit p:first-child {
  margin: 0;
  padding: 0; }

.switch-kit h2 {
  font-size: 30px;
  font-weight: 400; }

.switch-kit a {
  color: #79c3fc;
  text-decoration: none;
  display: block; }

.switch-kit a:hover {
  color: #ffe126; }

.switch-kit .col {
  vertical-align: top;
  text-align: left;
  width: 24%;
  margin: 36px 4.5%;
  display: inline-block; }

@media only screen and (max-width: 900px) {
  .business-services .col {
    width: 26.9%;
    margin: 36px 3%; } }
@media only screen and (max-width: 750px) {
  .business-services .col {
    width: 40%;
    margin: 36px 3%; } }
@media only screen and (max-width: 500px) {
  .business-services .col {
    width: 94%;
    margin: 36px 2%; } }
	
@media only screen and (max-width: 900px) {
  .switch-kit .col {
    width: 26.9%;
    margin: 36px 3%; } }
@media only screen and (max-width: 750px) {
  .switch-kit .col {
    width: 40%;
    margin: 36px 3%; } }
@media only screen and (max-width: 500px) {
  .switch-kit .col {
    width: 94%;
    margin: 36px 2%; } }
	
.treasury-management .block-inner, .adstrip-white .block-inner,
.treasury-management .title, .adstrip-white .title {
  color: #fff; }

.treasury-management .block-inner, .adstrip-right .block-inner {
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
  width: 35%;
  height: auto; }

.adstrip-right .block-inner {
  left: auto;
  right: 5%; }

.treasury-management .title, .adstrip-right .title {
  font-size: 42px;
  line-height: 1.1; }

.treasury-management p, .adstrip-right p {
  padding-bottom: 0; }

@media only screen and (max-width: 1200px) {
  .treasury-management .title, .adstrip-right .title {
    font-size: 32px; }

  .treasury-management, .adstrip-right {
    font-size: 14px;
    line-height: 1.2; } }
@media only screen and (max-width: 800px) {
  .treasury-management .block-inner, .adstrip-white .block-inner,
  .treasury-management .title, .adstrip-white .title {
    color: #000; }

  .treasury-management .block-inner, .adstrip-right .block-inner {
    position: static;
    color: #000;
    transform: none;
    padding-top: 24px;
    width: 60%; } }
@media only screen and (max-width: 550px) {
  .treasury-management .block-inner, .adstrip-right .block-inner {
    width: 100%;
    max-width: 94%; } }
/* business_checking_and_deposits.php */
.business-checking-details {
  padding: 36px 0;
  overflow: auto; }

.business-checking-details ul {
  font-size: 14px; }

.business-checking-details .col {
  min-height: 200px; }

.business-checking-details .h5 {
  margin: 0;
  padding: 0; }

.business-checking-details a:hover {
  color: #35a1f5; }

.business-checking-details .h3.bluebg {
  padding: 8px 0 2px 12px;
  line-height: 1;
  letter-spacing: 0.3px;
  margin-bottom: 24px; }

.testimonial .block-inner {
  width: 80%; }

.testimonial :last-child {
  padding-top: 24px; }

/* about.php */
.about-photo-block {
  padding: 64px 0; }

.give-back .title {
  padding: 12px 0 0 0;
  max-width: 60%;
  margin: 0 auto;
  text-align: center;
  font-size: 32px; }

.give-back span {
  display: block;
  font-size: 61px;
  margin-bottom: -8px;
  margin-top: -8px; }

.give-lower {
  padding: 36px 0;
  background: #eee url("i/give-divider.png") no-repeat center 54%;
  background-size: auto 70%; }

@media only screen and (max-width: 600px) {
  .give-lower {
    background: #eee; } }
.first-facts {
  padding-top: 48px;
  padding-bottom: 24px; }

.first-facts .borderbit {
  font-size: 42px;
  margin-bottom: 4px; }

.first-facts .title:first-child {
  line-height: 0.8;
  font-size: 120px;
  margin: 0 auto;
  width: 228px;
  border-top: 0;
  margin-bottom: 36px; }

.first-facts .h2, .first-facts .h3 {
  margin-bottom: 36px; }

.first-facts .title .borderbit:before,
.first-facts .title .borderbit:after {
  width: 54px; }

.fact-two .col {
  padding-bottom: 0px; }

.bios {
  padding-bottom: 80px;
  background: #fff; }

.bios, .gradient-back {
  background: url("i/bio-back.png") no-repeat;
  background-size: cover; }

.bios .title, .full-title .title {
  background: #289bed;
  color: #fff;
  display: inline-block;
  width: 60%;
  text-align: center;
  padding: 12px 0;
  font-size: 42px;
  position: relative;
  top: -36px; }

.full-title .title {
  width: auto;
  position: absolute;
  padding: 12px 24px;
  left: 50%;
  transform: translateX(-50%); }

.bios .title-wrap {
  text-align: center; }

.bios img {
  display: block; }

.bios .bio-row {
  overflow: auto;
  position: relative; }

.bios .col:first-child .bio-short:before {
  content: ' ';
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  height: 80px;
  background: -moz-linear-gradient(top, rgba(230, 230, 230, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(230, 230, 230, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(230, 230, 230, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  z-index: 1; }

.bios .bio-short {
  padding-bottom: 48px; }

.bios .bio-short h4 {
  padding-top: 12px;
  margin: 0;
  position: relative;
  z-index: 2; }

.bios .bio-short p {
  margin: 0;
  padding: 0 0 4px 0;
  position: relative;
  z-index: 2; }

@media only screen and (max-width: 650px) {
  .bios .col {
    display: block;
    width: auto; }

  .bios .bio-short {
    padding: 0 5%; }

  .bios .col .bio-short:before {
    content: ' ';
    display: block;
    position: absolute;
    width: 100%;
    left: 0;
    height: 80px;
    background: -moz-linear-gradient(top, rgba(230, 230, 230, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(230, 230, 230, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(230, 230, 230, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    z-index: 1; } }
.single-bio .hero {
  height: 440px;
  padding-top: 0; }

.investment-bio .hero {
  height: 344px; }

.single-bio .hero img {
  width: 360px;
  height: auto;
  position: absolute;
  left: 12%;
  bottom: 0; }

.single-bio .hero .title {
  left: 50%;
  bottom: 40%;
  background: none;
  padding: 0;
  width: auto;
  text-align: left;
  color: #010101; }

.single-bio .hero .h1 {
  text-transform: uppercase;
  margin: 0; }

.single-bio .hero-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("i/bio-back.png") no-repeat;
  background-size: cover; }

.single-bio .hero span {
  font-family: 'Helvetica Nueue', Helvetica, sans-serif; }

@media only screen and (max-width: 700px) {
  .single-bio .hero img {
    position: static;
    display: block;
    width: 60%;
    margin-left: 20%; }

  .single-bio .hero-wrap {
    position: static; }

  .single-bio .hero {
    height: auto;
    border-bottom: 0; }

  .single-bio .hero .title {
    margin-top: 12px;
    padding-left: 3%;
    width: 94%;
    position: static; } }
.news-featured {
  background: #474747;
  position: relative; }

.news-featured:after {
  content: '';
  display: table;
  height: 0;
  clear: both; }

.news-featured img {
  width: 66.6%;
  display: block;
  float: left; }

.news-featured .featured-post {
  margin-top: 40px;
  margin-left: 3%;
  padding-top: 40px;
  width: 28.3%;
  float: left;
  border-top: 5px solid #5a5a5a;
  color: #fff; }

.news-featured a, .news-featured .date {
  display: block;
  color: #fff; }

.news-featured .cat {
  color: #6dbcf9;
  margin-bottom: 6px; }

.news-featured a.featured-title {
  margin-top: 24px;
  font-size: 30px;
  line-height: 1.2; }

@media only screen and (max-width: 1000px) {
  .news-featured .featured-post {
    margin-top: 18px;
    padding-top: 0;
    border-top: 0; }

  .news-featured a.featured-title {
    font-size: 24px; } }
@media only screen and (max-width: 775px) {
  .news-featured img {
    width: 100%;
    float: none; }

  .news-featured .featured-post {
    width: 100%;
    float: none;
    padding: 18px 3% 60px 3%;
    margin: 0;
    box-sizing: border-box; } }
.news-center-two {
  margin-top: 40px;
  font-size: 14px; }

.news-center-two p {
  line-height: 1.2; }

.news-center-two .col:first-child a {
  margin-top: 32%;
  margin-left: 52%;
  margin-right: 1%;
  display: block;
  color: #6dbcf9; }

.news-center-two .col:nth-child(2) .block-inner {
  top: 17%;
  left: 8%;
  width: 42%;
  height: auto; }

.news-center-two .col:nth-child(2) p {
  padding-bottom: 6px; }

@media only screen and (max-width: 960px) and (min-width: 830px) {
  .news-center-two .col:nth-child(2) .h4 {
    font-size: 18px; } }
@media only screen and (max-width: 420px) {
  .news-center-two .col:nth-child(2) .block-inner {
    position: static;
    width: 94%;
    margin-left: 3%; } }
.news-center-feed {
  margin-top: 36px; }

.news-center-feed h2 + p {
  margin-top: 0; }

.news-center-feed span.story, .category .story, .security-newsletter .story {
  margin-bottom: 12px;
  display: block; }

.news-center-feed span.date, .category .date, .security-newsletter .date {
  display: block;
  margin-bottom: 3px; }

@media only screen and (max-width: 700px) {
  .news-center-feed .col, .news-center-feed .col:nth-child(2) {
    display: block;
    float: none;
    width: 96%;
    margin-left: 3%; } }
.single-post .main, .category .main, .two-col-sidebar .col:first-child {
  width: 66%;
  float: left; }

.single-post .sidebar, .category .sidebar, .two-col-sidebar .col:last-child {
  width: 30%;
  float: right; }

.interview-sidebar .story {
  display: block;
  margin-top: 18px; }

.interview-sidebar .date {
  display: block; }

.category .year-archive ul {
  list-style: none;
  display: inline-block;
  margin: 0 0 24px 0;
  padding: 0; }

.category .year-archive ul li {
  display: inline-block;
  padding-left: 8px; }

.category .year-archive ul li:after {
  content: ' / ';
  padding-left: 8px; }

.category .year-archive ul li:last-child:after {
  content: ''; }

.category .year-archive a {
  color: #2699f1; }

@media only screen and (max-width: 700px) {
  .single-post .main, .category .main, .two-col-sidebar .col:first-child,
  .single-post .sidebar, .category .sidebar, .two-col-sidebar .col:last-child {
    width: 100%;
    display: block;
    float: none; } }
.security-top .block-inner {
  position: static; }

.security-cols {
  margin: 40px 0; }

.security-cols .block-inner {
  border-collapse: separate;
  border-spacing: 30px; }

.security-cols .col, .security-border .block-inner, .grey-border .block-inner {
  border-top: 8px solid #ffe126;
  box-sizing: border-box; }

.grey-border .block-inner {
  border-color: #ddd; }

.security-cols .col, .box-shadow .block-inner {
  box-shadow: 0 0 18px #aaa;
  z-index: 1;
  background: #fff;
  position: relative; }

.security-cols .col, .security-cols .col:nth-child(2) {
  width: 30%;
  padding: 12px 24px;
  min-height: 500px; }

.security-cols img {
  width: 25%;
  height: auto;
  vertical-align: middle;
  margin-right: 1em; }

@media only screen and (max-width: 800px) {
  .wrap .content .security-cols .col {
    display: block;
    width: 94%;
    float: none;
    margin: 24px 3% !important;
    min-height: 0; } }
.security-newsletter .story {
  float: left;
  width: 33.33%;
  box-sizing: border-box;
  padding: 0 3%; }

.security-newsletter .story:nth-child(3n+1) {
  clear: both; }

.security-newsletter .stories {
  overflow: auto; }

.security-block .block-inner {
  overflow: auto;
  padding: 0 0 0 24px;
  z-index: 2; }

.security-block img.sec-image {
  width: 49%;
  float: right;
  margin-left: 1%; }

.padded-box-col .block-inner {
  padding: 12px 24px; }

hr {
  border-top: 1px solid #000;
  border-bottom: 0; }

.tight p {
  margin-bottom: 0;
  padding-bottom: 0; }

.tight ul {
  margin-top: 0;
  padding-top: 0; }

.tight a {
  color: #2699f1; }

.faq-cats h2 {
  margin-top: 24px; }

.faq-cat h3 {
  margin-top: 12px; }

.help-drawers-top .drawer-wrapper {
  float: left;
  width: 62%; }

@media only screen and (max-width: 700px) {
  .help-drawers-top .drawer-wrapper {
    float: none;
    width: auto; } }
dt {
  font-weight: bold;
  margin-bottom: 8px;
  margin-top: 12px; }

dd {
  margin: 0; }

dd p {
  margin: 0 0 4px 0;
  padding: 0; }

#vimeo-player {
  position: fixed;
  z-index: 301;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

#close-video {
  position: fixed;
  top: 20px;
  left: 20px;
  padding: 10px 20px;
  z-index: 302;
  display: none;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-family: "brandon-grotesque", Helvetica, sans-serif;
  font-size: 20px;
  line-height: 30px;
  cursor: pointer; }

#close-video span {
  font-size: 30px;
  display: inline-block;
  vertical-align: bottom; }

.news-center-two .col:first-child a {
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1.5; }

.news-center-two .col:first-child a:hover {
  color: #00346c; }

.faq-cat h3 {
  margin-top: 42px; }

#contact_form {
  margin-bottom: 24px; }

.two-col-sidebar .locate-form {
  margin-bottom: 24px; }

.subnav-wrap {
  position: relative; }
  .subnav-wrap .subnav.empty {
    background: none;
    height: 79px;
    max-height: 0;
    transition: max-height 0.5s;
    padding-top: 0;
    padding-bottom: 0; }
    .subnav-wrap .subnav.empty .search {
      left: 0 !important;
      width: 100% !important; }
  .subnav-wrap.search-open .subnav.empty {
    max-height: 79px; }

.subnav {
  background: #445669;
  margin: 0;
  padding: 30px 18px 30px 18px;
  text-align: center;
  position: relative;
  overflow: hidden; }
  .subnav a {
    color: #fff; }
  .subnav li {
    transition: opacity 0.3s;
    opacity: 1; }
  .subnav .active a {
    color: #74b3fc; }
  .subnav .search {
    text-align: left;
    position: absolute;
    top: 0;
    right: -79px;
    bottom: 0;
    margin: 0;
    background: #546b83;
    padding: 0;
    width: 79px;
    transition: width 0.75s, right 0.75s;
    transition-delay: 0.3s; }
    .subnav .search button.search-init {
      background: none;
      width: 79px;
      height: 79px;
      box-sizing: border-box; }
      .subnav .search button.search-init img {
        margin: 10px auto;
        width: 20px; }
    .subnav .search button.search-close {
      opacity: 0;
      transition: 0.3s opacity;
      transition-delay: 0.7s;
      position: absolute;
      right: 0;
      top: 12px;
      font-size: 1.3em;
      color: #fff;
      background: none; }

#searchform {
  display: block;
  position: absolute;
  top: 16px;
  height: 79px;
  left: 90px;
  min-width: 600px; }
  #searchform .search-nav-inner {
    margin-top: 8px; }
  #searchform input {
    width: 400px;
    background: #667889;
    font-size: 16px;
    height: 37px;
    padding-left: 12px;
    border-radius: 6px;
    border: none;
    color: #fff;
    vertical-align: bottom; }
    #searchform input::placeholder {
      color: #fff;
      opacity: 1; }
  #searchform button {
    padding: 12px 18px; }

.search-open li {
  opacity: 0; }
.search-open .search {
  right: 0;
  width: 100%;
  opacity: 1; }
.search-open .search button.search-close {
  opacity: 1; }

.search-opened li {
  transition-delay: 0.75s; }
  .search-opened li.search button.search-close {
    transition-delay: 0s; }

@media only screen and (max-width: 1300px) {
  .subnav li {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 14px;
    margin-right: 1.5em; } }
@media only screen and (max-width: 1100px) {
  .subnav li {
    padding-left: 6px;
    padding-right: 6px;
    font-size: 12px; } }
@media only screen and (max-width: 920px) {
  .subnav-wrap .subnav {
    background: none;
    height: 79px;
    max-height: 0;
    transition: max-height 0.5s;
    padding-top: 0;
    padding-bottom: 0; }
    .subnav-wrap .subnav .search {
      left: 0 !important;
      width: 100% !important; }
  .subnav-wrap.search-open .subnav {
    max-height: 79px; } }
@media only screen and (max-width: 650px) {
  #searchform {
    min-width: 0;
    width: 75%; }
    #searchform input {
      width: 71%; } }
.hero {
  position: relative;
  margin-bottom: 24px; }
  .hero:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 35%;
    z-index: 40;
    background: #455668;
    background: -webkit-linear-gradient(left, #455668 0, rgba(69, 86, 104, 0.75) 50%, rgba(69, 86, 104, 0) 100%);
    background: linear-gradient(to right, #455668 0, rgba(69, 86, 104, 0.75) 50%, rgba(69, 86, 104, 0) 100%); }
  .hero .hero-image {
    height: auto; }
  .hero .lightblue, .hero .lightblue a {
    color: #7cb8fd; }
  .hero .hero-text {
    position: absolute;
    left: 5%;
    width: 25%;
    z-index: 50; }
  .hero .pause {
    padding: 0;
    background: none;
    width: 50px;
    position: absolute;
    bottom: 2%;
    right: 12px;
    z-index: 999;
    display: block;
    fill: #fff;
    height: auto;
    opacity: 0.9;
    cursor: pointer;
    stroke: rgba(0, 0, 0, 0.3);
    stroke-width: 0.4px; }
    .hero .pause svg {
      width: 50px; }

.blog-hero:before {
  background: #455668;
  background: -webkit-linear-gradient(left, #455668 0, rgba(69, 86, 104, 0.75) 0%, rgba(69, 86, 104, 0) 0%);
  background: linear-gradient(to right, #455668 0, rgba(69, 86, 104, 0.75) 0%, rgba(69, 86, 104, 0) 0%); }

@media only screen and (max-width: 960px) {
  .hero:before {
    right: 45%; } }
@media only screen and (max-width: 800px) {
  .hero:before {
    display: none; }
  .hero .hero-image {
    width: 125%;
    margin-left: -18%;
    max-width: none; }
  .hero .hero-text {
    position: static;
    width: auto !important;
    padding: 12px 24px;
    background: #455668;
    transform: none; } }
.two-col {
  overflow: auto; }

.two-col .col {
  width: 45%;
  float: left; }

.two-col .col:first-child {
  margin-right: 10%; }

@media only screen and (max-width: 780px) {
  .two-col .col {
    width: auto;
    float: none; } }
.two-col-img .col {
  width: 50%;
  float: left; }

.threecol .col {
  width: 33.33%;
  float: left; }

.imgcols .col {
  position: relative; }

.imgcols .col-inner {
  position: absolute;
  bottom: 10%;
  width: 80%;
  left: 10%; }
  .imgcols .col-inner p:last-child {
    margin-bottom: 0;
    padding-bottom: 0; }

.flexcol.threecol .col {
  width: 33.33%; }

.flexcol.twocol .col {
  width: 50%; }

.flexcol .block-inner, .flexcol {
  display: table;
  width: 100%; }

.flexcol .col {
  display: table-cell;
  position: relative; }
  .flexcol .col img {
    width: 100%; }

.wrap .padded-three-col .col {
  box-sizing: border-box;
  width: 30%;
  padding: 0 11px 50px 11px; }

.padded-three-col .col:nth-child(2) {
  width: 36%; }

@media only screen and (max-width: 960px) {
  .wrap .flexcol .col {
    display: block;
    width: 100%;
    border-left: none;
    border-right: none; }

  .padded-three-col .col:nth-child(2),
  .wrap .padded-three-col .col {
    width: 100%;
    float: none; } }
.fourcol .col {
  box-sizing: border-box;
  width: 25%;
  padding: 0 1%;
  float: left; }

.fourcol .col:last-child {
  padding-right: 0; }

@media only screen and (max-width: 800px) {
  .fourcol .col {
    width: 50%; } }
@media only screen and (max-width: 500px) {
  .fourcol .col {
    width: 100%; } }
.contact-block {
  padding-top: 80px;
  padding-bottom: 40px; }
  .contact-block .h3 {
    margin-bottom: 24px;
    font-weight: bold; }
  .contact-block .h6 {
    font-weight: bold;
    margin-bottom: 6px; }
  .contact-block img {
    display: inline-block;
    width: 48%;
    margin-top: 8px; }

.contact-block .block-inner {
  display: table;
  border-collapse: collapse; }

.contact-block .block-inner > div {
  display: table-row;
  vertical-align: middle; }

.contact-block .title span {
  color: #4b4b4b;
  font-size: 26px;
  margin-bottom: -4px;
  display: block; }

.contact-block .col:nth-child(2) {
  width: 40%; }

.contact-block button {
  font-size: 12px;
  font-weight: 800; }

.contact-block input {
  margin-bottom: 8px;
  margin-top: 8px;
  height: 24px;
  width: 150px;
  padding: 10px 6px;
  border: 1px solid #575757;
  border-radius: 6px; }

.contact-block .col {
  width: 31%;
  padding: 3%;
  display: table-cell; }

@media only screen and (max-width: 720px) {
  .contact-block .block-inner {
    border: 0; }

  .contact-block .col:nth-child(2),
  .contact-block .col {
    border: 0;
    display: block;
    width: 100%;
    padding: 0;
    padding-bottom: 36px; } }
.top {
  background: #2977d1;
  color: #fff;
  fill: #fff;
  width: 3%;
  min-width: 25px;
  position: fixed;
  bottom: 0px;
  z-index: 999;
  opacity: 0;
  left: -100%;
  transition: opacity 0.8s; }
  .top svg {
    width: 100%;
    height: 40px;
    display: block;
    fill: #fff; }

.showBack .top {
  left: auto;
  right: 25px;
  opacity: 1; }

.footer-offer {
  display: flex;
  flex-direction: row;
  background: #2977d1;
  background-size: 32% 100%;
  color: #fff;
  position: relative; }

.footer-offer .col:first-child {
  flex: 2 0 0;
  padding: 50px 5%; }

.footer-offer .col:last-child {
  padding: 50px 5%;
  flex: 1 0 0;
  background: url("i/footer-contact.png") no-repeat top right;
  background-size: cover;
  text-align: center;
  font-size: 26px;
  font-family: "brandon-grotesque", sans-serif; }

.footer-offer .title {
  font-size: 33px;
  font-weight: 500; }

.footer-offer .col:last-child p {
  margin: 0;
  padding: 0;
  line-height: inherit;
  font-size: inherit; }

.footer-offer a {
  font-family: 'Helvetica Nueue', Helvetica, sans-serif; }

.footer-offer a.white:hover {
  color: #fff;
  text-decoration: underline; }

@media only screen and (max-width: 750px) {
  .footer-offer {
    display: block; }

  .footer-offer .col, .footer-offer .col:last-child {
    width: auto;
    margin: 0;
    display: block; } }
footer {
  background: #f5f5f5; }

#menu-footer-top {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: bold;
  text-transform: uppercase; }

#menu-footer-bottom a {
  color: #74b3fc; }

.footer-main a:hover {
  color: #35a1f5;
  text-shadow: 1px 1px 1px rgba(100, 100, 100, 0.1); }

.footer-main ul {
  list-style: none;
  margin: 0;
  padding: 0 8% 60px 0; }

.footer-main li {
  display: inline-block;
  padding-right: 20px; }

.footer-secondary li:after {
  content: ' | ';
  display: inline-block;
  padding-left: 20px; }

.footer-secondary li:last-child:after {
  display: none; }

.footer-main-inner {
  position: relative;
  padding: 60px 5% 0 5%;
  overflow: auto; }

.connect {
  position: absolute;
  right: 4%;
  top: 60px;
  width: 15%;
  font-size: 12px; }
  .connect img {
    display: inline-block;
    width: 22%;
    margin-bottom: 4px; }
  .connect .title {
    display: block;
    margin-top: 24px;
    text-align: center; }
    .connect .title img {
      display: block;
      margin: 0 auto 8px auto; }

@media only screen and (max-width: 1200px) {
  .footer-main li {
    font-size: 14px;
    padding-right: 12px; } }
@media only screen and (max-width: 960px) {
  .footer-main li {
    font-size: 12px;
    padding-right: 8px;
    line-height: 2; } }
@media only screen and (max-width: 775px) {
  .connect {
    position: static;
    width: 50%;
    margin: 0 auto; } }
@media only screen and (max-width: 660px) {
  .footer-main li {
    font-size: 16px;
    display: block; }

  .footer-secondary li:after {
    display: none; } }
footer .copy {
  padding-top: 80px;
  padding-bottom: 20px;
  text-align: center;
  position: relative; }
  footer .copy a {
    display: inline-block; }

footer a {
  color: #00346c; }

.copy > img {
  display: block;
  margin: 0 auto 40px auto; }

.copy span {
  position: absolute;
  bottom: 10px;
  left: 5%;
  font-size: 12px; }

.copy span img {
  vertical-align: middle;
  display: inline-block;
  margin-right: 1em; }

footer .hip {
  position: absolute;
  bottom: 10px;
  right: 5%; }

@media only screen and (max-width: 750px) {
  .copy span, .copy img.fdic, .copy .hip, .copy .hip img {
    display: block;
    position: static;
    margin: 24px auto 0 auto; } }
.branch-hero {
  margin-bottom: 0; }
  .branch-hero .title h1 {
    font-size: 42px; }
  .branch-hero .title button {
    vertical-align: middle; }
  .branch-hero .title form {
    padding-bottom: 8px; }
  .branch-hero input, .branch-hero button {
    margin-bottom: 8px;
    vertical-align: top; }

@media only screen and (max-width: 750px) {
  .branch-hero .title h1 {
    font-size: 32px; } }
@media only screen and (max-width: 600px) {
  .branch-hero .title {
    position: static;
    width: 94%;
    margin-left: 3%;
    margin-top: 12px; }

  .branch-hero input {
    width: 94%;
    display: block;
    margin: 0 auto 8px auto; } }
.branch .address {
  padding: 16px 0 0 0; }

.branch .hours p {
  margin: 0;
  padding: 0; }

.branch .hours p + h4 {
  padding-top: 18px; }

.branch .hours h4 {
  font-weight: bold; }

.branch a.h5 {
  display: block; }

.branch .padded-three-col .col:first-child {
  padding-left: 0; }

.branch .atm {
  display: block;
  margin-bottom: 12px;
  background: none;
  font-size: inherit;
  font-family: inherit;
  width: auto !important; }

#map-holder .atm {
  background: none; }

.branch h2 {
  display: inline-block;
  padding-bottom: 0; }

.branch .distance:before {
  content: '|';
  display: inline-block;
  background: url("i/location-pin.png") no-repeat 24px 2px;
  margin-left: 20px;
  margin-right: 16px;
  padding-right: 34px;
  background-size: 15px auto;
  color: #2699f1;
  font-size: 28px; }

.branch .distance {
  color: #0a73c5; }

.post-type-archive-location .branch .atm:after {
  display: inline-block;
  content: '✓';
  background: #063d75;
  color: #fff;
  font-size: 12px;
  padding: 3px 6px;
  border-radius: 14px;
  margin-left: 0.5em; }

.post-type-archive-location .branch .deposit:after {
  display: inline-block;
  content: '$';
  background: #063d75;
  color: #fff;
  font-size: 12px;
  padding: 3px 6px;
  border-radius: 12px;
  margin-left: 0.5em; }  
  
.branch .services h4 {
  font-weight: bold;
  margin-bottom: 8px; }

#map-holder .distance {
  display: none; }

#map-holder h2, #map-holder p {
  margin-bottom: 0;
  padding-bottom: 0; }

.branch-block .show {
  margin-right: 0.5em; }

.branch-block .show.last {
  margin-left: 0.5em; }

#map-holder .atm {
  display: block;
  margin-bottom: 8px; }

.single-location .atm, .single-location .fsb, .single-location.deposit {
  display: block;
  line-height: 1.5;
  padding: 0; }

.single-location .fsb:before, .single-location .drive:before , .single-location .deposit:before {
  content: '';
  display: inline-block;
  background: url("i/location-fsb.png") no-repeat top left;
  height: 12px;
  width: 12px;
  background-size: 12px auto;
  margin-right: 0.5em; }

.single-location .drive:before {
  background-image: url("i/location-drive-atm.png"); }

 .single-location .deposit:before {
  background-image: url("i/location-atm-deposit.png"); }
  
.single-location .branch-title {
  padding-bottom: 0; }

.single-location .branch .hours p + h4 {
  margin-top: 24px; }

.single-location .branch .hours p:last-child {
  margin-bottom: 24px; }

.single-location .branch .day {
  display: inline-block;
  margin-right: 0.5em; }

.post-type-archive-location .branch-block .block-inner {
  display: table;
  border-collapse: separate;
  border-spacing: 30px; }

.post-type-archive-location .branch-block .row {
  display: table-row; }

.post-type-archive-location .branch-block .branch {
  vertical-align: top;
  display: table-cell;
  padding-bottom: 24px;
  border-bottom: 1px solid #000; }

@media only screen and (max-width: 600px) {
  .post-type-archive-location .branch-block .branch {
    display: block; }

  .wrap .branch .col {
    width: auto;
    margin-bottom: 12px; } }
.branch-hero button:hover {
  background: #053d74; }

#map-holder {
  width: 100%;
  height: 400px;
  margin-bottom: 24px; }

.sitemap #menu-main-menu-1 {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3; }

.sitemap #menu-main-menu-1 > li {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid; }

.sitemap li {
  margin-bottom: 4px; }

.sitemap ul {
  margin-top: 8px; }

@media only screen and (max-width: 800px) {
  .sitemap #menu-main-menu-1 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1; } }
.popup-content {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #053d74;
  color: #fff;
  z-index: 1002;
  box-sizing: border-box;
  padding: 3%; }

.popup-content > div {
  max-width: 620px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92%; }

.popup-content > div > div {
  text-align: center; }

.popup-content.open {
  display: block; }

.popup-content .btn {
  margin-bottom: 16px; }

.popup-content span.close {
  position: absolute;
  top: -60px;
  right: -60px;
  font-size: 48px;
  font-weight: 800;
  cursor: pointer; }

@media only screen and (max-width: 800px) {
  .popup-content span.close {
    right: 10px; } }
.stdform label {
  display: block; }

.stdform span.label {
  display: block;
  color: #2699f1;
  margin-bottom: 6px; }

.stdform input, .stdform select, .stdform textarea {
  width: 100%;
  margin-bottom: 16px;
  font-size: 16px;
  padding: 4px;
  border: 1px solid #e7e7e7;
  background: #f7f7f7; }

.stdform textarea {
  height: 200px; }

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

.stdform .g-recaptcha > div {
  margin: 12px auto; }

.drawers .drawer-item {
  border-bottom: 1px solid #333;
  padding-bottom: 8px;
  padding-top: 12px;
  margin-right: 12px; }

.drawers .drawer-header {
  display: block;
  padding-bottom: 4px;
  cursor: pointer; }

.drawers .open .drawer-header {
  color: #053d74; }

.drawers .drawer-header:before {
  content: '⌄';
  display: block;
  float: right;
  font-weight: bold;
  transform: rotate(0deg);
  transition: transform 300ms; }

.drawers .open .drawer-header:before {
  transform: rotate(180deg); }

.drawers .drawer-content {
  display: none;
  padding-left: 5%; }

.dropnav.alert {
  padding-bottom: 0; }

.crit-alert {
  background: #ffe226;
  position: relative; }

.crit-alert .close {
  color: #053d74;
  font-size: 48px;
  right: 4%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 97; }

.crit-alert-inner {
  max-width: 70%;
  margin: 0 auto;
  position: relative;
  color: #053d74; }

.crit-alert p {
  margin: 0; }

nav .alert {
  position: relative;
  clear: both;
  width: 100%;
  background: #1380d3;
  border-right: 8px solid #ffe226;
  margin-left: -45px;
  padding-right: 82px;
  margin-top: 12px; }

nav .alert h2, .crit-alert h2 {
  color: #053d74;
  background: #ffe226 url("i/alert.png") no-repeat 20px 34px;
  background-size: auto 36px;
  border-right: 8px solid #053d74;
  position: absolute;
  font-size: 30px;
  height: 100%;
  padding: 40px 40px 40px 64px;
  margin-right: 12px;
  box-sizing: border-box; }

.crit-alert h2 {
  border: 0; }

nav .alert .alert-content, .crit-alert-content {
  display: inline-block;
  padding-top: 12px;
  margin-left: 256px; }

.crit-alert-inner .h3 {
  font-size: 33px;
  text-transform: uppercase;
  font-weight: normal;
  margin: 8px 0; }

@media only screen and (max-width: 960px) {
  .crit-alert-inner {
    text-align: center;
    max-width: 94%; }

  .crit-alert h2 {
    position: static;
    margin: 0;
    padding-bottom: 0;
    display: inline-block; }

  .crit-alert-content {
    text-align: left;
    max-width: 94%;
    margin: 0 8% 0 0; }

  .crit-alert .close {
    right: 2%; }

  nav .alert {
    margin-top: 24px;
    margin-left: -15px;
    border-right: 0;
    padding-right: 30px; }

  nav .alert h2 {
    position: static;
    border-right: 0;
    margin: 0 -30px 0 0; }

  nav .alert .alert-content {
    margin-left: 15px;
    margin-right: 15px; } }
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto; }
  .embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.colorcols {
  display: block; }
  .colorcols .full-block-inner {
    display: flex;
    flex-direction: row; }
  .colorcols .col {
    flex: 1 0 0; }
  .colorcols.twocol .col {
    display: block;
    width: 100%; }
  .colorcols .col-inner {
    width: 100%;
    padding: 2%;
    box-sizing: border-box; }

@media only screen and (max-width: 780px) {
  .colorcols .full-block-inner {
    display: block;
    position: relative; }

  .wrap .colorcols .colorcol {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 99;
    width: 100%; }

  .colorcol.couplebluebg {
    background-color: rgba(110, 156, 189, 0.8); }

  .colorcol.darkgreybg {
    background-color: rgba(77, 76, 76, 0.8); }

  .colorcol.lightbluebg {
    background-color: rgba(116, 179, 252, 0.8); }

  .colorcol.babybluebg {
    background-color: rgba(162, 205, 216, 0.8); } }
@media only screen and (max-width: 600px) {
  .colorcols .col-inner p {
    font-size: 16px;
    line-height: 1.2; }

  .colorcols .col p:last-child {
    margin: 0;
    padding: 0; }

  .colorcols .col-inner .h3 {
    font-size: 28px; } }
.home-ky {
  background: url("i/map-bg.jpg") no-repeat center center;
  background-size: cover;
  overflow: auto; }
  .home-ky p:first-child {
    float: left; }

.home .hero-text {
  width: 30%; }
  .home .hero-text h1 {
    font-weight: bold; }
  .home .hero-text p {
    color: #fff;
    margin: 0; }

.slick-dots {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: absolute;
  bottom: 24px;
  width: 100%; }
  .slick-dots button {
    display: none; }
  .slick-dots li {
    cursor: pointer;
    display: inline-block; }
    .slick-dots li:before {
      content: '●';
      padding: 8px;
      font-size: 2em;
      color: #fff;
      transition: color 0.6s; }
    .slick-dots li.slick-active:before {
      color: #333; }

@media only screen and (max-width: 1200px) {
  .home .hero-text .h1 {
    font-size: 30px; }
  .home .hero-text p {
    font-size: 1em; } }
@media only screen and (max-width: 900px) {
  .home .hero-text .h1 {
    font-size: 28px; } }
@media only screen and (max-width: 860px) {
  .home-ky p:first-child, .home-ky img {
    float: none;
    margin: 0 auto; } }
.home-stats {
  color: #05386f;
  background: url("i/home-back_2.jpg") no-repeat bottom left;
  background-size: 100% auto;
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 600px; }

.home-stats .col {
  display: inline-block;
  text-align: center;
  border-left: 1px solid #000;
  vertical-align: top;
  padding: 0 28px; }

.home-stats .col:first-child {
  border: 0; }
  .home-stats .col:first-child .title {
    font-size: 62px;
    margin-top: -11px; }

.home-stats .title {
  letter-spacing: -1px;
  font-size: 38px;
  display: block;
  margin: -3px 0; }

.home-stats .title sup {
  font-size: 0.5em;
  display: inline-block;
  vertical-align: middle; }

@media only screen and (max-width: 1000px) {
  .home-stats {
    text-align: center;
    font-size: 14px; }
    .home-stats .col {
      padding: 0 12px; }

  .home-stats .title {
    font-size: 36px; } }
@media only screen and (max-width: 860px) {
  .home-stats {
    font-size: 12px;
    padding-bottom: 350px; }
    .home-stats .col {
      padding: 0 10px; }

  .home-stats .title {
    font-size: 28px; }

  .home-stats .col:first-child .title {
    font-size: 52px; } }
@media only screen and (max-width: 700px) {
  .home-stats {
    padding-bottom: 200px; }

  .home-stats .col:first-child,
  .home-stats .col {
    display: block;
    width: 100%;
    border: 1px solid #000;
    border-width: 0 0 1px 0;
    padding: 18px 0;
    font-size: 16px;
    margin: 0; }

  .home-stats .col:last-child {
    border: 0; }

  .home-stats .title {
    font-size: 68px;
    margin: -8px 0; } }
#online-banking {
  background: #f2f2f2;
  position: relative;
  clear: both;
  display: none; }
  #online-banking .align {
    padding-top: 12px; }
  #online-banking .h1 {
    font-weight: bold; }
  #online-banking > div {
    display: flex;
    justify-content: space-between; }
  #online-banking #login {
    padding: 36px 40px; }
    #online-banking #login button, #online-banking #login .btn {
      padding: 9px 28px 8px 28px;
      margin-bottom: 6px; }
  #online-banking #username, #online-banking #password {
    padding: 8px 4px 8px 36px;
    background: #fff no-repeat url("i/login-user.png") 4% center;
    background-size: auto 60%;
    border: 0;
    border-radius: 6px;
    min-width: 20%; }
  #online-banking #password {
    background-image: url("i/login-pass.png"); }
  #online-banking #enroll {
    position: relative;
    background: #5994d7;
    text-align: center;
    width: 565px; }
  #online-banking span.align {
    display: inline-block;
    vertical-align: top; }
  #online-banking .enroll {
    margin-left: 1em; }
  #online-banking .close {
    color: #fff;
    background: none;
    font-size: 18px;
    position: absolute;
    top: 3%;
    right: 3%; }

@media only screen and (max-width: 1380px) {
  #online-banking #login {
    padding: 8px 40px;
    flex: none;
    min-height: 198px;
    width: 32%; }
    #online-banking #login .h1 {
      margin: 0; }

  #online-banking > div {
    background: #f2f2f2;
    justify-content: space-between; }
    #online-banking > div .close {
      color: #0062aa; }

  #login button {
    margin-top: 12px; }

  #online-banking .h1 {
    letter-spacing: -1px;
    font-size: 28px; }
  #online-banking #username, #online-banking #password {
    box-sizing: border-box;
    width: 100%;
    margin-top: 12px; } }
@media only screen and (max-width: 1030px) {
  #online-banking #login {
    flex: 1 1 auto; } }
@media only screen and (max-width: 980px) {
  #online-banking #login {
    width: 25%; }
    #online-banking #login .h1 {
      font-size: 24px; }
    #online-banking #login button, #online-banking #login .btn {
      padding: 9px 12px 8px 12px;
      margin-bottom: 6px; }

  #online-banking a {
    font-size: 13.5px; } }
@media only screen and (max-width: 920px) {
  #online-banking #enroll {
    width: auto; }
    #online-banking #enroll img {
      width: 100%; }

  #online-banking > div {
    display: block; }

  #online-banking #login {
    width: 80%;
    max-width: 480px; } }
@media only screen and (max-width: 360px) {
  #online-banking a.enroll {
    display: block;
    margin-top: 1em;
    margin-left: 0; } }
.help-sidebar {
  font-size: 14px;
  background: #2977d1;
  width: 33%;
  margin-left: 2%;
  float: right;
  box-sizing: border-box;
  color: #fff;
  padding: 12px 24px; }

.help-sidebar img {
  width: 25%;
  margin-right: 8px;
  margin-top: 30px;
  float: left;
  clear: both; }

.help-sidebar p {
  width: 70%;
  float: right;
  margin: 49px 0 0 0;
  padding: 0;
  text-shadow: 0 0px 1px rgba(0, 0, 0, 0.8); }

.help-sidebar .h3 {
  text-shadow: 0 0px 1px rgba(0, 0, 0, 0.8); }

.help-sidebar .btn {
  background: #03437a;
  text-shadow: none;
  color: #fff;
  text-shadow: none;
  margin-top: 24px;
  font-size: 11px; }

.help-sidebar a.link {
  color: #fff;
  text-decoration: underline; }

.help-sidebar .link:hover {
  color: #00467a;
  text-decoration: underline;
  text-shadow: none; }

.help-sidebar .btn {
  margin-top: 24px;
  font-size: 11px; }

.help-sidebar .btn:hover {
  background: #03437a;
  color: #2977d1; }

@media only screen and (max-width: 600px) {
  .help-sidebar {
    float: none;
    width: auto;
    overflow: auto; } }
.blog .blog-hero {
  position: relative;
  border: 8px solid #e6e6e6;
  border-width: 8px 1%;
  background: #e6e6e6;
  font-family: Georgia, Helvetica, serif; }
  .blog .blog-hero img {
    width: 47.5%; }
  .blog .blog-hero h1 {
    border-bottom: 4px solid #74b3fc;
    color: #000; }
  .blog .blog-hero > div {
    box-sizing: border-box;
    padding: 2%;
    vertical-align: top;
    position: absolute;
    left: 48%;
    top: 0;
    bottom: 0;
    background: #fff;
    width: 25.5%; }
.blog .blog-cats {
  margin: 40px 4% 80px 4%; }
  .blog .blog-cats .header {
    padding: 8px 20px;
    background: #3a3a3a;
    color: #fff;
    overflow: auto;
    text-align: right; }
    .blog .blog-cats .header h2 {
      float: left; }
    .blog .blog-cats .header a {
      vertical-align: middle;
      display: inline-block;
      margin-top: 20px;
      font-size: 0.8em;
      color: #fff; }
  .blog .blog-cats .post-list {
    column-count: 3; }
    .blog .blog-cats .post-list .post {
      /* Keeps FF from flowing some text of the post into another column */
      overflow: hidden; }
    .blog .blog-cats .post-list h3 {
      font-family: Georgia, Helvetica, serif;
      text-transform: none; }
      .blog .blog-cats .post-list h3 a {
        color: #000; }
    .blog .blog-cats .post-list img {
      height: auto; }

.brewing, .blog .blog-hero > .brewing, .blog .blog-hero > .giving {
  background-image: url("i/whats_brewing-opt.jpg");
  background-size: 100% auto;
  background-repeat: no-repeat; }

.blog-hero .featured p {
  font-size: 1.1em;
  line-height: 1.2;
  padding-bottom: 0; }

.brewing div, .blog .blog-hero > .brewing div, .blog .blog-hero > .giving div, .social div {
  padding: 2%;
  color: #000;
  padding-top: 64%;
  background: linear-gradient(to bottom, rgba(255, 254, 245, 0) 0%, rgba(255, 254, 245, 0) 45%, rgba(255, 254, 245, 0.7) 55%, rgba(255, 254, 245, 0.7) 85%, white 95%); }
  .brewing div h2, .blog .blog-hero > .brewing div h2, .blog .blog-hero > .giving div h2, .social div h2 {
    margin-bottom: 36px;
    margin-left: 12px;
    text-transform: none; }
  .brewing div a, .blog .blog-hero > .brewing div a, .blog .blog-hero > .giving div a, .social div a {
    width: 15%;
    display: inline-block; }
    .brewing div a.shift-left, .blog .blog-hero > .brewing div a.shift-left, .blog .blog-hero > .giving div a.shift-left, .social div a.shift-left {
      margin-left: 12px; }
  .brewing div img, .blog .blog-hero > .brewing div img, .blog .blog-hero > .giving div img, .social div img {
    width: auto !important; }

.social div {
  padding-top: 0;
  background: none; }

.blog-hero .social .h3 {
  font-size: 1em; }

.sidebar .brewing, .sidebar .blog .blog-hero > .brewing, .blog .sidebar .blog-hero > .brewing, .sidebar .blog .blog-hero > .giving, .blog .sidebar .blog-hero > .giving {
  border: 3px solid #ccc;
  padding-bottom: 24px; }
  .sidebar .brewing h2, .sidebar .blog .blog-hero > .brewing h2, .blog .sidebar .blog-hero > .brewing h2, .sidebar .blog .blog-hero > .giving h2, .blog .sidebar .blog-hero > .giving h2 {
    font-family: Georgia, Helvetica, serif; }

.blog .blog-hero > .brewing, .blog .blog-hero > .giving, .blog .blog-hero > .giving {
  left: 74.25%; }
  .blog .blog-hero > .brewing img, .blog .blog-hero > .giving img, .blog .blog-hero > .giving img {
    width: auto; }

.page-id-27111 .msg {
  color: red; }

.blog .blog-hero > .giving {
  background: -moz-linear-gradient(top, #f8f8f8 0%, #f8f8f8 50%, #fff 60%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #f8f8f8 0%, #f8f8f8 50%, #fff 60%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #f8f8f8 0%, #f8f8f8 50%, #fff 60%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }
  .blog .blog-hero > .giving .h5 {
    font-size: 1.3em;
    color: #000;
    margin: 12px 0; }

@media only screen and (max-width: 1250px) {
  .blog .blog-hero h1, .blog .blog-hero p {
    line-height: 1.0;
    font-size: 32px;
    margin-top: 0; }
  .blog .blog-hero p {
    font-size: 1em; }
  .blog .blog-hero .h3 {
    font-size: 0.7em; }

  .blog .brewing h2, .blog .blog-hero > .brewing h2, .blog .blog-hero > .giving h2, .blog .giving h2 {
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 24px !important; } }
@media only screen and (max-width: 960px) {
  .blog .blog-hero {
    overflow: auto; }
    .blog .blog-hero img {
      display: block;
      width: 100%; }
    .blog .blog-hero .h3 {
      font-size: 1.2em; }
    .blog .blog-hero > div {
      height: 456px;
      display: block;
      width: 49.5%;
      margin: 8px 0 0 0;
      float: left;
      position: static; }
      .blog .blog-hero > div:last-child {
        float: right; } }
@media only screen and (max-width: 600px) {
  .blog .blog-hero > div {
    float: none !important;
    height: auto;
    width: auto; }

  .blog .blog-cats .post-list {
    column-count: 1; }
    .blog .blog-cats .post-list .post {
      margin-bottom: 24px; } }
.single-post h1 {
  text-transform: capitalize;
  font-weight: bold;
  max-width: 25em;
  padding-bottom: 1em;
  font-family: Georgia, Helvetica, serif; }

.pagination {
  text-align: center; }
  .pagination a {
    margin: 0 8px; }

.page-id-27483 .breadcrumbs {
  display: none; }
.page-id-27483 .hero {
  margin-bottom: 0; }
