@charset "UTF-8";
@charset "UTF-8";
.flickity-enabled{position:relative}.flickity-enabled:focus{outline:0}.flickity-viewport{overflow:hidden;position:relative;height:100%}.flickity-slider{position:absolute;width:100%;height:100%}.flickity-enabled.is-draggable{-webkit-tap-highlight-color:transparent;tap-highlight-color:transparent;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.flickity-enabled.is-draggable .flickity-viewport{cursor:move;cursor:-webkit-grab;cursor:grab}.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down{cursor:-webkit-grabbing;cursor:grabbing}.flickity-button{position:absolute;background:hsla(0,0%,100%,.75);border:none;color:#333}.flickity-button:hover{background:#fff;cursor:pointer}.flickity-button:focus{outline:0;box-shadow:0 0 0 5px #19F}.flickity-button:active{opacity:.6}.flickity-button:disabled{opacity:.3;cursor:auto;pointer-events:none}.flickity-button-icon{fill:currentColor}.flickity-prev-next-button{top:50%;width:44px;height:44px;border-radius:50%;transform:translateY(-50%)}.flickity-prev-next-button.previous{left:10px}.flickity-prev-next-button.next{right:10px}.flickity-rtl .flickity-prev-next-button.previous{left:auto;right:10px}.flickity-rtl .flickity-prev-next-button.next{right:auto;left:10px}.flickity-prev-next-button .flickity-button-icon{position:absolute;left:20%;top:20%;width:60%;height:60%}.flickity-page-dots{position:absolute;width:100%;bottom:-25px;padding:0;margin:0;list-style:none;text-align:center;line-height:1}.flickity-rtl .flickity-page-dots{direction:rtl}.flickity-page-dots .dot{display:inline-block;width:10px;height:10px;margin:0 8px;background:#333;border-radius:50%;opacity:.25;cursor:pointer}.flickity-page-dots .dot.is-selected{opacity:1}
 .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.610, 0.355, 1.000);
transform: translate3d(0,0,0);
}
40%, 43% {
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transform: translate3d(0, -30px, 0);
}
70% {
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
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;
} @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(.95, 1.05, 1);
}
75% {
transform: scale3d(1.05, .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(.9, .9, .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;
} @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.610, 0.355, 1.000);
}
0% {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
20% {
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
transform: scale3d(.97, .97, .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.610, 0.355, 1.000);
}
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.610, 0.355, 1.000);
}
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.610, 0.355, 1.000);
}
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.610, 0.355, 1.000);
}
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(.9, .9, .9);
}
50%, 55% {
opacity: 1;
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
transform: scale3d(.3, .3, .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(.95, .95, .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;
} @keyframes rollIn {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
transform: none;
}
}
.rollIn {
animation-name: rollIn;
} @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(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
animation-name: zoomIn;
}
@keyframes zoomInDown {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
animation-name: zoomInDown;
}
@keyframes zoomInLeft {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
animation-name: zoomInLeft;
}
@keyframes zoomInRight {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
animation-name: zoomInRight;
}
@keyframes zoomInUp {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
animation-name: zoomInUp;
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
.zoomOut {
animation-name: zoomOut;
}
@keyframes zoomOutDown {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform-origin: center bottom;
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
transform: scale(.1) translate3d(-2000px, 0, 0);
transform-origin: left center;
}
}
.zoomOutLeft {
animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
transform: scale(.1) translate3d(2000px, 0, 0);
transform-origin: right center;
}
}
.zoomOutRight {
animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform-origin: center bottom;
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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;
}@font-face{font-family:swiper-icons;src:url(data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA);font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
  *,
*:after,
*:before {
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
text-rendering: optimizeLegibility; } html {
font-size: 62.5%; } *:focus {
outline: none; } .clear:before,
.clear:after {
content: ' ';
display: table; }
.clear:after {
clear: both; }
.clear {
*zoom: 1; }
img {
max-width: 100%;
vertical-align: bottom;
height: auto; }
a {
text-decoration: none; }
a:hover {
cursor: pointer; }
a:focus {
outline: 0; }
a:hover,
a:active {
outline: 0; }
input:focus, textarea:focus {
outline: 0;
border: 1px solid #04A4CC; }
ul {
list-style-type: none;
padding: 0;
margin: 0; }  .alignnone {
margin: 5px 20px 20px 0; }
.aligncenter,
div.aligncenter {
display: block;
margin: 5px auto 5px auto; }
.alignright {
float: right;
margin: 5px 0 20px 20px; }
.alignleft {
float: left;
margin: 5px 20px 20px 0; }
a img.alignright {
float: right;
margin: 5px 0 20px 20px; }
a img.alignnone {
margin: 5px 20px 20px 0; }
a img.alignleft {
float: left;
margin: 5px 20px 20px 0; }
a img.aligncenter {
display: block;
margin-left: auto;
margin-right: auto; }
.wp-caption {
background: #FFF;
border: 1px solid #F0F0F0;
max-width: 96%;
padding: 5px 3px 10px;
text-align: center; }
.wp-caption.alignnone {
margin: 5px 20px 20px 0; }
.wp-caption.alignleft {
margin: 5px 20px 20px 0; }
.wp-caption.alignright {
margin: 5px 0 20px 20px; }
.wp-caption img {
border: 0 none;
height: auto;
margin: 0;
max-width: 98.5%;
padding: 0;
width: auto; }
.wp-caption .wp-caption-text,
.gallery-caption {
font-size: 11px;
line-height: 17px;
margin: 0;
padding: 0 4px 5px; } @media print {
* {
background: transparent !important;
color: #000 !important;
box-shadow: none !important;
text-shadow: none !important; }
a,
a:visited {
text-decoration: underline; }
a[href]:after {
content: " (" attr(href) ")"; }
abbr[title]:after {
content: " (" attr(title) ")"; }
.ir a:after,
a[href^="javascript:"]:after,
a[href^="#"]:after {
content: ""; }
pre, blockquote {
border: 1px solid #999;
page-break-inside: avoid; }
thead {
display: table-header-group; }
tr, img {
page-break-inside: avoid; }
img {
max-width: 100% !important; }
@page {
margin: 0.5cm; }
p,
h2,
h3 {
orphans: 3;
widows: 3; }
h2,
h3 {
page-break-after: avoid; } }
html,
body {
height: 100%;
width: 100%; }
body {
font: 400 18px/28px 'lato', sans-serif;
color: black;
position: relative; }
body.noScroll {
position: fixed; }
body.home .wrapper {
display: flex;
flex-direction: column; }
.nf-form-content input[type=button] {
background: #163768 !important;
padding-left: 20px;
padding-right: 20px;
height: 40px;
border-radius: 5px; }
.nf-form-content input[type=button]:hover {
background-color: #163768;
color: #89c440 !important; }
.wrapper {
width: 100%;
min-height: 100%;
margin: 0 auto;
overflow: hidden; }
main {
position: relative;
min-height: 100%;
width: 100%; }
main .content {
max-width: 1000px; }
main .content h2 {
font-size: 26px;
font-weight: 700;
margin-top: 20px;
line-height: 32px;
text-align: left; }
main .content h3 {
font-size: 20px;
line-height: 28px;
margin-bottom: 20px; }
main .content ul {
width: 100%;
margin-bottom: 20px; }
main .content ul ul {
margin-bottom: 0; }
main .content ul li {
margin-left: 20px;
list-style-type: none;
display: flex;
flex-wrap: wrap;
flex-direction: row;
align-items: center;
color: #4a4a4a; }
main .content ul li:before {
content: url(//enhancehc.com/wp-content/themes/fug_theme/img/bullet.svg);
font-size: 5px;
color: #89c440;
position: absolute;
height: 100%;
vertical-align: top;
left: -15px;
width: 5px;
height: 5px;
top: -2px; }
section {
position: relative;
width: 100%;
height: auto; }
.content {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 100%;
height: auto;
max-width: 1050px;
margin: 0px auto;
padding: 50px 50px 75px 50px; }
.content p {
font-size: 16px;
font-weight: 500;
text-align: justify;
line-height: 28px;
max-width: 800px; }
.content ul li {
position: relative;
list-style-type: square; }
a {
color: #89c440;
text-decoration: none;
letter-spacing: 1; }
a:hover {
text-decoration: underline; }
h1,
h2,
h3,
h4 {
font-family: 'acumin-pro', sans-serif;
font-weight: 800;
font-size: 72px;
line-height: 1;
margin: 0;
width: 100%; }
h1 {
color: white;
max-width: 870px;
margin: 0 auto; }
h2 {
font-size: 42px;
line-height: 36px;
margin-bottom: 30px;
font-weight: 500;
text-transform: uppercase;
color: #89c440; }
h2.main-title {
margin-top: 0;
margin-bottom: 40px;
padding-top: 0;
font-weight: 300; }
h3 {
font-family: 'acumin-pro', sans-serif;
font-weight: 800;
font-size: 14px;
line-height: 48px;
text-transform: uppercase; }
p {
margin: 0;
width: 100%;
color: #4a4a4a;
font-size: 18px;
line-height: 1.8em;
margin-bottom: 1.5em;
font-weight: 100; }
ul li {
position: relative; }
section.ehc-data {
padding-top: 100px;
border-top: 10px solid #e2e2e2;
background: #f9f9f9; }
section.box-section {
background-color: #f9f9f9; }
.button {
border-radius: 5px;
position: relative;
font: 800 14px/1 'Lato', sans-serif;
background-color: #89c440;
color: white;
padding: 12px 30px;
text-align: center;
transition: all .3s ease; }
.button:hover {
background-color: #a7d867;
transition: all .3s ease;
cursor: pointer;
text-decoration: none !important; }
.button a {
color: white;
text-align: center; }
.button a:hover {
text-decoration: none !important;
cursor: pointer; }
.button.outline-white {
border: 1px solid white;
background-color: transparent; }
.button.outline-white:hover {
background-color: #89c440;
border: 1px solid #89c440; }
.button.blue {
background-color: transparent;
border: 1px solid #163768;
display: inline-block;
color: #163768;
margin-left: auto;
transition: all .2s ease; }
.button.blue:hover {
background-color: #163768;
color: white;
transition: all .2s ease; }
.button.blue:hover a {
color: white;
text-decoration: none;
transition: all .2s ease; }
.button.blue a {
color: #163768; }
.button.blue.solid {
background-color: #163768;
border: 1px solid #163768;
display: inline-block;
color: white;
margin-left: auto;
transition: all .2s ease; }
.button.blue.solid:hover {
background-color: #132539;
color: white;
transition: all .2s ease; }
.button.blue.solid:hover a {
color: #89c440;
text-decoration: none;
transition: all .2s ease; }
.button.blue.solid a {
color: white; }
.button.green.outline {
background-color: transparent;
border: 1px solid #89c440;
color: #89c440;
text-transform: none;
letter-spacing: 0.015em;
font-style: normal;
font-weight: 500;
font-size: 19px; }
.button.green.outline:hover {
background-color: #89c440;
color: white; }
.button.green.outline.pill {
border-radius: 100px;
color: white;
font-size: 16px;
padding: 5px 20px; }
.button.margin-right-auto {
margin-right: auto; }
.button-group-hero {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 100%;
justify-content: center; }
.button-group-hero .button {
background-color: transparent;
border: 1px solid #89c440;
display: inline-block;
color: #89c440;
margin: 50px 20px 0 20px;
-webkit-transition: all .2s ease;
transition: all .2s ease;
width: 220px; }
.button-group-hero .button:hover {
background-color: #89c440;
color: white;
-webkit-transition: all .2s ease;
transition: all .2s ease; }
.inner-wrap .divider .divider-line {
height: 1px;
background-color: #89c440;
opacity: .4;
width: 50px;
margin: 10px auto 10px auto; }
.inner-wrap .sub-title-section-desc {
font-size: 18px;
color: #d0d0d0;
text-transform: uppercase;
font-weight: 400; }
.inner-wrap .sub-title-hero {
text-transform: none;
font-size: 18px;
color: #d0d0d0;
font-weight: 700px; }
.max-width680 {
width: 100%;
max-width: 680px; }
.max-width980 {
width: 100%;
max-width: 980px; }
.autofy {
margin: 0 auto; } .horizontal-social ul.social-icon-list li {
display: inline; }
.horizontal-social ul.social-icon-list li img {
width: 48px;
height: 48px; }
.horizontal-social.round-icon ul.social-icon-list li {
display: inline; }
.horizontal-social.round-icon ul.social-icon-list li img {
width: 48px;
width: 48px;
border-radius: 50%; }
.desc p {
font-size: 16px;
font-weight: 500;
text-align: justify;
line-height: 28px;
max-width: 800px; }
.iframe-container {
overflow: hidden;
position: relative; }
.iframe-container iframe {
border: 0;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%; }
.visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px; }
.hide {
display: none !important; } @media (max-width: 885px) {
section.ehc-data {
padding-top: 50px;
padding-bottom: 50px; } }
@media screen and (max-width: 768px) {
.content {
padding-left: 50px;
padding-right: 50px; } }
@media (max-width: 575px) {
h2.main-title {
font-size: 28px;
font-weight: 100;
margin-bottom: 20px; }
.content {
padding: 25px; }
.button-group-hero .button {
margin-top: 30px; } }
.screen-reader-only {
position: absolute;
width: 1px;
clip: rect(0 0 0 0);
overflow: hidden;
white-space: nowrap; }
.c-block-fill {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; }
.c-flex-center {
display: flex;
justify-content: center;
align-items: center; }
.page-404 h1 {
color: #89c440;
font-size: 90px;
text-align: center; }
.page-404 h2 {
color: #163768; }
.page-404 .desc {
text-align: center;
padding-top: 10px;
padding-bottom: 30px; }
.acpwd-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
background-color: white;
color: #f2f3f4;
z-index: 100;
align-items: center; }
.acpwd-container p {
color: white;
text-align: center; }
.acpwd-container p.acpwd-error-message {
color: red !important; }
.acpwd-container .button {
text-decoration: none !important; }
.acpwd-container .button.small {
margin: 20px 0;
text-decoration: none !important; }
.acpwd-container a.no-ul {
text-decoration: none !important; }
.acpwd-container .acpwd-error-message {
text-align: center;
width: 100%;
font-size: 22px; }
.acpwd-container .acpwd-info-message, .acpwd-container .acpwd-form, .acpwd-container .acpwd-error-message, .acpwd-container .join {
background-color: #163768;
padding: 20px;
margin: 0; }
.acpwd-container .acpwd-info-message {
line-height: 22px; }
.acpwd-container .join {
line-height: 20px; }
.acpwd-container .join a {
text-decoration: underline !important;
color: #89c440 !important;
transition: .3s; }
.acpwd-container .join a:hover {
color: #9c9ea1 !important;
transition: .3s; }
.acpwd-container .acpwd-form {
width: 100%;
max-width: 800px;
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
align-items: center; }
.acpwd-container .acpwd-form input[type="password"] {
background: #f7f7f7;
border: 1px solid #c4c4c4;
border-radius: 0;
box-shadow: none;
color: #787878;
transition: all .5s;
height: 40px;
width: 300px;
text-align: center;
font-size: 22px; }
.acpwd-container .acpwd-form input[type="submit"] {
background: transparent;
border: 1px solid white;
color: #f7f7f7;
padding: 10px 20px;
transition: all .5s;
margin-top: 20px; }
.acpwd-container .acpwd-form input[type="submit"]:hover {
cursor: pointer;
background-color: #89c440;
transition: all .5s; } @media (max-width: 575px) {
.acpwd-container .acpwd-info-message, .acpwd-container .acpwd-form, .acpwd-container .acpwd-error-message, .acpwd-container .join {
width: 95%; } }
.client-footer {
background-position: center bottom;
background-size: cover; }
.client-footer .content {
width: 100%;
max-width: 1200px;
display: flex;
flex-direction: row;
flex-wrap: wrap; }
.client-footer .content h2 {
width: 100%;
font-weight: 300;
font-size: 42px;
text-align: center; }
.client-footer .content .the-client {
width: 16%; }
.client-footer .content .the-client img {
padding: 5px;
width: 100%;
height: auto; } @media (max-width: 885px) {
.client-footer .content .the-client {
width: 20%; } }
@media screen and (max-width: 767px) {
.client-footer .content .the-client {
width: 25%; } }
@media (max-width: 575px) {
.client-footer .content .the-client {
width: 33%; } } .footer .middle-footer {
font-size: 48px;
margin-left: auto;
padding-right: 20px;
margin-top: auto; }
.footer .middle-footer a {
color: #9c9ea1; }
section.box-section {
display: flex;
flex-direction: column;
width: 100%;
justify-content: center;
align-items: center; }
.home-boxes {
width: 94%;
max-width: 1024px;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between; }
.home-boxes .box {
background-color: #163768;
color: #f2f3f4;
padding: 60px 40px;
width: 50%;
display: flex;
flex-direction: column;
margin-bottom: 150px; }
.home-boxes .box.box1 {
background-color: #0e2340; }
.home-boxes .box.box1 .inner-wrap {
margin-left: auto; }
.home-boxes .box.box2 {
background-color: #274777; }
.home-boxes .box .inner-wrap {
width: 100%;
max-width: 450px;
padding-left: 20px; }
.home-boxes .box h3 {
font-weight: 300;
font-size: 30px;
color: #89c440;
padding: 0;
margin: 0;
line-height: 1.1em;
margin-bottom: 3px; }
.home-boxes .box h4 {
font-size: 14px;
font-weight: 700;
text-transform: uppercase;
padding-top: 0px;
margin-bottom: 5px; }
.home-boxes .box .desc {
font: 300 12px/18px 'Lato', sans-serif;
margin-top: 5px;
margin-bottom: 20px; }
.home-boxes .box .desc ul {
margin-top: 20px;
margin-bottom: 40px; }
.home-boxes .box .desc ul li {
font-size: 16px;
margin-bottom: 10px;
padding-left: 15px;
margin-top: 10px;
font-weight: 300;
font-family: "work sans";
text-indent: -20px; }
.home-boxes .box .desc ul li::before {
content: "•";
color: #89c440;
font-size: 14px;
padding-right: 8px; }
.home-boxes .box .desc ul li a {
text-decoration: none;
text-transform: capitalize;
color: white; }
.home-boxes .box .desc ul li a span {
border-bottom: 1px dotted #53687d; }
.home-boxes .box .button {
background-color: transparent;
border: 1px solid #89c440;
display: inline-block;
color: white;
margin-left: auto;
transition: all .2s ease; }
.home-boxes .box .button:hover {
background-color: #89c440;
color: #89c440;
transition: all .2s ease; }
.home-boxes .box .button:hover a {
color: white;
text-decoration: none;
transition: all .2s ease; }
.home-boxes .box .button a {
color: #89c440; }
.hero-desc h2 {
max-width: 800px;
font-weight: 300;
margin-left: -5px;
font-size: 48px; }
.hero-desc p {
font-size: 16px;
font-weight: 500;
text-align: justify;
line-height: 28px;
max-width: 800px; }
.ehc-data {
padding: 0 0 100px 0;
background-position: center;
background-size: cover; }
.ehc-data .content {
padding: 10px 25px 0 25px;
max-width: 1000px !important; }
.ehc-data .sub-description {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
max-width: 900px;
justify-content: space-between; }
.ehc-data .sub-description .left-description {
width: 30%;
min-width: 225px;
color: #163768;
font-weight: 900;
font-size: 52px; }
.ehc-data .sub-description .left-description .green {
color: #89c440; }
.ehc-data .sub-description .left-description .apart {
font-weight: 300;
text-transform: uppercase;
font-size: 30px;
padding-top: 12px; }
.ehc-data .sub-description .right-description {
border-left: 1px solid;
border-left-color: rgba(137, 196, 64, 0.4);
width: 65%; }
.ehc-data .sub-description .right-description p {
font-size: 16px;
font-weight: 500;
text-align: justify;
line-height: 28px;
max-width: 800px;
padding-left: 40px; }
.ehc-data .sub-description .right-description .button {
margin-left: 40px; }
.ehc-data .sub-description h2 {
font-size: 24px;
font-weight: 700;
margin: 0;
padding: 0; }
.ehc-data .sub-description p {
font-size: 18px;
font-weight: 500;
text-align: justify;
line-height: 1.4em; }
.footer {
background-color: #1b3152;
color: white;
text-transform: uppercase; }
.footer .content {
justify-content: space-between;
padding: 60px 20px; }
.footer .left-footer {
line-height: 1.4em;
font-weight: 500; }
.footer .left-footer h4 {
font: 700 16px/22px 'Work Sans', sans-serif;
color: #89c440;
margin-bottom: 5px; }
.footer .right-footer {
width: 120px;
background-color: #0e2340;
display: flex;
flex-direction: column;
align-items: center;
text-transform: uppercase;
padding: 15px;
border-radius: 5px; }
.footer .talk {
width: 36px;
transition: .1s; }
.footer a.talk-link:hover {
text-decoration: none; }
.footer a.talk-link:hover .talk {
transform: scale(1.1);
transition: .3s ease; }
.footer .lets-talk {
color: white;
margin-top: 5px;
text-align: center; }
.footer .post-footer {
background-color: #0e2340;
display: flex;
flex-direction: column;
width: 100%;
align-items: center; }
.footer .post-footer .inner-wrap {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
width: 100%;
max-width: 1050px;
padding: 15px 20px;
font-size: 13px;
color: #ddd; }
.footer .copy {
margin-right: auto; }
.footer .designed-by {
margin-left: auto; }
@media screen and (max-width: 1024px) {
.footer .content {
padding: 60px 50px; } }
@media (max-width: 885px) {
.footer .post-footer .inner-wrap {
padding: 15px 50px; }
.home-boxes .box {
padding: 40px 0; }
.home-boxes .box h3 {
font-size: 20px; } }
@media (max-width: 575px) {
.home-boxes {
flex-wrap: wrap; }
.home-boxes .box {
width: 100%;
margin-top: 0; }
.home-boxes .box h3 {
font-size: 26px; }
.ehc-data .sub-description {
flex-wrap: wrap; }
.ehc-data .sub-description .left-description {
width: 100%; }
.ehc-data .sub-description .right-description {
border-left: none;
margin-top: 25px;
width: 100%; }
.ehc-data .sub-description .right-description p {
padding-left: 0;
font-size: 14px;
line-height: 22px; }
.footer .post-footer .inner-wrap {
flex-direction: column; }
.footer .post-footer .inner-wrap .copy {
margin-right: 0;
width: 100%;
text-align: center;
font-size: 12px; }
.footer .post-footer .inner-wrap .designed-by {
width: 100%;
font-size: 12px;
text-align: center; }
.footer .content {
justify-content: center; }
.footer .content .left-footer {
text-align: center;
margin-bottom: 20px;
line-height: 1.5em;
font-size: 12px;
margin-bottom: 60px; }
.footer .content .left-footer h4 {
margin-bottom: 5px;
font-size: 14px; }
.footer .content {
flex-direction: column; }
.footer .middle-footer {
font-size: 48px;
margin-left: 0;
padding-right: 0;
margin-top: 20px;
order: 3; }
.footer .middle-footer a {
color: #9c9ea1; } }
.gform_wrapper .top_label .gfield_label, body .gform_wrapper .top_label div.ginput_container {
width: 100%; }
.gform_wrapper .description, .gform_wrapper .gfield_description, .gform_wrapper .gsection_description, .gform_wrapper .instruction {
line-height: 16px; }
.gform_wrapper .gform_footer a.gform_save_link {
border-radius: 5px;
padding: 6px 10px;
background-color: #163768;
color: white;
transition: .3s ease; }
.gform_wrapper .gform_footer a.gform_save_link:hover {
background-color: #132539;
transition: .3s ease; }
.gform_wrapper ul.gform_fields li.gfield.gfield_html {
flex-wrap: wrap !important; }
.gform_wrapper ul.gform_fields li.gfield.gfield_html p {
margin-bottom: 10px;
line-height: 22px; }
.gform_wrapper th {
line-height: 14px !important;
font-size: 11px !important;
font-weight: 600 !important; }
.gform_wrapper .top_label .gfield_label {
padding-right: 25px; }
.gform_wrapper.gf_browser_chrome .gfield_checkbox li input, .gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox] {
margin-right: 10px; } @media (max-width: 575px) {
body .gform_wrapper ul li.gfield {
flex-wrap: wrap; } }
.portal-wrapper .mobile-menu {
top: 16px; }
.portal-wrapper .logo-wrapper {
width: 100%;
max-width: 350px; }
.portal-wrapper .header-logo {
width: 100%;
max-width: 350px; }
.portal-wrapper .header {
height: 80px; }
.portal-wrapper .header .content {
align-content: center;
height: 130px;
padding: 0 40px; }
.portal-wrapper .header .btn-row {
width: 100%;
text-align: center;
padding-left: 40px;
padding-right: 40px;
margin-bottom: 40px; }
.portal-wrapper .header .btn-row.docs {
margin-top: 150px;
margin-bottom: 200px; }
.portal-wrapper .header .row1 a {
width: 160px; }
.portal-wrapper .header .row1 a:hover {
text-decoration: none;
border-bottom: none; }
.portal-wrapper .header .row1 a:hover .btn-gray {
background-color: #163768;
color: white;
transition: .2s; }
.portal-wrapper .header .btn-gray {
background-color: #f7f7f7;
border: 1px solid #d6d6d6;
padding: 2px 10px;
border-radius: 10px;
text-align: center;
font-size: 14px;
width: 180px;
display: inline-block; }
.portal-wrapper .header .btw {
margin-right: 10px; }
.portal-wrapper .header .logout {
width: 125px; }
.portal-wrapper .header .btn-blue {
background-color: #163768;
color: white;
border-radius: 10px;
text-align: center;
font-size: 14px;
width: 280px;
margin-top: 15px;
padding: 2px 10px;
display: inline-block; }
.portal-wrapper .header nav {
width: 100%; } @media screen and (max-width: 1023px) {
.portal-wrapper .logo-wrapper {
width: 100%;
max-width: 250px; }
.portal-wrapper .header-logo {
width: 100%;
max-width: 250px; } }
@media (max-width: 885px) {
.portal-wrapper .button-wrap {
display: none; }
.portal-wrapper .header {
height: 70px; }
.portal-wrapper .header .content {
height: 70px; }
.portal-wrapper .header-logo {
width: 300px; } }
@media screen and (max-width: 767px) {
.portal-wrapper .header {
height: 70px; }
.portal-wrapper .header .content {
padding-left: 20px;
height: 70px; }
.portal-wrapper .header-logo {
width: 240px; } }
.header {
font: 400 12px/19px sans-serif;
background-color: white;
display: flex;
flex-direction: column;
height: 100px; }
.header .content {
display: flex;
max-width: 100%;
justify-content: space-between;
flex-direction: row;
flex-wrap: nowrap; height: 100px; }
.header .all-navs-wrapper {
display: flex;
flex-direction: column;
justify-content: center;
width: 100%; }
.header .button-wrap {
text-align: right;
padding-right: 50px; }
.header .button-wrap .button {
margin-right: 15px; }
.header .drop-down {
position: absolute;
z-index: 1000;
background-color: #061b33;
color: white;
width: 100%;
padding: 0px;
top: 95px;
height: 70px;
transform: scaleY(0);
transform-origin: top;
transition: transform .2s ease-out .2s; }
.header .drop-down.lower-tray {
transform: scaleY(1);
transform-origin: top;
display: flex;
transition: transform .2s ease-out;
width: 100%; }
.header .drop-down .secondaryDrop {
opacity: 0;
display: flex;
transition: .2s ease;
width: 100%; }
.header .drop-down .secondaryDrop.lower-tray-opacity {
opacity: 1;
transition: .2s ease .2s; }
.header .drop-down .secondaryDrop li a {
color: white;
transition: color .3s ease; }
.header .drop-down .secondaryDrop li:hover a {
color: #89c440;
text-decoration: none;
transition: color .3s ease; }
.header .drop-down .content {
display: flex;
flex-direction: column;
align-items: flex-end;
padding-right: 100px;
height: 50px;
padding-top: 15px;
width: 100%; }
.header .drop-down ul {
display: flex;
flex-direction: row;
width: 100%; }
.header .drop-down ul li {
font-size: 14px;
margin: 0 20px; padding-left: 10px;
list-style-type: none; }
.header ul.sub-menu {
display: none; }
.header-logo {
position: relative;
width: 180px; }
.header-logo img {
height: auto;
width: 100%; }
.main-nav ul {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
width: 100%; }
.main-nav ul li {
font-weight: 300;
font-size: 24px;
line-height: 1;
font-family: 'acumin-pro', sans-serif; }
.main-nav a {
transition: .3s ease; }
.main-nav a:hover {
text-decoration: none;
color: #89c440; }
.main-nav li {
padding-left: 20px;
padding-bottom: 30px;
width: 100%; }
.main-nav li a {
border-bottom: transparent 2px solid; }
.main-nav li:hover a {
text-decoration: none; }
.main-nav li.services-icon.hover-on a {
text-decoration: none; }
.main-nav li div {
width: 22px;
height: 22px;
background-repeat: no-repeat;
margin-bottom: 10px; }
.main-nav li .nav-icon {
background-position: center; }
.main-nav li.about-icon .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/about-icon.svg); }
.main-nav li.about-icon:hover .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/about-icon-green.svg); }
.main-nav li.newsfeed-icon .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/newsfeed-icon.svg); }
.main-nav li.newsfeed-icon:hover .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/newsfeed-icon-green.svg); }
.main-nav li.contact-icon .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/contact-icon.svg); }
.main-nav li.contact-icon:hover .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/contact-icon-green.svg); }
.main-nav li.services-icon .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/services-icon.svg); }
.main-nav li.services-icon:hover .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/services-icon-green.svg); }
.main-nav li.services-icon.hover-on .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/services-icon-green.svg); }
.main-nav li.search-icon .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/search-icon.svg); }
.main-nav li.search-icon:hover .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/search-icon-green.svg); }
.main-nav li.search-icon.hover-on .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/search-icon-green.svg); }
.main-nav li.testimonials-icon .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/testimonials-icon.svg); }
.main-nav li.testimonials-icon:hover .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/testimonials-icon-green.svg); }
.main-nav li.resources-icon .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/resources-icon.svg); }
.main-nav li.resources-icon:hover .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/resources-icon-green.svg); }
.main-nav .current-menu-item a {
color: #163768;
border-bottom: 2px solid #89c440;
text-decoration: none; }
.main-nav .current-menu-item a:hover {
border-bottom: 2px solid #89c440; }
.mobile-menu {
display: flex;
width: 46px;
height: 46px;
position: absolute;
z-index: 102;
flex-direction: column;
right: 50px;
background-color: #163768;
top: 12px;
border: 1px solid #163768;
padding: 11px 10px;
border-radius: 100px; }
.mobile-menu.on .hamTop {
transform: translateY(9px) rotate(45deg); }
.mobile-menu.on .hamMid {
transform: scale(0); }
.mobile-menu.on .hamBot {
transform: translateY(7px) rotate(-45deg); }
.mobile-menu > div {
width: 100%;
height: 1px;
background-color: #89c440;
margin: auto; }
.header {
height: 72px; }
.header .content {
height: 72px;
padding-top: 0;
padding-bottom: 0; }
.header .drop-down.lower-tray {
display: none; }
.header .drop-down .content {
padding-right: 50px; }
.header .drop-down ul li {
line-height: 16px; }
.mobile-menu > div {
background-color: #89c440; }
.mobile-menu.on {
display: block; }
.mobile-menu.on > div {
background-color: #89c440; }
.main-nav {
display: none;
position: relative;
position: fixed;
background-color: #163768;
z-index: 101;
display: block;
flex-direction: column;
justify-content: center;
align-items: center;
top: 0;
right: 0;
width: 100%;
max-width: 450px;
height: 100%;
transform: translateX(150%);
transition: .5s ease; }
.main-nav .current-menu-item a {
color: #89c440; }
.main-nav ul {
display: block;
width: 100%;
text-align: left;
height: 100%;
padding-top: 125px;
padding-left: 50px; }
.main-nav ul li {
padding-left: 0;
display: block;
width: 100%; }
.main-nav ul li .nav-icon {
margin-right: 20px; }
.main-nav ul li > div {
margin-bottom: 0;
height: 36px;
width: 36px; }
.main-nav ul li.about-icon .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/about-icon-green.svg); }
.main-nav ul li.newsfeed-icon .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/newsfeed-icon-green.svg); }
.main-nav ul li.contact-icon .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/contact-icon-green.svg); }
.main-nav ul li.services-icon .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/services-icon-green.svg); }
.main-nav ul li.search-icon .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/search-icon-green.svg); }
.main-nav ul li.testimonials-icon .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/testimonials-icon-green.svg); }
.main-nav ul li.resources-icon .nav-icon {
background-image: url(//enhancehc.com/wp-content/themes/fug_theme/img/resources-icon-green.svg); }
.main-nav ul li a {
color: #f2f3f4; }
.main-nav.on {
top: 0;
transform: translateX(0);
height: 100%; }
.main-nav ul {
z-index: 200;
width: 100%; }
.main-nav .watermark-holder {
position: absolute;
width: 340px;
top: 25px;
right: -25px;
z-index: -1; }
.main-nav .watermark-holder img {
width: 100%; }
.main-nav .user {
background-color: #122953;
position: absolute;
left: 0;
bottom: 0;
width: 100%;
padding-top: 100px;
padding-bottom: 30px;
padding-left: 50px; }
.main-nav .user .button {
padding: 10px 25px;
margin-right: 10px;
font-size: 16px !important; }
.main-nav .user .triangle-holder {
position: absolute;
top: 0;
left: 0;
width: 100%; }
.main-nav .user .triangle-holder img {
width: 100%; }
.main-nav .user .button-row {
z-index: 100; }
.main-nav .user .button-row a {
display: inline-block; }
.main-nav .user .greeting {
color: white;
font-weight: 400;
font-size: 15px;
line-height: 20px;
position: relative;
padding-bottom: 5px;
margin-bottom: 25px; }
.main-nav .user .greeting:after {
position: absolute;
content: '';
width: 100%;
left: -50px;
height: 1px;
background-color: #89c440;
bottom: 0; }
@media screen and (max-width: 1023px) {
.header .drop-down ul li {
font-size: 12px;
line-height: 1.3em; }
.header .drop-down .content {
padding-right: 50px; } }
@media screen and (max-width: 650px) {
.header .button-wrap {
display: none; } }
@media (max-width: 575px) {
.header {
height: 75px; }
.header .content {
padding: 0 25px; }
.header-logo {
width: 130px; }
.mobile-menu {
width: 42px;
height: 42px;
top: 15px;
right: 25px; } }
section.hero {
background-size: cover;
background-position: top;
padding: 20px 0; }
section.hero.hero-text-wrap .inner-wrap { display: flex;
flex-direction: column;
align-items: center;
width: 100%;
max-width: 960px;
text-align: center;
height: 100%; }
section.hero.hero-text-wrap .inner-wrap h2, section.hero.hero-text-wrap .inner-wrap h1 {
color: #89c440;
font-weight: 300;
font-size: 48px;
line-height: 1.1em;
margin-bottom: 5px;
margin-top: 20px;
width: 100%;
text-align: center;
text-transform: uppercase; } @media screen and (max-width: 767px) {
section.hero.hero-text-wrap .inner-wrap h1 {
font-size: 28px; } }
@media (max-width: 575px) {
section.hero.hero-text-wrap .inner-wrap h2 {
font-size: 22px; } }
.inverse-footer.box-section {
background-position: left;
background-size: cover; }
.inverse-footer .home-boxes {
max-width: 100%; }
.inverse-footer .home-boxes .box {
margin-bottom: 0;
background-color: transparent !important; }
.inverse-footer .home-boxes .box .button {
background-color: #163768 !important;
border: 1px solid #163768 !important; }
.inverse-footer .home-boxes .box h3 {
color: #163768 !important; }
.inverse-footer .home-boxes .box .desc h4 {
color: #89c440;
font-size: 18px; }
.inverse-footer .home-boxes .box .desc ul li {
font-size: 18px !important;
font-weight: 500 !important;
margin-bottom: 15px !important; }
.inverse-footer .home-boxes .box .desc ul li a {
color: #163768; }
.inverse-footer .home-boxes .box .desc ul li a span {
border-bottom: 1px dotted #aaadaf; }
.inverse-footer.ehc-data {
background-color: #0e2340; }
.inverse-footer.ehc-data .sub-description .left-description {
color: white;
font-size: 62px; }
.inverse-footer.ehc-data .sub-description .left-description .apart {
font-size: 36px;
margin-top: 5px; }
.inverse-footer.ehc-data .sub-description .right-description {
border-left-color: #89c440; }
.inverse-footer.ehc-data .sub-description .right-description p {
color: white; }
.inverse-footer.ehc-data .sub-description .right-description .button.blue {
color: #89c440;
border: 1px solid #89c440;
background-color: #0e2340; }
.inverse-footer .HAH, .inverse-footer .HAH2 {
display: none; }
.inverse-footer .AGS, .inverse-footer .AGS2 {
display: none; }
.inverse-footer .AGS2-wide, .inverse-footer .HAH-wide, .inverse-footer .AGS-wide, .inverse-footer .HAH2-wide {
width: 100%;
align-items: center; }
.inverse-footer .AGS2-wide .inner-wrap, .inverse-footer .HAH-wide .inner-wrap, .inverse-footer .AGS-wide .inner-wrap, .inverse-footer .HAH2-wide .inner-wrap {
max-width: 90%; }
.inverse-footer .AGS2-wide .inner-wrap .desc ul, .inverse-footer .HAH-wide .inner-wrap .desc ul, .inverse-footer .AGS-wide .inner-wrap .desc ul, .inverse-footer .HAH2-wide .inner-wrap .desc ul {
column-count: 2;
max-width: 800px; }
.inverse-footer .AGS2-wide .inner-wrap .desc ul li:first-child, .inverse-footer .HAH-wide .inner-wrap .desc ul li:first-child, .inverse-footer .AGS-wide .inner-wrap .desc ul li:first-child, .inverse-footer .HAH2-wide .inner-wrap .desc ul li:first-child {
margin-top: 3px; } @media (max-width: 885px) {
.inverse-footer.ehc-data .sub-description .left-description {
font-size: 50px;
line-height: 20px; }
.inverse-footer.ehc-data .sub-description .left-description .apart {
font-size: 29px; }
.inverse-footer .AGS2-wide, .inverse-footer .HAH-wide, .inverse-footer .AGS-wide, .inverse-footer .HAH2-wide {
width: 100%; }
.inverse-footer .AGS2-wide .inner-wrap, .inverse-footer .HAH-wide .inner-wrap, .inverse-footer .AGS-wide .inner-wrap, .inverse-footer .HAH2-wide .inner-wrap {
max-width: 90%; }
.inverse-footer .AGS2-wide .inner-wrap .desc ul, .inverse-footer .HAH-wide .inner-wrap .desc ul, .inverse-footer .AGS-wide .inner-wrap .desc ul, .inverse-footer .HAH2-wide .inner-wrap .desc ul {
max-width: 750px; }
.inverse-footer .AGS2-wide .inner-wrap .desc ul li:first-child, .inverse-footer .HAH-wide .inner-wrap .desc ul li:first-child, .inverse-footer .AGS-wide .inner-wrap .desc ul li:first-child, .inverse-footer .HAH2-wide .inner-wrap .desc ul li:first-child {
margin-top: 3px; } }
@media (max-width: 575px) {
.inverse-footer .AGS2-wide, .inverse-footer .HAH-wide, .inverse-footer .AGS-wide, .inverse-footer .HAH2-wide {
width: 100%; }
.inverse-footer .AGS2-wide .inner-wrap, .inverse-footer .HAH-wide .inner-wrap, .inverse-footer .AGS-wide .inner-wrap, .inverse-footer .HAH2-wide .inner-wrap {
max-width: 90%; }
.inverse-footer .AGS2-wide .inner-wrap .desc ul, .inverse-footer .HAH-wide .inner-wrap .desc ul, .inverse-footer .AGS-wide .inner-wrap .desc ul, .inverse-footer .HAH2-wide .inner-wrap .desc ul {
column-count: 1;
max-width: 750px; }
.inverse-footer .AGS2-wide .inner-wrap .desc ul li:first-child, .inverse-footer .HAH-wide .inner-wrap .desc ul li:first-child, .inverse-footer .AGS-wide .inner-wrap .desc ul li:first-child, .inverse-footer .HAH2-wide .inner-wrap .desc ul li:first-child {
margin-top: 3px; } }
.event-marq .content {
padding-top: 40px !important;
padding-bottom: 40px !important;
padding-left: 25px !important;
padding-right: 25px !important; }
.event-marq .content h2.marq {
width: 100%;
text-align: center; }
.marq-slider {
width: 100%; }
.marq-slider .flickity-page-dots {
display: none; }
.marq-slider .flickity-viewport {
width: 100%; }
.marq-slider .flickity-cell {
width: 50%;
height: 290px;
margin-right: 15px;
background-color: #0e2340;
color: white; }
.marq-slider .flickity-cell .inner-wrap {
padding: 25px; }
.marq-slider .flickity-cell h2 {
font-weight: 300;
text-transform: none;
padding-top: 0;
margin-top: 0;
margin-bottom: 20px; }
.marq-slider .flickity-cell .location {
font-size: 18px;
font-weight: 700; }
.marq-slider .flickity-cell .booth {
font-size: 14px;
font-weight: bold; }
.marq-slider .flickity-cell .button-row {
margin-top: 30px;
position: relative; } @media screen and (max-width: 767px) {
.marq-slider {
width: 100%; }
.marq-slider .flickity-viewport {
width: 100%; }
.marq-slider .flickity-page-dots {
display: block; }
.marq-slider .flickity-cell {
width: 100%; } }
.news-page section.hero.hero-text-wrap .inner-wrap {
max-width: 900px; }
.news-page .main-section .content {
justify-content: flex-start;
max-width: 900px; }
.news-page .main-section .content .date-group {
color: #4a5155;
font-size: 28px;
margin-top: 20px;
text-transform: uppercase;
font-weight: 700;
border-bottom: 1px solid #ddd;
border-top: 1px solid #ddd;
width: 100%;
padding: 10px 0; }
.news-page .main-section .content .button.blue.solid {
margin-left: initial;
margin-right: 10px; }
.news-page .back {
width: 100%;
margin-top: 20px; }
.news-page .back a {
color: #163768;
text-decoration: none;
text-transform: none;
font-style: italic; }
.news-page .back a:hover {
text-decoration: underline; }
.news-page .lock {
font-size: 14px;
position: relative;
bottom: 3px;
color: #999; }
.news-page .signup {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
width: 100%;
align-items: center;
background-color: #efefef;
padding: 10px 5px;
border-radius: 5px; }
.news-page .signup div {
margin: 0 10px; }
.news-page .signup div.su-desc {
font-style: italic; }
.news-page .wrap {
padding-top: 10px;
padding-bottom: 10px;
margin-left: 20px;
width: 100%; }
.news-page .wrap:last-child {
border-bottom: none; }
.news-page .wrap .the-title {
margin-top: 10px; }
.news-page .the-date {
width: 100%;
font-size: 13px;
color: #2c2d2d;
font-style: italic;
margin-bottom: 10px; }
.news-page .the-title {
font-size: 24px;
color: #163768;
text-transform: capitalize;
margin-bottom: 0;
width: 100%;
line-height: 26px; }
.news-page .the-title a {
font-size: 22px;
color: #163768;
text-transform: capitalize;
margin-bottom: 0;
width: 100%; }
.news-page .the-subtitle {
font-size: 16px;
font-weight: 700;
color: #8c8c8c;
text-transform: capitalize;
font-style: italic;
margin-bottom: 0;
line-height: 18px; }
.news-page .desc {
font-size: 14px;
color: #2c2d2d;
width: 100%;
line-height: 22px; }
.news-page .desc.single-desc {
min-height: 150px; }
.news-page .desc a {
color: #163768;
text-decoration: underline;
text-transform: none;
font-style: italic; }
.news-page .links-button-share {
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
border-top: 1px solid #ddd;
padding-top: 20px; }
.news-page .social-icons {
background-color: #e4e4e4;
border-radius: 5px;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
padding: 5px 10px;
margin-top: 15px;
align-items: center; }
.news-page .share-desc {
line-height: 16px;
font-style: italic;
font-weight: 500;
color: #163768;
margin-right: 10px; }
.news-page .share-list {
padding-top: 8px; }
.news-page .social-wrap {
width: 100%; }
.news-page .social-wrap .signup {
width: initial;
padding: 5px;
max-width: 475px;
margin-top: 20px;
justify-content: space-between; }
.news-page .social-wrap .signup .su-desc {
font-style: italic;
font-weight: 500;
color: #163768; } @media (max-width: 885px) {
.news-page section.hero.hero-text-wrap .inner-wrap {
max-width: 750px; }
.news-page section.hero.hero-text-wrap .inner-wrap h2 {
font-size: 36px; } }
@media screen and (max-width: 767px) {
.news-page .article-button {
margin-bottom: 10px;
padding-left: 8px;
padding-right: 8px; }
.news-page .article-button .button-text {
font-size: 12px; } }
@media (max-width: 575px) {
.news-page .social-icons {
flex-wrap: wrap; }
.news-page section.hero.hero-text-wrap .inner-wrap {
max-width: 400px; }
.news-page section.hero.hero-text-wrap .inner-wrap h2 {
font-size: 18px; }
.news-page section.hero.hero-text-wrap .inner-wrap .sub-title-hero {
font-size: 14px; } }
.nf-form-cont {
width: 100%;
max-width: 800px; }
div.form_saved_message div.form_saved_message_emailform form input[type="submit"] {
background-color: #163768 !important; }
div.form_saved_message div.form_saved_message_emailform form input[type="submit"]:hover {
background-color: #132539 !important;
cursor: pointer; }
main.about-page .content h2 {
font-size: 36px;
line-height: 42px;
margin-bottom: 30px;
font-weight: 300; }
.about-page .full-team {
width: 100%;
text-align: center; }
.about-page .full-team .button {
display: inline-block;
margin-top: 20px; }
.about-page .full-team hr {
width: 80%;
position: relative;
margin-left: auto;
margin-right: auto;
border-top: 1px solid #d9d9d9; }
.about-page .desc p {
width: 100%;
max-width: 100%; }
.about-page .main-section > .content {
max-width: 1200px; }
.about-page .team-list {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 100%;
justify-content: space-between;
margin-bottom: 50px; }
.about-page .team-item {
width: 30%;
margin-bottom: 40px; }
.about-page .team-item img {
height: auto;
width: 100%; }
.about-page .team-item h3 {
font-weight: 500;
color: #283d54;
font-size: 16px;
text-transform: initial;
margin-bottom: 5px;
line-height: 1em;
margin-top: 8px; }
.about-page .team-item h4 {
font-weight: 400;
color: #89c440;
font-size: 16px;
text-transform: initial;
margin-top: 0;
margin-bottom: 15px; }
.about-page .team-item .desc {
line-height: 1.4em;
color: #4a5155;
min-height: 100px;
font-size: 14px;
margin-bottom: 20px; }
.about-page .team-item .about-details {
border-top: 4px solid #f2f3f4;
margin-top: 50px; }
.about-page .team-item .about-details h2 {
margin-top: 50px;
margin-bottom: 15px;
font-weight: 100;
text-transform: uppercase;
color: #163768;
font-size: 48px;
line-height: 1.1em; }
.about-page .inner-wrap-content {
padding-top: 40px;
padding-bottom: 40px; } @media screen and (max-width: 1024px) {
.about-page .team-item .desc {
font-size: 14px; }
.about-page .about-details h2 {
font-size: 40px;
line-height: 1.2em; } }
@media screen and (max-width: 1023px) {
.about-page .team-item {
width: 48%; } }
@media (max-width: 885px) {
.about-page .team-item h3 {
font-size: 16px; }
.about-page .team-item h4 {
font-size: 16px; }
.about-page .team-item .desc {
font-size: 12px;
line-height: 1.6em; }
.about-page .about-details p {
font-size: 18px; } }
@media (max-width: 575px) {
.about-page .team-item {
width: 100%; }
.about-page .team-item h3 {
font-size: 22px; }
.about-page .team-item h4 {
font-size: 20px; }
.about-page .team-item .desc {
font-size: 16px;
line-height: 1.6em;
min-height: initial;
margin-bottom: 20px; }
.about-page .team-item .button {
margin-bottom: 50px; }
.about-page .about-details {
margin-top: 15px; }
.about-page .about-details h2 {
font-size: 32px;
margin-top: 30px; }
.about-page .about-details p {
font-size: 16px;
line-height: 1.6em; } }  .contact-page .content p.opener {
width: 100%;
max-width: 800px; }
.contact-page .content.max800 {
width: 100%;
max-width: 800px; }
.contact-page .content.max800 h3.openerHeading {
font-size: 24px; }
.contact-page .content .contentWrap {
border-top: 1px solid #dedede;
width: 100%;
padding-top: 25px;
margin-top: 25px; }
.contact-page .contact-info {
width: 100%;
max-width: 800px;
display: flex;
flex-direction: row;
border-top: 1px solid #dedede;
padding-top: 25px; }
.contact-page .contact-info > div {
width: 50%;
max-width: 300px;
font-size: 18px; } @media (max-width: 575px) {
.contact-page .contact-info > div {
width: 100%;
max-width: 300px;
font-size: 18px;
margin-top: 15px; } }
.home-page {
background-size: cover;
background-repeat: no-repeat;
background-position: right;
margin: auto; border-top: none;
width: 100%; }
.home-page .downbounceWrap {
height: 100px; }
.home-page .downbounceWrap .downBounceIcon img {
width: 30px; }
.home-page .content {
max-width: 960px;
padding-bottom: 100px;
padding-left: 0;
padding-right: 0; }
.home-page .main-section {
margin: auto; }
.home-page h2.hero-title {
color: #89c440;
font-weight: 500;
font-size: 70px;
line-height: 1.1em;
margin: 15px 0;
padding: 0 0 15px 0;
text-align: center; }
.home-page h2.hero-title span {
font-size: 90px;
color: white;
font-weight: 100;
text-align: center;
padding: 0;
margin: 0;
margin-left: -10px; }
.home-page .ehc-data {
padding: 100px 0;
background-position: center;
background-size: cover;
border-top: 10px solid #f5f5f5;
background-color: none; }
.home-page .ehc-data .content {
padding: 10px 0 0 0; }
.home-page .sub-description {
display: flex;
width: 100%;
flex-direction: row;
flex-wrap: nowrap;
max-width: 900px;
justify-content: space-between; }
.home-page .sub-description .left-description {
width: 30%;
min-width: 225px;
color: #163768;
font-weight: 900;
font-size: 52px; }
.home-page .sub-description .left-description .green {
color: #89c440; }
.home-page .sub-description .left-description .apart {
font-weight: 300;
text-transform: uppercase;
font-size: 30px;
padding-top: 12px; }
.home-page .sub-description .right-description {
border-left: 1px solid;
border-left-color: rgba(137, 196, 64, 0.4);
width: 65%; }
.home-page .sub-description .right-description p {
font-size: 16px;
font-weight: 500;
text-align: justify;
line-height: 28px;
max-width: 800px;
padding-left: 40px; }
.home-page .sub-description h2 {
font-size: 24px;
font-weight: 700;
margin: 0;
padding: 0; }
.home-page .sub-description p {
font-size: 18px;
font-weight: 500;
text-align: justify;
line-height: 1.4em; }
.home-page .hero-text-wrap {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
background-position: left;
background-size: cover;
min-height: 650px; }
.home-page .hero-text-wrap .inner-wrap {
width: 100%;
max-width: 960px;
margin: auto;
display: flex;
flex-direction: column;
align-items: center;
position: relative; }
.home-page .hero-text-wrap .inner-wrap hr {
border: none; }
.home-page .hero-text-wrap .inner-wrap .divider {
width: 100%;
max-width: 600px;
height: 2px;
margin-bottom: 25px; }
.home-page .hero-text-wrap .inner-wrap .divider .divider-line {
height: 1px;
background-color: #89c440;
opacity: .4;
width: 50px;
margin: 0 auto 30px auto; }
.home-page .hero-text-wrap .inner-wrap .sub-title {
font-weight: 500;
color: #d0d0d0;
font-size: 22px;
letter-spacing: .02em;
text-transform: capitalize;
margin-bottom: 5px;
text-align: center;
width: 100%;
max-width: 650px; }
.home-page .hero-desc h2 {
max-width: 800px;
font-weight: 300;
margin-left: -5px;
font-size: 48px; }
.home-page .hero-desc p {
font-size: 16px;
font-weight: 500;
text-align: justify;
line-height: 28px;
max-width: 800px; }
.home-page section.box-section {
display: flex;
flex-direction: row;
width: 100%;
justify-content: center; }
.home-page .home-boxes {
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between; }
.home-page .home-boxes .box {
background-color: #163768;
color: #f2f3f4;
padding: 80px 40px;
width: 50%;
display: flex;
flex-direction: column; }
.home-page .home-boxes .box.box1 {
margin-left: auto;
background-color: #0e2340; }
.home-page .home-boxes .box.box1 .inner-wrap {
margin-left: auto; }
.home-page .home-boxes .box.box2 {
margin-right: auto;
background-color: #1b3152; }
.home-page .home-boxes .box .inner-wrap {
width: 100%;
max-width: 450px;
padding-left: 20px; }
.home-page .home-boxes .box h3 {
font-weight: 300;
font-size: 30px;
color: #89c440;
padding: 0;
margin: 0;
line-height: 1.1em;
margin-bottom: 10px; }
.home-page .home-boxes .box .desc {
font: 300 12px/18px 'Lato', sans-serif;
margin-top: 5px;
margin-bottom: 20px; }
.home-page .home-boxes .box .desc ul {
margin-top: 20px; }
.home-page .home-boxes .box .desc ul li {
font-size: 16px;
margin-bottom: 10px;
padding-left: 3px;
margin-top: 10px;
font-weight: 300;
font-family: "work sans"; }
.home-page .home-boxes .box .desc ul li::before {
content: "•";
color: #89c440;
font-size: 14px;
padding-right: 8px; }
.home-page .home-boxes .box .button {
background-color: transparent;
border: 1px solid #89c440;
display: inline-block;
color: white;
margin-left: auto;
transition: all .2s ease; }
.home-page .home-boxes .box .button:hover {
background-color: #89c440;
color: #89c440;
transition: all .2s ease; }
.home-page .home-boxes .box .button:hover a {
color: white;
text-decoration: none;
transition: all .2s ease; }
.home-page .home-boxes .box .button a {
color: #89c440; }
@media (max-width: 1024px) {
.home-page .sub-description {
max-width: 800px; } }
@media (max-width: 885px) {
.home-page .sub-description .right-description p {
padding-left: 30px; }
.home-page .sub-description .left-description {
margin-right: 20px; }
.home-page .hero-text-wrap .inner-wrap .sub-title {
font-size: 18px; }
.home-page h2.hero-title {
font-size: 60px; }
.home-page h2.hero-title span {
font-size: 77px; }
.home-page .ehc-data {
padding: 100px 0;
background-position: center;
background-size: cover; }
.home-page .ehc-data .content {
padding: 10px 80px; }
.home-page .home-boxes .box {
padding: 40px 20px; }
.home-page .home-boxes .box .button {
margin-left: initial;
margin-right: auto; }
.home-page .home-boxes .box h3 {
font-size: 22px;
margin-bottom: 10px; }
.home-page .home-boxes .box .desc ul {
margin-top: 10px; }
.home-page .home-boxes .box .desc ul li {
font-size: 14px; } }
@media (max-width: 575px) {
.home-page h2.hero-title {
line-height: 1.1em;
font-weight: 100;
font-size: 34px;
margin-bottom: 5px;
padding-bottom: 5px; }
.home-page h2.hero-title span {
font-size: 40px; }
.home-page .hero-text-wrap .inner-wrap .sub-title {
padding: 0 30px; }
.home-page .ehc-data {
padding: 60px 0; }
.home-page .ehc-data .content {
padding: 10px 40px; }
.home-page .sub-description {
flex-direction: column; }
.home-page .sub-description .left-description {
margin-right: 0;
width: 100%; }
.home-page .sub-description .right-description {
border-left: none;
margin-top: 25px;
width: 100%; }
.home-page .sub-description .right-description p {
padding-left: 0;
font-size: 14px;
line-height: 22px; }
.home-page .hero-desc {
font-size: 18px;
text-align: left; }
.home-page .hero-desc h2 {
font-size: 36px;
margin-bottom: 15px; }
.home-page .hero-desc p {
font-size: 14px;
line-height: 22px; }
.home-page .content {
padding-top: 40px; }
.home-page .home-boxes {
flex-wrap: wrap; }
.home-page .home-boxes .box {
width: 100%;
margin-top: 0; }
.home-page .home-boxes .box h3 {
font-size: 22px; } }
.portal-page .content {
width: 100%; }
.portal-page .content .portal-error {
width: 100%;
color: red;
text-align: center;
margin-bottom: 15px; }
.portal-page #loginform p {
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap; }
.portal-page #loginform p input {
width: 100%;
height: 50px;
padding: 0 10px;
margin-top: 5px; }
.portal-page #loginform p input#rememberme {
height: 20px;
width: 25px; }
.single-portal .main-section {
width: 100%;
background-color: #eaedf2; }
.single-portal .main-section .content {
max-width: 1400px;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: flex-start;
justify-content: space-between;
min-height: calc(100vh - 300px); }
.single-portal .main-section .content.portal-content {
max-width: 100%; }
.single-portal .main-section .left-col,
.single-portal .main-section .right-col {
width: 48%; }
.single-portal .main-section h2 {
color: #4a5155;
font-weight: 700;
font-size: 22px; }
.single-portal .main-section h2.rd {
margin: 50px 0 10px 0; }
.single-portal .main-section h3 {
font-size: 36px;
color: #163768;
font-weight: 300;
text-transform: none;
margin-bottom: 35px; }
.single-portal .main-section h4 {
font-size: 16px;
text-transform: uppercase;
color: #777777;
font-weight: 600; }
.single-portal .main-section .welcome {
background-color: white;
padding: 20px 40px; }
.single-portal .main-section .edit {
width: 100%;
text-align: right; }
.single-portal .main-section .edit a {
color: #4a5155;
transition: 0.3s; }
.single-portal .main-section .edit a:hover {
text-decoration: none;
transition: 0.3s; }
.single-portal .main-section .edit a:hover .btn-gray {
background-color: #163768;
color: white;
transition: 0.3s;
text-decoration: none; }
.single-portal .main-section .vital {
margin-bottom: 10px; }
.single-portal .main-section .vital span {
color: #163768; }
.single-portal .main-section .contact-wrap {
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap; }
.single-portal .main-section .contact-wrap .inner-wrap {
width: 50%; }
.single-portal .main-section .res-doc {
width: 100%;
padding: 20px; }
.single-portal .main-section .res-doc .the-form-item {
height: 70px;
position: relative;
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.12);
border: 1px solid rgba(29, 56, 104, 0.2);
background-color: white;
padding: 15px 10px;
margin-bottom: 10px; }
.single-portal .main-section .res-doc .the-form-item .inner-wrap {
width: 100%;
height: 100%;
display: flex;
flex-wrap: nowrap;
flex-direction: row;
align-items: center; }
.single-portal .main-section .res-doc .the-form-item .inner-wrap.progress-wrap .button-link {
position: absolute;
left: -10px;
height: 100%;
background-color: #163768;
width: 60px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center; }
.single-portal .main-section .res-doc .the-form-item .inner-wrap.progress-wrap .button-link svg {
position: relative;
width: 28px;
top: 4px;
fill: #89c440;
transform: translateY(0);
transition: .3s ease; }
.single-portal .main-section .res-doc .the-form-item .inner-wrap.progress-wrap .button-link:hover svg {
transform: translateY(-5px); }
.single-portal .main-section .res-doc .the-form-item:hover {
background-color: #f9f9f9; }
.single-portal .main-section .res-doc .icon {
width: 25px;
height: 25px;
margin-right: 20px;
margin-left: 10px; }
.single-portal .main-section .res-doc .icon.progress-icon {
width: 25px;
height: 25px; }
.single-portal .main-section .res-doc .icon.progress-icon svg {
height: 25px;
width: 25px; }
.single-portal .main-section .res-doc .icon.progress-icon.orange-label svg {
fill: #FB6E08; }
.single-portal .main-section .res-doc .icon.progress-icon.red-label svg {
fill: #B61313; }
.single-portal .main-section .res-doc .icon svg {
height: 25px;
width: 20px; }
.single-portal .main-section .res-doc .button-link {
color: #4a5155;
transition: 0.3s;
width: 110px;
margin-left: 10px; }
.single-portal .main-section .res-doc .button-link:hover {
text-decoration: none;
transition: 0.3s; }
.single-portal .main-section .res-doc .button-link:hover .btn-gray {
transition: 0.3s;
text-decoration: none; }
.single-portal .main-section .res-doc .form-title {
font-weight: 700;
font-size: 18px;
color: #4a5155;
margin-right: auto;
margin-left: 70px;
line-height: 20px;
width: 100%; }
.single-portal .main-section .res-doc .form-title a {
color: #4a5155;
padding-right: 10px; }
.single-portal .main-section.v2 .due-date {
font-family: "acumin-pro", sans-serif;
font-size: 13px;
line-height: 14px;
font-weight: 700;
background-color: #EAEDF2;
padding: 8px 10px;
border-radius: 50px; }
.single-portal .main-section.v2 .due-date.red-label {
background-color: #B61313;
color: white; }
.single-portal .main-section.v2 .due-date.orange-label {
background-color: #FB6E08;
color: white; }
.single-portal .main-section.v2 .tableau tableau-viz {
min-height: 600px; }
.single-portal .main-section.v2 .message p {
margin-bottom: 10px; }
.single-portal .main-section.v2 .global-message {
border-left: 2px solid #89c440;
padding-left: 15px;
background-color: #f0f2f5;
padding-top: 15px;
padding-bottom: 10px;
margin-bottom: 10px; } @media screen and (max-width: 1024px) {
.single-portal .main-section .welcome {
padding: 15px 15px; }
.single-portal .main-section h3 {
font-size: 32px;
margin-bottom: 20px; }
.single-portal .main-section .res-doc .form-title {
font-size: 16px; } }
@media screen and (max-width: 1023px) {
.single-portal .main-section .content {
flex-wrap: wrap; } }
@media (max-width: 885px) {
.single-portal .main-section .left-col,
.single-portal .main-section .right-col {
width: 100%; } }
@media screen and (max-width: 767px) {
.single-portal .main-section h3 {
margin-top: 20px; }
.single-portal .main-section .contact-wrap .inner-wrap {
width: 100%; }
.single-portal .main-section .contact-wrap .inner-wrap .phone {
margin-top: 10px; }
.single-portal .main-section .res-doc .form-title {
font-size: 13px;
line-height: 16px; }
.single-portal .main-section .res-doc .btn-gray {
margin-right: 0; }
.single-portal .main-section .res-doc .icon {
margin-right: 5px; } }
@media (max-width: 575px) {
.single-portal .main-section .res-doc .the-form-item .inner-wrap.progress-wrap .button-link {
width: 40px; }
.single-portal .main-section .res-doc .the-form-item .inner-wrap.progress-wrap .button-link svg {
width: 20px; }
.single-portal .main-section .res-doc .form-title {
margin-left: 40px; }
.single-portal .main-section .res-doc .icon.red-label, .single-portal .main-section .res-doc .icon.orange-label {
display: none; } }
.page-resources {
background-color: #eee;
position: relative; }
.page-resources .content {
max-width: 1100px; }
.page-resources .resource-icon {
position: absolute;
width: 75px;
height: 75px;
background-color: white;
border-radius: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
z-index: 10;
margin-left: auto;
margin-right: auto;
margin-top: -55px;
border: 3px solid #e0e2e2; }
.page-resources .resource-icon .fa-file-alt {
color: #163768;
font-size: 28px; }
.page-resources .resource-icon img {
height: auto;
width: 40px;
margin: auto;
position: relative;
left: 3px; }
.page-resources .resource-list {
display: flex;
flex-direction: column;
align-items: center;
width: 100%; }
.page-resources .resource-list .grid {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
width: 100%; }
.page-resources .resource-list .filters {
margin-bottom: 60px;
display: flex;
flex-direction: column;
width: 100%; }
.page-resources .resource-list .filters .ui-group {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
width: 100%; }
.page-resources .resource-list .filters .ui-group.first-ui {
margin-bottom: 10px;
border-bottom: 1px solid #d4d4d4;
padding-bottom: 10px; }
.page-resources .resource-list .filters button {
border: none;
margin: 0 1px;
background: #999; }
.page-resources .resource-list .filters button:hover {
background: #888; }
.page-resources .resource-list .filters .js-radio-button-group {
display: flex;
flex-direction: row;
width: 100%;
justify-content: center; }
.page-resources .resource-list .filters .js-radio-button-group.bg-row2 button {
font-size: 12px; }
.page-resources .resource-list .filters .is-checked {
background-color: #163768; }
.page-resources .resource-list .filters .is-checked:hover {
background-color: #163768; }
.page-resources .resource-list .the-resource {
width: 32%;
background-color: white;
padding: 20px;
margin-bottom: 50px;
border-radius: 5px;
height: 400px;
display: flex;
flex-direction: column;
align-items: center; }
.page-resources .resource-list .the-resource h2 {
font-size: 17px;
font-weight: 600;
line-height: 1.2em;
text-transform: uppercase;
margin: 0;
margin-top: 10px;
margin-bottom: 8px; }
.page-resources .resource-list .the-resource h3 {
font-weight: 700;
color: #132539;
font-size: 14px;
line-height: 1.2em;
letter-spacing: .03em;
text-transform: none; }
.page-resources .resource-list .the-resource .desc {
font-size: 14px;
line-height: 18px;
color: #666;
width: 100%; }
.page-resources .resource-list .the-resource .button {
margin-top: auto;
margin-left: initial;
margin-right: auto;
background-color: #163768;
border: 1px solid #163768;
border-radius: 5px;
color: white;
padding: 10px 20px;
margin-top: auto; }
.page-resources .resource-list .the-resource .button a {
color: white; }
.page-resources .resource-list .the-resource .button:hover a {
color: #89c440; }
.page-resources .resource-list .grid-sizer {
width: 325px;
height: 400px;
float: left; margin: 10px 10px 50px 10px; }
.page-resources .resource-list .grid-sizer .inner-wrap {
display: flex;
flex-direction: column;
height: 375px;
align-items: center;
width: 100%; } @media screen and (max-width: 1024px) {
.page-resources .content {
padding-left: 25px;
padding-right: 25px; }
.page-resources .resource-list .grid-sizer {
width: 300px; } }
@media (max-width: 885px) {
.page-resources .resource-list .grid-sizer {
width: 300px; }
.page-resources .resource-list .filters .js-radio-button-group {
flex-wrap: wrap;
justify-content: center; }
.page-resources .resource-list .filters .js-radio-button-group .button {
font-size: 11px;
margin: 3px;
padding: 11px 20px; } }
@media screen and (max-width: 767px) {
.page-resources .resource-list .filters .js-radio-button-group {
flex-wrap: wrap;
justify-content: center; }
.page-resources .resource-list .filters .js-radio-button-group.bg-row2 button {
font-size: 11px; }
.page-resources .resource-list .filters .js-radio-button-group .button {
font-size: 11px;
margin: 3px;
padding: 11px 20px; } }
.page-services {
border-top: none; }
.page-services section.hero {
background-size: cover;
background-position: top;
padding: 20px 0; }
.page-services section.hero .sub-title {
color: white;
font-size: 18px;
color: #d0d0d0; }
.page-services h2.hero-title {
color: #89c440;
font-weight: 100;
font-size: 48px;
line-height: 1.1em;
margin-bottom: 5px; }
.page-services .main-section {
background-color: #eee; }
.page-services .main-section .content {
max-width: 1280px; }
.page-services .main-section .services-header h2 {
line-height: 46px;
max-width: 960px; }
.page-services .main-section .services-header h3 {
font-size: 28px;
width: 100%;
text-align: center; }
.page-services .hero-text-wrap {
width: 100%;
display: flex;
flex-direction: column;
align-items: center; }
.page-services .hero-text-wrap .inner-wrap { display: flex;
flex-direction: column;
align-items: center;
width: 100%;
max-width: 680px;
text-align: center; }
.page-services .hero-text-wrap .inner-wrap h2 {
width: 100%;
text-align: center; }
.page-services .hero-text-wrap .inner-wrap hr {
border-top: 3px solid #89c440;
width: 100px; }
.page-services .hero-text-wrap .inner-wrap .divider .divider-line {
height: 1px;
background-color: #89c440;
opacity: .4;
width: 50px;
margin: 20px auto 30px auto; }
.page-services .hero-desc {
font-size: 22px;
font-weight: 300;
text-align: justify;
line-height: 1.2em; }
.page-services .services-boxes {
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between; }
.page-services .services-boxes .box {
background-color: #163768;
color: #f2f3f4;
padding: 40px 40px 40px 40px;
width: 48%;
display: flex;
flex-direction: column;
margin-top: 15px; }
.page-services .services-boxes .box h3 {
font-weight: 300;
font-size: 36px;
color: #89c440;
padding: 0;
margin: 0;
line-height: 1.1em;
margin-bottom: 10px;
text-align: center; }
.page-services .services-boxes .box h4.desc {
font-weight: 400;
font-size: 32px;
line-height: 1.2em;
margin-top: 5px;
margin-bottom: 20px;
color: white;
text-align: center;
text-transform: uppercase; }
.page-services .services-boxes .box .button {
background-color: transparent;
border: 1px solid #89c440;
display: inline-block;
color: #89c440;
margin-left: auto;
margin-right: auto;
transition: all .2s ease;
border-radius: 5px; }
.page-services .services-boxes .box .button:hover {
background-color: #89c440;
color: white;
transition: all .2s ease; }
.page-services .services-boxes .box .button:hover a {
color: white;
text-decoration: none;
transition: all .2s ease; }
.page-services .services-boxes .box .button a {
color: #89c440; }
.page-services .service-list {
position: relative;
width: 100%;
height: auto;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-around;
margin-top: 40px; }
.page-services .service-list .service-list-item {
width: 30%;
padding: 30px 15px;
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 50px;
background-color: white;
border-radius: 5px; }
.page-services .service-list .service-list-item .link-out {
margin-top: 15px; }
.page-services .service-list .service-list-item .link-out a {
color: white;
text-decoration: none;
font-weight: bold; }
.page-services .service-list .service-list-item .link-out.service-button {
background-color: #163768;
border: 1px solid #163768;
border-radius: 5px;
color: white;
padding: 10px 20px;
margin-top: auto; }
.page-services .service-list .service-list-item .link-out.service-button:hover a {
color: #89c440; }
.page-services .service-list .service-list-item h3 {
font-weight: 700;
color: #132539;
font-size: 18px;
text-align: center;
width: 100%;
line-height: 1.2em;
margin-top: 20px;
text-transform: initial; }
.page-services .service-list .service-list-item .image-wrap {
width: 175px;
height: 175px; }
.page-services .service-list .service-list-item .image-wrap img {
width: 100%;
height: auto; }
.page-services .service-list .service-list-item .desc {
color: #666666;
font-size: 15px;
line-height: 1.4em;
width: 100%;
text-align: center;
margin-top: 10px;
margin-bottom: 20px; }
@media (max-width: 1024px) {
.page-services .services-boxes .box h3 {
font-size: 28px; }
.page-services .services-boxes .box h4.desc {
font-size: 22px; } }
@media (max-width: 885px) {
.page-services .service-list .service-list-item {
width: 45%; }
.page-services .service-list .service-list-item .desc {
font-size: 14px; }
.page-services .services-boxes .box {
padding-left: 20px;
padding-right: 20px; }
.page-services .services-boxes .box .button {
margin-left: auto;
margin-right: auto; }
.page-services .services-boxes .box h3 {
font-size: 28px;
margin-bottom: 10px; }
.page-services .services-boxes .box h4.desc {
font-size: 20px; } }
@media (max-width: 575px) {
.page-services h2.hero-title {
line-height: 1.1em;
font-weight: 400;
font-size: 30px;
margin-bottom: 5px; }
.page-services .hero-desc {
font-size: 20px; }
.page-services .content {
padding-top: 40px; }
.page-services .content.body-content {
padding-top: 0; }
.page-services .services-boxes {
flex-wrap: wrap; }
.page-services .services-boxes .box {
width: 100%;
margin-top: 40px;
padding: 20px; }
.page-services .services-boxes .box h3 {
font-size: 18px; } } @media (max-width: 575px) {
.page-services section.hero .sub-title {
line-height: 22px;
font-size: 16px; }
.page-services .service-list .service-list-item {
width: 90%; }
.page-services .service-list .service-list-item .desc {
font-size: 14px; } }
.testimonial-page .main-section {
background-color: #eee; }
.testimonial-page .main-section .content {
max-width: 1200px; }
.testimonial-page .testimonial-list {
width: 100%;
max-width: 1200px; }
.testimonial-page .test-item {
background-color: white;
border-radius: 5px;
width: 30%;
margin: 10px 10px 20px 10px; }
.testimonial-page .test-quote-circle {
height: 50px;
width: 50px;
border-radius: 50%;
border: 1px solid #9c9ea1;
display: flex;
flex-direction: column;
margin-left: auto;
margin-right: auto;
margin-top: -25px;
background-color: white; }
.testimonial-page .test-quote-circle > div {
margin: auto;
font-size: 42px;
padding-top: 16px;
color: #89c440;
text-align: center; }
.testimonial-page .test-content {
padding: 20px 25px;
font-size: 14px;
line-height: 22px; }
.testimonial-page .test-content p {
font-size: 14px;
line-height: 22px;
font-style: italic;
text-align: left;
color: #666; }
.testimonial-page .test-name {
font-weight: 700; }
.testimonial-page .test-co-title {
font-style: italic;
line-height: 16px;
color: #777; }
.testimonial-page.v2 .testimonial-list {
min-width: 100%; }
.testimonial-page.v2 .resource-list .filters {
margin-bottom: 60px;
display: flex;
flex-direction: column;
width: 100%; }
.testimonial-page.v2 .resource-list .filters .ui-group {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
width: 100%; }
.testimonial-page.v2 .resource-list .filters .ui-group.first-ui {
margin-bottom: 10px;
border-bottom: 1px solid #d4d4d4;
padding-bottom: 10px; }
.testimonial-page.v2 .resource-list .filters button {
border: none;
margin: 0 1px;
background: #999; }
.testimonial-page.v2 .resource-list .filters button:hover {
background: #888; }
.testimonial-page.v2 .resource-list .filters .js-radio-button-group {
display: flex;
flex-direction: row;
width: 100%;
justify-content: center; }
.testimonial-page.v2 .resource-list .filters .js-radio-button-group.bg-row2 button {
font-size: 12px; }
.testimonial-page.v2 .resource-list .filters .is-checked {
background-color: #163768; }
.testimonial-page.v2 .resource-list .filters .is-checked:hover {
background-color: #163768; } @media screen and (max-width: 1024px) {
.testimonial-page .content {
padding-left: 25px;
padding-right: 25px; } }
@media (max-width: 885px) {
.testimonial-page .test-item {
width: 45%; } }
@media (max-width: 885px) {
.testimonial-page.v2 .resource-list .filters .js-radio-button-group {
flex-wrap: wrap;
justify-content: center; }
.testimonial-page.v2 .resource-list .filters .js-radio-button-group .button {
font-size: 11px;
margin: 3px;
padding: 11px 20px; } }
@media (max-width: 575px) {
.testimonial-page .test-item {
width: 90%; }
.testimonial-page.v2 .resource-list .filters .js-radio-button-group {
flex-wrap: wrap;
justify-content: center; }
.testimonial-page.v2 .resource-list .filters .js-radio-button-group.bg-row2 button {
font-size: 11px; }
.testimonial-page.v2 .resource-list .filters .js-radio-button-group .button {
font-size: 11px;
margin: 3px;
padding: 11px 20px; } }
.portal-form .the-form {
margin-top: 50px;
width: 100%; }
.portal-form .the-form .smcx-embed, .portal-form .the-form .smcx-iframe-container {
max-width: 100%;
min-height: 700px;
border: none; }
.portal-form .the-form .iframe-container > a {
display: none; }
.portal-form .the-form .smcx-widget-footer, .portal-form .the-form .smcx-embed-footer {
display: none; }
.search-dropdown {
opacity: 0;
visibility: hidden;
position: fixed;
left: 0;
width: 100vw;
height: 100vh;
background: linear-gradient(to bottom, rgba(232, 232, 232, 0.95) 100%, rgba(248, 248, 248, 0.95) 100%, transparent);
padding: 180px 15px 15px 15px;
z-index: 100;
border: none; }
.search-dropdown.open {
opacity: 1;
visibility: visible; }
.search-dropdown form {
width: 100%;
text-align: center;
display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: nowrap; }
.search-dropdown form input#s {
font-size: 42px;
background-color: transparent;
border: 4px solid #fff;
padding: 0 10px;
height: 70px;
position: relative;
top: 0;
width: 100%;
max-width: 500px; }
.search-dropdown form input#s::placeholder { color: #666;
opacity: 1; }
.search-dropdown form input#searchsubmit {
height: 70px;
position: relative;
top: 0;
width: 80px;
min-width: 80px;
background-color: white;
border: none;
font-size: 36px;
color: #999;
transition: background-color .2s; }
.search-dropdown form input#searchsubmit:hover {
cursor: pointer;
background-color: rgba(255, 255, 255, 0.7);
transition: background-color .2s; }
.search-dropdown form .screen-reader-text {
width: 0; }
.search-dropdown .close {
font-size: 46px;
color: #999;
position: absolute;
top: 100px;
right: 10%; }
.search-dropdown .close:hover {
cursor: pointer; }
body.searchposition {
overflow: hidden !important; }
.search-results-page form {
width: 100%;
text-align: center;
display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: nowrap; }
.search-results-page form input#s {
font-size: 42px;
color: white;
background-color: transparent;
border: 4px solid rgba(255, 255, 255, 0.4);
padding: 0 10px;
height: 70px;
position: relative;
top: 0;
width: 100%;
max-width: 500px; }
.search-results-page form input#s::placeholder { color: rgba(255, 255, 255, 0.5);
opacity: 1; }
.search-results-page form input#searchsubmit {
height: 70px;
position: relative;
top: 0;
width: 80px;
min-width: 80px;
background-color: rgba(255, 255, 255, 0.4);
border: none;
font-size: 36px;
color: white;
transition: background-color .2s; }
.search-results-page form input#searchsubmit:hover {
cursor: pointer;
background-color: rgba(255, 255, 255, 0.6);
transition: background-color .2s; }
.search-results-page form .screen-reader-text {
width: 0; }
.search-results-page .main-section {
background-color: #eee;
padding-top: 80px; }
.search-results-page .main-section .content {
background-color: white;
max-width: 1200px; }
.search-results-page .main-section .content h2.search-title {
color: #163768;
width: 100%;
text-align: center; }
.search-results-page .main-section .content hr {
width: 80%;
background-color: #666;
height: 1px;
border: none;
margin-bottom: 40px; }
.search-results-page .main-section .content h3 {
font-weight: normal;
padding-bottom: 0;
margin-bottom: 0;
font-size: 18px;
line-height: 22px;
margin-bottom: 10px; }
.search-results-page .main-section .content h3 a {
color: #163768;
text-transform: none; }
.search-results-page .main-section .content a {
text-transform: none; }
.search-results-page .main-section .content .single-search-result {
margin-bottom: 15px;
background-color: #f7f7f7;
padding: 10px 25px;
line-height: 20px; } @media screen and (max-width: 767px) {
.search-dropdown form input#s {
font-size: 28px; }
.search-dropdown form input#searchsubmit {
font-size: 28px; } }
@media (max-width: 575px) {
.search-results-page .main-section .content .single-search-result {
padding: 10px 15px; } }
.team-single .content {
max-width: 1000px; }
.team-single .content h2 {
margin-bottom: 0px;
font-weight: 300;
font-size: 36px; }
.team-single .content h3 {
font-weight: 500;
text-transform: none;
font-size: 22px;
margin-top: 3px; }
.team-single .team-member {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between; }
.team-single .team-details {
width: 30%;
min-width: 250px;
position: relative; }
.team-single .team-details img {
height: auto;
border-radius: 100%;
overflow: hidden; }
.team-single .team-details img.member-image {
position: relative;
z-index: 2;
opacity: 1;
transition: .5s ease; }
.team-single .team-details img.young {
position: absolute;
top: 0;
left: 0;
z-index: 1; }
.team-single .team-details img:hover.member-image {
opacity: 0; }
.team-single .team-details h3 {
color: #163768;
font-weight: 100;
font-size: 20px;
text-transform: initial;
line-height: 1.1em;
margin-top: 10px; }
.team-single .team-details h4 {
color: #89c440;
font-weight: 400;
font-size: 18px; }
.team-single .bio {
width: 65%;
margin-left: 30px; } @media (max-width: 575px) {
.team-single .team-member {
flex-direction: column; }
.team-single .team-details {
min-width: 100%; }
.team-single .bio {
margin-left: 0;
width: 100%;
margin-top: 40px; } }
.services-rows .content {
padding-left: 40px;
padding-right: 40px;
padding-bottom: 40px; }
.services-rows .content h3 {
font-weight: 300;
font-size: 30px;
color: #163768;
padding: 0;
margin: 0;
line-height: 1.1em;
margin-bottom: 3px; }
.services-rows .content h4 {
color: #89c440;
font-size: 18px;
font-weight: 700;
text-transform: uppercase;
padding-top: 0px;
margin-bottom: 5px; }
.services-rows .content ul {
margin-bottom: 10px; }
.services-rows .content ul li {
font-size: 18px;
font-weight: 500;
margin-bottom: 5px; }
.services-rows .content ul li:before {
content: "•";
color: #89c440;
font-size: 14px;
padding-right: 8px; }
.services-rows .content ul li a {
text-decoration: none;
text-transform: capitalize;
color: #163768; }
.services-rows .content ul li a span {
border-bottom: 1px dotted #aaadaf; }
.services-rows .content .the-row {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 100%;
padding-top: 40px;
padding-bottom: 40px;
border-bottom: 1px dotted #163768; }
.services-rows .content .the-row:last-child {
border-bottom: none; }
.services-rows .content .the-row .col1, .services-rows .content .the-row .col2 {
width: 50%; }
.services-rows .content .the-row .single-col {
width: 100%; }
.services-rows .content .the-row .button {
display: inline-block;
margin-left: 10px; }
.services-rows .content .the-row .button.radiology {
margin-left: 0;
margin-top: 20px; } @media screen and (max-width: 767px) {
.services-rows .content {
padding-left: 15px;
padding-right: 15px;
padding-bottom: 40px; }
.services-rows .content .the-row .col1, .services-rows .content .the-row .col2 {
width: 100%; }
.services-rows .content .the-row h4 {
margin-bottom: 15px; }
.services-rows .content .the-row .desc {
line-height: 24px; }
.services-rows .content ul {
margin-bottom: 40px; } }
.profile-page .main-section {
width: 100%;
background-color: #ededed; }
.profile-page .main-section .content {
max-width: 960px; }
.profile-page .main-section .content .to-portal {
width: 100%;
text-align: right;
margin-bottom: 20px; }
.profile-page .main-section .content .the-content {
width: 100%; }
.profile-page .main-section .left-col, .profile-page .main-section .right-col {
width: 100%; }
.profile-page .main-section h2 {
color: #4a5155;
font-weight: 700;
font-size: 22px; }
.profile-page .main-section h3 {
font-size: 36px;
color: #163768;
font-weight: 300;
text-transform: none; }
.profile-page .main-section h4 {
font-size: 14px;
text-transform: uppercase;
color: #777777; }
.profile-page .main-section .welcome {
background-color: white; }
.profile-page .main-section .btn-gray {
background-color: #f7f7f7;
border: 1px solid #d6d6d6;
padding: 5px 12px;
border-radius: 10px;
text-align: center;
font-size: 14px;
display: inline; }
.profile-page .main-section .edit {
width: 100%;
text-align: right; }
.fug_block {
width: 100%; }
.fug_block div {
width: 100%; }
.fug_block h2.section-large-headline {
font-style: normal;
font-weight: 800;
font-size: 46px;
line-height: 112%;
text-align: center;
text-transform: uppercase;
color: #163768; }
.fug_block .image-container img {
filter: drop-shadow(2px 4px 14px rgba(0, 0, 0, 0.25)); }
.fug_block .content {
max-width: 1250px;
padding-left: 50px;
padding-right: 50px;
padding-bottom: 60px;
padding-top: 60px; }
.fug_block .content p {
max-width: 100%;
text-align: initial;
font-size: 20px;
line-height: 32px; }
.fug_block .content.padTop_less {
padding-top: 40px; }
.fug_block .content.padTop_more {
padding-top: 100px; }
.fug_block .content.padTop_none {
padding-top: 0; }
.fug_block .content.padBot_less {
padding-bottom: 40px; }
.fug_block .content.padBot_more {
padding-bottom: 100px; }
.fug_block .content.padBot_none {
padding-bottom: 0; } .mod-text-block .content {
max-width: 980px; }
.mod-text-block .content p {
text-align: center; } .mod-full-width-image .content h2.section-headline {
padding-top: 60px; }
.mod-full-width-image .content .the-content {
text-align: center;
max-width: 860px; }
.mod-full-width-image .content .the-content p {
text-align: center; } .mod-half-and-half .image-container {
position: absolute;
width: 100%;
max-width: 800px;
left: 25px;
top: 0;
z-index: 1; }
.mod-half-and-half .image-container img {
width: 100%;
height: auto; }
.mod-half-and-half .content h2.section-headline {
font-style: normal;
font-weight: 900;
font-size: 24px;
line-height: 112%;
color: #163768; }
.mod-half-and-half .text-column {
z-index: 2;
position: relative;
margin-top: 350px; }
.mod-half-and-half .text-column .inner-wrap {
background-color: white;
padding: 40px 50px;
width: 100%;
max-width: 700px;
margin-left: auto; } .mod-alt-tiles { }
.mod-alt-tiles .content:before {
left: calc(50% - 100px);
top: 0;
position: absolute;
content: '';
width: 200px;
height: 2px;
background-color: #89c440; }
.mod-alt-tiles header.section-header {
padding-bottom: 60px;
max-width: 860px;
text-align: center; }
.mod-alt-tiles header.section-header p {
text-align: center; }
.mod-alt-tiles h3 {
color: #163768;
font-size: 24px !important; }
.mod-alt-tiles.mod-alt-tiles-with-image .tiles-container {
margin-bottom: 100px;
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: space-between; }
.mod-alt-tiles.mod-alt-tiles-with-image .tiles-container .tile-image-area {
width: 40%; }
.mod-alt-tiles.mod-alt-tiles-with-image .tiles-container .tile-text-area {
width: 55%; }
.mod-alt-tiles.mod-alt-tiles-with-image .tiles-container:nth-child(odd) .tile-image-area {
order: 1; }
.mod-alt-tiles.mod-alt-tiles-with-image .tiles-container:nth-child(odd) .tile-text-area {
order: 2; }
.mod-alt-tiles.mod-alt-tiles-with-image .tiles-container:nth-child(odd) .tile-image-area {
order: 2; }
.mod-alt-tiles.mod-alt-tiles-with-image .tiles-container:nth-child(odd) .tile-text-area {
order: 1; }
.mod-alt-tiles.mod-alt-tiles-no-image .tiles-container {
margin-bottom: 100px;
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: flex-start;
justify-content: space-between; }
.mod-alt-tiles.mod-alt-tiles-no-image .tiles-container .tile-title-area {
width: 40%;
position: relative; }
.mod-alt-tiles.mod-alt-tiles-no-image .tiles-container .tile-title-area:after {
left: 0;
bottom: 0;
position: absolute;
content: '';
width: 200px;
height: 2px;
background-color: #89c440; }
.mod-alt-tiles.mod-alt-tiles-no-image .tiles-container .tile-text-area {
width: 55%; }
.mod-cta-block {
margin-bottom: 80px;
padding-left: 50px;
padding-right: 50px; }
.mod-cta-block .content {
background-color: #163768;
border-radius: 8px;
width: 100%;
max-width: 1000px;
flex-direction: row;
flex-wrap: wrap;
align-items: flex-start; }
.mod-cta-block h2 {
width: 45%;
padding-top: 0;
margin-top: 0 !important; }
.mod-cta-block .vital-wrap {
width: 55%;
padding-left: 20px; }
.mod-cta-block .vital-wrap p {
color: white;
font-size: 18px;
line-height: 24px; }
.mod-cta-block .vital-wrap .button {
background-color: #163768;
border: 1px solid white; }
.mod-cta-block .vital-wrap .button:hover {
text-decoration: none;
background-color: rgba(255, 255, 255, 0.2); } @media (max-width: 885px) {
.mod-half-and-half .image-container {
max-width: 100%;
left: 0; }
.mod-half-and-half .text-column .inner-wrap {
margin-right: auto; }
.mod-alt-tiles.mod-alt-tiles-with-image .tiles-container {
align-items: flex-start; } }
@media screen and (max-width: 767px) {
.fug_block .content {
padding-top: 60px;
padding-bottom: 60px; }
.fug_block .content.padTop_less {
padding-top: 30px; }
.fug_block .content.padTop_more {
padding-top: 80px; }
.fug_block .content.padTop_none {
padding-top: 0; }
.fug_block .content.padBot_less {
padding-bottom: 30px; }
.fug_block .content.padBot_more {
padding-bottom: 80px; }
.fug_block .content.padBot_none {
padding-bottom: 0; }
.fug_block h2.section-large-headline {
font-size: 36px;
line-height: 42px; }
.mod-alt-tiles.mod-alt-tiles-with-image .tiles-container .tile-image-area {
width: 100%; }
.mod-alt-tiles.mod-alt-tiles-with-image .tiles-container .tile-text-area {
width: 100%;
margin-top: 40px; }
.mod-alt-tiles.mod-alt-tiles-with-image .tiles-container:nth-child(odd) .tile-image-area {
order: 1; }
.mod-alt-tiles.mod-alt-tiles-with-image .tiles-container:nth-child(odd) .tile-text-area {
order: 2; }
.mod-alt-tiles.mod-alt-tiles-with-image .tiles-container:nth-child(odd) .tile-image-area {
order: 1; }
.mod-alt-tiles.mod-alt-tiles-with-image .tiles-container:nth-child(odd) .tile-text-area {
order: 2; }
.mod-alt-tiles.mod-alt-tiles-no-image .tiles-container .tile-title-area {
width: 100%;
margin-bottom: 40px; }
.mod-alt-tiles.mod-alt-tiles-no-image .tiles-container .tile-text-area {
width: 100%; }
.mod-cta-block .content {
justify-content: center; }
.mod-cta-block h2 {
width: 100%;
text-align: center !important; }
.mod-cta-block .vital-wrap {
width: 100%;
text-align: center;
padding-left: 0; }
.mod-cta-block .vital-wrap > div p {
text-align: center; } }
@media (max-width: 575px) {
.fug_block .content {
padding-left: 25px;
padding-right: 25px;
padding-top: 40px;
padding-bottom: 40px; }
.fug_block .content.padTop_less {
padding-top: 15px; }
.fug_block .content.padTop_more {
padding-top: 60px; }
.fug_block .content.padTop_none {
padding-top: 0; }
.fug_block .content.padBot_less {
padding-bottom: 15px; }
.fug_block .content.padBot_more {
padding-bottom: 60px; }
.fug_block .content.padBot_none {
padding-bottom: 0; }
.mod-half-and-half .image-container {
position: relative; }
.mod-half-and-half .text-column {
margin-top: 20px; }
.mod-half-and-half .text-column .inner-wrap {
padding: 10px 25px; } }
.hero-simple {
min-height: 480px;
display: flex;
flex-direction: row;
align-items: center; }
.hero-simple .content {
position: relative;
z-index: 2;
max-width: 1250px;
padding-left: 50px;
padding-right: 50px;
justify-content: flex-start; }
.hero-simple .button-row {
width: 100%;
margin-top: 40px; }
.hero-simple .button-row a {
display: inline; }
.hero-simple .hero-bg {
background-position: right;
background-size: cover;
width: 100%;
height: 100%;
top: 0;
left: 0;
position: absolute;
z-index: 1; }
.hero-simple .small-title {
width: 100%;
position: relative;
font-family: 'acumin-pro', sans-serif;
font-weight: 800;
font-size: 20px;
color: #89c440;
text-transform: uppercase;
line-height: 1; }
.hero-simple .small-title span {
border-bottom: 1px solid #89c440; }
.hero-simple .small-title:after {
right: 95%;
bottom: -5px;
position: absolute;
content: '';
width: 1000px;
height: 1px;
background-color: #89c440; }
.hero-simple h1 {
margin-top: 20px;
text-align: left;
width: 100%;
max-width: 800px;
font-weight: 600;
font-size: 64px;
padding-left: 0;
margin-right: auto;
margin-left: 0;
line-height: 64px; } @media screen and (max-width: 767px) {
.hero-simple .content h1 {
font-size: 48px;
line-height: 52px; } }
@media (max-width: 575px) {
.hero-simple .small-title:after {
display: none; }
.hero-simple .content {
justify-content: center;
text-align: center; }
.hero-simple .content h1 {
text-align: center; } }
main.page-home-v2 .content {
max-width: 1200px; }
.page-home-v2 .hero {
z-index: 1;
height: 780px;
overflow: hidden;
position: relative; }
.page-home-v2 .hero .content {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: flex-start;
padding-top: 80px;
padding-bottom: 100px;
z-index: 3;
position: relative; }
.page-home-v2 .hero .content header {
width: 100%; }
.page-home-v2 .hero .content header .desc {
margin-top: 36px; }
.page-home-v2 .hero .button-row {
margin-top: 60px; }
.page-home-v2 .hero .button-row div {
display: inline-block; }
.page-home-v2 .hero .button {
padding-left: 28px;
padding-right: 28px;
padding-top: 16px;
padding-bottom: 18px; }
.page-home-v2 .hero .button svg {
top: 3px;
position: relative;
width: 20px;
height: 20px;
fill: white;
margin-left: 14px;
-webkit-transition: .3s ease;
transition: .3s ease; }
.page-home-v2 .hero .button:hover svg {
fill: black; }
.page-home-v2 .hero .overlay {
z-index: 2;
position: absolute;
top: 0;
left: 0;
right: 0;
width: 100%;
height: 100%;
background-color: rgba(29, 56, 104, 0.54); }
.page-home-v2 .hero .background-image {
z-index: 1; }
.page-home-v2 .hero .content {
z-index: 3; }
.page-home-v2 .hero .video-background {
position: relative;
background: #fff;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 0;
overflow: hidden; }
.page-home-v2 .hero .video-background button {
position: relative;
z-index: 100; }
.page-home-v2 .hero .video-background video {
object-fit: cover;
width: 100vw;
position: absolute;
top: 0;
min-height: 780px;
left: 0; }
.page-home-v2 .hero .stop-element-button {
position: absolute;
z-index: 100;
bottom: 40px;
right: 40px; }
.page-home-v2 .hero.hero-standard-1 {
position: relative; }
.page-home-v2 .hero.hero-standard-1 .content {
height: 100%;
position: relative;
z-index: 3;
display: flex;
flex-direction: row; }
.page-home-v2 .hero.hero-standard-1 h1 {
margin-left: 0;
font-style: normal;
font-weight: 600;
font-size: 64px;
line-height: 66px;
letter-spacing: -0.015em; }
.page-home-v2 .hero.hero-standard-1 h1 span {
display: inline-block; }
.page-home-v2 .hero.hero-standard-1 h1 .white-copy {
width: 100%;
margin-bottom: 20px; }
.page-home-v2 .hero.hero-standard-1 h1 .green-copy {
color: #89c440;
font-style: normal;
font-weight: 600;
font-size: 48px;
line-height: 64px;
letter-spacing: -0.015em;
border-top: 1px solid #89c440;
position: relative; }
.page-home-v2 .hero.hero-standard-1 h1 .green-copy:after {
right: 95%;
top: -1px;
position: absolute;
content: '';
width: 1000px;
height: 1px;
background-color: #89c440; }
.page-home-v2 .hero.hero-standard-1 .background-image {
position: absolute;
top: 0;
left: 0;
z-index: 1;
width: 100%;
height: 100%;
background-position: center;
background-size: cover; }
.page-home-v2 .hero .animated-header {
font-style: normal;
font-weight: 500;
font-size: 40px;
line-height: 48px;
margin-left: auto;
position: relative;
letter-spacing: -0.015em;
color: #89c440;
width: 55%;
text-align: left;
border-bottom: 1px solid #89c440; }
.page-home-v2 .hero .animated-header b {
font-weight: 500; }
.page-home-v2 .hero .animated-header:after {
left: 90%;
bottom: -1px;
position: absolute;
content: '';
width: 1000px;
height: 1px;
background-color: #89c440; }
.stop-element-button {
width: 48px;
height: 48px;
background: transparent;
border: none;
border: 2px solid rgba(255, 255, 255, 0.55);
border-radius: 100%; }
.stop-element-button:hover, .stop-element-button:focus {
background: rgba(255, 255, 255, 0.25); }
.stop-element-button:after {
content: url(//enhancehc.com/wp-content/themes/fug_theme/img/icon-play-hero.svg);
position: absolute;
width: 20px;
height: 20px;
top: 10px;
left: 12px; }
.stop-element-button.playing {
position: relative; }
.stop-element-button.playing:after {
content: url(//enhancehc.com/wp-content/themes/fug_theme/img/icon-pause-hero.svg);
position: absolute;
width: 20px;
height: 20px;
top: 10px;
left: 12px; } @media (max-width: 885px) {
.page-home-v2 .hero.hero-standard-1 {
text-align: center; }
.page-home-v2 .hero.hero-standard-1 h1 span {
font-size: 48px;
line-height: 52px; }
.page-home-v2 .hero.hero-standard-1 h1 .green-copy {
font-size: 36px; }
.page-home-v2 .hero.hero-standard-1 h1 .green-copy:after {
display: none; }
.page-home-v2 .hero .animated-header {
margin-top: 180px;
margin-right: auto;
border-bottom: none;
font-size: 26px;
text-align: center;
width: 100%; }
.page-home-v2 .hero .animated-header:after {
display: none; } }
@media screen and (max-width: 767px) {
.page-home-v2 .hero.hero-standard-1 h1 span {
font-size: 36px;
line-height: 42px; }
.page-home-v2 .hero.hero-standard-1 h1 .green-copy {
font-size: 28px; }
.page-home-v2 .hero .animated-header {
margin-top: 80px; } }
.lead-intro .content {
padding-top: 100px;
max-width: 1050px !important;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: flex-start; }
.lead-intro .content .col-1 {
flex: 0 0 350px; }
.lead-intro .content .col-1 h2 {
margin-top: 0;
padding-top: 0;
font-style: normal;
font-weight: 900;
font-size: 48px;
line-height: 54px;
text-transform: uppercase;
color: #163768; }
.lead-intro .content .col-2 {
padding-top: 5px;
flex: 1;
padding-left: 40px;
line-height: 28px;
font-size: 20px;
font-weight: 400; }
@media (max-width: 885px) {
.lead-intro .content {
justify-content: center; }
.lead-intro .content .col-1, .lead-intro .content .col-2 {
text-align: center;
flex: auto;
width: 100%; }
.lead-intro .content .col-1 h2, .lead-intro .content .col-2 h2 {
font-size: 40px;
line-height: 48px;
text-align: center; }
.lead-intro .content .col-2 {
margin-top: 40px;
font-size: 18px;
padding-left: 0; } }
@media only screen and (min-width: 768px) {
.cd-intro {
margin: 5em auto; } }
@media only screen and (min-width: 1170px) {
.cd-intro {
margin: 6em auto; } }
.cd-headline {
font-size: 3rem;
line-height: 1; }
@media only screen and (min-width: 768px) {
.cd-headline {
font-size: 4.4rem;
font-weight: 300; } }
@media only screen and (min-width: 1170px) {
.cd-headline {
font-size: 6rem; } }
.cd-words-wrapper {
display: inline-block;
position: relative;
text-align: left; }
.cd-words-wrapper b {
display: inline-block;
position: absolute;
white-space: nowrap;
left: 0;
top: 0; }
.cd-words-wrapper b.is-visible {
position: relative; }
.no-js .cd-words-wrapper b {
opacity: 0; }
.no-js .cd-words-wrapper b.is-visible {
opacity: 1; } .cd-headline.rotate-1 .cd-words-wrapper {
-webkit-perspective: 300px;
-moz-perspective: 300px;
perspective: 300px; }
.cd-headline.rotate-1 b {
opacity: 0;
-webkit-transform-origin: 50% 100%;
-moz-transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
-o-transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-transform: rotateX(180deg);
-moz-transform: rotateX(180deg);
-ms-transform: rotateX(180deg);
-o-transform: rotateX(180deg);
transform: rotateX(180deg); }
.cd-headline.rotate-1 b.is-visible {
opacity: 1;
-webkit-transform: rotateX(0deg);
-moz-transform: rotateX(0deg);
-ms-transform: rotateX(0deg);
-o-transform: rotateX(0deg);
transform: rotateX(0deg);
-webkit-animation: cd-rotate-1-in 1.2s;
-moz-animation: cd-rotate-1-in 1.2s;
animation: cd-rotate-1-in 1.2s; }
.cd-headline.rotate-1 b.is-hidden {
-webkit-transform: rotateX(180deg);
-moz-transform: rotateX(180deg);
-ms-transform: rotateX(180deg);
-o-transform: rotateX(180deg);
transform: rotateX(180deg);
-webkit-animation: cd-rotate-1-out 1.2s;
-moz-animation: cd-rotate-1-out 1.2s;
animation: cd-rotate-1-out 1.2s; }
@-webkit-keyframes cd-rotate-1-in {
0% {
-webkit-transform: rotateX(180deg);
opacity: 0; }
35% {
-webkit-transform: rotateX(120deg);
opacity: 0; }
65% {
opacity: 0; }
100% {
-webkit-transform: rotateX(360deg);
opacity: 1; } }
@-moz-keyframes cd-rotate-1-in {
0% {
-moz-transform: rotateX(180deg);
opacity: 0; }
35% {
-moz-transform: rotateX(120deg);
opacity: 0; }
65% {
opacity: 0; }
100% {
-moz-transform: rotateX(360deg);
opacity: 1; } }
@keyframes cd-rotate-1-in {
0% {
-webkit-transform: rotateX(180deg);
-moz-transform: rotateX(180deg);
-ms-transform: rotateX(180deg);
-o-transform: rotateX(180deg);
transform: rotateX(180deg);
opacity: 0; }
35% {
-webkit-transform: rotateX(120deg);
-moz-transform: rotateX(120deg);
-ms-transform: rotateX(120deg);
-o-transform: rotateX(120deg);
transform: rotateX(120deg);
opacity: 0; }
65% {
opacity: 0; }
100% {
-webkit-transform: rotateX(360deg);
-moz-transform: rotateX(360deg);
-ms-transform: rotateX(360deg);
-o-transform: rotateX(360deg);
transform: rotateX(360deg);
opacity: 1; } }
@-webkit-keyframes cd-rotate-1-out {
0% {
-webkit-transform: rotateX(0deg);
opacity: 1; }
35% {
-webkit-transform: rotateX(-40deg);
opacity: 1; }
65% {
opacity: 0; }
100% {
-webkit-transform: rotateX(180deg);
opacity: 0; } }
@-moz-keyframes cd-rotate-1-out {
0% {
-moz-transform: rotateX(0deg);
opacity: 1; }
35% {
-moz-transform: rotateX(-40deg);
opacity: 1; }
65% {
opacity: 0; }
100% {
-moz-transform: rotateX(180deg);
opacity: 0; } }
@keyframes cd-rotate-1-out {
0% {
-webkit-transform: rotateX(0deg);
-moz-transform: rotateX(0deg);
-ms-transform: rotateX(0deg);
-o-transform: rotateX(0deg);
transform: rotateX(0deg);
opacity: 1; }
35% {
-webkit-transform: rotateX(-40deg);
-moz-transform: rotateX(-40deg);
-ms-transform: rotateX(-40deg);
-o-transform: rotateX(-40deg);
transform: rotateX(-40deg);
opacity: 1; }
65% {
opacity: 0; }
100% {
-webkit-transform: rotateX(180deg);
-moz-transform: rotateX(180deg);
-ms-transform: rotateX(180deg);
-o-transform: rotateX(180deg);
transform: rotateX(180deg);
opacity: 0; } } .cd-headline.type .cd-words-wrapper {
vertical-align: top;
overflow: hidden; }
.cd-headline.type .cd-words-wrapper::after { content: '';
position: absolute;
right: 0;
top: 50%;
bottom: auto;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
height: 90%;
width: 1px;
background-color: #aebcb9; }
.cd-headline.type .cd-words-wrapper.waiting::after {
-webkit-animation: cd-pulse 1s infinite;
-moz-animation: cd-pulse 1s infinite;
animation: cd-pulse 1s infinite; }
.cd-headline.type .cd-words-wrapper.selected {
background-color: #aebcb9; }
.cd-headline.type .cd-words-wrapper.selected::after {
visibility: hidden; }
.cd-headline.type .cd-words-wrapper.selected b {
color: #0d0d0d; }
.cd-headline.type b {
visibility: hidden; }
.cd-headline.type b.is-visible {
visibility: visible; }
.cd-headline.type i {
position: absolute;
visibility: hidden; }
.cd-headline.type i.in {
position: relative;
visibility: visible; }
@-webkit-keyframes cd-pulse {
0% {
-webkit-transform: translateY(-50%) scale(1);
opacity: 1; }
40% {
-webkit-transform: translateY(-50%) scale(0.9);
opacity: 0; }
100% {
-webkit-transform: translateY(-50%) scale(0);
opacity: 0; } }
@-moz-keyframes cd-pulse {
0% {
-moz-transform: translateY(-50%) scale(1);
opacity: 1; }
40% {
-moz-transform: translateY(-50%) scale(0.9);
opacity: 0; }
100% {
-moz-transform: translateY(-50%) scale(0);
opacity: 0; } }
@keyframes cd-pulse {
0% {
-webkit-transform: translateY(-50%) scale(1);
-moz-transform: translateY(-50%) scale(1);
-ms-transform: translateY(-50%) scale(1);
-o-transform: translateY(-50%) scale(1);
transform: translateY(-50%) scale(1);
opacity: 1; }
40% {
-webkit-transform: translateY(-50%) scale(0.9);
-moz-transform: translateY(-50%) scale(0.9);
-ms-transform: translateY(-50%) scale(0.9);
-o-transform: translateY(-50%) scale(0.9);
transform: translateY(-50%) scale(0.9);
opacity: 0; }
100% {
-webkit-transform: translateY(-50%) scale(0);
-moz-transform: translateY(-50%) scale(0);
-ms-transform: translateY(-50%) scale(0);
-o-transform: translateY(-50%) scale(0);
transform: translateY(-50%) scale(0);
opacity: 0; } } .cd-headline.rotate-2 .cd-words-wrapper {
-webkit-perspective: 300px;
-moz-perspective: 300px;
perspective: 300px; }
.cd-headline.rotate-2 i, .cd-headline.rotate-2 em {
display: inline-block;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.cd-headline.rotate-2 b {
opacity: 0; }
.cd-headline.rotate-2 i {
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-ms-transform-style: preserve-3d;
-o-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform: translateZ(-20px) rotateX(90deg);
-moz-transform: translateZ(-20px) rotateX(90deg);
-ms-transform: translateZ(-20px) rotateX(90deg);
-o-transform: translateZ(-20px) rotateX(90deg);
transform: translateZ(-20px) rotateX(90deg);
opacity: 0; }
.is-visible .cd-headline.rotate-2 i {
opacity: 1; }
.cd-headline.rotate-2 i.in {
-webkit-animation: cd-rotate-2-in 0.4s forwards;
-moz-animation: cd-rotate-2-in 0.4s forwards;
animation: cd-rotate-2-in 0.4s forwards; }
.cd-headline.rotate-2 i.out {
-webkit-animation: cd-rotate-2-out 0.4s forwards;
-moz-animation: cd-rotate-2-out 0.4s forwards;
animation: cd-rotate-2-out 0.4s forwards; }
.cd-headline.rotate-2 em {
-webkit-transform: translateZ(20px);
-moz-transform: translateZ(20px);
-ms-transform: translateZ(20px);
-o-transform: translateZ(20px);
transform: translateZ(20px); }
.no-csstransitions .cd-headline.rotate-2 i {
-webkit-transform: rotateX(0deg);
-moz-transform: rotateX(0deg);
-ms-transform: rotateX(0deg);
-o-transform: rotateX(0deg);
transform: rotateX(0deg);
opacity: 0; }
.no-csstransitions .cd-headline.rotate-2 i em {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1); }
.no-csstransitions .cd-headline.rotate-2 .is-visible i {
opacity: 1; }
@-webkit-keyframes cd-rotate-2-in {
0% {
opacity: 0;
-webkit-transform: translateZ(-20px) rotateX(90deg); }
60% {
opacity: 1;
-webkit-transform: translateZ(-20px) rotateX(-10deg); }
100% {
opacity: 1;
-webkit-transform: translateZ(-20px) rotateX(0deg); } }
@-moz-keyframes cd-rotate-2-in {
0% {
opacity: 0;
-moz-transform: translateZ(-20px) rotateX(90deg); }
60% {
opacity: 1;
-moz-transform: translateZ(-20px) rotateX(-10deg); }
100% {
opacity: 1;
-moz-transform: translateZ(-20px) rotateX(0deg); } }
@keyframes cd-rotate-2-in {
0% {
opacity: 0;
-webkit-transform: translateZ(-20px) rotateX(90deg);
-moz-transform: translateZ(-20px) rotateX(90deg);
-ms-transform: translateZ(-20px) rotateX(90deg);
-o-transform: translateZ(-20px) rotateX(90deg);
transform: translateZ(-20px) rotateX(90deg); }
60% {
opacity: 1;
-webkit-transform: translateZ(-20px) rotateX(-10deg);
-moz-transform: translateZ(-20px) rotateX(-10deg);
-ms-transform: translateZ(-20px) rotateX(-10deg);
-o-transform: translateZ(-20px) rotateX(-10deg);
transform: translateZ(-20px) rotateX(-10deg); }
100% {
opacity: 1;
-webkit-transform: translateZ(-20px) rotateX(0deg);
-moz-transform: translateZ(-20px) rotateX(0deg);
-ms-transform: translateZ(-20px) rotateX(0deg);
-o-transform: translateZ(-20px) rotateX(0deg);
transform: translateZ(-20px) rotateX(0deg); } }
@-webkit-keyframes cd-rotate-2-out {
0% {
opacity: 1;
-webkit-transform: translateZ(-20px) rotateX(0); }
60% {
opacity: 0;
-webkit-transform: translateZ(-20px) rotateX(-100deg); }
100% {
opacity: 0;
-webkit-transform: translateZ(-20px) rotateX(-90deg); } }
@-moz-keyframes cd-rotate-2-out {
0% {
opacity: 1;
-moz-transform: translateZ(-20px) rotateX(0); }
60% {
opacity: 0;
-moz-transform: translateZ(-20px) rotateX(-100deg); }
100% {
opacity: 0;
-moz-transform: translateZ(-20px) rotateX(-90deg); } }
@keyframes cd-rotate-2-out {
0% {
opacity: 1;
-webkit-transform: translateZ(-20px) rotateX(0);
-moz-transform: translateZ(-20px) rotateX(0);
-ms-transform: translateZ(-20px) rotateX(0);
-o-transform: translateZ(-20px) rotateX(0);
transform: translateZ(-20px) rotateX(0); }
60% {
opacity: 0;
-webkit-transform: translateZ(-20px) rotateX(-100deg);
-moz-transform: translateZ(-20px) rotateX(-100deg);
-ms-transform: translateZ(-20px) rotateX(-100deg);
-o-transform: translateZ(-20px) rotateX(-100deg);
transform: translateZ(-20px) rotateX(-100deg); }
100% {
opacity: 0;
-webkit-transform: translateZ(-20px) rotateX(-90deg);
-moz-transform: translateZ(-20px) rotateX(-90deg);
-ms-transform: translateZ(-20px) rotateX(-90deg);
-o-transform: translateZ(-20px) rotateX(-90deg);
transform: translateZ(-20px) rotateX(-90deg); } } .cd-headline.loading-bar span {
display: inline-block;
padding: .2em 0; }
.cd-headline.loading-bar .cd-words-wrapper {
overflow: hidden;
vertical-align: top; }
.cd-headline.loading-bar .cd-words-wrapper::after { content: '';
position: absolute;
left: 0;
bottom: 0;
height: 3px;
width: 0;
background: #0096a7;
z-index: 2;
-webkit-transition: width 0.3s -0.1s;
-moz-transition: width 0.3s -0.1s;
transition: width 0.3s -0.1s; }
.cd-headline.loading-bar .cd-words-wrapper.is-loading::after {
width: 100%;
-webkit-transition: width 3s;
-moz-transition: width 3s;
transition: width 3s; }
.cd-headline.loading-bar b {
top: .2em;
opacity: 0;
-webkit-transition: opacity 0.3s;
-moz-transition: opacity 0.3s;
transition: opacity 0.3s; }
.cd-headline.loading-bar b.is-visible {
opacity: 1;
top: 0; } .cd-headline.slide span {
display: inline-block;
padding: .2em 0; }
.cd-headline.slide .cd-words-wrapper {
overflow: hidden;
vertical-align: top; }
.cd-headline.slide b {
opacity: 0;
top: .2em; }
.cd-headline.slide b.is-visible {
top: 0;
opacity: 1;
-webkit-animation: slide-in 0.6s;
-moz-animation: slide-in 0.6s;
animation: slide-in 0.6s; }
.cd-headline.slide b.is-hidden {
-webkit-animation: slide-out 0.6s;
-moz-animation: slide-out 0.6s;
animation: slide-out 0.6s; }
@-webkit-keyframes slide-in {
0% {
opacity: 0;
-webkit-transform: translateY(-100%); }
60% {
opacity: 1;
-webkit-transform: translateY(20%); }
100% {
opacity: 1;
-webkit-transform: translateY(0); } }
@-moz-keyframes slide-in {
0% {
opacity: 0;
-moz-transform: translateY(-100%); }
60% {
opacity: 1;
-moz-transform: translateY(20%); }
100% {
opacity: 1;
-moz-transform: translateY(0); } }
@keyframes slide-in {
0% {
opacity: 0;
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%); }
60% {
opacity: 1;
-webkit-transform: translateY(20%);
-moz-transform: translateY(20%);
-ms-transform: translateY(20%);
-o-transform: translateY(20%);
transform: translateY(20%); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0); } }
@-webkit-keyframes slide-out {
0% {
opacity: 1;
-webkit-transform: translateY(0); }
60% {
opacity: 0;
-webkit-transform: translateY(120%); }
100% {
opacity: 0;
-webkit-transform: translateY(100%); } }
@-moz-keyframes slide-out {
0% {
opacity: 1;
-moz-transform: translateY(0); }
60% {
opacity: 0;
-moz-transform: translateY(120%); }
100% {
opacity: 0;
-moz-transform: translateY(100%); } }
@keyframes slide-out {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0); }
60% {
opacity: 0;
-webkit-transform: translateY(120%);
-moz-transform: translateY(120%);
-ms-transform: translateY(120%);
-o-transform: translateY(120%);
transform: translateY(120%); }
100% {
opacity: 0;
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%); } } .cd-headline.clip span {
display: inline-block;
padding: .2em 0; }
.cd-headline.clip .cd-words-wrapper {
overflow: hidden;
vertical-align: top; }
.cd-headline.clip b {
opacity: 0; }
.cd-headline.clip b.is-visible {
opacity: 1; } .cd-headline.zoom .cd-words-wrapper {
-webkit-perspective: 300px;
-moz-perspective: 300px;
perspective: 300px; }
.cd-headline.zoom b {
opacity: 0; }
.cd-headline.zoom b.is-visible {
opacity: 1;
-webkit-animation: zoom-in 0.8s;
-moz-animation: zoom-in 0.8s;
animation: zoom-in 0.8s; }
.cd-headline.zoom b.is-hidden {
-webkit-animation: zoom-out 0.8s;
-moz-animation: zoom-out 0.8s;
animation: zoom-out 0.8s; }
@-webkit-keyframes zoom-in {
0% {
opacity: 0;
-webkit-transform: translateZ(100px); }
100% {
opacity: 1;
-webkit-transform: translateZ(0); } }
@-moz-keyframes zoom-in {
0% {
opacity: 0;
-moz-transform: translateZ(100px); }
100% {
opacity: 1;
-moz-transform: translateZ(0); } }
@keyframes zoom-in {
0% {
opacity: 0;
-webkit-transform: translateZ(100px);
-moz-transform: translateZ(100px);
-ms-transform: translateZ(100px);
-o-transform: translateZ(100px);
transform: translateZ(100px); }
100% {
opacity: 1;
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0); } }
@-webkit-keyframes zoom-out {
0% {
opacity: 1;
-webkit-transform: translateZ(0); }
100% {
opacity: 0;
-webkit-transform: translateZ(-100px); } }
@-moz-keyframes zoom-out {
0% {
opacity: 1;
-moz-transform: translateZ(0); }
100% {
opacity: 0;
-moz-transform: translateZ(-100px); } }
@keyframes zoom-out {
0% {
opacity: 1;
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0); }
100% {
opacity: 0;
-webkit-transform: translateZ(-100px);
-moz-transform: translateZ(-100px);
-ms-transform: translateZ(-100px);
-o-transform: translateZ(-100px);
transform: translateZ(-100px); } } .cd-headline.rotate-3 .cd-words-wrapper {
-webkit-perspective: 300px;
-moz-perspective: 300px;
perspective: 300px; }
.cd-headline.rotate-3 b {
opacity: 0; }
.cd-headline.rotate-3 i {
display: inline-block;
-webkit-transform: rotateY(180deg);
-moz-transform: rotateY(180deg);
-ms-transform: rotateY(180deg);
-o-transform: rotateY(180deg);
transform: rotateY(180deg);
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.is-visible .cd-headline.rotate-3 i {
-webkit-transform: rotateY(0deg);
-moz-transform: rotateY(0deg);
-ms-transform: rotateY(0deg);
-o-transform: rotateY(0deg);
transform: rotateY(0deg); }
.cd-headline.rotate-3 i.in {
-webkit-animation: cd-rotate-3-in 0.6s forwards;
-moz-animation: cd-rotate-3-in 0.6s forwards;
animation: cd-rotate-3-in 0.6s forwards; }
.cd-headline.rotate-3 i.out {
-webkit-animation: cd-rotate-3-out 0.6s forwards;
-moz-animation: cd-rotate-3-out 0.6s forwards;
animation: cd-rotate-3-out 0.6s forwards; }
.no-csstransitions .cd-headline.rotate-3 i {
-webkit-transform: rotateY(0deg);
-moz-transform: rotateY(0deg);
-ms-transform: rotateY(0deg);
-o-transform: rotateY(0deg);
transform: rotateY(0deg);
opacity: 0; }
.no-csstransitions .cd-headline.rotate-3 .is-visible i {
opacity: 1; }
@-webkit-keyframes cd-rotate-3-in {
0% {
-webkit-transform: rotateY(180deg); }
100% {
-webkit-transform: rotateY(0deg); } }
@-moz-keyframes cd-rotate-3-in {
0% {
-moz-transform: rotateY(180deg); }
100% {
-moz-transform: rotateY(0deg); } }
@keyframes cd-rotate-3-in {
0% {
-webkit-transform: rotateY(180deg);
-moz-transform: rotateY(180deg);
-ms-transform: rotateY(180deg);
-o-transform: rotateY(180deg);
transform: rotateY(180deg); }
100% {
-webkit-transform: rotateY(0deg);
-moz-transform: rotateY(0deg);
-ms-transform: rotateY(0deg);
-o-transform: rotateY(0deg);
transform: rotateY(0deg); } }
@-webkit-keyframes cd-rotate-3-out {
0% {
-webkit-transform: rotateY(0); }
100% {
-webkit-transform: rotateY(-180deg); } }
@-moz-keyframes cd-rotate-3-out {
0% {
-moz-transform: rotateY(0); }
100% {
-moz-transform: rotateY(-180deg); } }
@keyframes cd-rotate-3-out {
0% {
-webkit-transform: rotateY(0);
-moz-transform: rotateY(0);
-ms-transform: rotateY(0);
-o-transform: rotateY(0);
transform: rotateY(0); }
100% {
-webkit-transform: rotateY(-180deg);
-moz-transform: rotateY(-180deg);
-ms-transform: rotateY(-180deg);
-o-transform: rotateY(-180deg);
transform: rotateY(-180deg); } } .cd-headline.scale b {
opacity: 0; }
.cd-headline.scale i {
display: inline-block;
opacity: 0;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0); }
.is-visible .cd-headline.scale i {
opacity: 1; }
.cd-headline.scale i.in {
-webkit-animation: scale-up 0.6s forwards;
-moz-animation: scale-up 0.6s forwards;
animation: scale-up 0.6s forwards; }
.cd-headline.scale i.out {
-webkit-animation: scale-down 0.6s forwards;
-moz-animation: scale-down 0.6s forwards;
animation: scale-down 0.6s forwards; }
.no-csstransitions .cd-headline.scale i {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
opacity: 0; }
.no-csstransitions .cd-headline.scale .is-visible i {
opacity: 1; }
@-webkit-keyframes scale-up {
0% {
-webkit-transform: scale(0);
opacity: 0; }
60% {
-webkit-transform: scale(1.2);
opacity: 1; }
100% {
-webkit-transform: scale(1);
opacity: 1; } }
@-moz-keyframes scale-up {
0% {
-moz-transform: scale(0);
opacity: 0; }
60% {
-moz-transform: scale(1.2);
opacity: 1; }
100% {
-moz-transform: scale(1);
opacity: 1; } }
@keyframes scale-up {
0% {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
opacity: 0; }
60% {
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
transform: scale(1.2);
opacity: 1; }
100% {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
opacity: 1; } }
@-webkit-keyframes scale-down {
0% {
-webkit-transform: scale(1);
opacity: 1; }
60% {
-webkit-transform: scale(0);
opacity: 0; } }
@-moz-keyframes scale-down {
0% {
-moz-transform: scale(1);
opacity: 1; }
60% {
-moz-transform: scale(0);
opacity: 0; } }
@keyframes scale-down {
0% {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
opacity: 1; }
60% {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
opacity: 0; } } .cd-headline.push b {
opacity: 0; }
.cd-headline.push b.is-visible {
opacity: 1;
-webkit-animation: push-in 0.6s;
-moz-animation: push-in 0.6s;
animation: push-in 0.6s; }
.cd-headline.push b.is-hidden {
-webkit-animation: push-out 0.6s;
-moz-animation: push-out 0.6s;
animation: push-out 0.6s; }
@-webkit-keyframes push-in {
0% {
opacity: 0;
-webkit-transform: translateX(-100%); }
60% {
opacity: 1;
-webkit-transform: translateX(10%); }
100% {
opacity: 1;
-webkit-transform: translateX(0); } }
@-moz-keyframes push-in {
0% {
opacity: 0;
-moz-transform: translateX(-100%); }
60% {
opacity: 1;
-moz-transform: translateX(10%); }
100% {
opacity: 1;
-moz-transform: translateX(0); } }
@keyframes push-in {
0% {
opacity: 0;
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%); }
60% {
opacity: 1;
-webkit-transform: translateX(10%);
-moz-transform: translateX(10%);
-ms-transform: translateX(10%);
-o-transform: translateX(10%);
transform: translateX(10%); }
100% {
opacity: 1;
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0); } }
@-webkit-keyframes push-out {
0% {
opacity: 1;
-webkit-transform: translateX(0); }
60% {
opacity: 0;
-webkit-transform: translateX(110%); }
100% {
opacity: 0;
-webkit-transform: translateX(100%); } }
@-moz-keyframes push-out {
0% {
opacity: 1;
-moz-transform: translateX(0); }
60% {
opacity: 0;
-moz-transform: translateX(110%); }
100% {
opacity: 0;
-moz-transform: translateX(100%); } }
@keyframes push-out {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0); }
60% {
opacity: 0;
-webkit-transform: translateX(110%);
-moz-transform: translateX(110%);
-ms-transform: translateX(110%);
-o-transform: translateX(110%);
transform: translateX(110%); }
100% {
opacity: 0;
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%); } }
.cd-headline {
font-weight: 300; } @media screen and (max-width: 700px) {
.cd-headline.clip .cd-words-wrapper::after {
top: 8px; }
.cd-headline span:last-child {
width: 100%; } }
.service-ctas {
background: #ebedf1;
background: linear-gradient(90deg, #ebedf1 0%, #fbfbfc 100%); }
.service-ctas .content {
max-width: 100% !important;
padding-left: 0;
padding-right: 0;
padding-top: 100px; }
.service-ctas .service-row {
width: 100%;
padding-left: 25px;
padding-right: 25px; }
.service-ctas .service-row .service-inner-wrap {
position: relative;
display: flex;
flex-direction: row;
flex-wrap: wrap;
margin-bottom: 180px;
max-width: 1200px;
margin-left: auto;
margin-right: auto; }
.service-ctas .service-row .col-1 {
position: relative;
z-index: 2;
width: 50%;
padding-top: 20px;
padding-bottom: 20px; }
.service-ctas .service-row .col-1 .inner-wrap {
padding-right: 25px; }
.service-ctas .service-row .col-1 h2 {
font-style: normal;
font-weight: 900;
font-size: 24px;
line-height: 112%;
color: #163768;
text-transform: none; }
.service-ctas .service-row .col-1 .desc {
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 138.3%; }
.service-ctas .service-row .col-1 .desc.large {
font-size: 20px;
line-height: 138.3%; }
.service-ctas .service-row .col-1 h3 {
font-weight: 900;
font-size: 16px;
line-height: 138.3%;
text-transform: uppercase;
color: #1D3868;
margin-top: 20px; }
.service-ctas .service-row .col-1 ul {
width: 100%;
padding: 0;
margin: 0;
column-count: 2;
column-gap: 30px; }
.service-ctas .service-row .col-1 ul li {
padding: 0;
margin-left: 0;
margin-bottom: 20px; }
.service-ctas .service-row .col-1 ul li:before {
display: none; }
.service-ctas .service-row .col-1 ul li a {
font-weight: 400;
font-size: 16px;
line-height: 138.3%;
color: #1D3868; }
.service-ctas .service-row .col-2 {
position: relative;
z-index: 2;
width: 50%; }
.service-ctas .service-row .col-2 img {
position: relative;
top: 40px;
box-shadow: 8px 13px 22px -4px rgba(0, 0, 0, 0.3); }
.service-ctas .service-row:nth-child(odd) .blue-border {
z-index: 1;
position: absolute;
width: 100%;
border: 1px solid #B6BFD1;
top: 0;
transform: translateX(-40%);
left: 0;
height: 100%; }
.service-ctas .service-row:nth-child(odd) .col-1 {
order: 1; }
.service-ctas .service-row:nth-child(odd) .col-2 {
order: 2; }
.service-ctas .service-row:nth-child(even) .blue-border {
z-index: 1;
position: absolute;
width: 100%;
border: 1px solid #B6BFD1;
top: 0;
transform: translateX(40%);
left: 0;
height: 100%; }
.service-ctas .service-row:nth-child(even) .col-1 {
order: 2; }
.service-ctas .service-row:nth-child(even) .col-1 .inner-wrap {
padding-right: 0;
padding-left: 25px; }
.service-ctas .service-row:nth-child(even) .col-2 {
order: 1; } @media (max-width: 885px) {
.service-ctas .content {
padding-top: 60px; }
.service-ctas .service-row .service-inner-wrap {
margin-bottom: 60px; }
.service-ctas .service-row .col-1, .service-ctas .service-row .col-2 {
width: 100%; }
.service-ctas .service-row .col-1 img, .service-ctas .service-row .col-2 img {
width: calc(100% - 40px); }
.service-ctas .service-row .col-2 {
text-align: center; }
.service-ctas .service-row .col-1 .inner-wrap {
padding-left: 35px !important;
padding-right: 35px !important; }
.service-ctas .service-row .col-1 h2 {
margin-top: 60px; }
.service-ctas .service-row:nth-child(odd) .blue-border {
width: 100%;
top: initial;
bottom: 0;
transform: translateX(0);
left: 0;
height: 80%; }
.service-ctas .service-row:nth-child(odd) .col-1 {
order: 2; }
.service-ctas .service-row:nth-child(odd) .col-2 {
order: 1; }
.service-ctas .service-row:nth-child(even) .blue-border {
width: 100%;
top: initial;
bottom: 0;
transform: translateX(0);
left: 0;
height: 80%; }
.service-ctas .service-row:nth-child(even) .col-1 {
order: 2; }
.service-ctas .service-row:nth-child(even) .col-1 .inner-wrap {
padding-right: 0;
padding-left: 25px; }
.service-ctas .service-row:nth-child(even) .col-2 {
order: 1; } }
@media (max-width: 575px) {
.service-ctas .service-row .col-1 ul {
column-count: 1; }
.service-ctas .service-row .col-1 ul li {
width: 100%; } }
.testimonial-slider {
background-color: #163768;
position: relative; }
.testimonial-slider .watermark {
width: 100%;
max-width: 780px;
position: absolute;
top: -50px;
right: 0;
bottom: 0;
overflow-y: hidden; }
.testimonial-slider .icon-quote {
margin-bottom: 30px; }
.testimonial-slider .content {
padding-top: 100px;
padding-bottom: 100px;
z-index: 2;
position: relative;
display: flex;
justify-content: space-between;
flex-direction: row;
flex-wrap: wrap; }
.testimonial-slider .col-1 {
width: 48%;
padding-right: 50px; }
.testimonial-slider .col-1 h2 {
max-width: 520px;
font-style: normal;
font-weight: 900;
font-size: 48px;
line-height: 112%;
text-transform: uppercase;
color: #89c440;
width: 100%; }
.testimonial-slider .col-1 .desc {
max-width: 520px;
color: white;
width: 100%; }
.testimonial-slider .col-1 .button-row {
width: 100%;
margin-top: 40px; }
.testimonial-slider .col-1 .button-row a {
display: inline-block; }
.testimonial-slider .col-2 {
width: 48%;
max-width: 48%;
padding: 50px;
background-color: white;
box-shadow: 8px 13px 22px -4px rgba(0, 0, 0, 0.3);
min-height: 570px; }
.testimonial-slider .col-2 .outter-wrapper {
width: 100%;
max-width: 100%; }
.testimonial-slider .col-2 .desc {
font-style: italic;
font-weight: 400;
font-size: 24px;
line-height: 138.3%;
color: #1D3868; }
.testimonial-slider .col-2 .name {
margin-top: 20px;
font-style: normal;
font-weight: 800;
font-size: 20px;
line-height: 138.3%;
color: #1D3868;
position: relative;
padding-top: 10px; }
.testimonial-slider .col-2 .name:before {
content: '';
width: 50px;
left: 0;
top: -5px;
background-color: #89c440;
height: 1px;
position: absolute; }
.testimonial-slider .col-2 .position, .testimonial-slider .col-2 .company {
font-style: normal;
font-weight: 400;
font-size: 20px;
line-height: 138.3%;
color: #1D3868; }
.testimonial-slider .swiper {
width: 100%;
padding-bottom: 80px; }
.testimonial-slider .swiper .swiper-button-next, .testimonial-slider .swiper .swiper-button-prev {
width: 52px;
height: 52px;
border: 5px solid rgba(199, 205, 217, 0);
transition: .3s ease;
border-radius: 100px; }
.testimonial-slider .swiper .swiper-button-next svg, .testimonial-slider .swiper .swiper-button-prev svg {
width: 100%; }
.testimonial-slider .swiper .swiper-button-next img, .testimonial-slider .swiper .swiper-button-prev img {
width: 100%;
height: auto; }
.testimonial-slider .swiper .swiper-button-next:after, .testimonial-slider .swiper .swiper-button-prev:after {
display: none; }
.testimonial-slider .swiper .swiper-button-next:hover, .testimonial-slider .swiper .swiper-button-prev:hover {
border: 5px solid #c7cdd9;
transition: .3s ease; }
.testimonial-slider .swiper .swiper-button-next {
top: initial;
bottom: 0;
right: initial;
left: 55px; }
.testimonial-slider .swiper .swiper-button-next img {
transform: rotate(180deg); }
.testimonial-slider .swiper .swiper-button-prev {
top: initial;
bottom: 0;
right: initial;
left: 0; } @media screen and (max-width: 1100px) {
.testimonial-slider .col-2 {
padding: 35px; }
.testimonial-slider .col-2 .desc {
font-size: 20px; }
.testimonial-slider .col-2 .name, .testimonial-slider .col-2 .position, .testimonial-slider .col-2 .company {
font-size: 16px; } }
@media (max-width: 885px) {
.testimonial-slider .content {
padding-top: 60px;
padding-bottom: 60px; }
.testimonial-slider .col-2, .testimonial-slider .col-1 {
width: 100%; }
.testimonial-slider .col-1 {
max-width: 660px;
margin-left: auto;
margin-right: auto;
padding-right: 0;
margin-bottom: 40px;
text-align: center; }
.testimonial-slider .col-1 h2 {
max-width: 100%;
text-align: center; }
.testimonial-slider .col-1 .desc {
max-width: 100%; }
.testimonial-slider .col-2 {
min-height: 300px;
max-width: 100%;
text-align: center; }
.testimonial-slider .col-2 .name:before {
left: calc(50% - 25px); }
.testimonial-slider .swiper .swiper-button-next {
left: calc(50%); }
.testimonial-slider .swiper .swiper-button-prev {
left: calc(50% - 50px); } }
.fug-clients h2.heading {
max-width: 860px;
margin-bottom: 60px;
font-style: normal;
font-weight: 400;
font-size: 36px;
line-height: 138.3%;
text-transform: none;
text-align: center;
color: #1D3868; }
.fug-clients .logos {
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap; }
.fug-clients .client-logo {
width: 20%;
margin-bottom: 30px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center; }
.fug-clients .client-logo .img-wrap {
width: 90%;
border: 1px solid #C7CDD9;
border-radius: 100%;
overflow: hidden; }
.fug-clients .client-logo .img-wrap img {
padding: 15px; }
@media (max-width: 885px) {
.fug-clients .client-logo {
width: 33.3%; } }
@media screen and (max-width: 767px) {
.fug-clients .client-logo {
width: 50%; } }
.simple-cta {
position: relative;
background: linear-gradient(335.15deg, rgba(199, 205, 217, 0.78) 13.56%, rgba(199, 205, 217, 0.08) 85.44%);
padding-top: 40px;
padding-bottom: 40px;
padding-left: 50px;
padding-right: 50px; }
.simple-cta .content {
background: linear-gradient(258.21deg, #1D3868 33.37%, #1E3254 85.42%);
box-shadow: 0px 4px 12px 1px rgba(0, 0, 0, 0.25);
border-radius: 8px;
max-width: 980px !important;
margin-bottom: 160px;
margin-top: 60px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
padding-left: 50px;
padding-right: 50px;
align-items: flex-start; }
.simple-cta .col-1 {
width: 48%; }
.simple-cta .col-1 h2.heading {
font-style: normal;
font-weight: 600;
font-size: 26px;
line-height: 112%;
color: white;
text-transform: none;
padding-top: 0;
margin-top: 0; }
.simple-cta .col-2 {
width: 48%;
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 138.3%;
color: white; }
.simple-cta .col-2 .button-row {
margin-top: 20px; }
.simple-cta .col-2 .button-row a {
display: inline-block; }
.simple-cta .arrow-down {
position: absolute;
top: 0;
right: 0;
width: 0;
height: 0;
border-left: 100vw solid transparent;
border-right: 0px solid transparent;
border-top: 310px solid white; } @media (max-width: 885px) {
.simple-cta .col-1, .simple-cta .col-2 {
width: 100%;
text-align: center; }
.simple-cta .col-1 h2.heading, .simple-cta .col-2 h2.heading {
text-align: center; }
.simple-cta .col-1 .button-row, .simple-cta .col-2 .button-row {
margin-top: 40px; } }
span.green {
color: #89c440; }
.page-about-v2 .lead-intro .content {
max-width: 1200px !important; }
.page-about-v2 .lead-intro .content h2 {
font-style: normal;
font-weight: 900;
font-size: 48px;
line-height: 54px;
text-transform: uppercase;
position: relative; }
.page-about-v2 .lead-intro .content h2:after {
right: 102%;
bottom: 5px;
position: absolute;
content: '';
width: 1000px;
height: 1px;
background-color: #89c440; }
.page-about-v2 .lead-intro .content .col-1 {
flex: 0 0 420px; }
.page-about-v2 .mission-vision-metrics .swiper-slide {
background-color: white; }
.page-about-v2 .mission-vision-metrics .content {
max-width: 100%;
padding-left: 0;
padding-right: 0; }
.page-about-v2 .mission-vision-metrics .inner-wrap {
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: flex-start;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
padding-left: 50px;
padding-right: 50px;
padding-bottom: 25px; }
.page-about-v2 .mission-vision-metrics .col-1, .page-about-v2 .mission-vision-metrics .col-2 {
width: 50%; }
.page-about-v2 .mission-vision-metrics .col-1 h2, .page-about-v2 .mission-vision-metrics .col-2 h2 {
color: #163768;
font-style: normal;
font-weight: 900;
font-size: 48px;
line-height: 54px;
text-transform: uppercase;
padding-right: 50px;
padding-top: 50px;
position: relative; }
.page-about-v2 .mission-vision-metrics .col-1 h2:after, .page-about-v2 .mission-vision-metrics .col-2 h2:after {
right: 102%;
bottom: 5px;
position: absolute;
content: '';
width: 1000px;
height: 1px;
background-color: #89c440; }
.page-about-v2 .mission-vision-metrics .col-2 {
background-color: #163768;
box-shadow: 8px 13px 22px -4px rgba(0, 0, 0, 0.3);
position: relative;
min-height: 600px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: flex-start; }
.page-about-v2 .mission-vision-metrics .col-2 .watermark {
position: absolute;
height: 100%;
width: 100%;
right: -25px;
top: 0; }
.page-about-v2 .mission-vision-metrics .col-2 .watermark img {
width: 100%;
height: auto; }
.page-about-v2 .mission-vision-metrics .col-2 .statement {
padding: 50px; }
.page-about-v2 .mission-vision-metrics .col-2 .statement p {
color: #89c440;
font-style: normal;
font-weight: 700;
font-size: 34px;
line-height: 120%;
margin-bottom: 24px;
position: relative;
width: 100%;
text-align: left; }
.page-about-v2 .exp-adv {
margin-bottom: 400px; }
.page-about-v2 .exp-adv .content {
max-width: 1200px;
justify-content: flex-start; }
.page-about-v2 .exp-adv .col-1 {
z-index: 2;
position: relative;
margin-top: 0; }
.page-about-v2 .exp-adv .col-1 .inner-wrap {
background-color: white;
padding: 40px 50px 40px 0;
width: 50%;
margin-right: auto;
margin-left: 0; }
.page-about-v2 .exp-adv .col-1 h2 {
font-weight: 900;
font-size: 48px;
line-height: 54px;
text-transform: uppercase;
color: #163768;
position: relative; }
.page-about-v2 .exp-adv .col-1 h2:after {
right: 102%;
bottom: 5px;
position: absolute;
content: '';
width: 1000px;
height: 1px;
background-color: #89c440; }
.page-about-v2 .exp-adv .col-2 {
position: absolute;
width: 100%;
max-width: 800px;
right: 50px;
top: 220px;
z-index: 1; }
.page-about-v2 .exp-adv .col-2 img {
filter: drop-shadow(2px 4px 14px rgba(0, 0, 0, 0.25)); }
.metrics .content {
max-width: 1200px;
justify-content: space-between; }
.metrics .metric-item {
min-height: 360px;
background-color: #163768;
width: 32%;
text-align: center;
padding-top: 40px;
margin-bottom: 25px;
padding-bottom: 40px;
padding-left: 20px;
padding-right: 20px; }
.metrics .title {
font-style: normal;
font-weight: 700;
font-size: 80px;
line-height: 138.3%;
color: #89c440;
font-family: 'acumin-pro', sans-serif;
position: relative; }
.metrics .title:after {
content: '';
position: absolute;
bottom: 0;
width: 80px;
left: calc(50% - 40px);
height: 1px;
background-color: #89c440; }
.metrics .desc {
margin-top: 10px;
font-family: 'acumin-pro', sans-serif;
font-style: normal;
font-weight: 900;
font-size: 26px;
line-height: 36px;
color: white;
text-transform: uppercase; } @media (max-width: 885px) {
.metrics .metric-item {
align-items: center;
justify-content: center;
display: flex;
flex-direction: column;
flex-wrap: wrap;
width: 100%;
margin-bottom: 60px; }
.metrics .metric-item .title {
margin-top: -40px; }
.metrics .metric-item > div {
width: 100%; } }
@media (max-width: 575px) {
.page-about-v2 .mission-vision-metrics .col-1 h2, .page-about-v2 .mission-vision-metrics .col-2 h2 {
font-size: 40px;
line-height: 42px; }
.page-about-v2 .mission-vision-metrics .inner-wrap {
padding-left: 25px;
padding-right: 25px; }
.page-about-v2 .mission-vision-metrics .col-2 .statement {
padding-left: 25px;
padding-right: 25px; }
.page-about-v2 .mission-vision-metrics .col-2 .statement p {
font-size: 22px; } }
.team-list {
margin-top: 40px;
background: linear-gradient(330.06deg, rgba(123, 202, 149, 0) -15.34%, rgba(123, 202, 149, 0.072) 82.72%); }
.team-list .content {
max-width: 1200px;
padding-top: 0;
align-items: flex-start; }
.team-list h2.heading {
width: 100%;
text-align: center;
font-weight: 900;
font-size: 48px;
line-height: 54px;
padding-top: 60px;
padding-bottom: 60px;
text-align: center;
text-transform: uppercase;
color: #1D3868; }
.team-list .team-item {
position: relative;
width: 33%; }
.team-list .team-item .inner-wrap {
padding: 40px 15px 40px; }
.team-list .team-item .img-wrap {
border-radius: 100%;
overflow: hidden;
border: 1px solid #89c440; }
.team-list .team-item img {
padding: 10px;
border-radius: 100%;
overflow: hidden; }
.team-list .team-item h3 {
font-weight: 600;
font-size: 24px;
line-height: 112%;
color: #163768;
text-transform: none;
text-align: center;
margin-bottom: 5px;
margin-top: 10px; }
.team-list .team-item h4 {
font-weight: 400;
font-size: 18px;
margin-bottom: 0;
line-height: 112%;
text-align: center;
text-transform: none;
color: #666; }
.team-list .team-item .hover-effect {
position: absolute;
top: 10px;
z-index: 10;
width: calc(100% - 20px);
left: 10px;
background-color: white;
border: 2px solid #89c440;
box-shadow: 0px 4px 20px -2px rgba(0, 0, 0, 0.25);
transform: scale(0.7);
opacity: 0;
transition: .4s ease;
border-radius: 15px;
height: calc(100% - 20px);
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
text-align: center;
justify-content: center; }
.team-list .team-item .hover-effect .desc {
padding-left: 25px;
margin-top: 25px;
padding-right: 25px;
max-width: 280px;
margin-left: auto;
margin-right: auto;
font-weight: 400;
font-size: 16px;
margin-bottom: 25px;
line-height: 135%; }
.team-list .team-item .hover-effect .view {
background-color: #163768;
width: 47px;
height: 47px;
color: #89c440;
display: block;
position: relative;
text-align: center;
margin-left: auto;
margin-right: auto;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
font-size: 42px;
font-weight: 300;
border-radius: 100px;
line-height: -20px;
padding: 0;
transform: scale(1);
transition: .3s ease; }
.team-list .team-item .hover-effect .view span {
top: -3px;
position: relative; }
.team-list .team-item .hover-effect .view:hover {
text-decoration: none;
transform: scale(1.1); }
.team-list .team-item .hover-effect .hover-img-wrap {
text-align: center; }
.team-list .team-item .hover-effect .hover-img-wrap img {
width: 160px;
height: auto; }
.team-list .team-item:hover .hover-effect {
transform: scale(1);
opacity: 1;
transition: .5s ease; } @media screen and (max-width: 1023px) {
.page-about-v2 .lead-intro .content .col-1 {
text-align: left; }
.page-about-v2 .lead-intro .content .col-1 h2 {
text-align: left;
max-width: 550px; }
.page-about-v2 .mission-vision-metrics .col-1, .page-about-v2 .mission-vision-metrics .col-2 {
width: 100%; }
.page-about-v2 .mission-vision-metrics .col-1 {
margin-bottom: 60px; }
.page-about-v2 .mission-vision-metrics .col-1 h2 {
margin-top: 0;
padding-top: 0; }
.page-about-v2 .mission-vision-metrics .col-2 {
min-height: 500px; }
.page-about-v2 .exp-adv {
margin-bottom: 0; }
.page-about-v2 .exp-adv .content {
padding-bottom: 0;
padding-left: 0;
padding-right: 0; }
.page-about-v2 .exp-adv .col-1, .page-about-v2 .exp-adv .col-2 {
position: relative;
width: 100%;
top: 0; }
.page-about-v2 .exp-adv .col-1 {
order: 2;
width: calc(100% - 100px);
margin-left: auto;
margin-right: auto;
margin-top: -100px;
background-color: white;
padding-left: 50px;
padding-right: 50px; }
.page-about-v2 .exp-adv .col-1 .inner-wrap {
width: 100%;
padding: 40px 0; }
.page-about-v2 .exp-adv .col-2 {
order: 1;
max-width: 100%;
right: 0; }
.page-about-v2 .exp-adv .col-2 img {
width: 100%; } }
@media (max-width: 885px) {
.page-about-v2 .lead-intro .content .col-1 {
flex: auto; }
.team-list .team-item {
width: 50%; }
.team-list .team-item .hover-effect {
display: none; } }
@media (max-width: 575px) {
.team-list .team-item {
width: 100%; }
.team-list .team-item img {
width: 100%; }
.page-about-v2 .exp-adv .col-1 {
padding-left: 25px;
padding-right: 25px;
width: calc(100% - 50px); }
.page-about-v2 .exp-adv .col-1 h2 {
font-size: 36px;
line-height: 46px; } }
.page-services-v2 .content {
max-width: 1250px !important; }
.page-services-v2 .lead-intro .content {
max-width: 1250px !important;
margin-top: -60px;
z-index: 100; }
.page-services-v2 .lead-intro .col-1, .page-services-v2 .lead-intro .col-2 {
flex: auto;
width: 50%; }
.page-services-v2 .lead-intro .col-2 img {
margin-top: -100px;
box-shadow: 2px 4px 20px -2px rgba(0, 0, 0, 0.25); }
.service-boxes .content {
padding-bottom: 150px; }
.service-boxes .section-intro {
width: 100%; }
.service-boxes h2.heading {
font-style: normal;
font-weight: 900;
font-size: 48px;
line-height: 112%;
position: relative; }
.service-boxes h2.heading .cd-headline {
font-style: normal;
font-weight: 900;
font-size: 48px;
line-height: 112%;
padding-top: 0;
margin-top: 0; }
.service-boxes h2.heading .cd-headline .cd-words-wrapper {
padding-top: 0;
margin-top: 0; }
.service-boxes h2.heading:after {
right: 102%;
bottom: 18px;
position: absolute;
content: '';
width: 1000px;
height: 1px;
background-color: #89c440; }
.service-boxes h2.heading .static {
width: 100%;
color: #163768; }
.service-boxes .boxes-wrap {
display: flex;
flex-direction: row;
flex-wrap: wrap; }
.service-boxes .the-box {
min-height: 400px;
position: relative;
width: 33.3%;
overflow-y: hidden; }
.service-boxes .the-box .inner-wrap {
overflow-y: hidden;
position: relative;
height: 100%;
background-color: #F6F7FC;
padding: 3px;
border: 3px solid white; }
.service-boxes .the-box ul {
padding: 150px 15px 5px;
margin-bottom: 0; }
.service-boxes .the-box ul li {
margin-bottom: 15px; }
.service-boxes .the-box ul li:before {
display: none; }
.service-boxes .the-box ul li a {
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 138.3%;
color: #163768; }
.service-boxes .the-box .box-cover {
position: absolute;
width: 100%;
height: calc(100% + 60px);
top: 0;
left: 0;
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 88%);
background: linear-gradient(150.22deg, #1D3868 43.62%, #89C440 170.78%);
z-index: 2;
transform: translateY(0);
transition: .3s ease; }
.service-boxes .the-box .box-cover h3 {
transform: translateY(0);
transition: .3s ease;
position: absolute;
z-index: 10;
bottom: 80px;
left: 0;
font-style: normal;
font-weight: 700;
font-size: 24px;
line-height: 112%;
color: white;
padding-left: 15px;
padding-right: 15px;
padding-bottom: 10px; }
.service-boxes .the-box .box-cover .plus-minus {
position: absolute;
bottom: 80px;
right: 10px;
width: 28px;
height: 28px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
opacity: 1;
transition: .3s ease; }
.service-boxes .the-box .box-cover .plus-minus .plus {
width: 100%;
height: 1px;
background-color: #89c440;
transform: rotate(90deg); }
.service-boxes .the-box .box-cover .plus-minus .minus {
width: 100%;
height: 1px;
top: 14px;
position: relative;
background-color: #89c440; }
.service-boxes .the-box .box-cover img {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%; }
.service-boxes .the-box:hover .box-cover {
transform: translateY(calc(-100% + 160px)); }
.service-boxes .the-box:hover .box-cover h3 {
transform: translateY(40px); }
.service-boxes .the-box:hover .box-cover .plus-minus {
opacity: 0; } @media (max-width: 885px) {
.page-services-v2 .lead-intro .content {
margin-top: -120px;
padding-bottom: 0; }
.page-services-v2 .lead-intro .col-1, .page-services-v2 .lead-intro .col-2 {
width: 100%; }
.page-services-v2 .lead-intro .col-2 {
order: 1;
margin-bottom: 40px; }
.page-services-v2 .lead-intro .col-1 {
order: 2; }
.service-boxes .the-box {
width: 50%; }
.service-boxes h2.heading {
font-size: 40px; }
.service-boxes h2.heading .cd-headline {
font-size: 40px; } }
@media screen and (max-width: 767px) {
.service-boxes .the-box {
width: 100%; } }
@media (max-width: 575px) {
.service-boxes h2.heading {
font-size: 28px; }
.service-boxes h2.heading .cd-headline {
font-size: 28px; } }
.page-insights .content {
max-width: 1250px; }
.page-insights .button-group {
text-align: center; }
.page-insights .button-group button {
margin-bottom: 8px;
margin-left: 5px;
margin-right: 5px; }
.page-insights .feature-section {
background: rgba(199, 205, 217, 0.2); }
.page-insights .feature-section .content {
padding-top: 40px; }
.page-insights .feature-section .content article {
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: flex-start; }
.page-insights .feature-section .content article header {
width: 45%;
padding-right: 25px; }
.page-insights .feature-section .content article .featured {
font-style: normal;
font-weight: 900;
font-family: 'acumin-pro', sans-serif;
font-size: 16px;
line-height: 16px;
letter-spacing: -0.015em;
text-transform: uppercase;
color: #89C440; }
.page-insights .feature-section .content article h2 {
font-style: normal;
font-weight: 600;
font-size: 26px;
line-height: 31px;
letter-spacing: -0.015em;
text-transform: capitalize;
margin-top: 10px;
color: #1D3868; }
.page-insights .feature-section .content article .desc {
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 24px;
letter-spacing: -0.015em; }
.page-insights .feature-section .content article .button-row {
margin-top: 20px; }
.page-insights .feature-section .content article .image-wrap {
z-index: 2;
width: 55%;
position: relative; }
.page-insights .feature-section .content article .image-wrap img {
position: relative;
top: -100px;
box-shadow: 2px 4px 20px -2px rgba(0, 0, 0, 0.25); }
.page-insights .insights {
width: 100%; }
.page-insights .insights .content {
position: relative;
display: flex;
flex-wrap: wrap;
width: 100%;
height: auto;
max-width: 1400px;
margin: 0px auto;
padding: 90px 80px 100px 80px; }
.page-insights .insights .content .inner-wrap {
width: 100%; }
.page-insights .insights .the-resource {
width: 33%;
bottom: 0; }
.page-insights .insights .the-resource .flex-wrap {
position: relative;
background-color: #163768; }
.page-insights .insights .the-resource .outter-wrap {
padding: 15px; }
.page-insights .insights .the-resource .vital-wrap {
padding: 20px 20px 80px;
position: relative;
background-color: #163768;
position: relative;
transform: translateY(0);
transition: .3s ease; }
.page-insights .insights .the-resource a:hover {
text-decoration: none; }
.page-insights .insights .the-resource h2 {
font-weight: 400;
font-size: 20px;
line-height: 24px;
text-transform: capitalize;
color: #89C440;
margin-top: 8px; }
.page-insights .insights .the-resource .desc {
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 20px;
color: #FFFFFF; }
.page-insights .insights .the-resource .img-wrap {
overflow: hidden; }
.page-insights .insights .the-resource .read-more {
transform: translateY(0);
transition: .3s ease;
position: absolute;
bottom: 15px;
margin-top: auto;
width: 100%;
left: 20px; }
.page-insights .insights .the-resource .read-more .circle {
width: 48px;
height: 48px;
border: 1px solid #89c440;
border-radius: 100px;
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-items: center;
justify-content: center; }
.page-insights .insights .the-resource .read-more .circle .top, .page-insights .insights .the-resource .read-more .circle .bottom {
width: 25px;
height: 2px;
background-color: #89c440; }
.page-insights .insights .the-resource .read-more .circle .top {
position: relative;
top: 2px;
transform: rotate(90deg); }
.page-insights .insights .the-resource:hover .vital-wrap {
transform: translateY(-25px); }
.page-insights .insights .the-resource:hover .read-more {
transform: translateY(-10px); }
.page-insights .filters button.is-checked {
background-color: #163768;
color: white; }
.page-insights .insight-list .content {
max-width: 1275px; }
.page-insights .insight-row {
width: 100%; }
.page-insights .insight-row .the-resource {
width: 32%;
margin-bottom: 15px;
background-color: #163768;
overflow: hidden; }
.page-insights .insight-row .the-resource .inner-wrap {
min-height: 320px;
padding: 25px;
position: relative;
transform: translateY(0);
transition: .3s ease;
background-color: #163768; }
.page-insights .insight-row .the-resource .inner-wrap a:hover {
text-decoration: none; }
.page-insights .insight-row .the-resource h2 {
font-weight: 400;
font-size: 20px;
line-height: 24px;
text-transform: capitalize;
color: #89C440;
margin-top: 8px; }
.page-insights .insight-row .the-resource .desc {
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 20px;
color: #FFFFFF;
padding-bottom: 60px; }
.page-insights .insight-row .the-resource .read-more {
transform: translateY(0);
transition: .3s ease;
position: absolute;
bottom: 15px;
margin-top: auto;
width: 100%;
left: 20px; }
.page-insights .insight-row .the-resource .read-more .circle {
width: 48px;
height: 48px;
border: 1px solid #89c440;
border-radius: 100px;
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-items: center;
justify-content: center; }
.page-insights .insight-row .the-resource .read-more .circle .top, .page-insights .insight-row .the-resource .read-more .circle .bottom {
width: 25px;
height: 2px;
background-color: #89c440; }
.page-insights .insight-row .the-resource .read-more .circle .top {
position: relative;
top: 2px;
transform: rotate(90deg); }
.page-insights .insight-row .the-resource:hover .inner-wrap {
transform: translateY(-25px); }
.page-insights .insight-row .the-resource:hover .read-more {
transform: translateY(-10px); }
.page-insights .filter-row-fug .content {
padding-bottom: 00px; }
.page-insights .dropdown {
width: 100%;
margin-right: auto;
margin-left: 0;
max-width: 300px;
position: relative;
display: none; }
.page-insights .dropdown button {
width: 100%;
border: 1px solid #163768;
border-radius: 8px;
background-color: transparent;
position: relative;
transition: .2s ease;
height: 44px;
line-height: 0;
padding: 0;
font-weight: normal;
font-size: 16px;
line-height: 24px;
color: #333;
text-align: left;
padding-left: 10px; }
.page-insights .dropdown button:hover {
color: inherit; }
.page-insights .dropdown button .caret {
width: 40px;
position: absolute;
height: 40px;
top: 0px;
right: -1px; }
.page-insights .dropdown button .caret svg {
width: 15px;
height: 15px;
position: relative;
top: 13px;
left: 12px;
transform: rotate(0);
transition: .2s ease; }
.page-insights .dropdown ul {
padding: 10px 0 10px 0;
margin-top: 10px;
box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.1), 0px 4px 6px -2px rgba(16, 24, 40, 0.05);
border-radius: 8px;
width: 350px;
position: absolute;
z-index: 100;
display: none;
list-style: none;
background-color: white; }
.page-insights .dropdown ul.is-active {
display: block; }
.page-insights .dropdown ul li {
margin-left: 0;
margin-bottom: 3px;
list-style: none;
padding: 5px 16px;
width: 100%;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 24px;
color: #303030; }
.page-insights .dropdown ul li:before {
display: none; }
.page-insights .dropdown ul li a {
width: 100%; }
.page-insights .dropdown ul li:hover {
color: white; }
.page-insights .dropdown ul li:hover a {
color: white; }
.page-insights .dropdown.is-expanded button {
border: 2px solid #163768;
box-shadow: 0px 0px 0px 4px #666; }
.page-insights .dropdown.is-expanded .caret {
top: -2px; }
.page-insights .dropdown.is-expanded .caret svg {
transform: rotate(180deg);
transition: .2s ease; }
.page-insights .dropdown.isotope-dropdown ul li {
margin-bottom: 0; }
.page-insights .dropdown.isotope-dropdown ul li:first-child {
margin-top: 0; }
.page-insights .dropdown.isotope-dropdown ul button {
margin-bottom: 0; } @media (max-width: 885px) {
.page-insights .feature-section .content article header, .page-insights .feature-section .content article .image-wrap {
width: 100%; }
.page-insights .feature-section .content article header {
order: 2; }
.page-insights .feature-section .content article .image-wrap {
order: 1; }
.page-insights .insight-row .the-resource {
width: 48%; }
.page-insights .desktop {
display: none; }
.page-insights .dropdown {
display: block; } }
@media screen and (max-width: 767px) {
.page-insights .insight-row .the-resource {
width: 100%; } }
.single-resource .main-section .main-image {
z-index: 2;
margin-top: -100px;
margin-bottom: 80px; }
.single-resource .main-section .downlowd-title {
margin-bottom: 10px; }
.resource-signup {
padding-left: 25px;
padding-right: 25px;
margin-top: 100px; }
.resource-signup .desc {
color: white !important;
margin-bottom: 20px; } .accordion-group .heading-primary {
font-size: 2em;
padding: 2em;
text-align: center; }
.accordion-group .accordion dl,
.accordion-group .accordion-list {
border: 1px solid #ddd; }
.accordion-group .accordion dl:after,
.accordion-group .accordion-list:after {
content: "";
display: block;
height: 10px;
width: 100%;
background-color: #163768; }
.accordion-group .accordion dd,
.accordion-group .accordion__panel {
background-color: #eaedf2;
font-size: 1em;
line-height: 1.5em; }
.accordion-group .accordion p {
padding: 1em 2em 1em 2em; }
.accordion-group .accordion dd {
margin-left: 0; }
.accordion-group .accordion {
position: relative;
background-color: #eaedf2; }
.accordion-group .container {
max-width: 960px;
margin: 0 auto;
padding: 2em 0 2em 0; }
.accordion-group .accordionTitle,
.accordion-group .accordion__Heading {
background-color: #3a588d;
text-align: left;
font-weight: 700;
padding: 1em;
padding-right: 50px;
display: block;
text-decoration: none;
color: #fff;
transition: background-color 0.5s ease-in-out;
border-bottom: 1px solid #334d7b; }
.accordion-group .accordionTitle:after,
.accordion-group .accordion__Heading:after {
content: "+";
font-size: 1.5em;
line-height: 0.5em;
float: right;
position: relative;
right: -30px;
transition: transform 0.3s ease-in-out; }
.accordion-group .accordionTitle:hover,
.accordion-group .accordion__Heading:hover {
background-color: #2b4169; }
.accordion-group .accordionTitleActive,
.accordion-group .accordionTitle.is-expanded {
background-color: #2b4169; }
.accordion-group .accordionTitleActive:after,
.accordion-group .accordionTitle.is-expanded:after {
transform: rotate(-225deg); }
.accordion-group .accordionItem {
height: auto;
overflow: hidden;
max-height: 250em;
transition: max-height 1s; }
@media screen and (min-width: 48em) {
.accordion-group .accordionItem {
max-height: 215em;
transition: max-height 0.5s; } }
.accordion-group .accordionItem.is-collapsed {
max-height: 0; }
.accordion-group .no-js .accordionItem.is-collapsed {
max-height: auto; }
.accordion-group .animateIn {
animation: accordionIn 0.45s normal ease-in-out both 1; }
.accordion-group .animateOut {
animation: accordionOut 0.45s alternate ease-in-out both 1; }
@keyframes accordionIn {
0% {
opacity: 0;
transform: scale(0.9) rotateX(-60deg);
transform-origin: 50% 0; }
100% {
opacity: 1;
transform: scale(1); } }
@keyframes accordionOut {
0% {
opacity: 1;
transform: scale(1); }
100% {
opacity: 0;
transform: scale(0.9) rotateX(-60deg); } }
.tabs [role="tab"] {
padding: 6px 10px;
margin-top: 6px; }
.tabs [role="tab"],
.tabs [role="tab"]:focus,
.tabs [role="tab"]:hover {
font-family: "acumin-pro", sans-serif;
position: relative;
z-index: 2;
top: -6px;
margin: 0;
border: 1px solid #aaaaaa;
transition: 0.3s ease;
border-radius: 3px;
overflow: visible;
background: white;
outline: none; }
.tabs [role="tab"]:focus,
.tabs [role="tab"]:hover {
background-color: #3a588d;
transition: 0.3s ease;
color: white; }
.tabs [role="tab"][aria-selected="true"] {
margin-top: 0;
color: white;
background: #163768; }
.tabs [role="tab"] span.focus {
display: inline-block;
margin: 2px;
padding: 4px 6px; }
.tabs [role="tabpanel"] {
padding: 40px;
border-radius: 5px;
background: white;
min-height: 500px;
box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.05);
overflow: auto; }
.tabs [role="tabpanel"].is-hidden {
display: none; }
.tabs [role="tabpanel"] p {
margin: 0; }  .tab-grouping .choose-account {
display: none; }
@media screen and (max-width: 1160px) {
.tabs [role="tab"] span.focus {
padding: 4px 0px; } }
@media screen and (max-width: 1024px) {
.tabs [role="tab"] span.focus {
padding: 20px 8px;
width: 100%; }
.tabs [role="tabpanel"] {
padding: 10px; }
.tab-grouping {
position: relative;
margin-bottom: 20px; }
.tab-grouping .button-group {
position: absolute;
padding: 0;
width: 100%;
max-width: 350px;
top: 55px;
list-style: none;
max-height: 0;
overflow: hidden;
transition: all 150ms ease;
border: 1px solid transparent;
z-index: 1;
background: #fff; }
.tab-grouping .button-group button {
display: block;
width: 100%;
padding: 0;
text-align: left;
border-radius: 0 !important;
font-size: 20px; }
.tab-grouping .button-group .arrow svg {
transform: rotate(0);
transition: .3s ease; }
.tab-grouping.active .button-group {
max-height: 100vh; }
.tab-grouping.active .arrow svg {
transform: rotate(180deg);
transition: .3s ease; }
.tab-grouping .choose-account {
display: block;
width: 100%;
padding: 15px 10px;
text-align: left;
background-color: #fff;
border: 0;
border: 1px solid #aaaaaa;
max-width: 349px;
font-size: 20px;
position: relative; }
.tab-grouping .choose-account .arrow {
position: absolute;
width: 26px;
height: 100%;
right: 20px; }
.tab-grouping .choose-account .arrow svg {
fill: #163768;
width: 26px; } }
.tab-grouping.metric-tab-grouping {
position: relative;
margin-bottom: 20px; }
.tab-grouping.metric-tab-grouping .button-group {
position: absolute;
padding: 0;
width: 100%;
max-width: 350px;
top: 55px;
list-style: none;
max-height: 0;
overflow: hidden;
transition: all 150ms ease;
border: 1px solid transparent;
z-index: 1;
background: #fff; }
.tab-grouping.metric-tab-grouping .button-group button {
display: block;
width: 100%;
padding: 0;
text-align: left;
border-radius: 0 !important;
font-size: 20px; }
.tab-grouping.metric-tab-grouping .button-group .arrow svg {
transform: rotate(0);
transition: .3s ease; }
.tab-grouping.metric-tab-grouping.active .button-group {
max-height: 100vh; }
.tab-grouping.metric-tab-grouping.active .arrow svg {
transform: rotate(180deg);
transition: .3s ease; }
.tab-grouping.metric-tab-grouping .choose-account {
display: block;
width: 100%;
padding: 15px 10px;
text-align: left;
background-color: #fff;
border: 0;
border: 1px solid #aaaaaa;
max-width: 349px;
font-size: 20px;
position: relative; }
.tab-grouping.metric-tab-grouping .choose-account .arrow {
position: absolute;
width: 26px;
height: 100%;
right: 20px; }
.tab-grouping.metric-tab-grouping .choose-account .arrow svg {
fill: #163768;
width: 26px; }
.single-portal .main-section.v2 {
width: 100%; }
.single-portal .main-section.v2 header h1 {
max-width: 100%;
color: #163768;
font-size: 28px; }
.single-portal .main-section.v2 header .content {
padding-bottom: 0;
min-height: initial; }
@media screen and (max-width: 1023px) {
.single-portal .main-section.v2 {
width: 100%; }
.single-portal .main-section.v2 header h1 {
max-width: 100%;
color: #163768;
font-size: 28px; }
.single-portal .main-section.v2 header .content {
padding-bottom: 0;
min-height: initial; } }
.welcome-vital {
background-color: #163768;
color: white;
flex: 0 0 320px;
margin-right: 40px;
padding: 30px 25px;
font-family: "acumin-pro", sans-serif; }
.welcome-vital .hello {
font-weight: 500;
font-size: 20px;
line-height: 24px;
border-bottom: 1px solid #89c440;
padding-bottom: 15px;
margin-bottom: 15px; }
.welcome-vital .vital-heading {
margin-bottom: 15px;
font-style: normal;
font-weight: 700;
font-size: 16px;
line-height: 17px; }
.welcome-vital .vital-heading.mgr { padding-top: 10px;
margin-top: 20px; }
.welcome-vital .vital-wrap {
margin-bottom: 15px;
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 14px;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: center; }
.welcome-vital .vital-wrap img {
width: 18px;
height: auto;
margin-right: 12px; }
.welcome-vital .button-row {
margin-top: 25px;
width: 100%;
display: block; }
h3.no-content {
font-size: 20px !important;
font-weight: 500 !important; }
.single-portal-dashboard {
flex: 1; }
@media screen and (max-width: 1023px) {
.welcome-vital {
width: 100%;
max-width: 100%;
flex: auto;
order: 2;
margin-right: 0; }
.single-portal-dashboard {
flex: auto;
order: 1;
margin-bottom: 40px; } }