@font-face {
    font-family: 'font_normal';
    src: url('/fonts/hlv-normal.eot');
    src: url('/fonts/hlv-normal.eot?#iefix') format('embedded-opentype'),
        url('/fonts/hlv-normal.woff2') format('woff2'),
        url('/fonts/hlv-normal.woff') format('woff'),
        url('/fonts/hlv-normal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'font_condensent';
    src: url('/fonts/hlv-condensent.eot');
    src: url('/fonts/hlv-condensent.eot?#iefix') format('embedded-opentype'),
        url('/fonts/hlv-condensent.woff2') format('woff2'),
        url('/fonts/hlv-condensent.woff') format('woff'),
        url('/fonts/hlv-condensent.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
} 

@font-face {
    font-family: 'font_bold';
    src: url('/fonts/hlv-BoldCondensant.eot');
    src: url('/fonts/hlv-BoldCondensant.eot?#iefix') format('embedded-opentype'),
    url('/fonts/hlv-BoldCondensant.woff2') format('woff2'),
    url('/fonts/hlv-BoldCondensant.woff') format('woff'),
    url('/fonts/hlv-BoldCondensant.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'font_black';
    src: url('/fonts/hlv-black-condensed.eot');
    src: url('/fonts/hlv-black-condensed.eot?#iefix') format('embedded-opentype'),
        url('/fonts/hlv-black-condensed.woff2') format('woff2'),
        url('/fonts/hlv-black-condensed.woff') format('woff'),
        url('/fonts/hlv-black-condensed.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}


.pmModal * {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: 400;
    font-style: normal;
    font-size: 100%;
    vertical-align: baseline;
    line-height: normal;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.pmModal,
.slickOverlay,
.slickWindow {
    position: fixed
}

.pmModal {
    display: none;
    z-index: -1
}

.pmModal.isActive {
    display: block;
    z-index: 999999
}

.slickOverlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 1
}

.slickWindow {
    z-index: 2
}

.slickContent {
    position: relative
}

.slickWindow.center {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.slickWindow.topLeft {
    top: 0;
    left: 0
}

.slickWindow.topCenter {
    top: 0;
    left: 0;
    right: 0
}

.slickWindow.topRight {
    top: 0;
    right: 0
}

.slickWindow.bottomLeft {
    bottom: 0;
    left: 0
}

.slickWindow.bottomCenter {
    bottom: 0;
    left: 0;
    right: 0
}

.slickWindow.bottomRight {
    bottom: 0;
    right: 0
}

.slickWindow.right {
    top: 0;
    right: 0;
    bottom: 0
}

.slickWindow.left {
    top: 0;
    left: 0;
    bottom: 0
}

body .align-vertical,
body .ls-wrapper > .ls-layer.align-vertical,
body .ls-wrapper > a > .ls-layer.align-vertical {
    display: flex!important;
    align-items: center!important;
    flex-wrap: wrap!important;
    justify-content: center!important;
    align-content: center!important;
}

.pmModal .animated {
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease;
    -webkit-animation-fill-mode: both;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: both;
    backface-visibility: hidden;
    transform-style: preserve-3d
}

.pmModal .animated.fadeOut {
    -webkit-animation-delay: 0s !important;
    animation-delay: 0s !important;
    pointer-events: none
}

.pmModal .fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.pmModal .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.pmModal .zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.7)
    }
    100% {
        opacity: 1;
        -webkit-transform: none
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(.7)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

.pmModal .zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 0;
        -webkit-transform: scale(1.3)
    }
    100% {
        opacity: 1;
        -webkit-transform: none
    }
}

@keyframes zoomOut {
    0% {
        opacity: 0;
        transform: scale(1.3)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

.pmModal .slideTop {
    -webkit-animation-name: slideTop;
    animation-name: slideTop
}

@-webkit-keyframes slideTop {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-25%)
    }
    100% {
        opacity: 1;
        -webkit-transform: none
    }
}

@keyframes slideTop {
    0% {
        opacity: 0;
        transform: translateY(-25%)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

.pmModal .slideBottom {
    -webkit-animation-name: slideBottom;
    animation-name: slideBottom
}

@-webkit-keyframes slideBottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(25%)
    }
    100% {
        opacity: 1;
        -webkit-transform: none
    }
}

@keyframes slideBottom {
    0% {
        opacity: 0;
        transform: translateY(25%)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

.pmModal .slideRight {
    -webkit-animation-name: slideRight;
    animation-name: slideRight
}

@-webkit-keyframes slideRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(25%)
    }
    100% {
        opacity: 1;
        -webkit-transform: none
    }
}

@keyframes slideRight {
    0% {
        opacity: 0;
        transform: translateX(25%)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

.pmModal .slideLeft {
    -webkit-animation-name: slideLeft;
    animation-name: slideLeft
}

@-webkit-keyframes slideLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-25%)
    }
    100% {
        opacity: 1;
        -webkit-transform: none
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(-25%)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

.pmModal .rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn
}

@-webkit-keyframes rotateIn {
    0% {
        opacity: 0;
        -webkit-transform: rotate(720deg) scale(.5)
    }
    100% {
        opacity: 1;
        -webkit-transform: none
    }
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(720deg) scale(.5)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

.pmModal .rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut
}

@-webkit-keyframes rotateOut {
    0% {
        opacity: 0;
        -webkit-transform: rotate(720deg) scale(1.4)
    }
    100% {
        opacity: 1;
        -webkit-transform: none
    }
}

@keyframes rotateOut {
    0% {
        opacity: 0;
        transform: rotate(720deg) scale(1.4)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

.pmModal .flipInX {
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}

@-webkit-keyframes flipInX {
    0% {
        opacity: 0;
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in
    }
    60% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg)
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    100% {
        -webkit-transform: perspective(400px)
    }
}

@keyframes flipInX {
    0% {
        opacity: 0;
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transition-timing-function: ease-in
    }
    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transition-timing-function: ease-in
    }
    60% {
        opacity: 1;
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg)
    }
    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    100% {
        transform: perspective(400px)
    }
}

.pmModal .flipInY {
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}

@-webkit-keyframes flipInY {
    0% {
        opacity: 0;
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in
    }
    60% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg)
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    100% {
        -webkit-transform: perspective(400px)
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transition-timing-function: ease-in
    }
    40% {
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transition-timing-function: ease-in
    }
    60% {
        opacity: 1;
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg)
    }
    80% {
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    100% {
        transform: perspective(400px)
    }
}

.pmModal .swingTop {
    -webkit-animation-name: swingTop;
    animation-name: swingTop;
    -webkit-transform-origin: top center;
    transform-origin: top center
}

@-webkit-keyframes swingTop {
    0% {
        opacity: 0;
        -webkit-transform: perspective(300px) rotateX(-90deg)
    }
    100% {
        opacity: 1;
        -webkit-transform: none
    }
}

@keyframes swingTop {
    0% {
        opacity: 0;
        transform: perspective(300px) rotateX(-90deg)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

.pmModal .swingBottom {
    -webkit-animation-name: swingBottom;
    animation-name: swingBottom;
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center
}

@-webkit-keyframes swingBottom {
    0% {
        opacity: 0;
        -webkit-transform: perspective(300px) rotateX(90deg)
    }
    100% {
        opacity: 1;
        -webkit-transform: none
    }
}

@keyframes swingBottom {
    0% {
        opacity: 0;
        transform: perspective(300px) rotateX(90deg)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

.pmModal .swingRight {
    -webkit-animation-name: swingRight;
    animation-name: swingRight;
    -webkit-transform-origin: center right;
    transform-origin: center right
}

@-webkit-keyframes swingRight {
    0% {
        opacity: 0;
        -webkit-transform: perspective(200px) rotateY(-90deg)
    }
    100% {
        opacity: 1;
        -webkit-transform: none
    }
}

@keyframes swingRight {
    0% {
        opacity: 0;
        transform: perspective(200px) rotateY(-90deg)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

.pmModal .swingLeft {
    -webkit-animation-name: swingLeft;
    animation-name: swingLeft;
    -webkit-transform-origin: center left;
    transform-origin: center left
}

@-webkit-keyframes swingLeft {
    0% {
        opacity: 0;
        -webkit-transform: perspective(200px) rotateY(90deg)
    }
    100% {
        opacity: 1;
        -webkit-transform: none
    }
}

@keyframes swingLeft {
    0% {
        opacity: 0;
        transform: perspective(200px) rotateY(90deg)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

.pmModal .flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes flash {
    0%,
    40%,
    80% {
        opacity: 0
    }
    100%,
    20%,
    60% {
        opacity: 1
    }
}

@keyframes flash {
    0%,
    40%,
    80% {
        opacity: 0
    }
    100%,
    20%,
    60% {
        opacity: 1
    }
}

.pmModal .pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}

@-webkit-keyframes pulse {
    0% {
        opacity: 0
    }
    25% {
        opacity: 1
    }
    25%,
    75% {
        -webkit-transform: scale(1.05)
    }
    0%,
    100%,
    50% {
        -webkit-transform: none
    }
}

@keyframes pulse {
    0% {
        opacity: 0
    }
    25% {
        opacity: 1
    }
    25%,
    75% {
        transform: scale(1.05)
    }
    0%,
    100%,
    50% {
        transform: none
    }
}

.pmModal .rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

@-webkit-keyframes rubberBand {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(1, 1, 1)
    }
    30% {
        opacity: 1;
        -webkit-transform: scale3d(1.25, .75, 1)
    }
    40% {
        -webkit-transform: scale3d(.75, 1.25, 1)
    }
    50% {
        -webkit-transform: scale3d(1.15, .85, 1)
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1)
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1)
    }
}

@keyframes rubberBand {
    0% {
        opacity: 0;
        transform: scale3d(1, 1, 1)
    }
    30% {
        opacity: 1;
        transform: scale3d(1.25, .75, 1)
    }
    40% {
        transform: scale3d(.75, 1.25, 1)
    }
    50% {
        transform: scale3d(1.15, .85, 1)
    }
    65% {
        transform: scale3d(.95, 1.05, 1)
    }
    75% {
        transform: scale3d(1.05, .95, 1)
    }
    100% {
        transform: scale3d(1, 1, 1)
    }
}

.pmModal .shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

@-webkit-keyframes shake {
    0% {
        opacity: 0
    }
    10% {
        opacity: 1
    }
    0%,
    100% {
        -webkit-transform: translate3d(0, 0, 0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0)
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0)
    }
}

@keyframes shake {
    0% {
        opacity: 0
    }
    10% {
        opacity: 1
    }
    0%,
    100% {
        transform: translate3d(0, 0, 0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(-10px, 0, 0)
    }
    20%,
    40%,
    60%,
    80% {
        transform: translate3d(10px, 0, 0)
    }
}

.pmModal .swing {
    -webkit-animation-name: swing;
    animation-name: swing;
    -webkit-transform-origin: top center;
    transform-origin: top center
}

@-webkit-keyframes swing {
    0% {
        opacity: 0
    }
    20% {
        opacity: 1;
        -webkit-transform: rotate3d(0, 0, 1, 15deg)
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg)
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg)
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg)
    }
    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg)
    }
}

@keyframes swing {
    0% {
        opacity: 0
    }
    20% {
        opacity: 1;
        transform: rotate3d(0, 0, 1, 15deg)
    }
    40% {
        transform: rotate3d(0, 0, 1, -10deg)
    }
    60% {
        transform: rotate3d(0, 0, 1, 5deg)
    }
    80% {
        transform: rotate3d(0, 0, 1, -5deg)
    }
    100% {
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

.pmModal .tada {
    -webkit-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes tada {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(1, 1, 1)
    }
    10% {
        opacity: 1
    }
    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1)
    }
}

@keyframes tada {
    0% {
        opacity: 0;
        transform: scale3d(1, 1, 1)
    }
    10% {
        opacity: 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)
    }
    100% {
        transform: scale3d(1, 1, 1)
    }
}

.pmModal .wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes wobble {
    0% {
        opacity: 0;
        -webkit-transform: none
    }
    15% {
        opacity: 1;
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }
    100% {
        -webkit-transform: none
    }
}

@keyframes wobble {
    0% {
        opacity: 0;
        transform: none
    }
    15% {
        opacity: 1;
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }
    30% {
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }
    45% {
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }
    60% {
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }
    75% {
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }
    100% {
        transform: none
    }
}

.pmModal .bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes bounce {
    0% {
        opacity: 0
    }
    20% {
        opacity: 1
    }
    0%,
    100%,
    20%,
    53%,
    80% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0)
    }
    40%,
    43% {
        -webkit-transition-timing-function: cubic-bezier(.755, .050, .855, .060);
        -webkit-transform: translate3d(0, -30px, 0)
    }
    70% {
        -webkit-transition-timing-function: cubic-bezier(.755, .050, .855, .060);
        -webkit-transform: translate3d(0, -15px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0)
    }
}

@keyframes bounce {
    0% {
        opacity: 0
    }
    20% {
        opacity: 1
    }
    0%,
    100%,
    20%,
    53%,
    80% {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translate3d(0, 0, 0)
    }
    40%,
    43% {
        transition-timing-function: cubic-bezier(.755, .050, .855, .060);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        transition-timing-function: cubic-bezier(.755, .050, .855, .060);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        transform: translate3d(0, -4px, 0)
    }
}

.pmModal .bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes bounceIn {
    0%,
    100%,
    20%,
    40%,
    60%,
    80% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3)
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1)
    }
}

@keyframes bounceIn {
    0%,
    100%,
    20%,
    40%,
    60%,
    80% {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    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)
    }
    100% {
        opacity: 1;
        transform: scale3d(1, 1, 1)
    }
}

.pmModal .bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-keyframes bounceInUp {
    0%,
    100%,
    60%,
    75%,
    90% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0)
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInUp {
    0%,
    100%,
    60%,
    75%,
    90% {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }
    75% {
        transform: translate3d(0, 10px, 0)
    }
    90% {
        transform: translate3d(0, -5px, 0)
    }
    100% {
        transform: translate3d(0, 0, 0)
    }
}

.pmModal .bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@-webkit-keyframes bounceInDown {
    0%,
    100%,
    60%,
    75%,
    90% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0)
    }
    100% {
        -webkit-transform: none
    }
}

@keyframes bounceInDown {
    0%,
    100%,
    60%,
    75%,
    90% {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0)
    }
    75% {
        transform: translate3d(0, -10px, 0)
    }
    90% {
        transform: translate3d(0, 5px, 0)
    }
    100% {
        transform: none
    }
}

.pmModal .bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes bounceInRight {
    0%,
    100%,
    60%,
    75%,
    90% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0)
    }
    100% {
        -webkit-transform: none
    }
}

@keyframes bounceInRight {
    0%,
    100%,
    60%,
    75%,
    90% {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        transform: translate3d(10px, 0, 0)
    }
    90% {
        transform: translate3d(-5px, 0, 0)
    }
    100% {
        transform: none
    }
}

.pmModal .bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@-webkit-keyframes bounceInLeft {
    0%,
    100%,
    60%,
    75%,
    90% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0)
    }
    100% {
        -webkit-transform: none
    }
}

@keyframes bounceInLeft {
    0%,
    100%,
    60%,
    75%,
    90% {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0)
    }
    75% {
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        transform: translate3d(5px, 0, 0)
    }
    100% {
        transform: none
    }
}

.pmModal .unFold {
    -webkit-animation-name: unFold;
    animation-name: unFold
}

@-webkit-keyframes unFold {
    0% {
        -webkit-transform: scaleY(.01) scaleX(0)
    }
    50% {
        -webkit-transform: scaleY(.01) scaleX(1)
    }
    100% {
        -webkit-transform: scaleY(1) scaleX(1)
    }
}

@keyframes unFold {
    0% {
        transform: scaleY(.01) scaleX(0)
    }
    50% {
        transform: scaleY(.01) scaleX(1)
    }
    100% {
        transform: scaleY(1) scaleX(1)
    }
}

.pmModal .flowIn {
    -webkit-animation-name: flowIn;
    animation-name: flowIn
}

@-webkit-keyframes flowIn {
    0% {
        opacity: 0;
        border-radius: 200px;
        -webkit-transform: scale(.6)
    }
    50% {
        opacity: 1
    }
    100% {
        -webkit-transform: scale(1)
    }
}

@keyframes flowIn {
    0% {
        opacity: 0;
        border-radius: 200px;
        transform: scale(.6)
    }
    50% {
        opacity: 1
    }
    100% {
        transform: scale(1)
    }
}

.pmModal .closeModal {
    cursor: pointer
}

.pmModal .close {
    position: absolute;
    right: 0;
    z-index: 10;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: 700
}

.pmModal .close,
.pmModal .close:before {
    transition: all .1s ease
}

.pmModal .close:before {
    white-space: nowrap;
    display: block;
    position: relative;
    transition: all .1s ease
}

.pmModal .close.labeled {
    top: -30px
}

.pmModal .close.labeled:before {
    color: #fff;
    content: "close";
    font-size: 8px;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff 50%, #000 50%);
    background-size: 201% 100%;
    background-position: right bottom;
    padding: 6px 12px
}

.pmModal .close.labeled:hover:before {
    background-position: left bottom;
    color: #000
}

.pmModal .close.text {
    top: -20px
}

.pmModal .close.text:before {
    color: #fff;
    content: "Close";
    font-size: 9px;
    text-transform: uppercase
}

.pmModal .close.tag {
    top: 0
}

.pmModal .close.tag:before {
    color: #fff;
    content: "\00d7";
    background: #000;
    text-align: center;
    font-size: 15px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    opacity: .2
}

.pmModal .close.tag:hover:before {
    opacity: 1
}

.pmModal .close.icon {
    top: 14px;
    right: 14px;
    display: block;
    width: 22px;
    height: 22px;
    overflow: hidden;
    opacity: .3
}

.pmModal .close.icon:hover:before {
    color: #000
}

.pmModal .close.circle:after,
.pmModal .close.circle:before,
.pmModal .close.icon:after,
.pmModal .close.icon:before {
    content: "";
    position: absolute;
    height: 1px;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    background: #000
}

.pmModal .close.icon:after,
.pmModal .close.icon:before {
    width: 100%
}

.pmModal .close.circle:after,
.pmModal .close.circle:before {
    width: 60%
}

.pmModal .close.circle:before,
.pmModal .close.icon:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.pmModal .close.circle:after,
.pmModal .close.icon:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.pmModal .close.icon:hover {
    opacity: 1
}

.pmModal .close.circle {
    top: -12px;
    right: -12px;
    display: block;
    width: 24px;
    height: 24px;
    overflow: hidden;
    background: #4b9c47;
    border-radius: 50%
}

.pmModal .close.circle:hover {
    transform: scale(1.1)
}

.plyr--audio .plyr__controls {
    padding: 4px 10px;
}

.plyr__progress--buffer,
.plyr__progress--played,
.plyr__volume--display {
    height: 6px;
    margin-top: -2px !important;
}

#radioAd h5 {
    margin-bottom: 0px;
    background: #fefefe;
    display: inline;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 14px;
}

#radioAd.pmModal .close.labeled {
    top: 6px;
    right: 10px;
}

html,
.sticky_wdgt {
    background: #c0d1c7;
}

html {
    font-family: Arial, sans-serif;
    line-height: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
}

a,
.uk-link {
    color: #c52929;
}

a:hover,
.uk-link:hover {
    color: #da0008;
}

.tm-header-bg {
    background: transparent;
    box-shadow: none;
}

.tm-header {
    background: transparent;
    padding: 0px;
}

.tm-header-container {
    border: 0px;
    border-radius: 0px;
    box-shadow: none;
}

.tm-container {
    margin: 0px auto;
}

.tm-article-content h3 {
    margin-top: 0px;
    margin-bottom: 5px
}

.tm-article p:first-child,
.tm-content {
    margin: 0px !important;
    padding: 0px;
}

.tm-header-container.uk-active .tm-header::before,
.tm-header-container.uk-active .tm-header::after,
.tm-header-container.tm-header-full-width .tm-header:before,
.tm-header-container.tm-header-full-width .tm-header:after {
    background: transparent;
    border: none;
}

.tm-header-container {
    border: 0px;
    background: transparent;
}

.tm-header-container.tm-header-full-width.uk-active {
    background: #4b768c;
}

/*.tm-header-container.uk-active .tm-header::before, .tm-header-container.uk-active .tm-header::after{
	background: #527992;
	border-bottom: 0px;
	height: 100px;
}
*/

/*.tm-header-container.uk-active{
	border:0px;
	background: #527992;
}*/

.mod-preview-wrapper {
    background: transparent;
}

.uk-sticky-placeholder {
    background: #4B768C;
}

#logo h1 {
    margin: 0
}

.tm-navbar .uk-navbar-nav > li > a {
    color: #14215a;
    font-size: 1.9vw;
    /*text-transform: uppercase;*/
    font-family: 'font_bold';
    padding: 0 10px;
    letter-spacing: -1.5px;
}

.tm-navbar .uk-navbar-nav > li > a::after {
    content: none;
}

.tm-navbar .uk-navbar-nav > li:hover > a,
.tm-navbar .uk-navbar-nav > li.uk-open > a,
.tm-navbar .uk-navbar-nav > li.uk-active > a,
.tm-navbar .uk-nav-side > li.uk-active > a {
    color: #ce3506;
}

.tm-navbar .uk-navbar-nav > li:hover {
    background: transparent;
}

/*.uk-container{
	max-width: inherit;
}*/

.tm-fullscreen {
    margin-top: 0;
    border: none;
}

.tm-inner-container.uk-container.uk-container-center {
    padding: 0px;
}

.tm-fullscreen + .tm-inner-container {
    margin-top: 0px;
}

form.pmcontact-form .pmc-field-container {
    margin-bottom: 0px;
}

form#pmcontact109_form .pmc-field-buttons {
    margin-top: 40px;
}

.pmc-labels-over form.pmcontact-form .pmc-field-container {
    float: left;
}

#pmcontact109_text-0 {
    margin: 0px;
}

div#pmcontact109_text-0 h3 {
    margin: 10px 0 0;
    color: #000000;
}

.uk-panel-box {
    padding: 0px;
    background: transparent;
    border-radius: 0px;
    box-shadow: none;
}

.tm-grid-box {
    background: transparent;
    border-radius: 0px;
    box-shadow: none;
}

.pmc-chars-counter {
    display: none;
}

.pmc-form-white.pmc-shadow form.pmcontact-form input.pmc-input {
    height: 58px;
    border-radius: 10px;
    width: 228px;
    border: 1px solid #aac7d9;
    background: #ffeccf;
    -webkit-box-shadow: inset 0px 0px 3px 1px rgba(255, 255, 255, 1);
    -moz-box-shadow: inset 0px 0px 3px 1px rgba(255, 255, 255, 1);
    box-shadow: inset 0px 0px 3px 1px rgba(255, 255, 255, 1);
}

form.pmcontact-form input.pmc-input {
    height: 58px;
    border: 1px solid #ababab !important;
    background: #fff !important;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2) inset !important;
    border-radius: 2px !important;

}

.pmc-shadow form.pmcontact-form textarea {
    height: 58px !important;
    border-radius: 10px;
    min-height: 58px;
    width: 230px;
    border: 1px solid rgb(171, 171, 171) !important;
    background: #fff !important;
    -webkit-box-shadow: inset 0px 0px 3px 1px rgba(255, 255, 255, 1) !important;
    -moz-box-shadow: inset 0px 0px 3px 1px rgba(255, 255, 255, 1) !important;
    box-shadow: inset 0px 0px 3px 1px rgba(255, 255, 255, 1) !important;
}

.new-width .uk-row-first {
    width: 72.33%;
}

.new-width .uk-width-medium-1-3 {
    width: 27.33%;
    text-align: right
}

#tm-top-b-wrapper {
    border-top:1px solid #7a9685;
}

.pmc-form-white.pmc-shadow form.pmcontact-form button,
.pmc-form-white.pmc-shadow form.pmcontact-form .btn {
    width: 100px;
    height: 58px;
    border-radius: 2px;
    color: #ffffff !important;
    font-family: 'font_condensent', sans-serif;
    font-size: 15px;
    border: 1px solid #2a5642;
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#798c81+0,56675d+100 */
    background: #798c81; /* Old browsers */
    background: -moz-linear-gradient(top, #798c81 0%, #56675d 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #798c81 0%,#56675d 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #798c81 0%,#56675d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#798c81', endColorstr='#56675d',GradientType=0 ); /* IE6-9 */
    box-shadow: 0px 0px 5px rgba(255,255,255,0.3) inset;
}

.pmc-form-white form.pmcontact-form button:hover,
.pmc-form-white form.pmcontact-form .btn:hover {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#798c81+0,3e4944+100 */
    background: #6a7d72; /* Old browsers */
    background: -moz-linear-gradient(top, #6a7d72 0%, #4a5650 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #6a7d72 0%,#4a5650 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #6a7d72 0%,#4a5650 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6a7d72', endColorstr='#4a5650',GradientType=0 ); /* IE6-9 */
}

.pmc-form-white.pmc-labels-over form.pmcontact-form .pmc-field-text label,
.pmc-form-white.pmc-labels-over form.pmcontact-form .pmc-field-name label,
.pmc-form-white.pmc-labels-over form.pmcontact-form .pmc-field-email label,
.pmc-form-white.pmc-labels-over form.pmcontact-form .pmc-field-phone label,
.pmc-form-white.pmc-labels-over form.pmcontact-form .pmc-field-subject label,
.pmc-form-white.pmc-labels-over form.pmcontact-form .pmc-field-password label,
.pmc-form-white.pmc-labels-over form.pmcontact-form .pmc-field-date label,
.pmc-form-white.pmc-labels-over form.pmcontact-form .pmc-field-textarea label,
.pmc-form-white.pmc-labels-over form.pmcontact-form .pmc-field-select label,
.pmc-form-white.pmc-labels-over form.pmcontact-form .pmc-field-multiple label {
    color: #686868;
}

form.pmcontact-form .pmc-label,
form.pmcontact-form .pmc-field {
    margin-right: 15px;
}

.pmc-form-white form.pmcontact-form input.pmc-input,
.pmc-form-white form.pmcontact-form select,
.pmc-form-white form.pmcontact-form textarea {
    font-size: 18px;
}

.pmc-form-white form.pmcontact-form input.pmc-input:focus,
.pmc-form-white form.pmcontact-form select:focus,
.pmc-form-white form.pmcontact-form textarea:focus {
    color: #686868;
    box-shadow: none !important;
    border: 1px solid #ce8303 important;
    font-size: 18px;
}

form.pmcontact-form .pmc-label {
    margin-top: 12px;
    margin-left: 5px;
    font-size: 20px;
    color: #9d9c9c;
    font-family: 'fBold', sans-serif;
}

.call_top {
    margin-top: -2px;
    display: block;
    text-align: center;
}

#pmcontact91_msg,
.pmc-msg-after {
    display: none;
}

.ot_logo_scroller {
    padding-top: 0px;
}

.uk-panel-box-tertiary h3 {
    color: #000000;
    font-family: 'font_normal', sans-serif;
    font-weight: 400;
    background: rgba(255, 255, 255, 1);
    border-radius: 3px;
    border: 1px solid #14215a !important;
    padding: 10px 10px 10px 20px;
    font-size: 26px;
}

.uk-panel-box-tertiary h3 .uk-button {
    margin-left: 20px;
}

.tm-slideshow-scroller .uk-slidenav-next::before,
.tm-slideshow-scroller .uk-slidenav-previous::before {
    color: #000000;
}

html .ls-wrapper > .ls-layer.slideshow-flex-center {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-content: center !important;
}

html .ls-wrapper > .ls-layer.slideshow-flex-center .line.split-item {
    width: 100%;
}

.uk-panel-box {
    color: #3a3a3a;
}

.uk-contrast .uk-button-primary {
    border-radius: 2px;
    color: #ffffff !important;
    font-family: 'font_normal', sans-serif;
    font-weight: 700;
    border: 1px solid rgb(105, 105, 105);
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#798c81+0,56675d+100 */
    background: #798c81; /* Old browsers */
    background: -moz-linear-gradient(top, #798c81 0%, #56675d 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #798c81 0%,#56675d 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #798c81 0%,#56675d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#798c81', endColorstr='#56675d',GradientType=0 ); /* IE6-9 */
}

.uk-contrast .uk-button-primary:hover {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#798c81+0,3e4944+100 */
    background: #6a7d72; /* Old browsers */
    background: -moz-linear-gradient(top, #6a7d72 0%, #4a5650 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #6a7d72 0%,#4a5650 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #6a7d72 0%,#4a5650 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6a7d72', endColorstr='#4a5650',GradientType=0 ); /* IE6-9 */
}

.uk-contrast .uk-button-primary:focus,
.uk-contrast .uk-button-primary:active {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#798c81+0,3e4944+100 */
    background: #798c81; /* Old browsers */
    background: -moz-linear-gradient(top, #798c81 0%, #3e4944 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #798c81 0%,#3e4944 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #798c81 0%,#3e4944 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#798c81', endColorstr='#3e4944',GradientType=0 ); /* IE6-9 */
}

.callusB .uk-button-primary {
    clear: both;
    float: right;
    margin-top: 20px;
    color: #ffffff;
    border: 1px solid #2a5642;
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#798c81+0,56675d+100 */
    background: #798c81; /* Old browsers */
    background: -moz-linear-gradient(top, #798c81 0%, #56675d 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #798c81 0%,#56675d 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #798c81 0%,#56675d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#798c81', endColorstr='#56675d',GradientType=0 ); /* IE6-9 */
    box-shadow: 0px 0px 5px rgba(255,255,255,0.3) inset;
    font-family: 'font_normal', sans-serif;
}

.callusB .uk-button-primary:hover {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#798c81+0,3e4944+100 */
    background: #798c81; /* Old browsers */
    background: -moz-linear-gradient(top, #798c81 0%, #3e4944 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #798c81 0%,#3e4944 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #798c81 0%,#3e4944 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#798c81', endColorstr='#3e4944',GradientType=0 ); /* IE6-9 */
}

.callusB .uk-button-primary:focus,
.callusB .uk-button-primary:active {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#798c81+0,3e4944+100 */
    background: #798c81; /* Old browsers */
    background: -moz-linear-gradient(top, #798c81 0%, #3e4944 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #798c81 0%,#3e4944 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #798c81 0%,#3e4944 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#798c81', endColorstr='#3e4944',GradientType=0 ); /* IE6-9 */
}

.tm-content-grid,
.tm-noblog .tm-content,
.tm-isblog .tm-article {
    background: transparent;
    box-shadow: none;
    padding: 0px;
}

.uk-article-title {
    color: #000000;
    text-align: center;
    font-family: 'font_black', sans-serif;
    font-size: 60px;
    margin-bottom: 0px;
    line-height: normal;
}
.xl-ttl h1.uk-article-title {
    font-size: 55px;
}

.uk-width-medium-1-1 .uk-article-title {
    font-size: 42px;
    text-align: left;
}

.uk-width-medium-1-1 .tm-content {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 30px;
}

.uk-width-medium-1-1 .tm-article img {
    margin: 0px auto;
    display: block;
    max-width: 490px;
}

.uk-article-title::after,
.tm-block-text::before,
.tm-block-text::after {
    content: none;
}

.uk-article-intro p {
    font-family: 'font_normal', sans-serif;
    font-size: 22px;
    color: #000000;
    text-align: center;
    font-style: italic;
}

.the-carousel .ot_content {
    margin: 0 !important;
}

.tm-block-text {
    color: #ffffff;
    border-style: solid solid solid;
    border-width: 2px;
    border-radius: 25px;
    border-color: #ffffff;
    min-width: 46px;
}

.tm-isblog .uk-article,
.tm-noblog .tm-content {
    color: #1a1a1a;
    font-family: Arial, sans-serif;
    line-height: 1.6em;
}

.tm-block-content h3 {
    color: #ffffff;
    font-family: 'font_black', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.tm-block-content p {
    margin-top: 0px;
}

#tm-bottom-a .uk-width-1-1 {
    background: #000;
}

.tm-header-container .tm-header,
.tm-header-container .tm-call-action,
.bottom-cta {
    max-width: 1500px;
    margin: 0px auto;
}

.bottom-cta a:hover {
    text-decoration: none;
}

.bottom-cta {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.bottom-cta span.bottom-text {
    color: #ffffff;
    display: inline-block;
    font-family: 'font_black', sans-serif;
    font-size: 65px;
    font-weight: 400;
    margin-left: 30px;
    vertical-align: middle;
}

.sticky_wdgt {
    /*background: #78a8bf;*/
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding-top: 16px !important;
    z-index: 100;
    border-radius: 0px;
}

.sticky_wdgt .uk-grid > div {
    text-align: center;
}

#tm-block-footer {
    background: #2E3074;
    padding-bottom: 100px;
    margin-top: 0px;
}

/* Footer Menu */

#tm-footer .tm-footer-left .address-info span {
    width: 100%
}

#tm-footer .tm-footer-left .address-info {
    display: inline-block;
    width: calc(100% - 325px);
}

#tm-footer .uk-panel {
    display: inline-block;
}

#tm-block-footer {
    /* Permalink - use to edit and share this gradient: gradientGenerator:#316282+0,29495d+100 */
    background: #316282;
    /* Old browsers */
    background: -moz-linear-gradient(top, #316282 0%, #29495d 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #316282 0%, #29495d 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #316282 0%, #29495d 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#316282', endColorstr='#29495d', GradientType=0);
    /* IE6-9 */
}

#tm-block-footer .uk-panel.uk-panel-box {
    border: 0px;
    background: transparent;
}

#tm-block-footer .uk-panel.uk-panel-box .uk-panel-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 26px;
    font-weight: normal;
}

#tm-block-footer .uk-nav-side > li > a {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 2em;
    padding: 0px;
    border: none;
    color: #dcdcdd;
}

#tm-block-footer .footer_video {
    margin-top: 20px;
    border-radius: 4px;
    border: 1px solid #7f7f7f;
    display: inline-block;
    width: 100%;
}

#tm-block-footer .uk-nav-side {
    margin-left: 0px;
}

#tm-block-footer .uk-nav-side > li > a {
    padding-left: 0;
    padding-right: 0;
}

#tm-block-footer .uk-nav-side > li > a:hover {
    background: transparent;
    color: #FEF02F;
}

/* Footer Menu */

.ls-wrapper > .ls-layer {
    color: #000;
    text-shadow: 0px 0px 1px #ffffff;
}
.ls-wrapper > .ls-layer.white-text {
    color: #def9eb;
    text-shadow: 1px 1px 1px #000000;
}

/* form */

div#pmcontact91_container .pmc-field-container {
    width: 22%;
}

div#pmcontact91_container .pmc-field-container.pmc-field-buttons {
    width: 12%;
}

div#pmcontact91_container .pmc-field-container textarea {
    width: 95% !important;
    float: left!important;
}

div#pmcontact91_container .pmc-field-container input.pmc-input {
    width: 95% !important;
}

div#pmcontact91_container .pmc-field-container.pmc-field-buttons .btn {
    width: 100%;
    text-transform: uppercase;
    padding: 0px 10px;
}

/* form end */

.tm-footer {
    padding-bottom: 115px;
}

.uk-dropdown-navbar {
    margin-top: 0px;
}

.uk-dropdown-navbar .uk-nav-navbar ul a,
.uk-dropdown-navbar .uk-nav-navbar > li > a {
    box-shadow: none;
    text-shadow: none;
    border: 0px;
    font-size: 14px;
    border: 0px;
    line-height: 1.4em;
    font-family: 'font_normal', sans-serif;
    font-weight: 400;
}

.uk-dropdown-navbar .uk-nav-navbar ul li:first-child a:hover,
.uk-dropdown-navbar .uk-nav-navbar > li:first-child > a:hover,
.uk-dropdown-navbar .uk-nav-navbar > li:first-child > a:focus,
.uk-dropdown-navbar .uk-nav-navbar > li.uk-active:first-child > a,
.uk-dropdown-navbar .uk-nav-navbar ul li.uk-active:first-child > a {
    box-shadow: none;
}

.uk-dropdown-navbar .uk-nav-navbar ul li a:hover,
.uk-dropdown-navbar .uk-nav-navbar > li > a:hover,
.uk-dropdown-navbar .uk-nav-navbar > li > a:focus,
.uk-dropdown-navbar .uk-nav-navbar > li.uk-active > a,
.uk-dropdown-navbar .uk-nav-navbar ul li.uk-active > a {
    background: transparent;
    color: #F57F20;
    box-shadow: none;
}

.tm-navbar .uk-navbar-nav > li .uk-dropdown-navbar {
    background: #f3fdff;
    border: 1px solid #b4c0c6;
    border-radius: 4px;
    -webkit-box-shadow: 0px 15px 5px -10px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 15px 5px -10px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 15px 5px -10px rgba(0, 0, 0, 0.5);
}

.tm-article img {
    clear: both;
    margin-bottom: 40px;
}

section#tm-top-c {
    background: #41564a;
}

.main-content-wrapper {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+60,c0d1c7+100 */
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(left, #ffffff 60%, #c0d1c7 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #ffffff 60%,#c0d1c7 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #ffffff 60%,#c0d1c7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#c0d1c7',GradientType=1 ); /* IE6-9 */
}

.pmcontact-container {
    border-radius: 10px 10px 0 0;
}

#pmcontact109_box .pmc-label {
    width: 100%;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    font-family: 'font_black', sans-serif;
}

form.pmcontact-form .pmc-label label {
    color: #686868;
    font-size: 18px;
    font-weight: 400;
    font-family: 'font_condensent', sans-serif;
}

.pmc-form-white form.pmcontact-form .btn {
    display: block;
    width: 100%;
    height: 58px;
    border-radius: 2px;
    color: #ffffff !important;
    font-family: 'font_normal', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid rgb(105, 105, 105);
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#798c81+0,56675d+100 */
    background: #798c81; /* Old browsers */
    background: -moz-linear-gradient(top, #798c81 0%, #56675d 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #798c81 0%,#56675d 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #798c81 0%,#56675d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#798c81', endColorstr='#56675d',GradientType=0 ); /* IE6-9 */
}

#pmcontact109_box .pmc-field {
    width: 100%;
}

.pmc-form-orange form.pmcontact-form input.pmc-input {
    height: 58px;
    border-radius: 7px;
}

form.pmcontact-form .pmc-field {
    margin-right: 0px;
}

div#pmcontact91_container {
    padding-bottom: 0;
}

.tm-sidebar-a .pmc-static .pmcontact-container {
    padding: 5px 20px 0px 20px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#85bfe7+0,d1eaff+51,85bfe7+100 */
    background: #85bfe7;
    /* Old browsers */
    background: -moz-linear-gradient(left, #85bfe7 0%, #d1eaff 51%, #85bfe7 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #85bfe7 0%, #d1eaff 51%, #85bfe7 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #85bfe7 0%, #d1eaff 51%, #85bfe7 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#85bfe7', endColorstr='#85bfe7', GradientType=1);
    /* IE6-9 */
}

#pmcontact113_box.pmc-static .pmcontact-container {
    padding: 30px;
    border-radius: 2px;
}

.pmc-form-violet form.pmcontact-form button,
.pmc-form-violet form.pmcontact-form .btn {
    width: 100%;
    height: 58px;
    margin-top: 20px;
    border-radius: 2px;
    color: #ffffff !important;
    font-family: 'font_normal', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid rgb(105, 105, 105);
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#798c81+0,56675d+100 */
    background: #798c81; /* Old browsers */
    background: -moz-linear-gradient(top, #798c81 0%, #56675d 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #798c81 0%,#56675d 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #798c81 0%,#56675d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#798c81', endColorstr='#56675d',GradientType=0 ); /* IE6-9 */
}

.pmc-form-violet form.pmcontact-form button:hover,
.pmc-form-violet form.pmcontact-form .btn:hover {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#798c81+0,3e4944+100 */g
    background: #6a7d72; /* Old browsers */
    background: -moz-linear-gradient(top, #6a7d72 0%, #4a5650 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #6a7d72 0%,#4a5650 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #6a7d72 0%,#4a5650 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6a7d72', endColorstr='#4a5650',GradientType=0 ); /* IE6-9 */
}

.uk-grid > * > .uk-panel + .uk-panel.form-logo {
    margin-top: 0px;
    border-radius: 0 0 10px 10px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#85bfe7+0,d1eaff+51,85bfe7+100 */
    background: #d7e0e0;
    background: -moz-linear-gradient(left, #d7e0e0 0%, #f2f2f2 18%, #f4f4f4 47%, #bbc7c8 100%);
    background: -webkit-linear-gradient(left, #d7e0e0 0%, #f2f2f2 18%, #f4f4f4 47%, #bbc7c8 100%);
    background: linear-gradient(to right, #d7e0e0 0%, #f2f2f2 18%, #f4f4f4 47%, #bbc7c8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d7e0e0', endColorstr='#bbc7c8', GradientType=1);
    padding: 15px 20px 20px;
    text-align: center;
}

.tm-bottom-b {
    background: #C0D1C7;
}
.tm-bottom-b.tm-seen {
    background: #C0D1C7 url('/images/truck-1.png') no-repeat -5% 30px;
}
.callusB {
    max-width: 1200px;
    margin: 18px auto !important;
}

.callusB h2 {
    text-align: right;
    font-size: 55px;
    font-weight: 400;
    font-family: 'font_black', sans-serif;
    color: #000000;
}

.callusB .uk-button-danger {
    float: right;
    clear: both;
    font-size: 25px;
    margin-top: 30px;
}

.callusB span {
    text-align: right;
    font-size: 25px;
    float: right;
    clear: both;
    color: #1a1a1a;
    margin-top: 15px;
    line-height: normal;
    font-family: 'font_normal', sans-serif;
}
.callusB span strong {
    font-family: 'font_black', sans-serif;
    font-weight: 700;
}
.tm-article p:first-child,
.tm-article h2 {
    margin: 0px !important;
    margin-bottom: 20px !important;
    padding: 0px;
}

.tm-bottom-b {
    border-top: 1px solid #c5c5c5;
    border-bottom: 1px solid #889096;
    padding: 20px 0;
}

.two-borders {
    /*border-bottom: 1px solid #92bdd5;*/
}

section#tm-top-c {
    border: none;
}

.testimonials.two-borders {
    border-top-color: #bbb;
}

.uk-panel-box.testimonials {
    border-top: 1px solid #6286a2;
    border-bottom: 1px solid #6286a2;
}

.why-us.two-borders {
    border-top-color: #d8d8d8;
}

section#tm-top-c {
    border-bottom: 1px solid #45534b;
}

div#pmarketingslider_1 {
    border-bottom: 0px solid #FFF200;
}

.tm-article > p {
    margin-top: 0px;
    margin-bottom: 30px;
}

#tm-middle {
    max-width: 1200px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}

.ls-bar-timer {
    /*border-bottom-color: #ff6a00;*/
    opacity: .85;
    /*top: -4px;*/
    /*border-bottom-color: #f57f20;*/
    border-bottom: 1px solid #DEF9EB;
    background: #DEF9EB;
    top: -1px;
}

#tm-bottom-c {
    background: #fbfbfb;
    border-bottom: 1px solid #41564a;
}

section.uk-grid-collapse > div > .uk-panel-box.why-us {
    border-top: 1px solid #d8d8d8;
    border-bottom: 2px solid #0f2550;
}

.why-us h3 {
    font-size: 47px;
    font-weight: 400;
    font-family: 'font_black', sans-serif;
    text-align: center;
}

.why-us p {
    font-size: 16px;
    line-height: 23px;
}

.why-us h4 {
    margin-bottom: 0px;
}

.why-us p {
    margin-top: 0;
    margin-bottom: 10px !important;
}

.why-us i.uk-margin-right {
    margin-right: 10px !important;
}
.why-us h3{
    font-size: 47px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 40px;
}
.why-us p{
    font-size: 16px;
    line-height: 23px;
}
.why-us i.uk-margin-right {
    margin-right: 10px !important;
}
.image-block {
    margin-top: 20px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.image-block div.video {
    overflow: hidden;
    margin: 0px auto 40px;
    display: inline-block;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    border: 2px solid #000000;
    border-radius: 10px;
    min-width: 350px;
    min-height: 198px;
}

.why-us .uk-container-center {
    /*background: url(/images/stories/Quote-mark-blackandwhite.png) no-repeat 0px top;*/
}

section.uk-grid-collapse > div:last-child > .uk-panel-box {
    border-radius: 0px;
}

section.uk-grid-collapse > div:last-child > .uk-panel-box.call_top2 {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.terms-conditions {
    display: block;
    font-size: 11px;
    line-height: 1.4em;
    color: #ffffff margin: 0px;
    font-family: 'font_normal';
    margin-top: 0;
    font-style: italic;
    color: #e5e5e5;
}

.plumbermarketing {
    text-align: center;
    width: 100%;
    margin: 20px auto 0px;
    font-size: 1.3em;
    line-height: 2em;
}

.plumbermarketing p {
    margin: 0px;
}

.tm-navbar .uk-dropdown li.uk-parent > a:before {
    content: "\f105";
}

.tm-navbar .uk-dropdown li.uk-parent > a:before {
    color: #537cad;
}

.tm-navbar .uk-dropdown li.uk-parent.uk-active > a:before,
.tm-navbar .uk-dropdown li.uk-parent > a:hover:before {
    color: #f57f20;
}

.uk-nav-navbar ul,
.uk-nav-navbar ul > li.uk-parent > ul {
    background-color: #0b4679;
    background: linear-gradient(180deg, #0b4679 0%, #153b58 100%);
}

/* ********************************************************************* sticky footer ****************************************************************** */

.sticky_wdgt {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#778c80+0,5d7667+5,586f62+45,3d4841+100 */
    background: #778c80;
    /* Old browsers */
    background: -moz-linear-gradient(top, #778c80 0%, #5d7667 5%, #586f62 45%, #3d4841 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #778c80 0%, #5d7667 5%, #586f62 45%, #3d4841 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #778c80 0%, #5d7667 5%, #586f62 45%, #3d4841 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#778c80', endColorstr='#3d4841', GradientType=0);
    /* IE6-9 */
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding-top: 1px !important;
    z-index: 100;
    border-radius: 0px;
}

.sticky_wdgt .uk-grid {
    margin-left: 0px;
}

.sticky_wdgt .uk-width-1-3 {
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}

.sticky_wdgt .uk-width-1-3:active {
    background: #242424;
}

.sticky_wdgt .uk-width-1-3:last-child {
    border-right: 0px;
}

.sticky_wdgt .uk-width-1-3:first-child {
    border-left: 0px;
}

.sticky_wdgt .uk-width-1-3 div {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.sticky_wdgt .uk-width-1-3 div.audio_palayer {
    display: flex;
    align-items: center;
}

.sticky_wdgt .uk-width-1-3 div.reviewsaudio {
    height: auto;
}

.sticky_wdgt .uk-width-1-3 a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.sticky_wdgt .uk-width-1-3 a span {
    display: flex;
    align-items: center;
    color: #000000;
    white-space: nowrap;
}

.dark-text,
.dark-text h1,
.dark-text h2,
.dark-text h3,
.dark-text h4,
.dark-text p {
    color: #1a1a1a;
}

.bottom-cta-parallax,
.bottom-cta-parallax .tm-slideshow-scroller {
    width: 100%;
}

.tm-slideshow-scroller .uk-slidenav {
    border-color: #000;
}

.wrap-400,
.wrap-600,
.wrap-800,
.wrap-1000 {
    width: 100%;
}

.wrap-400 {
    max-width: 400px;
}

.wrap-600 {
    max-width: 600px;
}

.wrap-800 {
    max-width: 800px;
}

.wrap-1000 {
    max-width: 1000px;
}

.testimonials blockquote p {
    font-size: 16px;
    line-height: 1.5em;
    font-style: italic;
}

.tiny {
    font-size: 9px;
    line-height: 1.4em;
    font-style: italic;
    opacity: .7;
}

.fw-thumb-list {
    background: #41564a;
}

.fw-thumb-list .uk-overlay{
	width: 100%;
}

.fw-thumb-list p {
    font-size: 16px;
    line-height: 1.2em;
}

.fw-thumb-list h3 {
    font-size: 21px;
}

.get-in-touch .uk-grid p {
    margin-top: 0;
}

.get-in-touch .uk-grid h4 {
    margin-bottom: 0;
}

.sticky_wdgt a.desktop,
.sticky_wdgt div.desktop {
    display: flex;
}

.sticky_wdgt a.tablet,
.sticky_wdgt div.tablet {
    display: none;
}

.sticky_wdgt a.mobile,
.sticky_wdgt div.mobile {
    display: none;
}

.sticky_wdgt div.centralTabletImage {
    display: none;
}

.sticky_wdgt div.review {
    display: none;
}

html .uk-nav.uk-nav-offcanvas > li.uk-active > a,
html:not(.uk-touch) .uk-nav-offcanvas ul a:hover,
.uk-navbar-toggle:hover,
.uk-navbar-toggle:focus {
    color: #495950;
}

.uk-nav-offcanvas > .uk-open > a,
html:not(.uk-touch) .uk-nav-offcanvas > li > a:hover,
html:not(.uk-touch) .uk-nav-offcanvas > li > a:focus {
    color: #495950;
}

.uk-offcanvas-bar {
    background: #172734;
}

.uk-nav-offcanvas ul a, .uk-nav-offcanvas > li > a{
    color: #1a1a1a;
}

.tm-header-container.tm-header-full-width {
    border-radius: 0;
    padding: 0;
    background: #778c80;
    background: -moz-linear-gradient(top, #778c80 0%, #5d7667 5%, #586f62 45%, #3d4841 100%);
    background: -webkit-linear-gradient(top, #778c80 0%, #5d7667 5%, #586f62 45%, #3d4841 100%);
    background: linear-gradient(to bottom, #778c80 0%, #5d7667 5%, #586f62 45%, #3d4841 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#778c80', endColorstr='#3d4841', GradientType=0);
}

.tm-footer {
    background: #41564a;
    border-top: 1px solid #2f3d34;
}

.tm-footer div {
    font-size: 10px;
    color: #ffffff;
    /*font-family: 'font_bold';*/
    line-height: 15px;
}

.tm-footer div.plumbermarketing {
    font-size: 24px;
    line-height: normal;
}

.tm-footer p.address {
    font-size: 16px;
}

.tm-footer p.address {
    font-family: 'font_bold';
    padding-bottom: 15px;
}

.tm-footer p.address a {
    font-family: 'font_bold';
}

.tm-footer a {
    color: #ffffff;
    font-family: 'font_normal';
}

.tm-footer a:hover {
    color: #ffffff;
}

#tm-top-b {
    padding: 0 10px 0 5px;
}

.uk-icon-button {
    font-family: FontAwesome !important;
}

/* *************************************************************************** compiled-submenu ********************************** */

.uk-navbar-nav > li.uk-parent:hover .uk-nav > li.uk-parent > ul {
    opacity: inherit;
    visibility: inherit;
}

.uk-nav-navbar > li.uk-parent:hover > ul > li.uk-parent:hover > ul,
/*.uk-navbar-nav > li.uk-parent:hover .uk-nav > li.uk-parent > ul,*/

.uk-navbar-nav > li.uk-parent.uk-open .uk-nav > li.uk-parent > ul {
    opacity: 1;
    visibility: visible;
}

/*.uk-navbar-nav > li.uk-parent:hover .uk-nav > li.uk-parent > ul {
    opacity: 1;
    visibility: visible;
}*/

.uk-nav-navbar ul,
.uk-nav-navbar ul > li.uk-parent > ul {
    position: relative;
    left: auto;
    background: transparent;
    /* opacity: 1; */
    /* visibility: visible; */
}

.tm-navbar .uk-dropdown li.uk-parent > a:before {
    content: "\f107";
}

.tm-navbar .uk-dropdown li.uk-parent.uk-active > a:before,
.tm-navbar .uk-dropdown li.uk-parent > a:hover:before {
    color: #f57f20;
}

.uk-dropdown-navbar .uk-nav-navbar ul li a:hover,
.uk-dropdown-navbar .uk-nav-navbar > li > a:hover,
.uk-dropdown-navbar .uk-nav-navbar > li > a:focus,
.uk-dropdown-navbar .uk-nav-navbar > li.uk-active > a,
.uk-dropdown-navbar .uk-nav-navbar ul li.uk-active > a {
    color: #ffffff;
    background: #ce3506;
    border-radius: 4px;
    transition: none;
}

.uk-dropdown-navbar .uk-nav-navbar ul a,
.uk-dropdown-navbar .uk-nav-navbar > li > a {
    font-size: 14px;
    line-height: 18px;
    transition: none;
    margin: 2px 0;
}

.uk-nav-navbar li ul.uk-nav-sub li a {
    padding-left: 20px;
}

.uk-nav-navbar > li.uk-parent:hover > ul > li.uk-parent:hover > ul,
.uk-nav-navbar > li.uk-parent:hover > ul {
    -webkit-animation: unset;
    animation: unset;
}

.tm-navbar .uk-dropdown li.uk-parent > ul {
    box-shadow: none;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: unset;
    padding-top: 5px !important;
    margin-top: 5px;
    padding-bottom: 5px !important;
    margin-bottom: 5px;
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    right: auto;
}

.uk-nav-navbar li ul.uk-nav-sub {
    /*	background: #082540;*/
    border-radius: 5px;
}

.tm-navbar .uk-dropdown li.uk-parent > a:before {
    color: #e5e5e5;
}

.uk-navbar-toggle,
.uk-navbar-toggle:before {
    color: #DEF9EB;
}

.uk-navbar-toggle:hover,
.uk-navbar-toggle:focus {
    color: #DEF9EB;
}

html .uk-nav.uk-nav-offcanvas > li.uk-active > a {
    color: #495950;
}

.uk-offcanvas-bar {
    background: #DCE6E0;
}

form.pmcontact-form button,
form.pmcontact-form .btn {
    padding: 4px;
}

.inline-heading h3 {
    margin-bottom: 0px;
}

blockquote::before {
    content: "";
    background: url(/images/pm_left_quote.png) no-repeat center center;
    position: absolute;
    width: 30px;
    height: 30px;
    margin-left: -40px;
}

blockquote::after {
    content: "";
    background: url(/images/pm_right_quote.png) no-repeat center center;
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
}

em {
    font-style: normal;
    color: #c52929;
    font-weight: 700;
}

blockquote {
    padding: 0 40px;
}


blockquote p {
    line-height: 30px;
    font-style: italic;
    font-size: 14px;
    color: #5b5b5b;
}

p.name {
    padding-left: 1px;
    font-size: 22px;
}

.uk-article-intro h2,
.uk-article-intro span.offer {
    text-align: center;
    font-family: 'font_bold';
    text-transform: uppercase;
    color: #4c6959;
    font-size: 30px;
    display: block;
}

.uk-article-intro h2 small {
    font-size: 11px;
    vertical-align: top;
}

.uk-article-intro span.offer.push-s {
    margin-top: 10px;
    margin-bottom: 5px;
}

a.no-img-margin img {
    margin-bottom: 3px;
}

blockquote {
    font-size: 24px;
    font-style: italic;
    line-height: 30px;
}

.award {
    margin: 30px auto;
    padding: 20px 0;
}

.award .uk-width-small-1-3 div {
    background: #ffffff;
    border: 2px solid #0095d9;
    text-align: center;
    padding: 10px 0;
    border-radius: 10px;
}

#jquery_jplayer_12362 {
    width: auto !important;
    height: auto !important;
}

.separator {
    margin-top: 30px;
}

.formField a.btn {
    display: block;
    background: #E4DB1F;
    color: #000000;
    font-weight: 700;
    font-size: 22px;
    padding: 20px 25px;
    border-radius: 20px;
    width: 340px;
    text-transform: uppercase;
    font-family: 'fBold';
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.tm-article img.pull-right {
    float: right;
}

.boxed-orange {
    background: #fff400;
    display: blockk;
    margin: 0px auto;
    text-align: center;
    border-radius: 10px;
    padding: 8px 25px;
    font-family: 'fBold';
    text-transform: uppercase;
    font-size: 40px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.9) inset;
}

.inline-heading-title {
    text-align: center;
    margin-bottom: 20px;
}

.uk-panel.uk-panel-box.side-form {
    padding: 5px 20px;
    background-color: #fff200;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'fBold';
    border: 1px solid #5d5d5d;
}

.uk-panel.uk-panel-box.side-form .uk-panel-title {
    color: #000;
    margin: 10px 0 0;
    font-size: 40px;
}

.call-us-holder span {
    width: calc(100% - 670px);
}

.revivews-box {
    background: #ffffff !important;
}

.reviews-totals h4,
.reviews-totals h4 span {
    color: #000000 !important;
    font-family: 'fBold' !important;
    font-size: 20px !important;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.revivews-box {
    color: #000000 !important;
}

.reviews-totals-origin {
    margin-bottom: 20px;
}

.reviews-totals-origin .tm-article img {
    margin-bottom: 0px;
}

.tm-totop-scroller {
    color: #f9fbfa;
}

.uk-active .tm-totop-scroller {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    width: 40px;
    height: 40px;
    padding-top: 4px;
    bottom: 110px;
}

.main-content-wrapper .uk-container {
    max-width: 1300px;
}

a.tm-totop-scroller:hover {
    color: #aae6c3;
}

.tm-totop-scroller::after {
    font-size: 25px;
}

#pmcontact109_text-0 h3 {
    font-size: 40px;
}

.bottom-cta-parallax h2 {
    font-size: 46px;
    line-height: normal;
}

h3.ip-tagline {
    color: #d00f13;
    font-size: 2em;
    text-align: center;
}

.two-pics:before,
.two-pics:after {
    content: " ";
    display: table;
}

.two-pics:after {
    clear: both;
}

.two-pics {
    *zoom: 1;
}

.two-pics > img {
    clear: unset;
    margin-bottom: 0;
}

span.activeJobHeading {
    font-weight: bold;
    font-size: 1.2em;
}

.btm-note {
    font-size: 12px;
    color: #696969;
    max-width: 1000px;
    text-align: left;
    line-height: 1.2em;
}

#ReviewsFeed img {
    margin-bottom: 0 !important;
}

#ReviewsFeed .user-comment p {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 18px !important;
}

#ReviewsFeed .thumb {
    padding: 0 !important;
}

.slideshow-audio-testimonials {
    max-width: 300px;
    margin: 0 0 10px;
    display: inline-block;
    vertical-align: middle;
}

.testimonials h2 {
    margin-bottom: 8px;
}

.testimonials blockquote p {
    flex-wrap: wrap;
    line-height: normal;
}

.testimonials img {
    max-width: fit-content;
}

.tm-footer div.uk-flex-middle {
    align-items: flex-start;
}

.tm-footer-right .uk-panel img {
    min-width: 166px;
}

.tm-footer-right .to_right a {
    padding: 10px;
    display: block;
}

ul li.media {
    list-style: none;
    margin-bottom: 15px;
}

ul li.media img.media-object {
    float: none;
    display: inline-block;
    width: 100px;
    margin-right: 15px;
    vertical-align: top;
}

ul li.media .media-body {
    display: inline-block;
    width: calc(100% - 120px);
    vertical-align: top;
}

ul li.media .media-body em {
    color: #4f4f4f;
    font-style: italic;
    font-weight: 300;
}

ul li.media h4 {
    line-height: normal;
    margin-bottom: 0px;
}

ul li.media span {
    font-size: 12px;
    color: #c61f25;
    font-weight: 700;
}

ul li.media p {
    margin-top: 0px;
}

.eventgallery-tiles-list .wrapper .data {
    word-break: normal;
}

ul.thumbnails li.span4 {
    list-style: none;
    display: inline-block;
    width: 32%;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
    margin-bottom: 30px;
}

.tm-article small {
    display: block;
    margin-top: -35px;
    max-width: 492px;
}

.tm-article a.btn {
    margin: 20px auto 0;
    color: #ffffff;
    display: block;
    border: 1px solid rgba(93, 93, 93, 0.3);
    -webkit-box-shadow: inset 0px -3px 3px 0px rgba(0, 0, 0, 0.57);
    -moz-box-shadow: inset 0px -3px 3px 0px rgba(0, 0, 0, 0.57);
    box-shadow: inset 0px -1px 1px 0px rgba(0, 0, 0, 0.17);
    background: #ce3506;
    font-family: 'font_normal', sans-serif;
    padding: 5px 10px;
    border-radius: 4px;
    max-width: 200px;
    text-align: center;
}

.tm-article a.btn:hover {
    text-decoration: none;
    -webkit-box-shadow: inset 0px -3px 3px 0px rgba(0, 0, 0, 0.57);
    -moz-box-shadow: inset 0px -3px 3px 0px rgba(0, 0, 0, 0.57);
    box-shadow: inset 0px -1px 1px 0px rgba(0, 0, 0, 0.17);
    background: #f25424;
}

ul.thumbnails {
    padding-left: 0
}

ul.thumbnails li.span4 img {
    margin-bottom: 0px;
}

ul.thumbnails li.span4 h3 {
    margin: 5px;
    text-align: center;
}


/* 2 column Blog */

.blog-page .uk-width-medium-1-2 .uk-article-title {
    font-size: 24px;
    text-align: left;
}

.blog-page .uk-width-medium-1-2 article .tm-article {
    font-size: 15px;
    line-height: 1.3em;
    overflow: hidden;
}

.blog-page .uk-width-medium-1-2 .tm-article-wrapper {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.4);
}

.blog-page .uk-width-medium-1-2 .tm-content:last-child .tm-article-wrapper {
    border: none;
}

.blog-page .tm-article-wrapper ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-page .tm-article-content ul.blog_ul li{
    list-style: none;
    padding-left: 0px;
}

.blog-page .uk-width-medium-1-2 .tm-article-content ul.blog_ul li{
    min-width: 47%;
    display: inline-block;
    margin: 0 2px;
}

.tm-article-content ul.blog_ul li{
    text-align: center;
    max-width: 32%;
    display: inline-block;
    margin: 0 2px;
}

.tm-article-content ul.blog_ul li a img{
    width: 100%;
    margin-bottom: 4px;
}

blockquote p {
    flex-wrap: wrap;
}

blockquote img {
    width: auto;
    height: auto;
}

.tm-sidebar-a .pmc-static .pmcontact-container {
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3) inset;
    padding-bottom: 15px;
    border: 1px solid #b2b2b2;
    border-bottom: 1px solid #a7a7a7;
    padding-top: 15px;
    background: #f4f6f7;
}

.uk-modal{
    background: rgba(145, 165, 155, 0.7 );
}

#pmcontact113_container {
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3) inset;
    padding-bottom: 15px;
    border: 1px solid #b2b2b2;
    border-bottom: 1px solid #a7a7a7;
    padding-top: 15px;
    background: #f4f6f7;
}

.uk-grid > * > .uk-panel + .uk-panel.form-logo {
    border: 1px solid #b2b2b2;
    border-top: none;
}

div#pmcontact109_container form.pmcontact-form input.pmc-input {
    background: #fff !important;
    border-color: #ababab !important;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2) inset !important;
}

.pmc-form-white form.pmcontact-form .btn {
    box-shadow: none !important;
    border: 1px solid rgb(105, 105, 105);
}

.tm-grid-title {
    /*background: #f25424;*/
}

/* slideshow */

h1.title-with-shadow.ls-layer:after {
    background-image: -webkit-linear-gradient(left top, transparent 0%, transparent 25%, #555 25%, #555 50%, transparent 50%, transparent 75%, #555 75%);
    background-size: 4px 4px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: -5;
    display: block;
    text-shadow: none;
    position: absolute;
}


h1.title-with-shadow.ls-layer {
    text-transform: uppercase;
    text-shadow: #e6e4ef 2px 1px 0;
    position: relative;
    color: #1d4295;
}

h1#slideshow-title-1.ls-layer:after {
    content: "Fast Same Day Plumbing, Heating & AC";
    position: absolute;
    left: 0.06em;
    top: 0.04em;
}

h1#slideshow-title-2.ls-layer:after {
    content: "Across Marin County 24 Hours, 7 Days";
    position: absolute;
    left: 0.07em;
    top: 0.07em;
}

h1#slideshow-title-3.ls-layer:after {
    content: "Trusted Marin County";
    position: absolute;
    left: 0.06em;
    top: 0.04em;
}

h1#slideshow-title-4.ls-layer:after {
    content: "Plumbing, Heating & Air";
    position: absolute;
    left: 0.07em;
    top: 0.07em;
}

.ls-wp-container .ls-layer.dblue {
    color: #14215a;
}

.slideshow-title-1.dblue.seo-title.ls-layer {
    text-shadow: 2px 2px 0px rgba(255, 255, 255, .6), 2px 2px 0px rgba(255, 255, 255, .6);
    color: #094172;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.5);
    padding: 0 10px !important;
}

.ls-wrapper > .ls-layer.slideshow-paragraph-1 {
    text-shadow: 1px 1px 2px #000;
    color: #ebfaff;
}

.ls-wp-container .ls-wrapper > .ls-layer.slideshow-paragraph-1.dblue {
    color: #14215a;
    text-shadow: 1px 1px 2px #fff;
}

hr.brace {
    width: auto;
    min-width: 35px;
    padding-bottom: 20px;
    font-size: 2em;
    line-height: 2em;
    position: relative;
    text-align: center;
    vertical-align: middle;
    margin: 0 15px 15px;
    border: none;
    background-color: transparent;
    background-image: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0) 14.5px, #fff 15.5px, #fff 19.5px, rgba(255, 255, 255, 0) 20.5px), radial-gradient(circle at 35px 0, rgba(255, 255, 255, 0) 14.5px, #fff 15.5px, #fff 19.5px, rgba(255, 255, 255, 0) 20.5px);
    background-size: 35px 20px;
    background-position: center bottom;
    background-repeat: no-repeat;
    text-transform: lowercase;
    font-style: italic;
    color: #fff;
    -webkit-filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}

hr.brace:before {
    width: 50%;
    border-top: 5px solid #fff;
    border-left: 1px solid transparent;
    /* play with this until you like the look of it */
    border-top-left-radius: 20% 30px;
    height: 100%;
    content: "";
    position: absolute;
    top: 100%;
    left: -15px;
    box-sizing: border-box;
    margin-top: -5px;
}

hr.brace:after {
    width: 50%;
    border-top: 5px solid #fff;
    border-right: 1px solid transparent;
    /* play with this until you like the look of it */
    border-top-right-radius: 20% 30px;
    height: 100%;
    content: "";
    position: absolute;
    top: 100%;
    right: -15px;
    left: inherit;
    box-sizing: border-box;
    margin-top: -5px;
}

.eventgallery-tile h2 {
    font-size: 22px;
    line-height: normal;
    margin-bottom: 0px;
}

.tm-main > :nth-child(n + 2) {
    margin-top: 0px;
    border: 0px;
}

/* ****************** mega menu ************************ */

#megamenucss #js-mainnav.darkblue .js-megamenu,
#js-mainnav.megamenu.darkblue {
    background: transparent !important;
}

#megamenucss #js-mainnav.megamenu ul.level0 li.megacss a.megacss {
    padding: 0 3px;
    font-size: 28px;
    font-family: 'font_bold';
    color: #fefefe;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.75);
}

#megamenucss #js-mainnav.megamenu.horizontal ul.level0 li a.haschild.megacss span.menu-title {
    background: transparent;
    padding: 0 4px;
}

#megamenucss .darkblue.megamenu ul.level0 > li.megacss:hover > a.megacss {
    background: transparent !important;
    color: #c52929 !important;
}

#megamenucss #js-mainnav.megamenu .group-content ul.megamenu{

}

#megamenucss #js-mainnav .js-megamenu .childcontent-inner-wrap.dropdown-menu {
    background: #dce5e0;
    -webkit-box-shadow: 0px 10px 5px -5px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 10px 5px -5px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 10px 5px -5px rgba(0, 0, 0, 0.3);
    margin-top: 31px;
}

#megamenucss #js-mainnav.megamenu.affix.headroom--unpinned #js-meganav .childcontent-inner-wrap.dropdown-menu{
margin-top: 0px;
}

#megamenucss #js-mainnav.megamenu.darkblue .childcontent-inner {
    background: #dce5e0;
    width: auto !important;
}

#megamenucss #js-mainnav.megamenu .megacol{
    width: 50% !important;
}

.image-block{
    margin-top: 20px;
    text-align:center;
    margin-left: auto;
    margin-right: auto;
}
.image-block div{   
    overflow: hidden;
    margin: 0px auto 40px;
    display:inline-block;
    box-shadow: 2px 2px 2px rgba(0, 0, 0 ,0.5);
    border: 2px solid #3b4a42;
    border-radius: 150px;
}

div#js-meganav,
div#js-mainnav,
div#megamenucss,
#megamenucss #js-mainnav.megamenu {
    position: initial !important;
}

#js-mainnav.megamenu .childcontent-inner {
    max-width: 1500px;
    margin: 0px auto;
}

.jux_tabs_db.jux_tabs_item.tabs_vertical {
    width: 20%;
    display: inline-block !important;
    float: none;
    vertical-align: top;
    border-right: 1px solid #312c2c;
}

#megamenucss .darkblue.megamenu .jux_tabs_item.tabs_vertical ul li {
    border: 0px;
    font-family: 'font_bold';
    font-size: 16px;
}

#megamenucss .darkblue.megamenu .jux_tabs_item.tabs_vertical ul li a {
    color: #14215a !important;
    font-size: 16px;
    padding: 5px 20px;
}

#megamenucss .darkblue.megamenu .jux_tabs_item.tabs_vertical ul li a:hover {
    background: transparent !important;
    color: #d23238 !important;
}

#megamenucss .darkblue.megamenu ul.level0 > li.megacss:hover > a.megacss,
#megamenucss #js-mainnav.megamenu.darkblue ul.level0 li.active {
    background: transparent !important;
    color: #ddffe9 !important;
}

#megamenucss #js-mainnav.megamenu .mm-tab-text-ad-parent .childcontent-inner > .megacol.column1,
#megamenucss #js-mainnav.megamenu .mm-tab-text-ad-parent .megacol.column1 {
    width: 80% !important;
    display: inline-block;
    float: none;
    vertical-align: top;
}

#megamenucss #js-mainnav.megamenu .mm-tab-text-ad .megacol.column1 {
    width: 60% !important;
    float: none;
    display: inline-block;
    vertical-align: top;
}

#megamenucss #js-mainnav.megamenu .mm-tab-text-ad .megacol.column2 {
    width: 40% !important;
    float: none;
    display: inline-block;
}

#megamenucss #js-mainnav.megamenu .childcontent .moduletable h3 {
    color: #1a1a1a;
    font-size: 30px;
    margin-bottom: 0.5em;
}

#megamenucss #js-mainnav.megamenu .childcontent .moduletable p {
    margin: 0 auto 10px;
}

#js-mainnav.megamenu.darkblue .childcontent .moduletable {
    color: #1a1a1a !important;
    line-height: 1.6em;
    font-size: 17px;
    font-weight: 400;
}

#megamenucss #js-mainnav.megamenu ul.level0 .childcontent .moduletable a.uk-button {
    color: #ffffff;
    border: 1px solid rgba(93, 93, 93, 0.3);
    -webkit-box-shadow: inset 0px -3px 3px 0px rgba(0, 0, 0, 0.57);
    -moz-box-shadow: inset 0px -3px 3px 0px rgba(0, 0, 0, 0.57);
    box-shadow: inset 0px -1px 1px 0px rgba(0, 0, 0, 0.17);
    background: #ce3506;
    border-radius: 4px;
    line-height: 25px;
    min-height: 25px;
    transition: none;
    -webkit-transition: none;
    font-family: 'font_normal', sans-serif;
    font-weight: 400;
    font-size: 12px;
    padding: 0 6px;
}

#megamenucss #js-mainnav.megamenu ul.level0 .childcontent .moduletable a.uk-button:hover {
    -webkit-box-shadow: inset 0px -3px 3px 0px rgba(0, 0, 0, 0.57);
    -moz-box-shadow: inset 0px -3px 3px 0px rgba(0, 0, 0, 0.57);
    box-shadow: inset 0px -1px 1px 0px rgba(0, 0, 0, 0.17);
    background: #f25424;
    color: #ffffff;
}

#megamenucss #js-mainnav.megamenu ul {
    list-style: square;
    color: #c52929;
    margin-top: 5px;
    margin-left: 10px;
}

.mm-submenu .nav.menu li {
    width: 100%;
    font-size: 16px;
    font-weight: normal;
    font-family: arial;
    line-height: normal;
    margin-bottom: 5px;
}

#megamenucss .mm-submenu .nav.menu li a {
    margin: 0 5px;
    padding: 0 !important;
}

#megamenucss .mm-submenu .nav.menu li:hover {
    #f25424 !important;
    text-decoration: underline;
}

#megamenucss .mm-submenu .nav.menu li:last-child:after {
    content: unset;
}

#megamenucss #js-mainnav.noJS.horizontal ul.megamenu li.haschild > div.childcontent.hover {
    visibility: visible !important;
    padding-top: 0px;
}

#megamenucss #js-mainnav.megamenu.horizontal ul.level0 li a.megacss span.menu-title{
    padding-left: 4px;
    padding-right: 4px;
}

#megamenucss #js-mainnav.megamenu ul.level0 li.megacss .childcontent li.megacss .mm-heading span.menu-title{
    color: #5B7365;
}

#megamenucss #js-mainnav.megamenu ul.level0 li.megacss .childcontent li.megacss span.menu-title{
    text-shadow: none;
    color: #000000;
}


/* *********** sticky menu ************** */

#megamenucss #js-mainnav.darkblue.headroom--unpinned .js-megamenu {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#778c80+0,5d7667+5,586f62+45,3d4841+100 */
    background: #778c80 !important;
    /* Old browsers */
    background: -moz-linear-gradient(top, #778c80 0%, #5d7667 5%, #586f62 45%, #3d4841 100%) !important;
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #778c80 0%, #5d7667 5%, #586f62 45%, #3d4841 100%) !important;
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #778c80 0%, #5d7667 5%, #586f62 45%, #3d4841 100%) !important;
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#778c80', endColorstr='#3d4841', GradientType=0) !important;
    /* IE6-9 */
}

#megamenucss #js-mainnav.darkblue.headroom--unpinned .js-megamenu ul.megamenu li.megacss a.megacss {
    font-size: 20px;
}

#megamenucss #js-mainnav.megamenu.affix {
    position: initial !important;
}

#megamenucss #js-mainnav.megamenu.affix.headroom--unpinned {
    position: fixed !important;
    -webkit-box-shadow: 0px 10px 5px -5px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 10px 5px -5px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 10px 5px -5px rgba(0, 0, 0, 0.3);

}

#megamenucss #js-mainnav.megamenu.affix.headroom--unpinned ul.level0 li.megacss a.megacss {
    padding: 15px 6px;
}

#megamenucss #js-mainnav.noJS.horizontal.affix.headroom--unpinned ul.megamenu li.haschild > div.childcontent.hover {
    padding-top: 0px;
}

/* *********** sticky menu ************** */

/* ****************** mega menu ************************ */

/* slideshow */

.uk-search-field {
    border: 2px solid #d23238;
    background: #ffffff;
    -webkit-box-shadow: inset 0px 0px 3px 1px rgba(255, 255, 255, 1);
    -moz-box-shadow: inset 0px 0px 3px 1px rgba(255, 255, 255, 1);
    box-shadow: inset 0px 0px 3px 1px rgba(255, 255, 255, 1);
    border-radius: 5px;
    color: #333333;
}

.uk-search-field:focus {
    border: 2px solid #d23238;
    background: #ffffff;
    -webkit-box-shadow: inset 0px 0px 3px 1px rgba(255, 255, 255, 1);
    -moz-box-shadow: inset 0px 0px 3px 1px rgba(255, 255, 255, 1);
    box-shadow: inset 0px 0px 3px 1px rgba(255, 255, 255, 1);
    border-radius: 5px;
    color: #333333;
    outline: unset;
}

.uk-search::before {
    color: #333333;
    line-height: 25px;
}

#megamenucss .darkblue.megamenu .jux-tabs .megacol.column1 {
    margin-left: -1px;
}

.jux_tabs_item.jux_tabs_db.tabs_vertical {
    border-right: 1px solid #312c2c;
}

body #megamenucss .childcontent.active {
    visibility: visible !important;
}

#megamenucss #js-mainnav.megamenu.horizontal.sticky_left.affix.headroom--unpinned .js-megamenu ul.megamenu {
    float: none;
    max-width: 1500px;
    margin: 0px auto;
}

.calendar table {
    width: 100%;
}

.support_subtitle {
    font-size: 24px;
    color: #1a1a1a;
}

.support_block {
    margin-top: 20px;
}

.support_block .support_image {
    display: inline-block;
    width: 200px;
    vertical-align: middle;
}

.support_block .support_text {
    display: inline-block;
    width: calc(100% - 230px);
    vertical-align: middle;
    font-size: 19px;
    font-family: 'font_normal';
    text-align: left;
}

.support_block .support_text .red {
    color: #c61f25;
    font-weight: 900;
}

/* updated mega menu for simpler version */

#megamenucss #js-mainnav.darkblue.headroom--unpinned .js-megamenu ul.megamenu li.megacss .mm-regular-menu-items a.megacss,
#megamenucss #js-mainnav.megamenu ul.level0 li.megacss .mm-regular-menu-items a.megacss {
    font-size: 14px;
    line-height: normal;
    padding: .5em 8px;
}

#megamenucss .darkblue .megamenu .dropdown-menu .mm-regular-menu-items ul.level1 li.megacss > a.megacss,
#megamenucss .darkblue .dropdown-menu .mm-regular-menu-items ul.level1 li.megacss a.megacss {
    margin-bottom: 1px !important;
}

#megamenucss .darkblue .megamenu .dropdown-menu .mm-regular-menu-items ul.level1 li.megacss:hover > a.megacss,
#megamenucss .darkblue .dropdown-menu .mm-regular-menu-items ul.level1 li.megacss a.megacss:hover {
    background: rgba(91, 115, 101, 0.3) !important;
    color: #000000 !important;
}

#megamenucss #js-mainnav.megamenu ul.level0 li.megacss a.megacss.active,
#megamenucss .darkblue .megamenu .dropdown-menu .mm-regular-menu-items ul.level1 li.megacss > a.megacss.active,
#megamenucss .darkblue .dropdown-menu .mm-regular-menu-items ul.level1 li.megacss a.megacss.active {
    color: #ddffe9 !important;
    text-shadow: 2px 2px 1px rgb(33, 43, 37);
}

body #megamenucss .megacss.mm-heading,
#megamenucss .darkblue .megamenu .dropdown-menu ul.level1 li.megacss:hover > a.megacss.mm-heading,
#megamenucss .darkblue .dropdown-menu ul.level1 li.megacss a.megacss.mm-heading:hover {
    padding: .5em 0 !important;
    background: transparent !important;

}

#megamenucss .megacss.mm-heading > span {
    color: #5B7365; !important;
    font-size: 1.7rem !important;
}

#megamenucss #js-mainnav.megamenu .group-content .mm-regular-menu-items ul.megamenu {
    margin-left: 0;
}

.megacss.mm-heading > span {
    padding-left: 20px !important;
}

body #megamenucss #js-mainnav.megamenu a.megacss.mm-heading {
    padding: .2em 0 0 !important;
    cursor: default !important;
}

/* make submenu full width */

#megamenucss #js-mainnav.megamenu ul.level0 li.megacss {
    position: initial;
}

#megamenucss .megacss > .childcontent.adddropdown {
    position: absolute;
    width: 100%;
    left: 0 !important;
    margin-top: 0px;
}

.pmc-form-violet form.pmcontact-form input.pmc-input:focus,
.pmc-form-violet form.pmcontact-form select:focus,
.pmc-form-violet form.pmcontact-form textarea:focus {
    border-color: #0076ba !important;
    -webkit-box-shadow: 0 0 5px #0076ba, 0 1px 2px rgba(0, 0, 0, 0.2) inset !important;
    -moz-box-shadow: 0 0 5px #0076ba, 0 1px 2px rgba(0, 0, 0, 0.2) inset !important;
    box-shadow: 0 0 5px #0076ba, 0 1px 2px rgba(0, 0, 0, 0.2) inset !important;
}

div#livechat-compact-container,
div#livechat-full {
    bottom: 0 !important;
    margin-bottom: 94px !important;
    right: auto !important;
    left: 15px !important;
}

div#livechat-eye-catcher {
    bottom: 0 !important;
    margin-bottom: 127px !important;
    right: auto !important;
    left: 15px !important;
}

/* liveChat */

div#livechat-compact-container,
div#livechat-full {
    bottom: 0 !important;
    margin-bottom: 94px !important;
}

div#livechat-eye-catcher {
    bottom: 0 !important;
    margin-bottom: 127px !important;
}

.sticky_wdgt .uk-grid > div {
    min-height: 92px;
}

/* liveChat */

.tm-logo{
    padding: 4px 0 6px 0;
}

.facebook_block{
    background: #5a7164;
    padding: 20px 0;
    text-align: center;
    border-bottom: 2px solid #435148;
}

.facebook_block a{
    display: block;
    text-align: center;
    margin: 0px auto;
}

.facebook_text{
    display: inline-block;
    width: auto;
    font-family: 'font_black';
    font-size: 45px;
    color: #ffffff;
    vertical-align: middle;
}

.facebook_logo{
    display: inline-block;
    vertical-align: middle;
    width: 12%;
    text-align: right;
    margin-right: 5%;
    height: 100px;
}
.facebook_logo img {
    max-height: 100%;
}
.hiring_title{
    font-family: 'font_black';
    font-size: 96px;
    line-height: normal;
}

.hiring_text{
    max-width: 1060px;
}

.hiring_text p{
    font-family: 'font_condensent';
    font-size: 24px;
    line-height: normal;
    margin-bottom: 5px;
    margin-top: 0px;
}

.hiring_btn{
    margin-top: 20px;
}

.water-conditioning .tm-article .uk-thumbnail {
    background: #fff;
}
.tm-article .uk-thumbnail img {
    max-width: 100%;
}





@media all and (min-width: 800px) and (max-width: 1050px) {
    /* liveChat */
    .sticky_wdgt .uk-grid > div {
        min-height: 82px;
    }
    div#livechat-compact-container,
    div#livechat-full {
        bottom: 0 !important;
        margin-bottom: 84px !important;
    }
    div#livechat-eye-catcher {
        bottom: 0 !important;
        margin-bottom: 119px !important;
    }
    /* liveChat */
}

@media all and (min-width: 599px) and (max-width: 799px) {
    /* liveChat */
    .sticky_wdgt .uk-grid > div {
        min-height: 75px;
    }
    div#livechat-compact-container,
    div#livechat-full {
        bottom: 0 !important;
        margin-bottom: 77px !important;
    }
    div#livechat-eye-catcher {
        bottom: 0 !important;
        margin-bottom: 112px !important;
    }
    /* liveChat */
}

@media all and (max-width: 599px) {
    /* liveChat */
    .sticky_wdgt .uk-grid > div {
        min-height: 40px;
    }
    div#livechat-compact-container,
    div#livechat-full {
        bottom: 0 !important;
        margin-bottom: 42px !important;
    }
    div#livechat-eye-catcher {
        bottom: 0 !important;
        margin-bottom: 77px !important;
    }
}

/* liveChat */

body#pm_body {
    padding-bottom: 0 !important;
}

#pm_body_padding {
    padding-bottom: 48px !important;
}

/* make submenu full width */

/* updated mega menu for simpler version */

/* 2 column Blog */

@media all and (min-width: 500px) and (max-width: 1050px) {
    .two-pics.turnmeonearly > img:first-child {
        max-width: 68%;
    }
    .two-pics.turnmeonearly > img:last-child {
        max-width: 30%;
    }
}

/* *************************************************************************** compiled-submenu ********************************** */

@media all and (max-width: 1700px) {
    .fw-thumb-list .uk-overlay-panel {
        padding: 5px
    }
    .fw-thumb-list h3.tm-grid-title {
        margin-bottom: 5px;
        font-size: 18px;
    }
    .fw-thumb-list p {
        line-height: 1.3em;
        font-size: 14px;
    }
}

@media all and (max-width: 1420px) {
    .fw-thumb-list h3.tm-grid-title {
        font-size: 15px;
        line-height: 1.2em
    }
    .fw-thumb-list p {
        font-size: 12px;
    }

    .tm-navbar .uk-navbar-nav > li > a {
        padding: 0 5px;
        font-size: 2.2vw;
    }

    #megamenucss #js-mainnav.megamenu .js-megamenu,
    #megamenucss #js-mainnav.megamenu .js-megamenu .level1 .group,
    #megamenucss #js-mainnav.megamenu .js-megamenu ul.level1,
    #megamenucss #js-mainnav.megamenu .js-megamenu ul.level2,
    #megamenucss #js-mainnav.megamenu .js-megamenu ul.level3 {
        font-size: 30px !important;
    }

    #megamenucss #js-mainnav.megamenu ul.level0 li.megacss a.megacss{
        font-size: 26px;
    }

    .tm-header-container.tm-header-full-width{
        padding-left: 10px;
        padding-right: 10px;
    }

}

@media all and (max-width: 1024px) {
    .fw-thumb-list p {
        display: none;
    }
    .fw-thumb-list h3.tm-grid-title {
        font-size: 13px;
        line-height: 1.2em;
        margin: 0px;
        padding: 5px;
    }
}






@media all and (max-width: 899px) {
    #tm-top-b .call_top {
        display: none;
    }
    .btm-note {
        text-align: center;
    }
    .two-pics > img {
        margin-bottom: 20px;
    }
    .sticky_wdgt .uk-width-1-3:active {
        background: #242424;
    }
    .sticky_wdgt div.review_module {
        display: none;
    }
    .sticky_wdgt div.review {
        display: flex;
    }
    .sticky_wdgt a.desktop,
    .sticky_wdgt div.desktop {
        display: none;
    }
    .sticky_wdgt a.tablet,
    .sticky_wdgt div.tablet {
        display: flex;
    }
    .sticky_wdgt a.mobile,
    .sticky_wdgt div.mobile {
        display: none;
    }
    .sticky_wdgt div.centralTabletImage {
        display: flex;
    }

    .tm-footer-left + .tm-footer-right {
        width: 100%;
    }

    a.tm-logo {
        width: 50%;
    }

    .uk-offcanvas-page{
        position: relative;
    }

}

@media all and (max-width: 599px) {
    .testimonials h2 {
        font-size: 30px;
    }
    .testimonials blockquote p {
        font-size: 15px;
        font-family: 'fBold';
    }
    .tm-slideshow-scroller .tm-testimonial {
        margin: 0;
    }
    .uk-grid.tm-slidenav {
        display: none;
    }
    .testimonials .separator {
        margin-top: 5px;
    }
    .testimonials .uk-button {
        font-size: 0.7em;
        line-height: 1.5em;
        padding: .5em 1em;
        min-height: unset;
    }

    .sticky_wdgt a.desktop,
    .sticky_wdgt div.desktop {
        display: none;
    }
    .sticky_wdgt a.tablet,
    .sticky_wdgt div.tablet {
        display: none;
    }
    .sticky_wdgt a.mobile,
    .sticky_wdgt div.mobile {
        display: flex;
    }
    .sticky_wdgt a.tablet {
        display: none;
    }
    .sticky_wdgt .uk-width-1-3 {
        width: calc(100% - 100px);
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        padding: 0px;
    }
    .sticky_wdgt .uk-width-1-3:first-child,
    .sticky_wdgt .uk-width-1-3:last-child {
        width: 50px;
    }
    .sticky_wdgt div.review {
        display: none;
    }
    .sticky_wdgt div.sw-ticker {
        display: none;
    }
    .sw-tick-wrapper img {
        max-height: 32px;
    }
    .sw-tick-container .arrow,
    .sw-tick-container .arrow {
        position: absolute;
        height: 40px;
        width: 40px;
        top: 9px;
        font-size: 22px;
        display: inline-block;
        font-family: "FontAwesome";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-weight: 700;
        color: #ffffff;
        opacity: 0;
        text-shadow: 1px 1px 0px #000;
    }
    .sw-tick-container .arrow-left {
        left: 24%;
    }
    .sw-tick-container .arrow-right {
        right: 25%;
    }

    .eventgallery-tile h2 {
        font-size: 14px;
    }

}

@media all and (max-width: 500px) {
    .fw-thumb-list .uk-overlay-panel {
        padding: 0;
    }
    .fw-thumb-list h3.tm-grid-title {
        font-size: 9px;
        line-height: 1.3em;
        margin: 0px;
        padding: 4px 2px;
        font-weight: normal;
        font-family: 'font_normal';
    }
}

/* ********************************************************************* sticky footer ****************************************************************** */

@media all and (max-width: 1770px) {
    .callusB h2 {
        width: 600px;
        float: right;
        font-size: 38px;
    }

    .tm-bottom-b {
        background-size: auto 100%;
    }
    #megamenucss #js-mainnav.megamenu.horizontal ul.level0 li a.haschild.megacss span.menu-title,
    #megamenucss #js-mainnav.megamenu ul.level0 li.megacss span.menu-title {
        padding-left: 0px;
        padding-right: 0px;
    }
}


@media all and (max-width: 1540px) {
    .why-us {
        padding-left: 20px;
        padding-right: 20px;
    }

	.hiring_title{
		font-size: 5vw;
	}
}
@media all and (max-width: 1340px) {

    a.tm-logo {
        width: 26%;
    }


    .callusB h2 {
        width: 100%;
    }

    .call-us-holder span {
        font-size: 24px;
    }

    #megamenucss #js-mainnav.megamenu .js-megamenu,
    #megamenucss #js-mainnav.megamenu .js-megamenu .level1 .group,
    #megamenucss #js-mainnav.megamenu .js-megamenu ul.level1,
    #megamenucss #js-mainnav.megamenu .js-megamenu ul.level2,
    #megamenucss #js-mainnav.megamenu .js-megamenu ul.level3 {
        font-size: 24px !important;
    }

    #megamenucss #js-mainnav.megamenu ul.level0 li.megacss a.megacss {
        font-size: 24px;
    }

    #megamenucss #js-mainnav .js-megamenu .childcontent-inner-wrap.dropdown-menu {
        margin-top: 2px;
    }

    #megamenucss #js-mainnav.affix .js-megamenu .childcontent-inner-wrap.dropdown-menu {
        margin-top: 0px;
    }

    a.tm-logo{
        width: 20%;
    }



}

@media all and (max-width: 1300px) {
    .main-content-wrapper .tm-container {
        padding: 20px;
    }
    .callusB {
        padding: 0 20px;
    }
    .tm-bottom-b {
        background-size: contain;
    }
    .callusB h2 {
        font-size: 36px;
    }
    .callusB span {
        font-size: 20px;
        margin-top: 20px;
    }
    .callusB .uk-button-primary {
        font-size: 12px;
    }
    .sticky_wdgt .uk-grid {
        width: 100%
    }

    form.pmcontact-form .pmc-label label {
        font-size: 18px;
    }

    .pmc-form-white.pmc-shadow form.pmcontact-form button,
    .pmc-form-white.pmc-shadow form.pmcontact-form .btn {
        font-size: 13px;
    }

    form.pmcontact-form .pmc-label label {
        font-size: 14px;
    }

    #megamenucss #js-mainnav.megamenu ul.level0 li.megacss a.megacss {
        font-size: 23px;
    }

    #megamenucss #js-mainnav .js-megamenu .childcontent-inner-wrap.dropdown-menu {
        margin-top: 5px;
    }

    #megamenucss #js-mainnav.affix .js-megamenu .childcontent-inner-wrap.dropdown-menu {
        margin-top: 0px;
    }

}

@media all and (min-width: 1299px) {
    .tm-container {
        max-width: 1500px;
    }
    .tm-container-new{
    	max-width: 2000px;
    }
}

@media all and (max-width: 1130px) {
    #megamenucss #js-mainnav.megamenu ul.level0 li.megacss span.megacss,
    #megamenucss #js-mainnav.megamenu ul.level0 li.megacss a.megacss {
        padding: 12px 3px;
    }

    #megamenucss #js-mainnav.megamenu .js-megamenu,
    #megamenucss #js-mainnav.megamenu .js-megamenu .level1 .group,
    #megamenucss #js-mainnav.megamenu .js-megamenu ul.level1,
    #megamenucss #js-mainnav.megamenu .js-megamenu ul.level2,
    #megamenucss #js-mainnav.megamenu .js-megamenu ul.level3 {
        font-size: 20px !important;
    }

    #megamenucss #js-mainnav.megamenu ul.level0 li.megacss a.megacss {
        font-size: 20px;
    }

    #megamenucss #js-mainnav .js-megamenu .childcontent-inner-wrap.dropdown-menu {
        margin-top: 20px;
    }

    #megamenucss #js-mainnav.affix .js-megamenu .childcontent-inner-wrap.dropdown-menu {
        margin-top: 0px;
    }
}



@media all and (max-width: 1100px) {
    /* form */
    div#pmcontact91_container .pmc-field-container .pmc-label {
        font-size: 15px;
        margin-top: 5px;
    }
    div#pmcontact91_container .pmc-field-container textarea,
    div#pmcontact91_container .pmc-field-container input.pmc-input,
    div#pmcontact91_container .pmc-field-container.pmc-field-buttons .btn {
        min-height: inherit;
        height: 45px !important;
    }
    div#pmcontact91_container .pmc-field-container.pmc-field-buttons .btn {
        line-height: 14px
    }
    /* side call us */
    .call_top {
        margin-top: 0px;
    }
    /* form end */
    .pmc-form-white form.pmcontact-form button,
    .pmc-form-white form.pmcontact-form .btn {
        font-size: 11px;
    }

    #pmcontact109_text-0 h3 {
        font-size: 34px;
    }

    .pmc-form-white.pmc-shadow form.pmcontact-form button,
    .pmc-form-white.pmc-shadow form.pmcontact-form .btn {
        font-size: 12px;
    }

    div#pmcontact91_container .pmc-field-container.pmc-field-buttons .btn {
        padding: 0 5px;
    }

    form.pmcontact-form .pmc-label label {
        font-size: 12px;
    }
}

@media all and (max-width: 1340px) {
    .call_top {
        text-align: center;
    }

    #tm-bottom-b .uk-width-1-1 {
        background: rgba(255, 255, 255, 0.9);
        padding: 20px 0;
    }

    .tm-bottom-b{
        padding: 0;
    }

    .call-us-holder span {
        width: 100%;
    }
}

@media all and (max-width: 1230px) {
	.xl-ttl h1.uk-article-title {
	    font-size: 40px;
	}
    a.tm-logo{
        width: 15%;
    }

    #megamenucss #js-mainnav.megamenu ul.level0 li.megacss a.megacss{
        font-family: 'font_condensent', sans-serif;
        font-size: 17px;
    }

    .hiring_text p{
        font-size: 2vw;
    }

    .hc_hiring .uk-panel-box.bottom-cta-parallax{
        padding: 0 15px;
    }
}



@media all and (max-width: 990px) {
    #tm-bottom-a .uk-width-1-1,
    #tm-bottom-b .uk-width-1-1 {
        position: relative;
    }
    #tm-bottom-a,
    #tm-bottom-b {
        /*margin-right: -15px;*/
        height: auto;
    }
    #tm-bottom-b {
        /*margin-left: -15px;*/
    }
    #tm-bottom-a .uk-width-1-1 {
        height: auto;
    }
    .bottom-cta {
        padding-top: 30px;
        padding-bottom: 20px;
    }

    #pmcontact109_text-0 h3 {
        font-size: 30px;
    }
}

@media all and (max-width: 900px) {
    .testimonials > div {
        padding: 200px 0px !important;
    }
    .sticky_wdgt {
        height: auto;
    }
    a.smaller_img {
        margin-top: -15px;
        display: block;
    }
    .tm-footer {
        padding-bottom: 100px;
    }
    .image-block div.video {
        float: none;
        display: inline-block;
        margin: 0px;
        width: 49%;
        max-width: 300px;
        max-height: 300px;
    }
    .image-block div{
        float: none;
        display: inline-block;
        margin: 0px;
        width: 49%;
        max-width: 300px;
        max-height: 300px;
    }
    #tm-bottom-b .uk-width-1-1 {
        background: rgba(255, 255, 255, 0.95);
    }

    .bottom-cta span.bottom-text {
        font-size: 50px;
    }
    
}
@media all and (max-width: 899px) {
    a.tm-logo{
        width: 46%;
    }

    .tm-header{
        height: auto;
    }

    .why-us h4, .why-us p{
        text-align: center;
    }

    .facebook_block{
        padding: 20px 0;
    }

    .hiring_title{
        font-size: 36px;
    }

    .hiring_text p{
        font-size: 18px;
    }
}


@media all and (max-width: 768px) {
    .facebook_text{
        font-size: 6vw;
    }
    .facebook_logo {
        height: auto;
    }
	.xl-ttl h1.uk-article-title {
	    font-size: 30px;
	}
    .uk-article-title {
        font-size: 36px;
    }
    .new-width .uk-row-first {
        margin-bottom: 30px;
    }
    /*	#tm-middle{
		margin-top: 195px;
	}*/
    .uk-block {
        padding-top: 0px;
        padding-bottom: 10px;
    }
    .holder {
        display: none;
    }
    .bottom-cta {
        padding-top: 25px;
    }
    #tm-bottom-a .uk-width-1-1 {
        height: 235px;
        /*padding: 0 15px;*/
    }
    .bottom-cta span.bottom-text {
        margin-top: 20px;
        font-size: 34px;
        margin-left: 0;
        display: block;
    }
    #tm-bottom-a {
        height: 235px;
    }
    #tm-bottom-b {
        height: auto;
        background-size: auto;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .callusB {
        text-align: center;
        padding: 20px;
    }
    .callusB h2 {
        text-align: center;
        margin-bottom: 20px;
    }
    .callusB span {
        margin-top: 20px;
        text-align: center;
        font-size: 16px;
        max-width: 100%;
        float: none;
        display: block;
    }
    .callusB .uk-button-primary {
        float: none;
    }
    .sticky_wdgt a.smaller_img {
        margin-top: 0px;
    }
    .why-us h3 {
        margin-top: 30px;
    }

    .uk-article-title {
        margin-top: 0;
    }
    .blog-page .uk-width-medium-1-2 .uk-article-title {
        margin-top: 20px;
    }

    #tm-bottom-a {
        height: auto;
    }

    #tm-bottom-a .uk-width-1-1 {
        height: auto;
    }
    .tm-bottom-b {
        background: #ffffff;
    }

    .support_main {
        height: auto !important;
    }

    .support_block .support_image {
        display: block;
        width: 100%;
        text-align: center;
    }

    .support_block .support_text {
        width: 100%;
        text-align: center;
        font-size: 16px;
        line-height: normal;
        margin-top: 10px;
        text-align: center;
    }

    .support_subtitle {
        font-size: 18px;
    }

    .why-us h3{
        font-size: 32px;
    }

    .blog-page .uk-width-medium-1-2 .tm-article-content ul.blog_ul li{
        min-width: 47%;
    }

    .tm-article-content ul.blog_ul li{
        max-width: 48%;
    }
}

@media all and (max-width: 600px) {

    .uk-article-title {
        font-size: 32px;
    }

    .uk-article-intro h2,
    .uk-article-intro span.offer {
        font-size: 24px;
        line-height: normal;
        margin-bottom: 10px;
    }

    .uk-article-intro p {
        font-size: 18px;
        line-height: normal;
        margin: 0;
    }

    .uk-article-intro {
        margin-bottom: 20px;
    }

    .main-content-wrapper .tm-container {
        padding: 10px;
    }

    .tm-main {
        padding: 0;
    }

    aside {
        padding: 0 !important;
    }

    /* form */
    div#pmcontact91_container .pmc-field-container .pmc-label {
        font-size: 12px;
        margin-top: 5px;
    }
    /* form */
    div#pmcontact91_container .pmc-field-container {
        width: 33%;
    }
    div#pmcontact91_container .pmc-field-container.pmc-field-phone {
        width: 34%;
    }
    div#pmcontact91_container .pmc-field-container.pmc-field-email {
        float: right;
    }
    div#pmcontact91_container .pmc-field-container.pmc-field-email input {
        ;
    }
    div#pmcontact91_container .pmc-field-container.pmc-field-textarea {
        width: 73%;
        margin-right: 2%;
    }
    div#pmcontact91_container .pmc-field-container.pmc-field-buttons {
        width: 25%;
    }
    div#pmcontact91_container .pmc-field-container textarea {
        width: 100% !important;
    }
    /* form end */
    div#pmcontact91_container .pmc-field-container textarea,
    div#pmcontact91_container .pmc-field-container input.pmc-input,
    div#pmcontact91_container .pmc-field-container.pmc-field-buttons .btn {
        height: 30px !important;
        box-shadow: none;
        margin: 3px;
    }

    div#pmcontact91_container .pmc-field-container .pmc-label {
        margin-top: 2px;
    }

    div#pmcontact91_container .pmc-field-container.pmc-field-message .pmc-label {
        margin-top: -3px;
    }

    div#pmcontact91_container form.pmcontact-form .pmc-label label {
        padding: 0;
        font-size: 12px;
        line-height: 30px;
        padding-left: 3px;
    }



    #tm-top-b .call_top {
        display: none;
    }

    #pmcontact91_field-message-lbl {
        margin-top: 3px;
    }

    .pmc-static .pmcontact-container {
        padding-top: 0px;
    }

    .pmc-form-white form.pmcontact-form input.pmc-input,
    .pmc-form-white form.pmcontact-form select,
    .pmc-form-white form.pmcontact-form textarea {
        font-size: 14px;
    }

    .pmc-form-white form.pmcontact-form input.pmc-input:focus,
    .pmc-form-white form.pmcontact-form select:focus,
    .pmc-form-white form.pmcontact-form textarea:focus {
        font-size: 14px;
    }

    div#pmcontact91_container .pmc-field-container textarea,
    div#pmcontact91_container .pmc-field-container.pmc-field-buttons .btn {
        margin-top: 0;
        float: left;
    }
    #tm-top-b {
        padding: 6px 0 5px;
    }
    .bottom-cta-parallax h2 {
        font-size: 30px
    }

    /* Mefi 2018.05.25. Reduce size of form on mobile */
    div#pmcontact91_container .pmc-field-container input#pmcontact91_field-name {
        border-bottom-right-radius: 0px !important;
        border-top-right-radius: 0px !important;
        width: 100% !important;
        box-shadow: none !important;
    }


    div#pmcontact91_container .pmc-field-container input#pmcontact91_field-phone {
        border-radius: 0px !important;
        border-left: none !important;
        width: 100% !important;
        box-shadow: none !important;
    }

    div#pmcontact91_container .pmc-field-container input#pmcontact91_field-email {
        border-bottom-left-radius: 0px !important;
        border-top-left-radius: 0px !important;
        border-left: none !important;
        /*width: 100%!important;*/
        box-shadow: none !important;
    }
    div#pmcontact91_container .pmc-field-container input#pmcontact91_field-name:hover,
    div#pmcontact91_container .pmc-field-container input#pmcontact91_field-phone:hover,
    div#pmcontact91_container .pmc-field-container input#pmcontact91_field-email:hover {}

    div#pmcontact91_container .pmc-field-container input#pmcontact91_field-name:active,
    div#pmcontact91_container .pmc-field-container input#pmcontact91_field-phone:active,
    div#pmcontact91_container .pmc-field-container input#pmcontact91_field-email:active,
    div#pmcontact91_container .pmc-field-container input#pmcontact91_field-name:focus,
    div#pmcontact91_container .pmc-field-container input#pmcontact91_field-phone:focus,
    div#pmcontact91_container .pmc-field-container input#pmcontact91_field-email:focus {
        box-shadow: 0px 0px 2px #d7d7d7 inset !important;
        border: 1px solid #aaa !important;
    }

    div#pmcontact91_container .pmc-field-container input#pmcontact91_field-phone:active,
    div#pmcontact91_container .pmc-field-container input#pmcontact91_field-phone:focus,
    div#pmcontact91_container .pmc-field-container input#pmcontact91_field-email:active,
    div#pmcontact91_container .pmc-field-container input#pmcontact91_field-email:focus {
        border-left: none !important;
    }
    button#pmcontact91_send {
        float: right !important;
        border-bottom-left-radius: 0px !important;
        border-top-left-radius: 0px !important;
        margin-left: 0 !important;
        border-color: #737373;
    }

    textarea#pmcontact91_field-message {
        border-bottom-right-radius: 0px !important;
        border-top-right-radius: 0px !important;
        margin-right: 0 !important;
        float: right !important;
    }

    div#pmcontact91_container .pmc-field-container.pmc-field-textarea {
        margin-right: 0;
        width: 73%;
    }

    div#pmcontact91_container .pmc-field-container.pmc-field-buttons {
        width: 27%;
    }

    .uk-panel-box-tertiary h3 .uk-button{
        margin-top: 20px;
        margin-left: 0px;
    }

    .uk-panel-box-tertiary h3 .nds{
        display: block;
    }

    /* Mefi 2018.05.25. Reduce size of form on mobile */
}

@media (max-width: 480px) {
    .callusB h2 {
        margin: 0 auto 10px;
        color: #000;
    }
    .uk-article-title {
        font-size: 30px;
    }
    .uk-article-intro h2,
    .uk-article-intro span.offer {
        font-size: 20px;
        line-height: 1.5em;
    }
    .uk-article-intro p {
        font-size: 17px;
        line-height: 1.4em;
        margin: 10px;
    }
    .testimonials h2 {
        font-size: 20px;
    }
    .testimonials blockquote p {
        font-size: 14px;
        font-family: 'fLight';
        font-style: normal;
    }
    #pmcontact113_text-0 {
        display: none;
    }

    form.pmcontact-form button,
    form.pmcontact-form .btn {
        padding: 0px;
    }

    .tm-article img {
        float: none;
        display: block;
        margin: 5px auto;
    }
    .tm-article img.pull-right {
        float: none;
    }

    .bottom-cta span.bottom-text {
        font-size: 30px;
    }
    #tm-footer .uk-panel {
        font-size: 12px;
        line-height: 1.4em;
    }
    #tm-footer .uk-panel .terms-conditions {
        font-size: 11px;
        margin-top: 10px;
    }
    .plumbermarketing p {
        font-size: 14px;
    }

    div#pmcontact91_container form.pmcontact-form .pmc-label label {
        font-size: 11px;
    }

    .pmc-form-white.pmc-shadow form.pmcontact-form button,
    .pmc-form-white.pmc-shadow form.pmcontact-form .btn {
        font-size: 11px;
    }

    #tm-middle {
        margin-top: 20px;
    }

    .uk-article-intro p{
        margin-left: 0px;
        margin-right: 0px;
    }
}

@media all and (max-width: 425px) {
    .tm-article img {
        float: none;
        display: block;
        margin: 5px auto;
    }

}

@media all and (max-width: 415px) {
    .sticky_wdgt {
        height: auto;
    }

    .tm-logo-small {
        max-width: 45%;
    }
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* customize horizontal form */

.uk-panel-box.horizonal-form {
    padding-right: 10px;
}

@media all and (min-width: 599px) {
    #tm-top-b {
        padding: 0 10px 0 5px;
    }
    .pmc-static .pmcontact-container {
        padding: 0;
    }
    div#pmcontact91_container .pmc-field-container input.pmc-input,
    div#pmcontact91_container .pmc-field-container textarea {
        background: transparent !important;
        background: #ffffff !important;
        border: none !important;
        /*box-shadow: none!important;*/
        box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2) inset !important;
        border-radius: 2px !important;
        color: #777777;
        display: block;
        /* height: 100%!important; */
    }

    #pmcontact91_form label,
    #pmcontact91_form .pmc-separator-text,
    #pmcontact91_form .pmc-msg,
    #pmcontact91_form .pmc-chars-counter,
    #pmcontact91_form .pmc-uploader,
    #pmcontact91_box .pmc-dropzone {
        font-size: 15px !important;
        color: #1a1a1a;
        text-transform: uppercase;
        padding-left: 15px;
    }
    form.pmcontact-form label .pmc-asterisk {
        color: #000;
    }
    div#pmcontact91_container .pmc-field-container {
        min-height: 76px;
        display: flex;
        align-items: center;
    }
    .pmc-labels-over form.pmcontact-form .pmc-field-text .pmc-label,
    .pmc-labels-over form.pmcontact-form .pmc-field-name .pmc-label,
    .pmc-labels-over form.pmcontact-form .pmc-field-email .pmc-label,
    .pmc-labels-over form.pmcontact-form .pmc-field-phone .pmc-label,
    .pmc-labels-over form.pmcontact-form .pmc-field-subject .pmc-label,
    .pmc-labels-over form.pmcontact-form .pmc-field-password .pmc-label,
    .pmc-labels-over form.pmcontact-form .pmc-field-date .pmc-label,
    .pmc-labels-over form.pmcontact-form .pmc-field-textarea .pmc-label,
    .pmc-labels-over form.pmcontact-form .pmc-field-select .pmc-label,
    .pmc-labels-over form.pmcontact-form .pmc-field-multiple .pmc-label {
        top: auto;
        margin: 0;
    }
    #tm-top-b-wrapper {
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#778c80+0,5d7667+5,586f62+45,3d4841+100 */
        background: #778c80;
        /* Old browsers */
        background: -moz-linear-gradient(top, #778c80 0%, #5d7667 5%, #586f62 45%, #3d4841 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(top, #778c80 0%, #5d7667 5%, #586f62 45%, #3d4841 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, #778c80 0%, #5d7667 5%, #586f62 45%, #3d4841 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#778c80', endColorstr='#3d4841', GradientType=0);
        /* IE6-9 */
    }
    div#pmcontact91_container .pmc-field-container input.pmc-input:active,
    div#pmcontact91_container .pmc-field-container textarea:active,
    div#pmcontact91_container .pmc-field-container input.pmc-input:focus,
    div#pmcontact91_container .pmc-field-container textarea:focus {
        color: #000;
        background: #ffffff !important;
        background: -moz-linear-gradient(top, #ffffff 0%, #f4fff8 50%, #ebf3ee 50%, #e9f7ea 100%) !important;
        background: -webkit-linear-gradient(top, #ffffff 0%, #f4fff8 50%, #ebf3ee 50%, #e9f7ea 100%) !important;
        background: linear-gradient(to bottom, #ffffff 0%, #f4fff8 50%, #ebf3ee 50%, #e9f7ea 100%) !important;
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eef9fa', GradientType=0) !important;
        box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5) inset !important;
    }
    .pmc-form-white form.pmcontact-form textarea {
        font-size: 15px;
    }
    .pmc-form-white.pmc-shadow form.pmcontact-form button,
    .pmc-form-white.pmc-shadow form.pmcontact-form .btn {
        border-radius: 2px;
        border-color: #3f4844;
    }
    .call_top {
        margin-top: -2px;
    }
}

@media all and (max-width: 1245px) {
    #pmcontact91_form label{
        padding-left: 5px;
        font-size: 13px !important;
    }
}

@media all and (max-width: 1100px) {
    #pmcontact91_form label {
        padding-left: 5px;
        font-size: 12px !important;
    }

    div#pmcontact91_container .pmc-field-container .pmc-label {
        margin-top: 0px;
    }
}

@media all and (max-width: 598px) {
    div#pmcontact91_container {
        text-align: center;
    }
    div#pmcontact91_container .pmc-field-container {
        width: 30%;
        float: none;
        display: inline-block;
        vertical-align: top;
    }
    div#pmcontact91_container .pmc-field-container.pmc-field-phone {
        width: 31%;
    }

    div#pmcontact91_container .pmc-field-container.pmc-field-textarea {
        width: 61.5%;
        float: none;
        display: inline-block;
        margin-top: 3px;
    }

    div#pmcontact91_container .pmc-field-container.pmc-field-buttons {
        width: 30%;
        float: none;
        display: inline-block;
        vertical-align: top;
        margin-top: 3px;
    }

    div#pmcontact91_container .pmc-field-container.pmc-field-email {
        float: none;
    }

    div#pmcontact91_container .pmc-field-container textarea {
        border-radius: 2px !important;
        border: 1px solid #a7bcb0 !important;
        float: left;
        margin: 0;
        font-size: 12px;
        font-weight: 300;
        font-family: 'font_normal';
        box-shadow: none;
    }

    div#pmcontact91_container .pmc-field-container input#pmcontact91_field-name,
    button#pmcontact91_send {
        border-radius: 2px !important;
        border: 1px solid #a7bcb0 !important;
        font-size: 12px;
        font-weight: 300;
        font-family: 'font_normal';
        margin: 0px;
    }

    div#pmcontact91_container .pmc-field-container input#pmcontact91_field-phone,
    div#pmcontact91_container .pmc-field-container input#pmcontact91_field-email {
        border: 1px solid #a7bcb0 !important;
        margin: 0px;
        width: 100% !important;
    }

    div#pmcontact91_container .pmc-field-container.pmc-field-buttons .btn {
        float: none !important;
        padding: 0px;
        margin: 0px;
        font-size: 12px;
        font-family: 'font_normal';
    }
    div#pmcontact91_container .pmc-field-container .pmc-label {
        margin-top: 1px;
    }

    #pmcontact91_form label{
        font-size: 12px !important;
    }
div#pmcontact91_container .pmc-field-container.pmc-field-name {
    width: 32%;
    margin-right: 1%;
}
div#pmcontact91_container .pmc-field-container.pmc-field-phone {
    width: 32%;
    margin-right: 1%;
}
div#pmcontact91_container .pmc-field-container.pmc-field-email {
    width: 32%;
}

div#pmcontact91_container .pmc-field-textarea.pmc-field-message {
    width: 66%;
    margin-right: 1%;
}
div#pmcontact91_container .pmc-field-container.pmc-field-buttons {
    width: 32%;
}
}
