@charset "UTF-8";

 .animated {
animation-duration: 1s;
animation-fill-mode: both;
}
.animated.infinite {
animation-iteration-count: infinite;
}
.animated.hinge {
animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
animation-duration: .75s;
}
@keyframes bounce {
from, 20%, 53%, 80%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transform: translate3d(0,0,0);
}
40%, 43% {
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transform: translate3d(0, -30px, 0);
}
70% {
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transform: translate3d(0, -15px, 0);
}
90% {
transform: translate3d(0,-4px,0);
}
}
.bounce {
animation-name: bounce;
transform-origin: center bottom;
}
@keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
animation-name: flash;
} @keyframes pulse {
from {
transform: scale3d(1, 1, 1);
}
50% {
transform: scale3d(1.05, 1.05, 1.05);
}
to {
transform: scale3d(1, 1, 1);
}
}
.pulse {
animation-name: pulse;
}
@keyframes rubberBand {
from {
transform: scale3d(1, 1, 1);
}
30% {
transform: scale3d(1.25, 0.75, 1);
}
40% {
transform: scale3d(0.75, 1.25, 1);
}
50% {
transform: scale3d(1.15, 0.85, 1);
}
65% {
transform: scale3d(.95, 1.05, 1);
}
75% {
transform: scale3d(1.05, .95, 1);
}
to {
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
animation-name: rubberBand;
}
@keyframes shake {
from, to {
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
transform: translate3d(10px, 0, 0);
}
}
.shake {
animation-name: shake;
}
@keyframes headShake {
0% {
transform: translateX(0);
}
6.5% {
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
transform: translateX(5px) rotateY(7deg);
}
31.5% {
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
transform: translateX(2px) rotateY(3deg);
}
50% {
transform: translateX(0);
}
}
.headShake {
animation-timing-function: ease-in-out;
animation-name: headShake;
}
@keyframes swing {
20% {
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
transform: rotate3d(0, 0, 1, -5deg);
}
to {
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
transform-origin: top center;
animation-name: swing;
}
@keyframes tada {
from {
transform: scale3d(1, 1, 1);
}
10%, 20% {
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
transform: scale3d(1, 1, 1);
}
}
.tada {
animation-name: tada;
} @keyframes wobble {
from {
transform: none;
}
15% {
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
transform: none;
}
}
.wobble {
animation-name: wobble;
}
@keyframes jello {
from, 11.1%, to {
transform: none;
}
22.2% {
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
animation-name: jello;
transform-origin: center;
}
@keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
20% {
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
animation-name: bounceIn;
}
@keyframes bounceInDown {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, 25px, 0);
}
75% {
transform: translate3d(0, -10px, 0);
}
90% {
transform: translate3d(0, 5px, 0);
}
to {
transform: none;
}
}
.bounceInDown {
animation-name: bounceInDown;
}
@keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(25px, 0, 0);
}
75% {
transform: translate3d(-10px, 0, 0);
}
90% {
transform: translate3d(5px, 0, 0);
}
to {
transform: none;
}
}
.bounceInLeft {
animation-name: bounceInLeft;
}
@keyframes bounceInRight {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(-25px, 0, 0);
}
75% {
transform: translate3d(10px, 0, 0);
}
90% {
transform: translate3d(-5px, 0, 0);
}
to {
transform: none;
}
}
.bounceInRight {
animation-name: bounceInRight;
}
@keyframes bounceInUp {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, -20px, 0);
}
75% {
transform: translate3d(0, 10px, 0);
}
90% {
transform: translate3d(0, -5px, 0);
}
to {
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
animation-name: bounceInUp;
}
@keyframes bounceOut {
20% {
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
animation-name: bounceOut;
}
@keyframes bounceOutDown {
20% {
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
20% {
opacity: 1;
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
20% {
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
animation-name: bounceOutUp;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
animation-name: fadeIn;
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInDown {
animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
from {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInDownBig {
animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInLeft {
animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInLeftBig {
animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
from {
opacity: 0;
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInRight {
animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
from {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInRightBig {
animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInUp {
animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
from {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInUpBig {
animation-name: fadeInUpBig;
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
animation-name: fadeOut;
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
animation-name: fadeOutUpBig;
}
@keyframes flip {
from {
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
animation-timing-function: ease-out;
}
40% {
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
animation-timing-function: ease-out;
}
50% {
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
animation-timing-function: ease-in;
}
80% {
transform: perspective(400px) scale3d(.95, .95, .95);
animation-timing-function: ease-in;
}
to {
transform: perspective(400px);
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
animation-name: flip;
}
@keyframes flipInX {
from {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
animation-timing-function: ease-in;
opacity: 0;
}
40% {
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
animation-timing-function: ease-in;
}
60% {
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-name: flipInX;
}
@keyframes flipInY {
from {
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
animation-timing-function: ease-in;
opacity: 0;
}
40% {
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
animation-timing-function: ease-in;
}
60% {
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-name: flipInY;
}
@keyframes flipOutX {
from {
transform: perspective(400px);
}
30% {
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@keyframes flipOutY {
from {
transform: perspective(400px);
}
30% {
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-name: flipOutY;
}
@keyframes lightSpeedIn {
from {
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
transform: skewX(20deg);
opacity: 1;
}
80% {
transform: skewX(-5deg);
opacity: 1;
}
to {
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
animation-name: lightSpeedIn;
animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
animation-name: lightSpeedOut;
animation-timing-function: ease-in;
}
@keyframes rotateIn {
from {
transform-origin: center;
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
transform-origin: center;
transform: none;
opacity: 1;
}
}
.rotateIn {
animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
transform-origin: left bottom;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
transform-origin: right bottom;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
transform-origin: left bottom;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
transform-origin: right bottom;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
animation-name: rotateInUpRight;
}
@keyframes rotateOut {
from {
transform-origin: center;
opacity: 1;
}
to {
transform-origin: center;
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
from {
transform-origin: left bottom;
opacity: 1;
}
to {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
from {
transform-origin: right bottom;
opacity: 1;
}
to {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
from {
transform-origin: left bottom;
opacity: 1;
}
to {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
from {
transform-origin: right bottom;
opacity: 1;
}
to {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
animation-name: rotateOutUpRight;
}
@keyframes hinge {
0% {
transform-origin: top left;
animation-timing-function: ease-in-out;
}
20%, 60% {
transform: rotate3d(0, 0, 1, 80deg);
transform-origin: top left;
animation-timing-function: ease-in-out;
}
40%, 80% {
transform: rotate3d(0, 0, 1, 60deg);
transform-origin: top left;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
animation-name: hinge;
}
@keyframes jackInTheBox {
from {
opacity: 0;
transform: scale(0.1) rotate(30deg);
transform-origin: center bottom;
}
50% {
transform: rotate(-10deg);
}
70% {
transform: rotate(3deg);
}
to {
opacity: 1;
transform: scale(1);
}
}
.jackInTheBox {
animation-name: jackInTheBox;
} @keyframes rollIn {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
transform: none;
}
}
.rollIn {
animation-name: rollIn;
} @keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
animation-name: rollOut;
}
@keyframes zoomIn {
from {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
animation-name: zoomIn;
}
@keyframes zoomInDown {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
animation-name: zoomInDown;
}
@keyframes zoomInLeft {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
animation-name: zoomInLeft;
}
@keyframes zoomInRight {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
animation-name: zoomInRight;
}
@keyframes zoomInUp {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
animation-name: zoomInUp;
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
.zoomOut {
animation-name: zoomOut;
}
@keyframes zoomOutDown {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform-origin: center bottom;
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
transform: scale(.1) translate3d(-2000px, 0, 0);
transform-origin: left center;
}
}
.zoomOutLeft {
animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
transform: scale(.1) translate3d(2000px, 0, 0);
transform-origin: right center;
}
}
.zoomOutRight {
animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform-origin: center bottom;
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
animation-name: zoomOutUp;
}
@keyframes slideInDown {
from {
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
animation-name: slideInDown;
}
@keyframes slideInLeft {
from {
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
animation-name: slideInLeft;
}
@keyframes slideInRight {
from {
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
animation-name: slideInRight;
}
@keyframes slideInUp {
from {
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
animation-name: slideInUp;
}
@keyframes slideOutDown {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
animation-name: slideOutDown;
}
@keyframes slideOutLeft {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
animation-name: slideOutLeft;
}
@keyframes slideOutRight {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
animation-name: slideOutRight;
}
@keyframes slideOutUp {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
animation-name: slideOutUp;
}.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(//www.weightek.com/wp-content/themes/weightek/assets/css/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}.owl-theme .owl-dots, .owl-theme .owl-nav {
text-align: center;
-webkit-tap-highlight-color: transparent
}
.owl-theme .owl-nav {
margin-top: 10px
}
.owl-theme .owl-nav [class*=owl-] { }
.owl-theme .owl-nav [class*=owl-]:hover {
color: #FFF;
text-decoration: none
}
.owl-theme .owl-nav .disabled {
opacity: .5;
cursor: default
}
.owl-theme .owl-nav.disabled+.owl-dots {
margin-top: 10px
}
.owl-theme .owl-dots .owl-dot {
display: inline-block;
zoom: 1
}
.owl-theme .owl-dots .owl-dot span {
width: 10px;
height: 10px;
margin: 5px 7px;
background: #D6D6D6;
display: block;
-webkit-backface-visibility: visible;
backface-visibility: visible;
transition: opacity .2s ease;
border-radius: 30px
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
background: #869791
}
div#home-slider .owl-next { left: 80%;
top: -84px;
}
div#home-slider .owl-prev {
left: 80%;
top: -190px;
}
div#home-slider .owl-nav {
text-align: center;
margin-top: 0;
margin: 0 auto;
margin-top: 0;   
width: 100%;
}@font-face {
font-family: "Genericons";
src: url(https://www.weightek.com/wp-content/themes/weightek/assets/genericons/Genericons.eot);
src: url(https://www.weightek.com/wp-content/themes/weightek/assets/genericons/Genericons.eot?) format("embedded-opentype");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Genericons";
src: url("data:application/x-font-woff;charset=utf-8;base64,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") format("woff"),
url(https://www.weightek.com/wp-content/themes/weightek/assets/genericons/Genericons.ttf) format("truetype"),
url(https://www.weightek.com/wp-content/themes/weightek/assets/genericons/Genericons.svg#Genericons) format("svg");
font-weight: normal;
font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: "Genericons";
src: url(https://www.weightek.com/wp-content/themes/weightek/assets/genericons/Genericons.svg#Genericons) format("svg");
}
} .genericon {
font-size: 16px;
vertical-align: top;
text-align: center;
-moz-transition: color .1s ease-in 0;
-webkit-transition: color .1s ease-in 0;
display: inline-block;
font-family: "Genericons";
font-style: normal;
font-weight: normal;
font-variant: normal;
line-height: 1;
text-decoration: inherit;
text-transform: none;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
speak: none;
} .genericon-rotate-90 {
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}
.genericon-rotate-180 {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
.genericon-rotate-270 {
-webkit-transform: rotate(270deg);
-moz-transform: rotate(270deg);
-ms-transform: rotate(270deg);
-o-transform: rotate(270deg);
transform: rotate(270deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
.genericon-flip-horizontal {
-webkit-transform: scale(-1, 1);
-moz-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
-o-transform: scale(-1, 1);
transform: scale(-1, 1);
}
.genericon-flip-vertical {
-webkit-transform: scale(1, -1);
-moz-transform: scale(1, -1);
-ms-transform: scale(1, -1);
-o-transform: scale(1, -1);
transform: scale(1, -1);
} .genericon-404:before { content: "\f423"; }
.genericon-activity:before { content: "\f508"; }
.genericon-anchor:before { content: "\f509"; }
.genericon-aside:before { content: "\f101"; }
.genericon-attachment:before { content: "\f416"; }
.genericon-audio:before { content: "\f109"; }
.genericon-bold:before { content: "\f471"; }
.genericon-book:before { content: "\f444"; }
.genericon-bug:before { content: "\f50a"; }
.genericon-cart:before { content: "\f447"; }
.genericon-category:before { content: "\f301"; }
.genericon-chat:before { content: "\f108"; }
.genericon-checkmark:before { content: "\f418"; }
.genericon-close:before { content: "\f405"; }
.genericon-close-alt:before { content: "\f406"; }
.genericon-cloud:before { content: "\f426"; }
.genericon-cloud-download:before { content: "\f440"; }
.genericon-cloud-upload:before { content: "\f441"; }
.genericon-code:before { content: "\f462"; }
.genericon-codepen:before { content: "\f216"; }
.genericon-cog:before { content: "\f445"; }
.genericon-collapse:before { content: "\f432"; }
.genericon-comment:before { content: "\f300"; }
.genericon-day:before { content: "\f305"; }
.genericon-digg:before { content: "\f221"; }
.genericon-document:before { content: "\f443"; }
.genericon-dot:before { content: "\f428"; }
.genericon-downarrow:before { content: "\f502"; }
.genericon-download:before { content: "\f50b"; }
.genericon-draggable:before { content: "\f436"; }
.genericon-dribbble:before { content: "\f201"; }
.genericon-dropbox:before { content: "\f225"; }
.genericon-dropdown:before { content: "\f433"; }
.genericon-dropdown-left:before { content: "\f434"; }
.genericon-edit:before { content: "\f411"; }
.genericon-ellipsis:before { content: "\f476"; }
.genericon-expand:before { content: "\f431"; }
.genericon-external:before { content: "\f442"; }
.genericon-facebook:before { content: "\f203"; }
.genericon-facebook-alt:before { content: "\f204"; }
.genericon-fastforward:before { content: "\f458"; }
.genericon-feed:before { content: "\f413"; }
.genericon-flag:before { content: "\f468"; }
.genericon-flickr:before { content: "\f211"; }
.genericon-foursquare:before { content: "\f226"; }
.genericon-fullscreen:before { content: "\f474"; }
.genericon-gallery:before { content: "\f103"; }
.genericon-github:before { content: "\f200"; }
.genericon-googleplus:before { content: "\f206"; }
.genericon-googleplus-alt:before { content: "\f218"; }
.genericon-handset:before { content: "\f50c"; }
.genericon-heart:before { content: "\f461"; }
.genericon-help:before { content: "\f457"; }
.genericon-hide:before { content: "\f404"; }
.genericon-hierarchy:before { content: "\f505"; }
.genericon-home:before { content: "\f409"; }
.genericon-image:before { content: "\f102"; }
.genericon-info:before { content: "\f455"; }
.genericon-instagram:before { content: "\f215"; }
.genericon-italic:before { content: "\f472"; }
.genericon-key:before { content: "\f427"; }
.genericon-leftarrow:before { content: "\f503"; }
.genericon-link:before { content: "\f107"; }
.genericon-linkedin:before { content: "\f207"; }
.genericon-linkedin-alt:before { content: "\f208"; }
.genericon-location:before { content: "\f417"; }
.genericon-lock:before { content: "\f470"; }
.genericon-mail:before { content: "\f410"; }
.genericon-maximize:before { content: "\f422"; }
.genericon-menu:before { content: "\f419"; }
.genericon-microphone:before { content: "\f50d"; }
.genericon-minimize:before { content: "\f421"; }
.genericon-minus:before { content: "\f50e"; }
.genericon-month:before { content: "\f307"; }
.genericon-move:before { content: "\f50f"; }
.genericon-next:before { content: "\f429"; }
.genericon-notice:before { content: "\f456"; }
.genericon-paintbrush:before { content: "\f506"; }
.genericon-path:before { content: "\f219"; }
.genericon-pause:before { content: "\f448"; }
.genericon-phone:before { content: "\f437"; }
.genericon-picture:before { content: "\f473"; }
.genericon-pinned:before { content: "\f308"; }
.genericon-pinterest:before { content: "\f209"; }
.genericon-pinterest-alt:before { content: "\f210"; }
.genericon-play:before { content: "\f452"; }
.genericon-plugin:before { content: "\f439"; }
.genericon-plus:before { content: "\f510"; }
.genericon-pocket:before { content: "\f224"; }
.genericon-polldaddy:before { content: "\f217"; }
.genericon-portfolio:before { content: "\f460"; }
.genericon-previous:before { content: "\f430"; }
.genericon-print:before { content: "\f469"; }
.genericon-quote:before { content: "\f106"; }
.genericon-rating-empty:before { content: "\f511"; }
.genericon-rating-full:before { content: "\f512"; }
.genericon-rating-half:before { content: "\f513"; }
.genericon-reddit:before { content: "\f222"; }
.genericon-refresh:before { content: "\f420"; }
.genericon-reply:before { content: "\f412"; }
.genericon-reply-alt:before { content: "\f466"; }
.genericon-reply-single:before { content: "\f467"; }
.genericon-rewind:before { content: "\f459"; }
.genericon-rightarrow:before { content: "\f501"; }
.genericon-search:before { content: "\f400"; }
.genericon-send-to-phone:before { content: "\f438"; }
.genericon-send-to-tablet:before { content: "\f454"; }
.genericon-share:before { content: "\f415"; }
.genericon-show:before { content: "\f403"; }
.genericon-shuffle:before { content: "\f514"; }
.genericon-sitemap:before { content: "\f507"; }
.genericon-skip-ahead:before { content: "\f451"; }
.genericon-skip-back:before { content: "\f450"; }
.genericon-skype:before { content: "\f220"; }
.genericon-spam:before { content: "\f424"; }
.genericon-spotify:before { content: "\f515"; }
.genericon-standard:before { content: "\f100"; }
.genericon-star:before { content: "\f408"; }
.genericon-status:before { content: "\f105"; }
.genericon-stop:before { content: "\f449"; }
.genericon-stumbleupon:before { content: "\f223"; }
.genericon-subscribe:before { content: "\f463"; }
.genericon-subscribed:before { content: "\f465"; }
.genericon-summary:before { content: "\f425"; }
.genericon-tablet:before { content: "\f453"; }
.genericon-tag:before { content: "\f302"; }
.genericon-time:before { content: "\f303"; }
.genericon-top:before { content: "\f435"; }
.genericon-trash:before { content: "\f407"; }
.genericon-tumblr:before { content: "\f214"; }
.genericon-twitch:before { content: "\f516"; }
.genericon-twitter:before { content: "\f202"; }
.genericon-unapprove:before { content: "\f446"; }
.genericon-unsubscribe:before { content: "\f464"; }
.genericon-unzoom:before { content: "\f401"; }
.genericon-uparrow:before { content: "\f500"; }
.genericon-user:before { content: "\f304"; }
.genericon-video:before { content: "\f104"; }
.genericon-videocamera:before { content: "\f517"; }
.genericon-vimeo:before { content: "\f212"; }
.genericon-warning:before { content: "\f414"; }
.genericon-website:before { content: "\f475"; }
.genericon-week:before { content: "\f306"; }
.genericon-wordpress:before { content: "\f205"; }
.genericon-xpost:before { content: "\f504"; }
.genericon-youtube:before { content: "\f213"; }
.genericon-zoom:before { content: "\f402"; }html {
font-family: 'Oswald', sans-serif;
font-family: 'Open Sans', sans-serif;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
font-size: 10px;
}
body {
margin: 0;
font-family: 'Open Sans', sans-serif;
}
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
display: block;
}
audio, canvas, progress, video {
display: inline-block;
vertical-align: baseline;
}
audio:not([controls]) {
display: none;
height: 0;
}
[hidden], template {
display: none;
}
a {
background-color: transparent;
}
abbr[title] {
border-bottom: .1rem dotted;
}
b, strong {
font-weight: 700;
}
small {
font-size: 80%;
}
sub, sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -.8rem;
}
sub {
bottom: -.4rem;
}
img {
border: 0;
}
svg:not(:root) {
overflow: hidden;
}
figure {
margin: 0;
}
hr {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
code, kbd, pre, samp {
font-size: 1.6rem;
}
button, input, optgroup, select, textarea {
color: inherit;
font: inherit;
margin: 0;
}
select {
text-transform: none;
}
button {
overflow: visible;
}
button, input, select, textarea {
max-width: 100%;
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
button[disabled], html input[disabled] {
cursor: default;
opacity: .5;
}
button::-moz-focus-inner, input::-moz-focus-inner {
border: 0;
padding: 0;
}
input[type="checkbox"], input[type="radio"] {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin-right: .7rem;
padding: 0;
}
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
input[type="search"] {
-webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
fieldset {
border: 1px solid #d1d1d1;
margin: 0 0 1rem;
padding: 1.4rem;
}
fieldset> :last-child {
margin-bottom: 0;
}
legend {
border: 0;
padding: 0;
}
textarea {
overflow: auto;
vertical-align: top;
}
optgroup {
font-weight: 700;
} .menu-item-has-children a:after, .social-navigation a:before, .dropdown-toggle:after, .bypostauthor>article .fn:after, .comment-reply-title small a:before, .pagination .prev:before, .pagination .next:before, .pagination .nav-links:before, .pagination .nav-links:after, .search-submit:before {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: inline-block;
font-family: 'Genericons';
font-size: 1.6rem;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 1;
speak: none;
text-align: center;
text-decoration: inherit;
text-transform: none;
vertical-align: top;
} body, button, input, select, textarea {
color: #3d2c2a;
font-size: 1.6rem;
line-height: 2.2rem;
font-family: 'Open Sans', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
clear: both;
font-weight: 400;
margin: 0;
font-weight: 700;
}
p {
margin: 0 0 1rem 0;
}
dfn, cite, em, i {
font-style: italic;
}
blockquote {
border: 0 solid #1a1a1a;
border-left-width: .4rem;
color: #686868;
font-size: 1.9rem;
font-style: italic;
line-height: 1.4736842105;
margin: 0 0 2.4rem;
padding: 0 0 0 2.1rem;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
content: "";
}
blockquote p {
margin-bottom: 1rem;
}
blockquote cite, blockquote small {
color: #1a1a1a;
display: block;
font-size: 1.6rem;
line-height: 1.75;
}
blockquote cite:before, blockquote small:before {
content: "\2014\00a0";
}
blockquote em, blockquote i, blockquote cite {
font-style: normal;
}
blockquote strong, blockquote b {
font-weight: 400;
}
blockquote> :last-child {
margin-bottom: 0;
}
address {
font-style: italic;
margin: 0 0 1rem;
}
code, kbd, tt, var, samp, pre {}
pre {
border: 1px solid #d1d1d1;
font-size: 1.6rem;
line-height: 1.3125;
margin: 0 0 1rem;
max-width: 100%;
overflow: auto;
padding: 1rem;
white-space: pre;
white-space: pre-wrap;
word-wrap: break-word;
}
code {
background-color: #d1d1d1;
padding: .2rem .4rem;
}
abbr, acronym {
border-bottom: .1rem dotted #d1d1d1;
cursor: help;
}
mark, ins {
background: #007acc;
color: #fff;
padding: .2rem .4rem;
text-decoration: none;
}
big {
font-size: 125%;
} html {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-size: 10px;
}
*, *:before, *:after { -webkit-box-sizing: inherit;
-moz-box-sizing: inherit;
box-sizing: inherit;
}
body {
background: transparent; }
hr {
background-color: #d1d1d1;
border: 0;
height: .1rem;
margin: 0 0 1rem;
}
ul, ol {
margin: 0 0 1rem 2rem;
padding: 0;
}
ul {
list-style: disc;
}
ol {
list-style: decimal;
margin-left: 2.4rem;
}
li>ul, li>ol {
margin-bottom: 0;
}
dl {
margin: 0 0 1rem;
}
dt {
font-weight: 700;
}
dd {
margin: 0 0 1rem;
}
img {
height: auto; max-width: 100%; vertical-align: middle;
}
del {
opacity: 0.8;
}
table, th, td {
border: .1rem solid #d1d1d1;
}
table {
border-collapse: separate;
border-spacing: 0;
border-width: .1rem 0 0 .1rem;
margin: 0 0 1rem;
table-layout: fixed; width: 100%;
}
caption, th, td {
font-weight: normal;
text-align: left;
}
th {
border-width: 0 .1rem .1rem 0;
font-weight: 700;
}
td {
border-width: 0 .1rem .1rem 0;
}
th, td {
padding: .7rem;
} ::-webkit-input-placeholder {
color: #686868;
}
:-moz-placeholder {
color: #686868;
}
::-moz-placeholder {
color: #686868;
opacity: 1; }
:-ms-input-placeholder {
color: #686868;
} input {
line-height: normal;
}
button, button[disabled]:hover, button[disabled]:focus, input[type="button"], input[type="button"][disabled]:hover, input[type="button"][disabled]:focus, input[type="reset"], input[type="reset"][disabled]:hover, input[type="reset"][disabled]:focus, input[type="submit"], input[type="submit"][disabled]:hover, input[type="submit"][disabled]:focus {
background: #1a1a1a;
border: 0;
border-radius: .2rem;
color: #fff;
font-weight: 700;
letter-spacing: 0.3rem;
line-height: 1;
padding: 1.4rem 1.4rem 1.3rem;
text-transform: uppercase;
}
button:hover, button:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:hover, input[type="reset"]:focus, input[type="submit"]:hover, input[type="submit"]:focus {
background: #007acc;
}
button:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus {
outline: thin dotted;
outline-offset: -.4rem;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="tel"], input[type="number"], textarea {
background: #f7f7f7;
background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
border: .1rem solid #d1d1d1;
border-radius: .2rem;
color: #686868;
padding: 1rem .7rem;
width: 100%;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="number"]:focus, textarea:focus {
background-color: #fff;
border-color: #007acc;
color: #1a1a1a;
outline: 0;
}
.post-password-form {
margin-bottom: 1rem;
}
.post-password-form label {
color: #686868;
display: block;
font-size: 1.3rem;
letter-spacing: .3rem;
line-height: 1.6153846154;
margin-bottom: 1rem;
text-transform: uppercase;
}
.post-password-form input[type="password"] {
margin-top: .7rem;
}
.post-password-form> :last-child {
margin-bottom: 0;
}
.search-form {
position: relative;
}
input[type="search"].search-field {
border-radius: .2rem 0 0 .2rem;
width: -webkit-calc(100% - 4.2rem);
width: calc(100% - 4.2rem);
}
.search-submit:before {
content: "\f400";
font-size: 2.4rem;
left: .2rem;
line-height: 4.2rem;
position: relative;
width: 4rem;
}
.search-submit {
border-radius: 0 .2rem .2rem 0;
bottom: 0;
overflow: hidden;
padding: 0;
position: absolute;
right: 0;
top: 0;
width: 4.2rem;
}  a {
font-size: 1.6rem;
color: #3d2c2a;
}
a:hover, a:focus, a:active {
color: #686868;
}
a:focus {
outline: thin dotted;
}
a:hover, a:active {
outline: 0;
}
.entry-content a, .entry-summary a, .taxonomy-description a, .logged-in-as a, .comment-content a, .pingback .comment-body>a, .textwidget a, .entry-footer a:hover, .site-info a:hover {}
.entry-content a:hover, .entry-content a:focus, .entry-summary a:hover, .entry-summary a:focus, .taxonomy-description a:hover, .taxonomy-description a:focus, .logged-in-as a:hover, .logged-in-as a:focus, .comment-content a:hover, .comment-content a:focus, .pingback .comment-body>a:hover, .pingback .comment-body>a:focus, .textwidget a:hover, .textwidget a:focus {
box-shadow: none;
} .site-header-menu {
display: none;
-webkit-flex: 0 1 100%;
-ms-flex: 0 1 100%;
flex: 0 1 100%;
margin: 0px 0;
}
.site-header-menu.toggled-on, .no-js .site-header-menu {
display: block;
}
.site-footer .main-navigation {
margin-bottom: 1rem;
}
.main-navigation ul {
list-style: none;
margin: 0;
}
.main-navigation li {
border-top: .1rem solid #d1d1d1;
position: relative;
}
.main-navigation a {
color: rgb(68, 68, 68);
display: block;
line-height: 1.3125;
outline-offset: -.1rem;
padding: 1.4rem 0;
font-weight: 600;
text-transform: uppercase;
}
.main-navigation a:hover, .main-navigation a:focus {
background-color: rgb(32, 4, 105);
color: rgb(255, 255, 255);
}
.main-navigation .current-menu-item>a, .main-navigation .current-menu-ancestor>a {
background-color: rgb(32, 4, 105);
color: rgb(255, 255, 255);
}
.main-navigation ul ul {
display: none;
margin-left: 1.4rem;
}
.no-js .main-navigation ul ul {
display: block;
}
.main-navigation ul .toggled-on {
display: block;
}
.main-navigation .primary-menu {
border-bottom: .1rem solid #d1d1d1;
}
.main-navigation .menu-item-has-children>a {
margin-right: 5.6rem;
}
.dropdown-toggle {
background-color: transparent;
border: 0;
border-radius: 0;
color: #1a1a1a;
content: "";
height: 4.8rem;
padding: 0;
position: absolute;
right: 0;
text-transform: none;
top: 0;
width: 4.8rem;
}
.dropdown-toggle:after {
border: 0 solid #d1d1d1;
border-left-width: .1rem;
content: "\f431";
font-size: 2.4rem;
left: .1rem;
position: relative;
width: 4.8rem;
}
.dropdown-toggle:hover, .dropdown-toggle:focus {
background-color: transparent;
color: #007acc;
}
.dropdown-toggle:focus {
outline: thin dotted;
outline-offset: -.1rem;
}
.dropdown-toggle:focus:after {
border-color: transparent;
}
.dropdown-toggle.toggled-on:after {
content: "\f432";
}
.site-header .main-navigation+.social-navigation {
margin-top: 1rem;
}
.site-footer .social-navigation {
margin-bottom: 1rem;
}
.social-navigation ul {
list-style: none;
margin: 0 0 -.7rem;
}
.social-navigation li {
float: left;
margin: 0 .7rem .7rem 0;
}
.social-navigation a {
border: .1rem solid #d1d1d1;
border-radius: 50%;
color: #1a1a1a;
display: block;
height: 3.5rem;
position: relative;
width: 3.5rem;
}
.social-navigation a:before {
content: "\f415";
height: 3.3rem;
line-height: 3.3rem;
text-align: center;
width: 3.3rem;
}
.social-navigation a:hover:before, .social-navigation a:focus:before {
color: #007acc;
}
.social-navigation a[href*="codepen.io"]:before {
content: "\f216";
}
.social-navigation a[href*="digg.com"]:before {
content: "\f221";
}
.social-navigation a[href*="dribbble.com"]:before {
content: "\f201";
}
.social-navigation a[href*="dropbox.com"]:before {
content: "\f225";
}
.social-navigation a[href*="facebook.com"]:before {
content: "\f203";
}
.social-navigation a[href*="flickr.com"]:before {
content: "\f211";
}
.social-navigation a[href*="foursquare.com"]:before {
content: "\f226";
}
.social-navigation a[href*="plus.google.com"]:before {
content: "\f206";
}
.social-navigation a[href*="github.com"]:before {
content: "\f200";
}
.social-navigation a[href*="instagram.com"]:before {
content: "\f215";
}
.social-navigation a[href*="linkedin.com"]:before {
content: "\f208";
}
.social-navigation a[href*="path.com"]:before {
content: "\f219";
}
.social-navigation a[href*="pinterest.com"]:before {
content: "\f210";
}
.social-navigation a[href*="getpocket.com"]:before {
content: "\f224";
}
.social-navigation a[href*="polldaddy.com"]:before {
content: "\f217";
}
.social-navigation a[href*="reddit.com"]:before {
content: "\f222";
}
.social-navigation a[href*="skype.com"]:before {
content: "\f220";
}
.social-navigation a[href*="stumbleupon.com"]:before {
content: "\f223";
}
.social-navigation a[href*="tumblr.com"]:before {
content: "\f214";
}
.social-navigation a[href*="twitter.com"]:before {
content: "\f202";
}
.social-navigation a[href*="vimeo.com"]:before {
content: "\f212";
}
.social-navigation a[href*="wordpress.com"]:before, .social-navigation a[href*="wordpress.org"]:before {
content: "\f205";
}
.social-navigation a[href*="youtube.com"]:before {
content: "\f213";
}
.social-navigation a[href^="mailto:"]:before {
content: "\f410";
}
.social-navigation a[href*="spotify.com"]:before {
content: "\f515";
}
.social-navigation a[href*="twitch.tv"]:before {
content: "\f516";
}
.social-navigation a[href$="/feed/"]:before {
content: "\f413";
}
.post-navigation {
border-top: .4rem solid #1a1a1a;
border-bottom: .4rem solid #1a1a1a;
clear: both;
margin: 0 7.6923% 5.6rem;
}
.post-navigation a {
color: #1a1a1a;
display: block;
padding: 1rem 0;
}
.post-navigation span {
display: block;
}
.post-navigation .meta-nav {
color: #686868;
font-size: 1.3rem;
letter-spacing: .3rem;
line-height: 1.6153846154;
margin-bottom: .9rem;
text-transform: uppercase;
}
.post-navigation .post-title {
display: inline;
font-size: 2.3rem;
font-weight: 700;
line-height: 1.2173913043;
}
.post-navigation a:hover .post-title, .post-navigation a:focus .post-title {
color: #007acc;
}
.post-navigation div+div {
border-top: .4rem solid #1a1a1a;
}
.pagination {
border-top: .4rem solid #1a1a1a;
font-size: 1.9rem;
margin: 0 7.6923% 4.7rem;
min-height: 5.6rem;
position: relative;
}
.pagination:before, .pagination:after {
background-color: #1a1a1a;
content: "";
height: 5.2rem;
position: absolute;
top: 0;
width: 5.2rem;
z-index: 0;
}
.pagination:before {
right: 0;
}
.pagination:after {
right: 5.4rem;
}
.pagination a:hover, .pagination a:focus {
color: #1a1a1a;
}
.pagination .nav-links {
padding-right: 10.6rem;
position: relative;
}
.pagination .nav-links:before, .pagination .nav-links:after {
color: #fff;
font-size: 3.2rem;
line-height: 5.1rem;
opacity: 0.3;
position: absolute;
width: 5.2rem;
z-index: 1;
}
.pagination .nav-links:before {
content: "\f429";
right: -.1rem;
}
.pagination .nav-links:after {
content: "\f430";
right: 5.5rem;
} .pagination .current .screen-reader-text {
position: static !important;
}
.pagination .page-numbers {
display: none;
letter-spacing: .3rem;
line-height: 1;
margin: 0 1.2rem 0 -1.2rem;
padding: 1.3rem 1.2rem .6rem;
text-transform: uppercase;
}
.pagination .current {
display: inline-block;
font-weight: 700;
}
.pagination .prev, .pagination .next {
background-color: #1a1a1a;
color: #fff;
display: inline-block;
height: 5.2rem;
margin: 0;
overflow: hidden;
padding: 0;
position: absolute;
top: 0;
width: 5.2rem;
z-index: 2;
}
.pagination .prev:before, .pagination .next:before {
font-size: 3.2rem;
height: 5.3rem;
line-height: 5.2rem;
position: relative;
width: 5.3rem;
}
.pagination .prev:hover, .pagination .prev:focus, .pagination .next:hover, .pagination .next:focus {
background-color: #007acc;
color: #fff;
}
.pagination .prev:focus, .pagination .next:focus {
outline: 0;
}
.pagination .prev {
right: 5.4rem;
}
.pagination .prev:before {
content: "\f430";
left: -.1rem;
top: -.1rem;
}
.pagination .next {
right: 0;
}
.pagination .next:before {
content: "\f429";
right: -.1rem;
top: -.1rem;
}
.image-navigation, .comment-navigation {
border-top: .1rem solid #d1d1d1;
border-bottom: .1rem solid #d1d1d1;
color: #686868;
font-size: 1.3rem;
line-height: 1.6153846154;
margin: 0 7.6923% 3.4rem;
padding: 1.7rem 0;
}
.comment-navigation {
margin-right: 0;
margin-left: 0;
}
.comments-title+.comment-navigation {
border-bottom: 0;
margin-bottom: 0;
}
.image-navigation .nav-previous:not(:empty), .image-navigation .nav-next:not(:empty), .comment-navigation .nav-previous:not(:empty), .comment-navigation .nav-next:not(:empty) {
display: inline-block;
}
.image-navigation .nav-previous:not(:empty)+.nav-next:not(:empty):before, .comment-navigation .nav-previous:not(:empty)+.nav-next:not(:empty):before {
content: "\002f";
display: inline-block;
opacity: 0.7;
padding: 0 .9rem;
}  .says, .screen-reader-text {
clip: rect(.1rem, .1rem, .1rem, .1rem);
height: .1rem;
overflow: hidden;
position: absolute !important;
width: .1rem; word-wrap: normal !important;
} .site .skip-link {
background-color: #f1f1f1;
box-shadow: 0 0 .1rem .1rem rgba(0, 0, 0, 0.2);
color: #21759b;
display: block;
font-size: 1.4rem;
font-weight: 700;
left: -9999rem;
outline: none;
padding: 1.5rem 2.3rem 1.4rem;
text-decoration: none;
text-transform: none;
top: -9999rem;
}
.logged-in .site .skip-link {
box-shadow: 0 0 .2rem .2rem rgba(0, 0, 0, 0.2);
}
.site .skip-link:focus {
clip: auto;
height: auto;
left: .6rem;
top: .7rem;
width: auto;
z-index: 100000;
} .alignleft {
float: left;
margin: .6rem 1rem 1rem 0;
}
.alignright {
float: right;
margin: .6rem 0 1rem 1rem;
}
.aligncenter {
clear: both;
display: block;
margin: 0 auto 1rem;
}
blockquote.alignleft {
margin: .5rem 2.4rem 2.4rem 0;
}
blockquote.alignright {
margin: .5rem 0 2.4rem 2.4rem;
}
blockquote.aligncenter {
margin-bottom: 2.4rem;
} .clear:before, .clear:after, blockquote:before, blockquote:after, .entry-content:before, .entry-content:after, .entry-summary:before, .entry-summary:after, .comment-content:before, .comment-content:after, .site-content:before, .site-content:after, .site-main>article:before, .site-main>article:after, .primary-menu:before, .primary-menu:after, .social-links-menu:before, .social-links-menu:after, .textwidget:before, .textwidget:after, .content-bottom-widgets:before, .content-bottom-widgets:after {
content: "";
display: table;
}
.clear:after, blockquote:after, .entry-content:after, .entry-summary:after, .comment-content:after, .site-content:after, .site-main>article:after, .primary-menu:after, .social-links-menu:after, .textwidget:after, .content-bottom-widgets:after {
clear: both;
}  .widget.widget_calendar table {
margin: 0;
}
.widget_calendar td, .widget_calendar th {
line-height: 2.5625;
padding: 0;
text-align: center;
}
.widget_calendar caption {
font-weight: 900;
margin-bottom: 1rem;
}
.widget_calendar tbody a {
background-color: #007acc;
color: #fff;
display: block;
font-weight: 700;
} .widget_recent_entries .post-date {
color: #686868;
display: block;
font-size: 1.3rem;
}
.widget_recent_entries li:last-child .post-date {
margin-bottom: 0;
} .widget_rss .rsswidget img {
margin-top: -.6rem;
}
.widget_rss .rss-date, .widget_rss cite {
color: #686868;
display: block;
font-size: 1.3rem;
font-style: normal;
}
.widget_rss .rssSummary:last-child {
margin-bottom: 0;
}
.widget_rss li:last-child :last-child {
margin-bottom: 0;
} .tagcloud a {
border: .1rem solid #d1d1d1;
border-radius: .2rem;
display: inline-block;
line-height: 1;
margin: 0 .3rem .7rem 0;
padding: .9rem .7rem .8rem;
}
.tagcloud a:hover, .tagcloud a:focus {
border-color: #007acc;
color: #007acc;
outline: 0;
} .site {
background-color: #fff;
}
.site-inner {
margin: 0 auto;
max-width: 100%;
position: relative;
}
.site-content {
word-wrap: break-word;
} #content[tabindex="-1"]:focus {
outline: 0;
}
.site-main {
margin-bottom: 5.6rem;
}
.site-main> :last-child {
margin-bottom: 0;
} .site-header {}
.site-header-main {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.site-branding {
margin: 1.4rem auto 1.4rem 0;
}
.site-title {
font-size: 2.3rem;
font-weight: 700;
line-height: 1.2173913043;
margin: 0;
}
.site-branding .site-title a {
color: #1a1a1a;
}
.site-branding .site-title a:hover, .site-branding .site-title a:focus {
color: #007acc;
}
.site-description {
color: #686868;
display: none;
font-size: 1.3rem;
font-weight: 400;
line-height: 1.0769230769;
margin: .9rem 0 0;
}
.menu-toggle {
background-color: transparent;
border: .1rem solid #d1d1d1;
color: #1a1a1a;
font-size: 1.3rem;
margin: 1.7rem 0;
padding: 1.2rem;
}
.no-js .menu-toggle {
display: none;
}
.menu-toggle:hover, .menu-toggle:focus {
background-color: transparent;
border-color: #007acc;
color: #007acc;
}
.menu-toggle.toggled-on, .menu-toggle.toggled-on:hover, .menu-toggle.toggled-on:focus {
background-color: #1a1a1a;
border-color: #1a1a1a;
color: #fff;
}
.menu-toggle:focus {
outline: 0;
}
.menu-toggle.toggled-on:focus {
outline: thin dotted;
}
.header-image {
clear: both;
margin: 1.4rem 0;
}
.header-image a {
display: block;
}
.header-image a:hover img, .header-image a:focus img {
opacity: 0.85;
} .site-main>article {
margin-bottom: 5.6rem;
position: relative;
}
.entry-header, .entry-summary, .entry-content, .entry-footer, .page-content {
margin-right: 7.6923%;
margin-left: 7.6923%;
}
.entry-title {
font-size: 2.8rem;
font-weight: 700;
line-height: 1.25;
margin-bottom: 1.6rem;
}
.entry-title a {
color: #1a1a1a;
}
.entry-title a:hover, .entry-title a:focus {
color: #007acc;
}
.post-thumbnail {
display: block;
margin: 0 7.6923% 1rem;
}
.post-thumbnail img {
display: block;
}
.no-sidebar .post-thumbnail img {
margin: 0 auto;
}
a.post-thumbnail:hover, a.post-thumbnail:focus {
opacity: 0.85;
}
.entry-content, .entry-summary {
border-color: #d1d1d1;
border: none;
}
.entry-content h1, .entry-summary h1, .comment-content h1, .textwidget h1 {}
.entry-content h2, .entry-summary h2, .comment-content h2, .textwidget h2 {}
.entry-content h3, .entry-summary h3, .comment-content h3, .textwidget h3 {}
.entry-content h4, .entry-content h5, .entry-content h6, .entry-summary h4, .entry-summary h5, .entry-summary h6, .comment-content h4, .comment-content h5, .comment-content h6, .textwidget h4, .textwidget h5, .textwidget h6 {}
.entry-content h4, .entry-summary h4, .comment-content h4, .textwidget h4 {}
.entry-content h6, .entry-summary h6, .comment-content h6, .textwidget h6 {}
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6, .entry-summary h1, .entry-summary h2, .entry-summary h3, .entry-summary h4, .entry-summary h5, .entry-summary h6, .comment-content h1, .comment-content h2, .comment-content h3, .comment-content h4, .comment-content h5, .comment-content h6, .textwidget h1, .textwidget h2, .textwidget h3, .textwidget h4, .textwidget h5, .textwidget h6 {}
.entry-content h1:first-child, .entry-content h2:first-child, .entry-content h3:first-child, .entry-content h4:first-child, .entry-content h5:first-child, .entry-content h6:first-child, .entry-summary h1:first-child, .entry-summary h2:first-child, .entry-summary h3:first-child, .entry-summary h4:first-child, .entry-summary h5:first-child, .entry-summary h6:first-child, .comment-content h1:first-child, .comment-content h2:first-child, .comment-content h3:first-child, .comment-content h4:first-child, .comment-content h5:first-child, .comment-content h6:first-child, .textwidget h1:first-child, .textwidget h2:first-child, .textwidget h3:first-child, .textwidget h4:first-child, .textwidget h5:first-child, .textwidget h6:first-child {
margin-top: 0;
}
.post-navigation .post-title, .entry-title, .comments-title {
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
}
body:not(.search-results) .entry-summary {
color: #686868;
font-size: 1.9rem;
line-height: 1.4736842105;
margin-bottom: 2.4rem;
}
body:not(.search-results) .entry-header+.entry-summary {}
body:not(.search-results) .entry-summary p, body:not(.search-results) .entry-summary address, body:not(.search-results) .entry-summary hr, body:not(.search-results) .entry-summary ul, body:not(.search-results) .entry-summary ol, body:not(.search-results) .entry-summary dl, body:not(.search-results) .entry-summary dd, body:not(.search-results) .entry-summary table {
margin-bottom: 2.4rem;
}
body:not(.search-results) .entry-summary li>ul, body:not(.search-results) .entry-summary li>ol {
margin-bottom: 0;
}
body:not(.search-results) .entry-summary th, body:not(.search-results) .entry-summary td {
padding: .6rem;
}
body:not(.search-results) .entry-summary fieldset {
margin-bottom: 2.4rem;
padding: .6rem;
}
body:not(.search-results) .entry-summary blockquote {
border-color: currentColor;
}
body:not(.search-results) .entry-summary blockquote> :last-child {
margin-bottom: 0;
}
body:not(.search-results) .entry-summary .alignleft {
margin: .4rem 2.4rem 2.4rem 0;
}
body:not(.search-results) .entry-summary .alignright {
margin: .4rem 0 2.4rem 2.4rem;
}
body:not(.search-results) .entry-summary .aligncenter {
margin-bottom: 2.4rem;
}
.entry-content> :last-child, .entry-summary> :last-child, body:not(.search-results) .entry-summary> :last-child, .page-content> :last-child, .comment-content> :last-child, .textwidget> :last-child {
margin-bottom: 0;
}
.more-link {
white-space: nowrap;
}
.author-info {
border-color: inherit;
border-style: solid;
border-width: .1rem 0 .1rem 0;
clear: both;
padding-top: 1rem;
padding-bottom: 1rem;
}
.author-avatar .avatar {
float: left;
height: 4.2rem;
margin: 0 1rem 1rem 0;
width: 4.2rem;
}
.author-description> :last-child {
margin-bottom: 0;
}
.entry-content .author-title {
clear: none;
font-size: 1.6rem;
font-weight: 900;
line-height: 1.75;
margin: 0;
}
.author-bio {
color: #686868;
font-size: 1.3rem;
line-height: 1.6153846154;
margin-bottom: 2.6rem;
overflow: hidden;
}
.author-link {
white-space: nowrap;
}
.entry-footer:empty {
margin: 0;
}
.entry-footer a:hover, .entry-footer a:focus {
color: #007acc;
}
.entry-footer>span:not(:last-child):after {
content: "\002f";
display: inline-block;
opacity: 0.7;
padding: 0 .9rem;
}
.entry-footer .avatar {
height: 2.1rem;
margin: -.3rem .9rem 0 0;
width: 2.1rem;
}
.sticky-post {
color: #686868;
display: block;
font-size: 1.3rem;
letter-spacing: .3rem;
line-height: 1.6153846154;
margin-bottom: .9rem;
text-transform: uppercase;
} .updated:not(.published) {
display: none;
}
.sticky .posted-on, .byline {
display: none;
}
.single .byline, .group-blog .byline {
display: inline;
}
.page-header {
border-top: .4rem solid #1a1a1a;
margin: 0 7.6923% 5.6rem;
padding-top: 1rem;
}
body.error404 .page-header, body.search-no-results .page-header {
border-top: 0;
padding-top: 0;
}
.taxonomy-description {
color: #686868;
font-size: 1.3rem;
line-height: 1.6153846154;
}
.taxonomy-description p {
margin: .9rem 0 2.6rem;
}
.taxonomy-description> :last-child {
margin-bottom: 0;
}
.page-links a, .page-links>span {
border: 1px solid #d1d1d1;
border-radius: .2rem;
display: inline-block;
font-size: 1.3rem;
height: 3rem;
margin-right: .5rem;
text-align: center;
width: 3rem;
}
.page-links a {
background-color: #1a1a1a;
border-color: #1a1a1a;
color: #fff;
}
.page-links a:hover, .page-links a:focus {
background-color: #007acc;
border-color: transparent;
color: #fff;
}
.page-links>.page-links-title {
border: 0;
color: #1a1a1a;
height: auto;
margin: 0;
padding-right: 1rem;
width: auto;
}
.entry-attachment {
margin-bottom: 1rem;
}
.entry-caption {
color: #686868;
font-size: 1.3rem;
font-style: italic;
line-height: 1.6153846154;
padding-top: 1.7rem;
}
.entry-caption> :last-child {
margin-bottom: 0;
}
.content-bottom-widgets {
margin: 0%;
}
.content-bottom-widgets .widget-area {
margin-bottom: 0;
} .format-aside .entry-title, .format-image .entry-title, .format-video .entry-title, .format-quote .entry-title, .format-gallery .entry-title, .format-status .entry-title, .format-link .entry-title, .format-audio .entry-title, .format-chat .entry-title {
font-size: 1.9rem;
line-height: 1.473684211;
margin-bottom: 2.4rem;
}
.blog .format-status .entry-title, .archive .format-status .entry-title {
display: none;
} .comments-area {
margin: 0 7.6923% 5.6rem;
}
.comment-list+.comment-respond, .comment-navigation+.comment-respond {
padding-top: 1rem;
}
.comments-title, .comment-reply-title {
border-top: .4rem solid #1a1a1a;
font-size: 2.3rem;
font-weight: 700;
line-height: 1.3125;
padding-top: 2rem;
}
.comments-title {
margin-bottom: 2rem;
}
.comment-list {
list-style: none;
margin: 0;
}
.comment-list article, .comment-list .pingback, .comment-list .trackback {
border-top: .1rem solid #d1d1d1;
padding: 1rem 0;
}
.comment-list .children {
list-style: none;
margin: 0;
}
.comment-list .children>li {
padding-left: 1.4rem;
}
.comment-author {
color: #1a1a1a;
margin-bottom: .7rem;
}
.comment-author .avatar {
float: left;
height: 2.8rem;
margin-right: 1.4rem;
position: relative;
width: 2.8rem;
}
.bypostauthor>article .fn:after {
content: "\f304";
left: .3rem;
position: relative;
top: .5rem;
}
.comment-metadata, .pingback .edit-link {
color: #686868;
font-size: 1.3rem;
line-height: 1.6153846154;
}
.comment-metadata {
margin-bottom: 3.4rem;
}
.comment-metadata a, .pingback .comment-edit-link {
color: #686868;
}
.comment-metadata a:hover, .comment-metadata a:focus, .pingback .comment-edit-link:hover, .pingback .comment-edit-link:focus {
color: #007acc;
}
.comment-metadata .edit-link, .pingback .edit-link {
display: inline-block;
}
.comment-metadata .edit-link:before, .pingback .edit-link:before {
content: "\002f";
display: inline-block;
opacity: 0.7;
padding: 0 .9rem;
}
.comment-content ul, .comment-content ol {
margin: 0 0 2.4rem 2rem;
}
.comment-content li>ul, .comment-content li>ol {
margin-bottom: 0;
}
.comment-reply-link {
border: .1rem solid #d1d1d1;
border-radius: .2rem;
color: #007acc;
display: inline-block;
font-size: 1.3rem;
line-height: 1;
margin-top: 3.4rem;
padding: .9rem .9rem .7rem;
}
.comment-reply-link:hover, .comment-reply-link:focus {
border-color: currentColor;
color: #007acc;
outline: 0;
}
.comment-form {
padding-top: 1rem;
}
.comment-form label {
color: #686868;
display: block;
font-size: 1.3rem;
letter-spacing: .3rem;
line-height: 1.6153846154;
margin-bottom: .9rem;
text-transform: uppercase;
}
.comment-list .comment-form {
padding-bottom: 1rem;
}
.comment-notes, .comment-awaiting-moderation, .logged-in-as, .form-allowed-tags {
color: #686868;
font-size: 1.3rem;
line-height: 1.6153846154;
margin-bottom: 3.4rem;
}
.no-comments {
border-top: .1rem solid #d1d1d1;
font-weight: 700;
margin: 0;
padding-top: 1rem;
}
.comment-navigation+.no-comments {
border-top: 0;
padding-top: 0;
}
.form-allowed-tags code {}
.form-submit {
margin-bottom: 0;
}
.required {
color: #007acc;
}
.comment-reply-title small {
font-size: 100%;
}
.comment-reply-title small a {
border: 0;
float: right;
height: 3.2rem;
overflow: hidden;
width: 2.6rem;
}
.comment-reply-title small a:hover, .comment-reply-title small a:focus {
color: #1a1a1a;
}
.comment-reply-title small a:before {
content: "\f405";
font-size: 3.2rem;
position: relative;
top: -.5rem;
} .sidebar {
margin-bottom: 5.6rem;
padding: 0 7.6923%;
} .site-info a {
color: #686868;
}
.site-info a:hover, .site-info a:focus {
color: #007acc;
}
.site-footer .site-title {
font-size: inherit;
font-weight: 400;
}
.site-footer .site-title:after {
content: "\002f";
display: inline-block;
opacity: 0.7;
padding: 0 .5rem 0 .9rem;
} .site .avatar {
border-radius: 50%;
}
.entry-content .wp-smiley, .entry-summary .wp-smiley, .comment-content .wp-smiley, .textwidget .wp-smiley {
border: none;
margin-top: 0;
margin-bottom: 0;
padding: 0;
}
.entry-content a img, .entry-summary a img, .comment-content a img, .textwidget a img {
display: block;
} embed, iframe, object, video {
margin-bottom: 0;
max-width: 100%;
vertical-align: middle;
}
p>embed, p>iframe, p>object, p>video {
margin-bottom: 0;
}
.entry-content .wp-audio-shortcode a, .entry-content .wp-playlist a {
box-shadow: none;
}
.wp-audio-shortcode, .wp-video, .wp-playlist.wp-audio-playlist {
margin-top: 0;
margin-bottom: 1rem;
}
.wp-playlist.wp-audio-playlist {
padding-bottom: 0;
}
.wp-playlist .wp-playlist-tracks {
margin-top: 0;
}
.wp-playlist-item .wp-playlist-caption {
border-bottom: 0;
padding: 1.1rem 0;
}
.wp-playlist-item .wp-playlist-item-length {
top: 1.1rem;
} .wp-caption {
margin-bottom: 1rem;
max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
display: block;
margin: 0;
}
.wp-caption .wp-caption-text {
color: #686868;
font-size: 1.3rem;
font-style: italic;
line-height: 1.6153846154;
padding-top: .9rem;
} .gallery {
margin: 0 -1.1666667% 1rem;
}
.gallery-item {
display: inline-block;
max-width: 33.33%;
padding: 0 1.1400652% 2.2801304%;
text-align: center;
vertical-align: top;
width: 100%;
}
.gallery-columns-1 .gallery-item {
max-width: 100%;
}
.gallery-columns-2 .gallery-item {
max-width: 50%;
}
.gallery-columns-4 .gallery-item {
max-width: 25%;
}
.gallery-columns-5 .gallery-item {
max-width: 20%;
}
.gallery-columns-6 .gallery-item {
max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
max-width: 11.11%;
}
.gallery-icon img {
margin: 0 auto;
}
.gallery-caption {
color: #686868;
display: block;
font-size: 1.3rem;
font-style: italic;
line-height: 1.6153846154;
padding-top: .9rem;
}
.gallery-columns-6 .gallery-caption, .gallery-columns-7 .gallery-caption, .gallery-columns-8 .gallery-caption, .gallery-columns-9 .gallery-caption {
display: none;
} .widecolumn {
margin-bottom: 5.6rem;
padding: 0 7.6923%;
}
.widecolumn .mu_register {
width: auto;
}
.widecolumn .mu_register .mu_alert {
background: transparent;
border-color: #d1d1d1;
color: inherit;
margin-bottom: 5.6rem;
padding: 1rem;
}
.widecolumn form, .widecolumn .mu_register form {
margin-top: 0;
}
.widecolumn h2 {
font-size: 2.3rem;
font-weight: 900;
line-height: 1.2173913043;
margin-bottom: 2rem;
}
.widecolumn p {
margin: 1rem 0;
}
.widecolumn p+h2 {
margin-top: 3.9rem;
}
.widecolumn label, .widecolumn .mu_register label {
color: #686868;
font-size: 1.3rem;
font-weight: 400;
letter-spacing: .3rem;
line-height: 1.6153846154;
text-transform: uppercase;
}
.widecolumn .mu_register label {
margin: 3.4rem 1.2rem .9rem 0;
}
.widecolumn .mu_register label strong {
font-weight: 400;
}
.widecolumn #key, .widecolumn .mu_register #blog_title, .widecolumn .mu_register #user_email, .widecolumn .mu_register #blogname, .widecolumn .mu_register #user_name {
font-size: 1.6rem;
width: 100%;
}
.widecolumn .mu_register #blogname {
margin: 0;
}
.widecolumn .mu_register #blog_title, .widecolumn .mu_register #user_email, .widecolumn .mu_register #user_name {
margin: 0 0 .6rem;
}
.widecolumn #submit, .widecolumn .mu_register input[type="submit"] {
font-size: 1.6rem;
margin: 0;
width: auto;
}
.widecolumn .mu_register .prefix_address, .widecolumn .mu_register .suffix_address {
font-size: inherit;
}
.widecolumn .mu_register> :last-child, .widecolumn form> :last-child {
margin-bottom: 0;
}
ul.social-icon {
float: left;
width: 100%;
list-style: none;
}
ul.social-icon li {
float: left;
margin: .5rem .9rem;
}
.slider {
float: left;
width: 100%;
position: relative;
} .site-header {
float: left;
width: 100%;
}
.set_five {
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%;
}
.banner {
float: left;
width: 100%;   position: relative;
}
.banner img {
width: 100%;
}
.site-info {
float: left;
width: 100%;
background-color: rgb(236, 236, 236);
padding: 16px 0;
}
.site-info p {
margin: 0;
font-size: 1.4rem;
line-height: 2rem;
} .phone, .envelope {
margin-bottom: 0;
font-size: 18px;
color: rgb(143, 143, 143);
line-height: 30px;
}
.phone span, .envelope span {
margin-right: 5px;
}
.phone span svg {
transform: rotate(90deg);
}
.phone a, .envelope a {
color: rgb(229, 116, 3);
display: inline-block;
}
.quote {
display: inline-block;
font-weight: 600;
color: rgb(255, 255, 255);
padding: 2px 22px 7px;
border-bottom-left-radius: 30px;
border-bottom-right-radius: 30px;
background-image: linear-gradient(#ffa851, #d0710d);
transition: all 1s;
}
.quote:hover {
background-color: rgb(30, 2, 96);
background-image: none;
color: rgb(255, 255, 255);
}
.pos_abs {
position: absolute;
left: 0;
right: 0;
top: 0;  }
.bottom {
top: auto;
bottom: 5%;
transform: translateY(5%);
}
.pos_abs h4 {
font-size: 28px;
line-height: 35px;
text-transform: uppercase;
font-weight: 700;
}
.pos_abs h4 span {
font-weight: 300;
display: block;
}
.pos_abs p {
font-size: 26px;
line-height: 32px;
font-weight: 300;
margin-bottom: 0;
}
.pos_abs .back-color {
color: rgb(255, 255, 255);
padding: 20px;
}
.logo {
margin: 20px 0;
}
div#home-slider .owl-nav button {
background-color: rgba(0, 0, 0, 0.5);
padding: 15px 8px;
font-size: 30px;
line-height: 40px;
position: absolute;
top: 50%;
transform: translateY(-50%);
border-radius: 5px;
outline: none !important;
}
div#home-slider .owl-nav button:hover { background-color: rgba(0, 0, 0, 1);
}
div#home-slider .owl-nav button.owl-prev {
left: 8%;
}
div#home-slider .owl-nav button.owl-next {
left: auto;
right: 8%;
}
.widget .item p {
margin: 0;
font-size: 14px;
line-height: 20px;
}
.widget .item img {
margin-bottom: 15px;
}
.widget .phone-mail .item span {
font-size: 35px;
line-height: 40px;
color: rgb(226, 119, 4);
margin-right: 10px;
}
.widget .phone-mail .item:first-child span {
transform: rotate(90deg);
}
.widget .phone-mail .item p {
font-size: 16px;
line-height: 20px;
font-weight: 300;
}
.widget .phone-mail .item p a {
font-size: 18px;
line-height: 20px;
display: block;
}
.widget h5 {
font-size: 20px !important;
line-height: 25px;
font-weight: 700;
text-transform: uppercase;
display: inline-block;
margin-right: 15px;
}
.widget .social-icon {
margin: 0;
display: inline-block;
width: auto;
float: none;
}
.widget .social-icon li {
float: none;
margin: 0;
display: inline-block;
margin-right: 10px;
}
.widget .social-icon li a {
font-size: 20px;
display: inline-block;
width: 40px;
height: 40px;
border: 2px solid;
border-radius: 50%;
text-align: center;
line-height: 40px;
}
.widget h2.widget-title {
font-size: 16px;
line-height: 20px;
text-transform: uppercase;
color: rgb(227, 135, 40);
margin-bottom: 5px;
}
.widget.widget_custom_html h2.widget-title {
margin-bottom: 25px;
}
.widget .textwidget p {
margin: 0;
font-size: 16px;
line-height: 22px;
}
.widget a:hover {
color: rgb(227, 135, 40);
}
.head, .entry-content .head {
font-size: 26px;
line-height: 34px;
text-transform: uppercase;
color: rgb(233, 112, 2);
margin-bottom: 20px;
letter-spacing: 0;
}
footer .head {
font-size: 20px;
line-height: 30px;
}
.about h2 {
font-size: 26px;
line-height: 46px;
font-weight: 300;
margin-bottom: 15px;
}
.about h2 span {
font-weight: 700;
font-style: italic;
text-transform: uppercase;
}
.orange, .entry-content .orange {
color: rgb(242, 117, 1) !important;
}
.blue, .entry-content .blue {
color: rgb(33, 0, 115) !important;
}
.quotes {
font-size: 32px;
line-height: 42px;
text-transform: uppercase;
font-family: 'Oswald', sans-serif;
text-align: center;
margin-bottom: 20px;
font-style: italic;
text-align:left;
}
.about p {
line-height: 24px;
font-weight: 400;
margin-bottom: 20px;
text-align: justify;
}
a.read_more { display: inline-block;
border: 1px solid;
padding: 7px 14px;
font-size: 15px;
line-height: 20px;
font-weight: 600;
color: #000;
} .right-arrow {
width: 20px;
height: 15px;
display: inline-block;
background-color: rgb(231, 117, 2);
-webkit-clip-path: polygon(0 30%, 60% 30%, 60% 0%, 100% 50%, 60% 100%, 60% 70%, 0 70%);
clip-path: polygon(0 30%, 60% 30%, 60% 0%, 100% 50%, 60% 100%, 60% 70%, 0 70%);
margin-left: 5px;
}
.product .side-arrow .right-arrow {
margin-left: 0px;
margin-right: 5px;
}
a.read_more:hover {
color: rgb(233, 112, 2);
}
a.read_more:hover span {
color: rgb(33, 0, 115);
}
.about h4 {
display: inline-block;
font-size: 22px;
line-height: 30px;
font-weight: bold;
text-align:left;
}
.back-orange {
background-color: #eaeaea;
padding: 0 15px;
}
.back-orange:last-child {
background-color: #dfdcdc;
}
.back-orange:hover {
background-color: #df8d34;
color: rgb(255, 255, 255);
}
.back-orange h5 {
font-size: 22px;
line-height: 30px;
font-weight: 600;
}
.about .back-orange p {
margin-bottom: 0;
}
.product {
background-color: rgb(244, 244, 244);
padding: 30px 0;
}
.product-back {
padding: 15px;
background-color: #fff;
}
.product-back .product-image {
background-color: rgb(242, 242, 242);
text-align: center;
margin-bottom: 15px; padding: 15px;
}
.product-back p {
font-size: 17px;
line-height: 25px;
color: #240177;
margin-bottom: 0;
font-weight: 600;
}
.side-arrow {
margin: 0;
list-style: none;
}
.side-arrow li {
font-size: 17px;
line-height: 24px;
margin-bottom: 20px;
display: flex;
align-items: center;
}
.special {
font-size: 26px;
line-height: 34px;
font-weight: 600;
text-transform: uppercase;
padding: 10px 15px;
background-color: rgb(231, 117, 2);
color: rgb(255, 255, 255);
max-width: 85%;
position: relative;
}
.special::before {
content: '';
background-color: rgb(32, 4, 105);
display: inline-block;
width: 40%;
height: 30%;
animation: ;
position: absolute;
top: 0;
left: 0;
-webkit-clip-path: polygon(0 0, 0 80%, 100% 0);
clip-path: polygon(0 0, 0 80%, 100% 0);
}
.special::after {
content: '';
background-color: rgb(231, 117, 2);
display: inline-block;
width: 12px;
height: 20px;
-webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
clip-path: polygon(0 0, 0 100%, 100% 50%);
position: absolute;
right: -5%;
top: 50%;
transform: translateY(-50%);
}
.animate-number {
background-image: url(//www.weightek.com/wp-content/uploads/2019/03/animate-background.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
color: rgb(255, 255, 255);
padding: 50px 0;
}
.animate-number img {
margin-bottom: 15px;
}
.animate-number .count {
font-size: 32px;
line-height: 35px;
font-weight: 700;
margin-bottom: 10px;
}
.animate-number h3 {
font-size: 22px;
line-height: 25px;
font-weight: 300;
}
.our-client h4 {
font-size: 26px;
line-height: 35px;
font-weight: 700;
color: rgb(233, 112, 2);
border-bottom: 1px solid #000;
padding-bottom: 15px;
margin-bottom: 30px;
text-transform: uppercase;
}
.entry-content1 section {
display: inline-block;
width: 100%;
}
.product-inquiry {
background-image: linear-gradient(to right, rgb(240, 240, 240) 50%, rgb(214, 214, 214) 50%);
float:left;
width:100%;
}
.product-inquiry .side-arrow li {
margin-bottom: 5px;
}
.product-inquiry .side-arrow .right-arrow {
margin-left: 0;
margin-right: 5px;
}
.inquiry-frm .frm-right:not(:last-child), .inquiry-frm .row .frm-right {
margin-bottom: 10px;
}
.inquiry-frm .frm-right input, .inquiry-frm .frm-right textarea {
width: 100%;
padding: 10px;
font-size: 17px;
line-height: 20px;
}
.inquiry-frm .frm-right input[type="submit"] {
width: auto;
letter-spacing: 0;
padding: 10px 30px;
background-color: rgb(32, 4, 105);
}
.entry-header {    }
h2.title {
font-size: 24px;
line-height: 30px;
margin-bottom: 10px;
color: rgb(233, 112, 2);
}
.desc-ul {
list-style: none;
margin: 0;
}
.desc-ul li {
line-height: 24px;
margin-bottom: 10px;
}
.desc-ul li strong {
margin-right: 10px;
}
.comm {
display: inline-block;
padding: 6px 25px;
background-color: rgb(231, 117, 2);
border-radius: 5px;
border: 2px solid rgb(231, 117, 2);
font-size: 18px;
line-height: 24px;
color: rgb(255, 255, 255);
margin-top: 15px;
display: flex;
flex-flow: row wrap;
align-items: center;
transition: all .5s;
}
.comm:hover, .comm:focus {
background-color: transparent;
color: rgb(231, 117, 2);
}
.get_quote span {
background-image: url(//www.weightek.com/wp-content/uploads/2019/03/get_quote.png);
background-repeat: no-repeat;
background-position: center;
width: 25px;
height: 25px;
}
.get_quote:hover span, .get_quote:focus span {
background-image: url(//www.weightek.com/wp-content/uploads/2019/03/get_quote-orange.png);
}
.comm span {
font-size: 25px;
line-height: 25px;
margin-right: 10px;
}
.entry-content2 {
padding: 20px 0;
}
.entry-content2:nth-child(2n+1) {
background-color: rgb(221, 221, 221);
}
.entry-content2:last-child {
margin-bottom: 30px;
}
.image-div {
background-color: #fff;
padding: 10px;
border: 1px solid #ddd;
border-radius: 10px;
text-align: center;
}
.quote-frm .frm-right:not(:last-child) {
margin-bottom: 10px;
}
.quote-frm .frm-right input, .quote-frm .frm-right textarea {
padding: 5px 10px;
width: 100%;
font-size: 15px;
line-height: 20px;
}
.quote-frm .frm-right input[type="submit"] {
width: auto;
letter-spacing: 0;
text-transform: capitalize;
font-size: 18px;
line-height: 25px;
padding: 7px 30px;
background-color: rgb(235,117,2);
border-radius: 5px;
border: 2px solid rgb(235,117,2);
transition: all .5s;
}
.quote-frm .frm-right input[type="submit"]:hover {
background-color: transparent;
color: rgb(235,117,2);
}
.modal-title {
font-size: 20px;
line-height: 25px;
color: rgb(33, 0, 115);
}
ul.application {
margin: 0;
list-style: none;
display: flex;
flex-flow: row wrap;
}
ul.application li {
flex: 0 0 33%;
margin-bottom: 5px;
}
ul.application li span {
margin-right: 5px;
font-size: 20px;
line-height: 25px;
color: rgb(19, 183, 19);
}
ul.feature {
margin: 0;
}
.features ul li {
list-style: none;
padding-top:8px;
}
.features ul li span{  margin-right: 5px;
font-size: 20px;
line-height: 25px;
color: rgb(19, 183, 19);}
.features {
margin-top: 15px;
margin-bottom: 23px;
}
.spec-table .table td, .table th {
padding: .75rem;
vertical-align: top; }
.spec-table table, th, td {
border:solid #210073 1px;
}   @-ms-viewport {
width: device-width;
}
@viewport {
width: device-width;
} @media screen and (min-width: 710px) {
body:not(.custom-background-image):before, body:not(.custom-background-image):after {
background: inherit;
content: "";
display: block;
height: 0px;
left: 0;
position: fixed;
width: 100%;
z-index: 99;
}
body:not(.custom-background-image):before {
top: 0;
}
body:not(.custom-background-image).admin-bar:before {
top: 4.6rem;
}
body:not(.custom-background-image):after {
bottom: 0;
}
.site {
margin: 0px;
}
.site-main {
margin-bottom: 0;
}
.site-header {}
.site-title {
font-size: 2.8rem;
line-height: 1.25;
}
.site-description {
display: block;
}
.menu-toggle {
font-size: 1.6rem;
margin: 2.1rem 0;
padding: 1.3rem 1.4rem 1.1rem;
}
.site-header-menu {}
.site-header .main-navigation+.social-navigation {}
.pagination {
margin: 0 23.0769% 7.1rem 7.6923%
}
.post-navigation {
margin-bottom: 8.4rem;
;
}
.post-navigation .post-title {
font-size: 2.8rem;
line-height: 1.25;
} .pagination .current .screen-reader-text {
position: absolute !important;
}
.pagination .page-numbers {
display: inline-block;
}
.site-main>article {}
.entry-header, .post-thumbnail, .entry-content, .entry-summary, .entry-footer, .comments-area, .image-navigation, .post-navigation, .page-header, .page-content, .content-bottom-widgets {}
.entry-title {
font-size: 3.3rem;
}
.entry-content blockquote.alignleft, .entry-content blockquote.alignright {
border-width: .4rem 0 0 0;
padding: 1.5rem 0 0;
width: -webkit-calc(50% - 1.2rem);
width: calc(50% - 1.2rem);
}
.entry-content blockquote:not(.alignleft):not(.alignright), .entry-summary blockquote, .comment-content blockquote {
margin-left: -2.4rem;
}
.entry-content blockquote blockquote:not(.alignleft):not(.alignright), .entry-summary blockquote blockquote, .comment-content blockquote blockquote {
margin-left: 0;
}
.entry-content ul, .entry-summary ul, .comment-content ul, .entry-content ol, .entry-summary ol, .comment-content ol {
margin-left: 0;
}
.entry-content li>ul, .entry-summary li>ul, .comment-content li>ul, .entry-content blockquote>ul, .entry-summary blockquote>ul, .comment-content blockquote>ul {
margin-left: 2rem;
}
.entry-content li>ol, .entry-summary li>ol, .comment-content li>ol, .entry-content blockquote>ol, .entry-summary blockquote>ol, .comment-content blockquote>ol {
margin-left: 2.4rem;
}
.comment-author {
margin-bottom: 0;
}
.comment-author .avatar {
height: 4.2rem;
position: relative;
top: .4rem;
width: 4.2rem;
}
.comment-list .children>li {
padding-left: 1rem;
}
.comment-list+.comment-respond, .comment-navigation+.comment-respond {
padding-top: 5.6rem;
}
.comments-area, .widget, .content-bottom-widgets .widget-area {
margin-bottom: 0;
}
.sidebar, .widecolumn {
margin-bottom: 8.4rem;
;
padding-right: 23.0769%;
}
body:not(.search-results) .entry-summary li>ul, body:not(.search-results) .entry-summary blockquote>ul {
margin-left: 1.8rem;
;
}
body:not(.search-results) .entry-summary li>ol, body:not(.search-results) .entry-summary blockquote>ol {
margin-left: 2.4rem;
}
} @media screen and (min-width: 783px) {
body:not(.custom-background-image).admin-bar:before {
top: 3.2rem;
}
} @media screen and (min-width: 910px) {
.site-header-main {
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: flex-start;
}
.site-header-menu {
display: block;
-webkit-flex: 0 1 auto;
-ms-flex: 0 1 auto;
flex: 0 1 auto;
}
.main-navigation {}
.main-navigation .primary-menu, .main-navigation .primary-menu>li {
border: 0;
}
.main-navigation .primary-menu>li {
float: none;
display: inline-block;
}
.main-navigation a {
outline-offset: -.8rem;
padding: 0.6rem 1.3rem;
white-space: nowrap;
font-size: 1.5rem;
} .main-navigation ul ul {
border-bottom: .1rem solid #d1d1d1;
display: block;
left: -999rem;
margin: 0;
position: absolute;
z-index: 99999;
}
.main-navigation ul ul ul {
top: -.1rem;
}
.main-navigation ul ul ul:before, .main-navigation ul ul ul:after {
border: 0;
}
.main-navigation ul ul li {
background-color: #fff;
border: .1rem solid #d1d1d1;
border-bottom-width: 0;
}
.main-navigation ul ul a {
white-space: normal;
width: 20.3rem;
}
.main-navigation ul ul:before, .main-navigation ul ul:after {
border-style: solid;
content: "";
position: absolute;
}
.main-navigation ul ul:before {
border-color: #d1d1d1 transparent;
border-width: 0 1rem 1rem;
right: 1.9rem;
top: -.9rem;
}
.main-navigation ul ul:after {
border-color: #fff transparent;
border-width: 0 .8rem .8rem;
right: 2.1rem;
top: -.7rem;
}
.main-navigation li:hover>ul, .main-navigation li.focus>ul {
left: auto;
right: 0;
}
.main-navigation ul ul li:hover>ul, .main-navigation ul ul li.focus>ul {
left: 100%;
right: auto;
}
.main-navigation .menu-item-has-children>a {
margin: 0;
padding-right: 3.4rem;
}
.main-navigation .menu-item-has-children>a:after {
content: "\f431";
position: absolute;
right: 2rem;
top: 0.8rem;
}
.main-navigation ul ul .menu-item-has-children>a {
padding-right: 3.3rem;
}
.main-navigation ul ul .menu-item-has-children>a:after {
right: .9rem;
top: 1.4rem;
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(-90deg);
}
.dropdown-toggle, .main-navigation ul .dropdown-toggle.toggled-on, .menu-toggle, .site-header .social-navigation, .site-footer .main-navigation {
display: none;
}
.site-content {
padding: 0;
width: 100%;
float: left;
}
.content-area {}
.entry-header, .post-thumbnail, .entry-content, .entry-summary, .entry-footer, .comments-area, .image-navigation, .post-navigation, .pagination, .page-header, .page-content, .content-bottom-widgets {
margin-right: 0;
margin-left: 0;
}
.sidebar {
float: left;
margin-left: 75%;
padding: 0;
width: 25%;
}
.widget .widget-title {
margin-bottom: 0;
}
.widget p, .widget address, .widget hr, .widget ul, .widget ol, .widget dl, .widget dd, .widget table {
margin-bottom: 1rem;
}
.widget li>ul, .widget li>ol {
margin-bottom: 0;
}
.widget blockquote {}
.widget blockquote cite, .widget blockquote small {
font-size: 1.3rem;
}
.widget th, .widget td {
padding: 0;
}
.widget pre {}
.widget fieldset {
margin-bottom: 0;
padding: 0;
}
.widget button, .widget input, .widget select, .widget textarea {}
.widget button, .widget input[type="button"], .widget input[type="reset"], .widget input[type="submit"] {
line-height: 1;
padding: 1rem;
}
.widget input[type="text"], .widget input[type="email"], .widget input[type="url"], .widget input[type="password"], .widget input[type="search"], .widget input[type="tel"], .widget input[type="number"], .widget textarea {
padding: 1rem 1.2rem;
}
.widget h1 {
font-size: 2.3rem;
}
.widget h2 {
font-size: 1.9rem;
}
.widget h3 {
font-size: 1.6rem;
}
.widget h4, .widget h5, .widget h6 {
font-size: 1.3rem;
}
.widget .alignleft {
margin: .4rem 2.6rem 2.6rem 0;
}
.widget .alignright {
margin: .4rem 0 2.6rem 2.6rem;
}
.widget .aligncenter {
margin-bottom: 2.6rem;
}
.widget_calendar td, .widget_calendar th {
line-height: 2.6923076923;
padding: 0;
}
.widget_rss .rssSummary:last-child {
margin-bottom: 1.5rem;
}
.widget input[type="search"].search-field {
width: -webkit-calc(100% - 3.5rem);
width: calc(100% - 3.5rem);
}
.widget .search-submit:before {
font-size: 1.6rem;
left: .1rem;
line-height: 3.5rem;
width: 3.4rem;
}
.widget button.search-submit {
padding: 0;
width: 3.5rem;
}
.tagcloud a {
margin: 0 .4rem .9rem 0;
padding: .9rem .7rem .7rem;
}
.textwidget h1 {
margin-top: 3rem;
}
.textwidget h2 {
margin-top: 3.6rem;
}
.textwidget h3 {
margin-top: 4.2rem;
}
.textwidget h4 {
letter-spacing: .3rem;
}
.textwidget h4, .textwidget h5, .textwidget h6 {
margin-top: 5.2rem;
}
.content-bottom-widgets .widget-area:nth-child(1):nth-last-child(2), .content-bottom-widgets .widget-area:nth-child(2):nth-last-child(1) {
float: left;
margin-right: 7.1428571%;
width: 46.42857145%;
}
.content-bottom-widgets .widget-area:nth-child(2):nth-last-child(1):last-of-type {
margin-right: 0;
}
.site-footer {
float: left;
width: 100%;
padding: 0;
}
.site-footer .social-navigation {
margin: 0;
-webkit-order: 2;
-ms-flex-order: 2;
order: 2;
}
.no-sidebar .content-area {
float: none;
margin: 0;
width: 100%;
}
.no-sidebar .entry-header, .no-sidebar .entry-content, .no-sidebar .entry-summary, .no-sidebar .entry-footer, .no-sidebar .comments-area, .no-sidebar .image-navigation, .no-sidebar .post-navigation, .no-sidebar .pagination, .no-sidebar .page-header, .no-sidebar .page-content, .no-sidebar .content-bottom-widgets {
margin-right: 15%;
margin-left: 15%;
}
.widecolumn {
padding-right: 15%;
padding-left: 15%;
}
} @media screen and (min-width: 985px) {
.site-main {}
.site-header {}
.site-branding, .site-header-menu, .header-image {}
.image-navigation {
margin-bottom: 5.2rem;
}
.post-navigation {
margin-bottom: 11.2rem;
}
.pagination {
margin-bottom: 9.3rem;
}
.widget {
margin-bottom: 0;
}
.site-main>article {
margin-bottom: 11.2rem;
}
.entry-title {
font-size: 4rem;
line-height: 1.225;
}
.format-aside .entry-title, .format-image .entry-title, .format-video .entry-title, .format-quote .entry-title, .format-gallery .entry-title, .format-status .entry-title, .format-link .entry-title, .format-audio .entry-title, .format-chat .entry-title {
font-size: 2.3rem;
line-height: 1.304347826;
margin-bottom: 3rem;
}
.post-thumbnail {
margin-bottom: 4.2rem;
}
.entry-content h1, .entry-summary h1, .comment-content h1 {
font-size: 3.3rem;
line-height: 1.2727272727;
margin-top: 2.7rem;
margin-bottom: 1.4rem;
}
.entry-content h2, .entry-summary h2, .comment-content h2 {
font-size: 2.8rem;
line-height: 1.25;
margin-top: 3.2rem;
margin-bottom: 1.6rem;
}
.entry-content h3, .entry-summary h3, .comment-content h3 {
font-size: 2.3rem;
line-height: 1.2173913043;
margin-top: 3.9rem;
margin-bottom: 2rem;
}
.entry-content h4, .entry-summary h4, .entry-intro h4, .comment-content h4 {
letter-spacing: .3rem;
}
.entry-content h4, .entry-content h5, .entry-content h6, .entry-summary h4, .entry-summary h5, .entry-summary h6, .comment-content h4, .comment-content h5, .comment-content h6 {
font-size: 1.9rem;
line-height: 1.1052631579;
margin-top: 4.7rem;
margin-bottom: 2.4rem;
}
.author-info {
border-bottom-width: 0;
padding-bottom: 0;
}
.comment-list+.comment-respond, .comment-navigation+.comment-respond {
padding-top: 8.4rem;
;
}
.comments-area, .sidebar, .content-bottom-widgets .widget-area, .widecolumn {
margin-bottom: 0;
}
body:not(.search-results) .entry-summary {
margin-bottom: 3.5rem;
}
body:not(.search-results) .entry-header+.entry-summary {
margin-top: -1.8rem;
}
body:not(.search-results) article:not(.type-page) .entry-content {
float: right;
width: 71.42857144%;
}
body:not(.search-results) article:not(.type-page) .entry-content>blockquote.alignleft.below-entry-meta {
margin-left: -40%;
width: -webkit-calc(60% - 2.4rem);
width: calc(60% - 2.4rem);
}
body:not(.search-results) article:not(.type-page) img.below-entry-meta, body:not(.search-results) article:not(.type-page) figure.below-entry-meta {
clear: both;
display: block;
float: none;
margin-right: 0;
margin-left: -40%;
max-width: 140%;
}
body:not(.search-results) article:not(.type-page) figure.below-entry-meta img.below-entry-meta, body:not(.search-results) article:not(.type-page) table figure.below-entry-meta, body:not(.search-results) article:not(.type-page) table img.below-entry-meta {
margin: 0;
max-width: 100%;
}
body:not(.search-results) article:not(.type-page) .entry-footer {
float: left;
margin-top: .3rem;
width: 21.42857143%;
}
body:not(.search-results) article:not(.type-page) .entry-footer>span:not(:last-child):after {
display: none;
}
.single .byline, .full-size-link, body:not(.search-results).group-blog .byline, body:not(.search-results) .entry-format, body:not(.search-results) .cat-links, body:not(.search-results) .tags-links, body:not(.search-results) article:not(.sticky) .posted-on, body:not(.search-results) article:not(.type-page) .comments-link, body:not(.search-results) article:not(.type-page) .entry-footer .edit-link {
display: block;
margin-bottom: .9rem;
}
body:not(.search-results) article:not(.type-page) .entry-footer>span:last-child {
margin-bottom: 0;
}
body:not(.search-results) article:not(.type-page) .entry-footer .avatar {
display: block;
height: auto;
margin: 0 0 .9rem;
width: 4.9rem;
}
body.no-sidebar:not(.search-results) article:not(.type-page) .entry-content {
float: left;
margin-right: -100%;
margin-left: 34.99999999%;
width: 50.00000001%;
}
body.no-sidebar:not(.search-results) article:not(.type-page) .entry-footer {
margin-right: -100%;
margin-left: 15%;
width: 15%;
}
} @media screen and (min-width: 1200px) {
body:not(.search-results) .entry-summary {
font-size: 2.3rem;
line-height: 1.5217391304;
margin-bottom: 3rem;
}
body:not(.search-results) .entry-header+.entry-summary {
margin-top: -1.5rem;
}
body:not(.search-results) .entry-summary p, body:not(.search-results) .entry-summary address, body:not(.search-results) .entry-summary hr, body:not(.search-results) .entry-summary ul, body:not(.search-results) .entry-summary ol, body:not(.search-results) .entry-summary dl, body:not(.search-results) .entry-summary dd, body:not(.search-results) .entry-summary table {
margin-bottom: 2.4rem;
}
body:not(.search-results) .entry-summary li>ul, body:not(.search-results) .entry-summary blockquote>ul {
margin-left: 1.5rem;
}
body:not(.search-results) .entry-summary li>ol, body:not(.search-results) .entry-summary blockquote>ol {
margin-left: 2.4rem;
}
body:not(.search-results) .entry-summary blockquote {
font-size: 2.3rem;
line-height: 1.5217391304;
margin: 0 0 2.4rem;
padding-left: 2.2rem;
}
body:not(.search-results) .entry-summary blockquote:not(.alignleft):not(.alignright) {
margin-left: -2.4rem;
}
body:not(.search-results) .entry-summary blockquote blockquote:not(.alignleft):not(.alignright) {
margin-left: 0;
}
body:not(.search-results) .entry-summary blockquote cite, body:not(.search-results) .entry-summary blockquote small {
font-size: 1.9rem;
line-height: 1.8421052632;
}
body:not(.search-results) .entry-summary th, body:not(.search-results) .entry-summary td {
padding: .5rem;
}
body:not(.search-results) .entry-summary pre {
font-size: 1.6rem;
line-height: 1.75;
margin-bottom: 1rem;
padding: 1rem;
}
body:not(.search-results) .entry-summary fieldset {
margin-bottom: 2.4rem;
padding: .5rem;
}
body:not(.search-results) .entry-summary h1 {
margin-top: 3.4rem;
margin-bottom: 1.7rem;
}
body:not(.search-results) .entry-summary h2 {
margin-top: 4rem;
margin-bottom: 2rem;
}
body:not(.search-results) .entry-summary h3 {
margin-top: 4.9rem;
margin-bottom: 2.4rem;
}
body:not(.search-results) .entry-summary h4, body:not(.search-results) .entry-summary h5, body:not(.search-results) .entry-summary h6 {
margin-top: 5.9rem;
margin-bottom: 3rem;
}
body:not(.search-results) .entry-summary h1:first-child, body:not(.search-results) .entry-summary h2:first-child, body:not(.search-results) .entry-summary h3:first-child, body:not(.search-results) .entry-summary h4:first-child, body:not(.search-results) .entry-summary h5:first-child, body:not(.search-results) .entry-summary h6:first-child {
margin-top: 0;
}
body:not(.search-results) .entry-summary .alignleft {
margin: .4rem 2.4rem 2.4rem 0;
}
body:not(.search-results) .entry-summary .alignright {
margin: .4rem 0 2.4rem 2.4rem;
}
body:not(.search-results) .entry-summary .aligncenter {
margin-bottom: 2.4rem;
}
} @media print {
form, button, input, select, textarea, .navigation, .main-navigation, .social-navigation, .sidebar, .content-bottom-widgets, .header-image, .page-links, .edit-link, .comment-respond, .comment-edit-link, .comment-reply-link, .comment-metadata .edit-link, .pingback .edit-link {
display: none;
}
body, blockquote cite, blockquote small, pre, .entry-content h4, .entry-content h5, .entry-content h6, .entry-summary h4, .entry-summary h5, .entry-summary h6, .comment-content h4, .comment-content h5, .comment-content h6, .entry-content .author-title {}
blockquote {
font-size: 1.9rem;
}
.site-title, .page-title, .comments-title, .entry-content h2, .entry-summary h2, .comment-content h2, .widecolumn h2 {
font-size: 2.3rem;
}
.site-description {
display: block;
}
.entry-title {
font-size: 3.3rem;
line-height: 1.2727272727;
margin-bottom: 2.7rem;
}
.format-aside .entry-title, .format-image .entry-title, .format-video .entry-title, .format-quote .entry-title, .format-gallery .entry-title, .format-status .entry-title, .format-link .entry-title, .format-audio .entry-title, .format-chat .entry-title {
font-size: 2.3rem;
line-height: 1.304347826;
margin-bottom: 3rem;
}
.entry-content h1, .entry-summary h1, .comment-content h1 {
font-size: 2.8rem;
}
.entry-content h3, .entry-summary h3, .comment-content h3, body:not(.search-results) .entry-summary {
font-size: 1.9rem;
}
.site-description, .author-bio, .entry-footer, .sticky-post, .taxonomy-description, .entry-caption, .comment-metadata, .comment-notes, .comment-awaiting-moderation, .site-info, .wp-caption .wp-caption-text, .gallery-caption {
font-size: 1.3rem;
}
body, .site {
background: none !important; }
body, blockquote cite, blockquote small, .site-branding .site-title a, .entry-title a, .comment-author {
color: #1a1a1a !important; }
blockquote, .page-header, .comments-title {
border-color: #1a1a1a !important; }
blockquote, .site-description, body:not(.search-results) .entry-summary, body:not(.search-results) .entry-summary blockquote, .author-bio, .entry-footer, .entry-footer a, .sticky-post, .taxonomy-description, .entry-caption, .comment-author, .comment-metadata a, .comment-notes, .comment-awaiting-moderation, .site-info, .site-info a, .wp-caption .wp-caption-text, .gallery-caption {
color: #686868 !important; }
code, hr {
background-color: #d1d1d1 !important; }
pre, abbr, acronym, table, th, td, .author-info, .comment-list article, .comment-list .pingback, .comment-list .trackback, .no-comments {
border-color: #d1d1d1 !important; }
a {
color: #007acc !important; }
.entry-content a, .entry-summary a, .taxonomy-description a, .comment-content a, .pingback .comment-body>a {
box-shadow: none;
border-bottom: .1rem solid #007acc !important; }
.site {
margin: 5%;
}
.site-inner {
max-width: none;
}
.site-header {
padding: 0 0 1rem;
}
.site-branding {
margin-top: 0;
margin-bottom: 1rem;
}
.site-main {
margin-bottom: 5.6rem;
}
.entry-header, .entry-footer, .page-header, .page-content, .entry-content, .entry-summary, .post-thumbnail, .comments-area {
margin-right: 0;
margin-left: 0;
}
.post-thumbnail, .site-main>article {
margin-bottom: 5.6rem;
}
.entry-content blockquote.alignleft, .entry-content blockquote.alignright {
border-width: .4rem 0 0 0;
padding: 1.5rem 0 0;
width: -webkit-calc(50% - 1.2rem);
width: calc(50% - 1.2rem);
}
body:not(.search-results) .entry-header+.entry-summary {
margin-top: -2.4rem;
}
.site-footer, .widecolumn {
padding: 0;
}
}
.layout-set {
width: 100%;
float: left;
}
ul.side {
list-style: none;
margin: 0;
padding: 0;
display: block;
}
ul.side li {
display: inline-block;
}
ul.side.social li a {
padding: 0px .5rem;
font-size: 1.7rem;
color: #fff;
}
.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok, .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .wpcf7-response-output.wpcf7-display-none.wpcf7-spam-blocked {
float: left;
width: 100%;
}
.sticky-header {
position: fixed;
top: 0;
left: 0;
float: left;
width: 100%;
z-index: 999;
background-color: rgb(0, 0, 0);
}
.sticky-header .custom-logo-link img {
max-width: 20rem;
}
.admin-bar .sticky-header {
top: 3.2rem;
}
.mlp {
margin-left: 25px;
display: block;
}
.banner_text {
position: absolute;
top: 40%;
width: 24%;    
transform: translateY(-50%);
}
.banner_text h2 {
font-size:28px;
}
ul.ul-info li {
display: inline-block;
margin-right: 20px;
}
ul.ul-info {
margin-left: 0;
}
@media screen and (min-width: 1600px) {
.pos_abs {
right: -10%;  
}
.banner_text {
width: 16%;
}
}
.home .product-inquiry{
margin-top: 0px !important;
}
.site-header ul li {
list-style: none;
}
.post-239 span.right-arrow {
display: none;
}
form.search-form {
float: left;
}
section.error-404.not-found label {
display: inline-block;
margin-bottom: 0;
}
section.error-404.not-found header.page-header {
margin-bottom: 0;
}
section.thank-you p {
color: rgb(32, 4, 105);
font-weight: 700;
font-size: 21px;
margin-top: 40px;
}
@media screen and (min-width:320px) and (max-width: 575px)
{
.quote {
margin-top: 5px;
}
.menu-toggle {
display: none;
}
button#menu-toggle {
display: none;
}
.flag-css {
column-count: 2;
}
.widget .item img {
margin-bottom: 5px;
}
.flag-css .item {
margin-bottom: 20px;
}
.widget h5 {
margin-bottom: 10px;
}
ul.social-icon {
margin-bottom: 10px !important;
}
.widget h2.widget-title {
margin-top: 15px;
}
h4.head {
margin-bottom: 0;
margin-top: 15px;
}
.about h2 {
font-size: 26px;
line-height: 35px;
margin-bottom: 5px;
}
.quotes {
font-size: 25px;
line-height: 33px;
margin-bottom: 15px;
}
a.read_more {
margin-bottom: 20px;
}
.back-orange {
padding:15px 15px;
}
.about .back-orange p {
margin-bottom: 10px;
}
.product {
padding: 0 0 20px;
}
.product-image {
margin-bottom: 10px !important;
}
.product-back p {
margin-bottom: 15px;
}
.special {
font-size: 24px;
line-height: 32px;
max-width: 100%;
margin-bottom: 20px;
}
.special::after {
right: -4%; 
}
.animate-number h3 {
margin-bottom: 25px;
}
.animate-number img {
margin-bottom: 10px;
}
.site-main {
margin-bottom: 0;
}
.product-inquiry {
background-image: linear-gradient(to bottom, rgb(240, 240, 240) 100%, rgb(214, 214, 214) 50%);
}
section.product-inquiry h4 {
margin-bottom: 5px;
}
.side-arrow li {
margin-bottom: 10px;   
}
.animate-number {
padding: 20px 0 0;
}
.owl-nav
{
display: none;	
}
.pos_abs {
position: static;   
}
.pos_abs h4 {
font-size: 15px;
line-height: 20px;
}
.pos_abs p {
font-size: 15px;
line-height: 20px;
}
.pos_abs .back-color {
color: rgb(255, 255, 255);
padding: 5px 0;
}
.slider .item {
background: rgb(33, 0, 115);
}
.pos_abs p {
font-size: 15px;
line-height: 20px;
min-height: 65px;
}
.banner_text h2 {
font-size: 18px;
line-height: 22px;
}
.banner {
margin-bottom: 20px;
}
.entry-content {
margin: 0;
float: left;
width: 100%;
}
section.contact {
float: left;
width: 100%;
}
section.contact iframe {
margin-top: 30px;
}
section.product-back {
float: left;
width: 100%;
}
section.product-back img {
width: 100%;
}
.banner_text {
position: static;
width: auto;
padding-top: 9px;
transform: translate(0);
}
ul.application {
display: block;  
}
a.comm.download {
margin-bottom: 15px;
}
.desc-ul li strong {
float: left;
width: 100%;
}
.desc-ul li {
display: block !important;
}
.comm {
margin-bottom: 15px;
}
.entry-content2 h2.title {
margin-top: 15px;
}
section.product-inquiry h4.head {
margin-top: 0;
}
section.product-inquiry h4.head.blue {
margin-top: 15px;
}
.entry-content2:last-child {
margin-bottom: 0px;
}
ul.desc-ul.bef span {
display: inline-block !important;
}
#post-264 ul.desc-ul li::before
{
position: static;
margin-right: 10px;	
}
section.product h4.head.blue {
margin-bottom: 10px;
}
h2.title {
font-size: 20px;
line-height: 26px;   
}	
}
@media screen and (min-width:576px) and (max-width: 767px)
{
.menu-toggle {
display: none;
}
button#menu-toggle {
display: none;
}
.quote {
margin-top: 5px;
}
.flag-css {
display: flex;
}
.flag-css .item {
flex: 0 0 33.33%;
margin-bottom: 15px;
}
.widget h2.widget-title {
margin-top: 15px;
}
h4.head {
margin-bottom: 0;
margin-top: 15px;
}
.widget .item img {
margin-bottom: 5px;
}
.about .back-orange p {
margin-bottom: 10px;
}
.product {
padding: 0 0 20px ;
}
.product-image {
margin-bottom: 10px !important;
}
.product-back p {
margin-bottom: 15px;
}
.special {
font-size: 24px;
line-height: 32px;
max-width: 100%;
margin-bottom: 20px;
}
.special::after {
right: -2%; 
}
.animate-number h3 {
margin-bottom: 25px;
}
.animate-number img {
margin-bottom: 10px;
}
.site-main {
margin-bottom: 0;
}
.product-inquiry {
background-image: linear-gradient(to bottom, rgb(240, 240, 240) 100%, rgb(214, 214, 214) 50%);
}
section.product-inquiry h4 {
margin-bottom: 5px;
}
section.product-inquiry h4.head {
margin-top: 10px;
}	
.about h2 {
line-height: 27px; 
}
.about h4 {
margin-top: 15px;
}
.back-orange {
padding: 15px 15px;
}
.side-arrow li {
margin-bottom: 10px;   
}
ul.side-arrow {
column-count: 1;
}
.animate-number {
padding: 30px 0;
}
.logo {
text-align: center;
display: block !important;
}
.owl-nav
{
display: none;	
}
.pos_abs h4 {
font-size: 15px;
line-height: 20px;
}
.pos_abs p {
font-size: 15px;
line-height: 20px;
}
.pos_abs .back-color {
color: rgb(255, 255, 255);
padding: 5px 0;
max-width: 200px;
}
.pos_abs {
left: auto;
right: 0;        
}
.banner {
margin-bottom: 20px;
}
.entry-content {
margin: 0;
}
section.contact {
float: left;
width: 100%;
}
section.contact iframe {
margin-top: 30px;
}
section.product-back {
float: left;
width: 100%;
}
.product-image img {
text-align: center;
margin: 0 auto;
display: block;
}
.banner_text {
position: absolute;
top: 50%;
width: 24%;
transform: translateY(-50%);
}
.banner_text h2 {
font-size: 17px;
}
ul.application {
display: block;  
}
a.comm.download {
margin-bottom: 15px;
}
.desc-ul li strong {
float: left;
width: 100%;
}
.desc-ul li {
display: block !important;
}
.comm {
margin-bottom: 15px;
}
.entry-content2 h2.title {
margin-top: 15px;
}
ul.application {
display: block;  
}
a.comm.download {
margin-bottom: 15px;
}
.desc-ul li strong {
float: left;
width: 100%;
}
.desc-ul li {
display: block !important;
}
.comm {
margin-bottom: 15px;
}
.entry-content2 h2.title {
margin-top: 15px;
}
.entry-content2:last-child {
margin-bottom: 0px;
}
#post-264 ul.desc-ul li::before
{
position: static;
margin-right: 10px;	
}
section.product h4.head.blue {
margin-bottom: 10px;
}
}
@media screen and (min-width:768px) and (max-width: 991px)
{
button#menu-toggle {
display: none;
}
ul.side-arrow {
column-count: 2;
margin-bottom: 15px;
}	
p.envelope {
display: flex;
}
.logo {
display: block !important;
text-align: center;
}
nav#site-navigation {
display: none;
}
.flag-css .item {
flex: 0 0 25%;
margin-bottom: 15px;
}
.widget .item img {
margin-bottom: 5px;
}
.widget h5 {
margin-bottom: 10px;
}
.about h4 {
margin-top: 20px;
}
.about h2 {
margin-bottom: 0;
}
section.product ul.side-arrow {
column-count: 2;
}
.animate-number img {
margin-bottom: 5px;
}
.product-inquiry {
background-image: linear-gradient(to bottom, rgb(240, 240, 240) 100%, rgb(214, 214, 214) 50%);
}
.owl-nav {
display: none;
}
.pos_abs h4 {
font-size: 25px;
line-height: 30px;
}
.pos_abs p {
font-size: 25px;
line-height: 30px;
}
.pos_abs .back-color {
color: rgb(255, 255, 255);
padding: 5px 0;
}
.pos_abs {
left: 26%; 
}
.banner {
margin-bottom: 20px;
}
.entry-content {
margin: 0;
}
section.contact {
float: left;
width: 100%;
}
section.contact iframe {
margin-top: 30px;
}
section.product-back {
float: left;
width: 100%;
}
.banner_text {
position: absolute;
top: 50%;
width: 24%;
transform: translateY(-50%);
}
.banner_text h2 {
font-size: 25px;
line-height: 28px;
}
.entry-content2 h2.title {
margin-top: 15px;
}
a.comm.download, a.comm.get_quote {
margin-bottom: 20px;
}
.entry-content2:last-child {
margin-bottom: 0px;
}
.site-footer {
padding-top: 20px;
}	
}
@media screen and (min-width:992px) and (max-width: 1199px)
{
p.envelope {
display: flex;
}
.main-navigation .menu-item-has-children>a {
padding-right: 3.2rem;
}
.main-navigation a {
padding: 0.6rem 4px;   
}
}
.back-orange p {
font-size: 15px;
line-height: 20px;
}
.cl-logo {
text-align: center;
box-shadow: 0px 0px 9px 0px rgba(000000, 0, 0, 0.45);
margin-bottom: 30px;
overflow: hidden;
height: 225px;
}
.cl-logo img {
margin-bottom: 30px;
padding: 5px;
text-align: center;
margin: 0 auto;
display: block;
transition: all 0.5s;
}
.cl-logo h3 {
margin: 0px;
font-size: 18px;
color: #2f2f2f;
font-weight: normal;
}
.clients {
margin-top: 60px;
}
.wecat-img {
margin-top: 60px;
box-shadow: 0px 0px 5px 0px rgba(171, 171, 171, 0.45);
}
a.yb {
margin-right: 10px;
}
.frm-right {
margin-bottom: 10px;
}
select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
width: 100% !important;
padding: 6px !important;
background-color: #f7f7f7 !important;
color: #929292 !important;
}body a, body a:focus, body a:hover {
text-decoration: none;
}
section.contact ul {
display: flex;
}
section.contact ul li {
list-style: none;
display: inline-block;
margin-right: 15px;
}
section.contact svg.svg-inline--fa {
font-size: 22px;
color: #DE7507;
}
section.contact .border {
padding: 20px;
border: 1px solid #DE7507 !important;
}
section.contact svg.svg-inline--fa.fa-envelope.fa-w-16 {
font-size: 18px !important;
}
section.contact h4 {
margin-bottom: 0; background: #DE7507;
color: #fff;
padding: 5px 50px;
letter-spacing: 0;
}
h1.entry-title {
color: #DE7507;
}
.desc-ul li {
display: flex;
position: relative;
}
ul.desc-ul li::before {
content: "";
width: 20px;
height: 15px;
display: inline-block;
background-color: rgb(231, 117, 2);
-webkit-clip-path: polygon(0 30%, 60% 30%, 60% 0%, 100% 50%, 60% 100%, 60% 70%, 0 70%);
clip-path: polygon(0 30%, 60% 30%, 60% 0%, 100% 50%, 60% 100%, 60% 70%, 0 70%);
position: absolute;
top: 5px;
}
.desc-ul li strong {
margin-right: 10px;
flex: 0 0 30%;
align-self: flex-start;
padding-left: 25px;
}
.page-template-template-product span.right-arrow, .page-template-template-product2 span.right-arrow {
display: none;
}
ul.desc-ul.bef li::before {
content: none !important;
}
ul.desc-ul.bef span {
display: block;
align-self: center;
}  .main-navigation ul.sub-menu a {
text-transform: capitalize;
}
.main-navigation ul.sub-menu a {
font-size: 1.3rem;
line-height: 18px;
}
ul.service_ul li {
list-style: none;
margin-bottom: 15px;
display: flex;
}
section.service ul.service_ul .right-arrow {
margin-left: 0px;
margin-right: 5px;
flex: 0 0 2%;
margin-top: 3px;
}