@charset "UTF-8";

 .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
@-webkit-keyframes bounce {
0%, 20%, 50%, 80%, 100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
40% {
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
60% {
-webkit-transform: translateY(-15px);
transform: translateY(-15px);
}
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
40% {
-webkit-transform: translateY(-30px);
-ms-transform: translateY(-30px);
transform: translateY(-30px);
}
60% {
-webkit-transform: translateY(-15px);
-ms-transform: translateY(-15px);
transform: translateY(-15px);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
}
@-webkit-keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes pulse {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
100% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes shake {
0%, 100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translateX(-10px);
transform: translateX(-10px);
}
20%, 40%, 60%, 80% {
-webkit-transform: translateX(10px);
transform: translateX(10px);
}
}
@keyframes shake {
0%, 100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translateX(-10px);
-ms-transform: translateX(-10px);
transform: translateX(-10px);
}
20%, 40%, 60%, 80% {
-webkit-transform: translateX(10px);
-ms-transform: translateX(10px);
transform: translateX(10px);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate(15deg);
transform: rotate(15deg);
}
40% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
}
60% {
-webkit-transform: rotate(5deg);
transform: rotate(5deg);
}
80% {
-webkit-transform: rotate(-5deg);
transform: rotate(-5deg);
}
100% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate(15deg);
-ms-transform: rotate(15deg);
transform: rotate(15deg);
}
40% {
-webkit-transform: rotate(-10deg);
-ms-transform: rotate(-10deg);
transform: rotate(-10deg);
}
60% {
-webkit-transform: rotate(5deg);
-ms-transform: rotate(5deg);
transform: rotate(5deg);
}
80% {
-webkit-transform: rotate(-5deg);
-ms-transform: rotate(-5deg);
transform: rotate(-5deg);
}
100% {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
}
}
.swing {
-webkit-transform-origin: top center;
-ms-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
10%, 20% {
-webkit-transform: scale(0.9) rotate(-3deg);
transform: scale(0.9) rotate(-3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale(1.1) rotate(3deg);
transform: scale(1.1) rotate(3deg);
}
40%, 60%, 80% {
-webkit-transform: scale(1.1) rotate(-3deg);
transform: scale(1.1) rotate(-3deg);
}
100% {
-webkit-transform: scale(1) rotate(0);
transform: scale(1) rotate(0);
}
}
@keyframes tada {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
10%, 20% {
-webkit-transform: scale(0.9) rotate(-3deg);
-ms-transform: scale(0.9) rotate(-3deg);
transform: scale(0.9) rotate(-3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale(1.1) rotate(3deg);
-ms-transform: scale(1.1) rotate(3deg);
transform: scale(1.1) rotate(3deg);
}
40%, 60%, 80% {
-webkit-transform: scale(1.1) rotate(-3deg);
-ms-transform: scale(1.1) rotate(-3deg);
transform: scale(1.1) rotate(-3deg);
}
100% {
-webkit-transform: scale(1) rotate(0);
-ms-transform: scale(1) rotate(0);
transform: scale(1) rotate(0);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
0% {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
15% {
-webkit-transform: translateX(-25%) rotate(-5deg);
transform: translateX(-25%) rotate(-5deg);
}
30% {
-webkit-transform: translateX(20%) rotate(3deg);
transform: translateX(20%) rotate(3deg);
}
45% {
-webkit-transform: translateX(-15%) rotate(-3deg);
transform: translateX(-15%) rotate(-3deg);
}
60% {
-webkit-transform: translateX(10%) rotate(2deg);
transform: translateX(10%) rotate(2deg);
}
75% {
-webkit-transform: translateX(-5%) rotate(-1deg);
transform: translateX(-5%) rotate(-1deg);
}
100% {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
}
@keyframes wobble {
0% {
-webkit-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%);
}
15% {
-webkit-transform: translateX(-25%) rotate(-5deg);
-ms-transform: translateX(-25%) rotate(-5deg);
transform: translateX(-25%) rotate(-5deg);
}
30% {
-webkit-transform: translateX(20%) rotate(3deg);
-ms-transform: translateX(20%) rotate(3deg);
transform: translateX(20%) rotate(3deg);
}
45% {
-webkit-transform: translateX(-15%) rotate(-3deg);
-ms-transform: translateX(-15%) rotate(-3deg);
transform: translateX(-15%) rotate(-3deg);
}
60% {
-webkit-transform: translateX(10%) rotate(2deg);
-ms-transform: translateX(10%) rotate(2deg);
transform: translateX(10%) rotate(2deg);
}
75% {
-webkit-transform: translateX(-5%) rotate(-1deg);
-ms-transform: translateX(-5%) rotate(-1deg);
transform: translateX(-5%) rotate(-1deg);
}
100% {
-webkit-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%);
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes bounceIn {
0% {
opacity: 0;
-webkit-transform: scale(.3);
transform: scale(.3);
}
50% {
opacity: 1;
-webkit-transform: scale(1.05);
transform: scale(1.05);
}
70% {
-webkit-transform: scale(.9);
transform: scale(.9);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes bounceIn {
0% {
opacity: 0;
-webkit-transform: scale(.3);
-ms-transform: scale(.3);
transform: scale(.3);
}
50% {
opacity: 1;
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05);
}
70% {
-webkit-transform: scale(.9);
-ms-transform: scale(.9);
transform: scale(.9);
}
100% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(30px);
transform: translateY(30px);
}
80% {
-webkit-transform: translateY(-10px);
transform: translateY(-10px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes bounceInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(30px);
-ms-transform: translateY(30px);
transform: translateY(30px);
}
80% {
-webkit-transform: translateY(-10px);
-ms-transform: translateY(-10px);
transform: translateY(-10px);
}
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(30px);
transform: translateX(30px);
}
80% {
-webkit-transform: translateX(-10px);
transform: translateX(-10px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes bounceInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(30px);
-ms-transform: translateX(30px);
transform: translateX(30px);
}
80% {
-webkit-transform: translateX(-10px);
-ms-transform: translateX(-10px);
transform: translateX(-10px);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(-30px);
transform: translateX(-30px);
}
80% {
-webkit-transform: translateX(10px);
transform: translateX(10px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes bounceInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(-30px);
-ms-transform: translateX(-30px);
transform: translateX(-30px);
}
80% {
-webkit-transform: translateX(10px);
-ms-transform: translateX(10px);
transform: translateX(10px);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
80% {
-webkit-transform: translateY(10px);
transform: translateY(10px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes bounceInUp {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(-30px);
-ms-transform: translateY(-30px);
transform: translateY(-30px);
}
80% {
-webkit-transform: translateY(10px);
-ms-transform: translateY(10px);
transform: translateY(10px);
}
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
25% {
-webkit-transform: scale(.95);
transform: scale(.95);
}
50% {
opacity: 1;
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
100% {
opacity: 0;
-webkit-transform: scale(.3);
transform: scale(.3);
}
}
@keyframes bounceOut {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
25% {
-webkit-transform: scale(.95);
-ms-transform: scale(.95);
transform: scale(.95);
}
50% {
opacity: 1;
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
100% {
opacity: 0;
-webkit-transform: scale(.3);
-ms-transform: scale(.3);
transform: scale(.3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
}
@keyframes bounceOutDown {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
@keyframes bounceOutLeft {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
}
@keyframes bounceOutRight {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
@keyframes bounceOutUp {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
}
@keyframes fadeOutDown {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
}
@keyframes fadeOutDownBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-20px);
transform: translateX(-20px);
}
}
@keyframes fadeOutLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
@keyframes fadeOutLeftBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(20px);
transform: translateX(20px);
}
}
@keyframes fadeOutRight {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
}
@keyframes fadeOutRightBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
}
@keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
@keyframes fadeOutUpBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
0% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
100% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
0% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
-ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
-ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
-ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
100% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
-ms-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateX(-10deg);
transform: perspective(400px) rotateX(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateX(10deg);
transform: perspective(400px) rotateX(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
}
@keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotateX(90deg);
-ms-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateX(-10deg);
-ms-transform: perspective(400px) rotateX(-10deg);
transform: perspective(400px) rotateX(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateX(10deg);
-ms-transform: perspective(400px) rotateX(10deg);
transform: perspective(400px) rotateX(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateX(0deg);
-ms-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateY(-10deg);
transform: perspective(400px) rotateY(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateY(10deg);
transform: perspective(400px) rotateY(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
}
@keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotateY(90deg);
-ms-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateY(-10deg);
-ms-transform: perspective(400px) rotateY(-10deg);
transform: perspective(400px) rotateY(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateY(10deg);
-ms-transform: perspective(400px) rotateY(10deg);
transform: perspective(400px) rotateY(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateY(0deg);
-ms-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
0% {
-webkit-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
}
@keyframes flipOutX {
0% {
-webkit-transform: perspective(400px) rotateX(0deg);
-ms-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateX(90deg);
-ms-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
0% {
-webkit-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
}
@keyframes flipOutY {
0% {
-webkit-transform: perspective(400px) rotateY(0deg);
-ms-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateY(90deg);
-ms-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
0% {
-webkit-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: translateX(-20%) skewX(30deg);
transform: translateX(-20%) skewX(30deg);
opacity: 1;
}
80% {
-webkit-transform: translateX(0%) skewX(-15deg);
transform: translateX(0%) skewX(-15deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
}
@keyframes lightSpeedIn {
0% {
-webkit-transform: translateX(100%) skewX(-30deg);
-ms-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: translateX(-20%) skewX(30deg);
-ms-transform: translateX(-20%) skewX(30deg);
transform: translateX(-20%) skewX(30deg);
opacity: 1;
}
80% {
-webkit-transform: translateX(0%) skewX(-15deg);
-ms-transform: translateX(0%) skewX(-15deg);
transform: translateX(0%) skewX(-15deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(0%) skewX(0deg);
-ms-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
0% {
-webkit-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
0% {
-webkit-transform: translateX(0%) skewX(0deg);
-ms-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(100%) skewX(-30deg);
-ms-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
0% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(-200deg);
transform: rotate(-200deg);
opacity: 0;
}
100% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateIn {
0% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(-200deg);
-ms-transform: rotate(-200deg);
transform: rotate(-200deg);
opacity: 0;
}
100% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
0% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(200deg);
transform: rotate(200deg);
opacity: 0;
}
}
@keyframes rotateOut {
0% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(200deg);
-ms-transform: rotate(200deg);
transform: rotate(200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes slideInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes slideInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
@keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
}
@keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
@keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate(80deg);
transform: rotate(80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40% {
-webkit-transform: rotate(60deg);
transform: rotate(60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
80% {
-webkit-transform: rotate(60deg) translateY(0);
transform: rotate(60deg) translateY(0);
opacity: 1;
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
100% {
-webkit-transform: translateY(700px);
transform: translateY(700px);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate(80deg);
-ms-transform: rotate(80deg);
transform: rotate(80deg);
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40% {
-webkit-transform: rotate(60deg);
-ms-transform: rotate(60deg);
transform: rotate(60deg);
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
80% {
-webkit-transform: rotate(60deg) translateY(0);
-ms-transform: rotate(60deg) translateY(0);
transform: rotate(60deg) translateY(0);
opacity: 1;
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
100% {
-webkit-transform: translateY(700px);
-ms-transform: translateY(700px);
transform: translateY(700px);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translateX(-100%) rotate(-120deg);
transform: translateX(-100%) rotate(-120deg);
}
100% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg);
}
}
@keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translateX(-100%) rotate(-120deg);
-ms-transform: translateX(-100%) rotate(-120deg);
transform: translateX(-100%) rotate(-120deg);
}
100% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
-ms-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg);
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
0% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg);
}
100% {
opacity: 0;
-webkit-transform: translateX(100%) rotate(120deg);
transform: translateX(100%) rotate(120deg);
}
}
@keyframes rollOut {
0% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
-ms-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg);
}
100% {
opacity: 0;
-webkit-transform: translateX(100%) rotate(120deg);
-ms-transform: translateX(100%) rotate(120deg);
transform: translateX(100%) rotate(120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes scaleDisappear {
0% {
opacity: 1;
-webkit-transform: scale(1);
}
60% {
opacity: 0;
-webkit-transform: scale(1.3);
}
100% {
opacity: 1;
-webkit-transform: scale(1);
}
}
@-moz-keyframes scaleDisappear {
0% {
opacity: 1;
-moz-transform: scale(1);
}
60% {
opacity: 0;
-moz-transform: scale(1.3);
}
100% {
opacity: 1;
-moz-transform: scale(1);
}
}
@-ms-keyframes scaleDisappear {
0% {
opacity: 1;
-ms-transform: scale(1);
}
60% {
opacity: 0;
-ms-transform: scale(1.3);
}
100% {
opacity: 1;
-ms-transform: scale(1);
}
}
@-o-keyframes scaleDisappear {
0% {
opacity: 1;
-o-transform: scale(1);
}
60% {
opacity: 0;
-o-transform: scale(1.3);
}
100% {
opacity: 1;
-o-transform: scale(1);
}
}
@keyframes scaleDisappear {
0% {
opacity: 1;
transform: scale(1);
}
60% {
opacity: 0;
transform: scale(1.3);
}
100% {
opacity: 1;
transform: scale(1);
}
}
.scaleDisappear {
-webkit-animation: scaleDisappear 350ms ease-in-out;
-moz-animation: scaleDisappear 350ms ease-in-out;
-ms-animation: scaleDisappear 350ms ease-in-out;
-o-animation: scaleDisappear 350ms ease-in-out;
animation: scaleDisappear 350ms ease-in-out;
}.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(//bomali.eu/wp-content/themes/acumec/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%}.mfp-bg {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1042;
overflow: hidden;
position: fixed;
background: #0b0b0b;
opacity: 0.8;
filter: alpha(opacity=80); }
.mfp-wrap {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1043;
position: fixed;
outline: none !important;
-webkit-backface-visibility: hidden; }
.mfp-container {
text-align: center;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
padding: 0 8px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
.mfp-container:before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle; }
.mfp-align-top .mfp-container:before {
display: none; }
.mfp-content {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0 auto;
text-align: left;
z-index: 1045; }
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
width: 100%;
cursor: auto; }
.mfp-ajax-cur {
cursor: progress; }
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
cursor: -moz-zoom-out;
cursor: -webkit-zoom-out;
cursor: zoom-out; }
.mfp-zoom {
cursor: pointer;
cursor: -webkit-zoom-in;
cursor: -moz-zoom-in;
cursor: zoom-in; }
.mfp-auto-cursor .mfp-content {
cursor: auto; }
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none; }
.mfp-loading.mfp-figure {
display: none; }
.mfp-hide {
display: none !important; }
.mfp-preloader {
color: #CCC;
position: absolute;
top: 50%;
width: auto;
text-align: center;
margin-top: -0.8em;
left: 8px;
right: 8px;
z-index: 1044; }
.mfp-preloader a {
color: #CCC; }
.mfp-preloader a:hover {
color: #FFF; }
.mfp-s-ready .mfp-preloader {
display: none; }
.mfp-s-error .mfp-content {
display: none; }
button.mfp-close,
button.mfp-arrow {
overflow: visible;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none;
display: block;
outline: none;
padding: 0;
z-index: 1046;
-webkit-box-shadow: none;
box-shadow: none; }
button::-moz-focus-inner {
padding: 0;
border: 0; }
.mfp-close {
width: 44px;
height: 44px;
line-height: 44px;
position: absolute;
right: 0;
top: 0;
text-decoration: none;
text-align: center;
opacity: 0.65;
filter: alpha(opacity=65);
padding: 0 0 18px 10px;
color: #FFF;
font-style: normal;
font-size: 28px;
font-family: Arial, Baskerville, monospace; }
.mfp-close:hover,
.mfp-close:focus {
opacity: 1;
filter: alpha(opacity=100); }
.mfp-close:active {
top: 1px; }
.mfp-close-btn-in .mfp-close {
color: #333; }
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
color: #FFF;
right: -6px;
text-align: right;
padding-right: 6px;
width: 100%; }
.mfp-counter {
position: absolute;
top: 0;
right: 0;
color: #CCC;
font-size: 12px;
line-height: 18px;
white-space: nowrap; }
.mfp-arrow {
position: absolute;
opacity: 0.65;
filter: alpha(opacity=65);
margin: 0;
top: 50%;
margin-top: -55px;
padding: 0;
width: 90px;
height: 110px;
-webkit-tap-highlight-color: transparent; }
.mfp-arrow:active {
margin-top: -54px; }
.mfp-arrow:hover,
.mfp-arrow:focus {
opacity: 1;
filter: alpha(opacity=100); }
.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
content: '';
display: block;
width: 0;
height: 0;
position: absolute;
left: 0;
top: 0;
margin-top: 35px;
margin-left: 35px;
border: medium inset transparent; }
.mfp-arrow:after,
.mfp-arrow .mfp-a {
border-top-width: 13px;
border-bottom-width: 13px;
top: 8px; }
.mfp-arrow:before,
.mfp-arrow .mfp-b {
border-top-width: 21px;
border-bottom-width: 21px;
opacity: 0.7; }
.mfp-arrow-left {
left: 0; }
.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
border-right: 17px solid #FFF;
margin-left: 31px; }
.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
margin-left: 25px;
border-right: 27px solid #3F3F3F; }
.mfp-arrow-right {
right: 0; }
.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
border-left: 17px solid #FFF;
margin-left: 39px; }
.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
border-left: 27px solid #3F3F3F; }
.mfp-iframe-holder {
padding-top: 40px;
padding-bottom: 40px; }
.mfp-iframe-holder .mfp-content {
line-height: 0;
width: 100%;
max-width: 900px; }
.mfp-iframe-holder .mfp-close {
top: -40px; }
.mfp-iframe-scaler {
width: 100%;
height: 0;
overflow: hidden;
padding-top: 56.25%; }
.mfp-iframe-scaler iframe {
position: absolute;
display: block;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
background: #000; } img.mfp-img {
width: auto;
max-width: 100%;
height: auto;
display: block;
line-height: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 40px 0 40px;
margin: 0 auto; } .mfp-figure {
line-height: 0; }
.mfp-figure:after {
content: '';
position: absolute;
left: 0;
top: 40px;
bottom: 40px;
display: block;
right: 0;
width: auto;
height: auto;
z-index: -1;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
background: #444; }
.mfp-figure small {
color: #BDBDBD;
display: block;
font-size: 12px;
line-height: 14px; }
.mfp-figure figure {
margin: 0; }
.mfp-bottom-bar {
margin-top: -36px;
position: absolute;
top: 100%;
left: 0;
width: 100%;
cursor: auto; }
.mfp-title {
text-align: left;
line-height: 18px;
color: #F3F3F3;
word-wrap: break-word;
padding-right: 36px; }
.mfp-image-holder .mfp-content {
max-width: 100%; }
.mfp-gallery .mfp-image-holder .mfp-figure {
cursor: pointer; }
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) { .mfp-img-mobile .mfp-image-holder {
padding-left: 0;
padding-right: 0; }
.mfp-img-mobile img.mfp-img {
padding: 0; }
.mfp-img-mobile .mfp-figure:after {
top: 0;
bottom: 0; }
.mfp-img-mobile .mfp-figure small {
display: inline;
margin-left: 5px; }
.mfp-img-mobile .mfp-bottom-bar {
background: rgba(0, 0, 0, 0.6);
bottom: 0;
margin: 0;
top: auto;
padding: 3px 5px;
position: fixed;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
.mfp-img-mobile .mfp-bottom-bar:empty {
padding: 0; }
.mfp-img-mobile .mfp-counter {
right: 5px;
top: 3px; }
.mfp-img-mobile .mfp-close {
top: 0;
right: 0;
width: 35px;
height: 35px;
line-height: 35px;
background: rgba(0, 0, 0, 0.6);
position: fixed;
text-align: center;
padding: 0; } }
@media all and (max-width: 900px) {
.mfp-arrow {
-webkit-transform: scale(0.75);
transform: scale(0.75); }
.mfp-arrow-left {
-webkit-transform-origin: 0;
transform-origin: 0; }
.mfp-arrow-right {
-webkit-transform-origin: 100%;
transform-origin: 100%; }
.mfp-container {
padding-left: 6px;
padding-right: 6px; } }
.mfp-ie7 .mfp-img {
padding: 0; }
.mfp-ie7 .mfp-bottom-bar {
width: 600px;
left: 50%;
margin-left: -300px;
margin-top: 5px;
padding-bottom: 5px; }
.mfp-ie7 .mfp-container {
padding: 0; }
.mfp-ie7 .mfp-content {
padding-top: 44px; }
.mfp-ie7 .mfp-close {
top: 0;
right: 0;
padding-top: 0; }@font-face {
font-family: 'Pe-icon-7-stroke';
src:url(//bomali.eu/wp-content/themes/acumec/assets/fonts/Pe-icon-7-stroke.eot?d7yf1v);
src:url(//bomali.eu/wp-content/themes/acumec/assets/fonts/Pe-icon-7-stroke.eot?#iefixd7yf1v) format('embedded-opentype'),
url(//bomali.eu/wp-content/themes/acumec/assets/fonts/Pe-icon-7-stroke.woff?d7yf1v) format('woff'),
url(//bomali.eu/wp-content/themes/acumec/assets/fonts/Pe-icon-7-stroke.ttf?d7yf1v) format('truetype'),
url(//bomali.eu/wp-content/themes/acumec/assets/fonts/Pe-icon-7-stroke.svg?d7yf1v#Pe-icon-7-stroke) format('svg');
font-weight: normal;
font-style: normal;
}
[class^="pe-7s-"], [class*=" pe-7s-"] {
display: inline-block;
font-family: 'Pe-icon-7-stroke';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.pe-7s-album:before {
content: "\e6aa";
}
.pe-7s-arc:before {
content: "\e6ab";
}
.pe-7s-back-2:before {
content: "\e6ac";
}
.pe-7s-bandaid:before {
content: "\e6ad";
}
.pe-7s-car:before {
content: "\e6ae";
}
.pe-7s-diamond:before {
content: "\e6af";
}
.pe-7s-door-lock:before {
content: "\e6b0";
}
.pe-7s-eyedropper:before {
content: "\e6b1";
}
.pe-7s-female:before {
content: "\e6b2";
}
.pe-7s-gym:before {
content: "\e6b3";
}
.pe-7s-hammer:before {
content: "\e6b4";
}
.pe-7s-headphones:before {
content: "\e6b5";
}
.pe-7s-helm:before {
content: "\e6b6";
}
.pe-7s-hourglass:before {
content: "\e6b7";
}
.pe-7s-leaf:before {
content: "\e6b8";
}
.pe-7s-magic-wand:before {
content: "\e6b9";
}
.pe-7s-male:before {
content: "\e6ba";
}
.pe-7s-map-2:before {
content: "\e6bb";
}
.pe-7s-next-2:before {
content: "\e6bc";
}
.pe-7s-paint-bucket:before {
content: "\e6bd";
}
.pe-7s-pendrive:before {
content: "\e6be";
}
.pe-7s-photo:before {
content: "\e6bf";
}
.pe-7s-piggy:before {
content: "\e6c0";
}
.pe-7s-plugin:before {
content: "\e6c1";
}
.pe-7s-refresh-2:before {
content: "\e6c2";
}
.pe-7s-rocket:before {
content: "\e6c3";
}
.pe-7s-settings:before {
content: "\e6c4";
}
.pe-7s-shield:before {
content: "\e6c5";
}
.pe-7s-smile:before {
content: "\e6c6";
}
.pe-7s-usb:before {
content: "\e6c7";
}
.pe-7s-vector:before {
content: "\e6c8";
}
.pe-7s-wine:before {
content: "\e6c9";
}
.pe-7s-cloud-upload:before {
content: "\e68a";
}
.pe-7s-cash:before {
content: "\e68c";
}
.pe-7s-close:before {
content: "\e680";
}
.pe-7s-bluetooth:before {
content: "\e68d";
}
.pe-7s-cloud-download:before {
content: "\e68b";
}
.pe-7s-way:before {
content: "\e68e";
}
.pe-7s-close-circle:before {
content: "\e681";
}
.pe-7s-id:before {
content: "\e68f";
}
.pe-7s-angle-up:before {
content: "\e682";
}
.pe-7s-wristwatch:before {
content: "\e690";
}
.pe-7s-angle-up-circle:before {
content: "\e683";
}
.pe-7s-world:before {
content: "\e691";
}
.pe-7s-angle-right:before {
content: "\e684";
}
.pe-7s-volume:before {
content: "\e692";
}
.pe-7s-angle-right-circle:before {
content: "\e685";
}
.pe-7s-users:before {
content: "\e693";
}
.pe-7s-angle-left:before {
content: "\e686";
}
.pe-7s-user-female:before {
content: "\e694";
}
.pe-7s-angle-left-circle:before {
content: "\e687";
}
.pe-7s-up-arrow:before {
content: "\e695";
}
.pe-7s-angle-down:before {
content: "\e688";
}
.pe-7s-switch:before {
content: "\e696";
}
.pe-7s-angle-down-circle:before {
content: "\e689";
}
.pe-7s-scissors:before {
content: "\e697";
}
.pe-7s-wallet:before {
content: "\e600";
}
.pe-7s-safe:before {
content: "\e698";
}
.pe-7s-volume2:before {
content: "\e601";
}
.pe-7s-volume1:before {
content: "\e602";
}
.pe-7s-voicemail:before {
content: "\e603";
}
.pe-7s-video:before {
content: "\e604";
}
.pe-7s-user:before {
content: "\e605";
}
.pe-7s-upload:before {
content: "\e606";
}
.pe-7s-unlock:before {
content: "\e607";
}
.pe-7s-umbrella:before {
content: "\e608";
}
.pe-7s-trash:before {
content: "\e609";
}
.pe-7s-tools:before {
content: "\e60a";
}
.pe-7s-timer:before {
content: "\e60b";
}
.pe-7s-ticket:before {
content: "\e60c";
}
.pe-7s-target:before {
content: "\e60d";
}
.pe-7s-sun:before {
content: "\e60e";
}
.pe-7s-study:before {
content: "\e60f";
}
.pe-7s-stopwatch:before {
content: "\e610";
}
.pe-7s-star:before {
content: "\e611";
}
.pe-7s-speaker:before {
content: "\e612";
}
.pe-7s-signal:before {
content: "\e613";
}
.pe-7s-shuffle:before {
content: "\e614";
}
.pe-7s-shopbag:before {
content: "\e615";
}
.pe-7s-share:before {
content: "\e616";
}
.pe-7s-server:before {
content: "\e617";
}
.pe-7s-search:before {
content: "\e618";
}
.pe-7s-film:before {
content: "\e6a5";
}
.pe-7s-science:before {
content: "\e619";
}
.pe-7s-disk:before {
content: "\e6a6";
}
.pe-7s-ribbon:before {
content: "\e61a";
}
.pe-7s-repeat:before {
content: "\e61b";
}
.pe-7s-refresh:before {
content: "\e61c";
}
.pe-7s-add-user:before {
content: "\e6a9";
}
.pe-7s-refresh-cloud:before {
content: "\e61d";
}
.pe-7s-paperclip:before {
content: "\e69c";
}
.pe-7s-radio:before {
content: "\e61e";
}
.pe-7s-note2:before {
content: "\e69d";
}
.pe-7s-print:before {
content: "\e61f";
}
.pe-7s-network:before {
content: "\e69e";
}
.pe-7s-prev:before {
content: "\e620";
}
.pe-7s-mute:before {
content: "\e69f";
}
.pe-7s-power:before {
content: "\e621";
}
.pe-7s-medal:before {
content: "\e6a0";
}
.pe-7s-portfolio:before {
content: "\e622";
}
.pe-7s-like2:before {
content: "\e6a1";
}
.pe-7s-plus:before {
content: "\e623";
}
.pe-7s-left-arrow:before {
content: "\e6a2";
}
.pe-7s-play:before {
content: "\e624";
}
.pe-7s-key:before {
content: "\e6a3";
}
.pe-7s-plane:before {
content: "\e625";
}
.pe-7s-joy:before {
content: "\e6a4";
}
.pe-7s-photo-gallery:before {
content: "\e626";
}
.pe-7s-pin:before {
content: "\e69b";
}
.pe-7s-phone:before {
content: "\e627";
}
.pe-7s-plug:before {
content: "\e69a";
}
.pe-7s-pen:before {
content: "\e628";
}
.pe-7s-right-arrow:before {
content: "\e699";
}
.pe-7s-paper-plane:before {
content: "\e629";
}
.pe-7s-delete-user:before {
content: "\e6a7";
}
.pe-7s-paint:before {
content: "\e62a";
}
.pe-7s-bottom-arrow:before {
content: "\e6a8";
}
.pe-7s-notebook:before {
content: "\e62b";
}
.pe-7s-note:before {
content: "\e62c";
}
.pe-7s-next:before {
content: "\e62d";
}
.pe-7s-news-paper:before {
content: "\e62e";
}
.pe-7s-musiclist:before {
content: "\e62f";
}
.pe-7s-music:before {
content: "\e630";
}
.pe-7s-mouse:before {
content: "\e631";
}
.pe-7s-more:before {
content: "\e632";
}
.pe-7s-moon:before {
content: "\e633";
}
.pe-7s-monitor:before {
content: "\e634";
}
.pe-7s-micro:before {
content: "\e635";
}
.pe-7s-menu:before {
content: "\e636";
}
.pe-7s-map:before {
content: "\e637";
}
.pe-7s-map-marker:before {
content: "\e638";
}
.pe-7s-mail:before {
content: "\e639";
}
.pe-7s-mail-open:before {
content: "\e63a";
}
.pe-7s-mail-open-file:before {
content: "\e63b";
}
.pe-7s-magnet:before {
content: "\e63c";
}
.pe-7s-loop:before {
content: "\e63d";
}
.pe-7s-look:before {
content: "\e63e";
}
.pe-7s-lock:before {
content: "\e63f";
}
.pe-7s-lintern:before {
content: "\e640";
}
.pe-7s-link:before {
content: "\e641";
}
.pe-7s-like:before {
content: "\e642";
}
.pe-7s-light:before {
content: "\e643";
}
.pe-7s-less:before {
content: "\e644";
}
.pe-7s-keypad:before {
content: "\e645";
}
.pe-7s-junk:before {
content: "\e646";
}
.pe-7s-info:before {
content: "\e647";
}
.pe-7s-home:before {
content: "\e648";
}
.pe-7s-help2:before {
content: "\e649";
}
.pe-7s-help1:before {
content: "\e64a";
}
.pe-7s-graph3:before {
content: "\e64b";
}
.pe-7s-graph2:before {
content: "\e64c";
}
.pe-7s-graph1:before {
content: "\e64d";
}
.pe-7s-graph:before {
content: "\e64e";
}
.pe-7s-global:before {
content: "\e64f";
}
.pe-7s-gleam:before {
content: "\e650";
}
.pe-7s-glasses:before {
content: "\e651";
}
.pe-7s-gift:before {
content: "\e652";
}
.pe-7s-folder:before {
content: "\e653";
}
.pe-7s-flag:before {
content: "\e654";
}
.pe-7s-filter:before {
content: "\e655";
}
.pe-7s-file:before {
content: "\e656";
}
.pe-7s-expand1:before {
content: "\e657";
}
.pe-7s-exapnd2:before {
content: "\e658";
}
.pe-7s-edit:before {
content: "\e659";
}
.pe-7s-drop:before {
content: "\e65a";
}
.pe-7s-drawer:before {
content: "\e65b";
}
.pe-7s-download:before {
content: "\e65c";
}
.pe-7s-display2:before {
content: "\e65d";
}
.pe-7s-display1:before {
content: "\e65e";
}
.pe-7s-diskette:before {
content: "\e65f";
}
.pe-7s-date:before {
content: "\e660";
}
.pe-7s-cup:before {
content: "\e661";
}
.pe-7s-culture:before {
content: "\e662";
}
.pe-7s-crop:before {
content: "\e663";
}
.pe-7s-credit:before {
content: "\e664";
}
.pe-7s-copy-file:before {
content: "\e665";
}
.pe-7s-config:before {
content: "\e666";
}
.pe-7s-compass:before {
content: "\e667";
}
.pe-7s-comment:before {
content: "\e668";
}
.pe-7s-coffee:before {
content: "\e669";
}
.pe-7s-cloud:before {
content: "\e66a";
}
.pe-7s-clock:before {
content: "\e66b";
}
.pe-7s-check:before {
content: "\e66c";
}
.pe-7s-chat:before {
content: "\e66d";
}
.pe-7s-cart:before {
content: "\e66e";
}
.pe-7s-camera:before {
content: "\e66f";
}
.pe-7s-call:before {
content: "\e670";
}
.pe-7s-calculator:before {
content: "\e671";
}
.pe-7s-browser:before {
content: "\e672";
}
.pe-7s-box2:before {
content: "\e673";
}
.pe-7s-box1:before {
content: "\e674";
}
.pe-7s-bookmarks:before {
content: "\e675";
}
.pe-7s-bicycle:before {
content: "\e676";
}
.pe-7s-bell:before {
content: "\e677";
}
.pe-7s-battery:before {
content: "\e678";
}
.pe-7s-ball:before {
content: "\e679";
}
.pe-7s-back:before {
content: "\e67a";
}
.pe-7s-attention:before {
content: "\e67b";
}
.pe-7s-anchor:before {
content: "\e67c";
}
.pe-7s-albums:before {
content: "\e67d";
}
.pe-7s-alarm:before {
content: "\e67e";
}
.pe-7s-airplay:before {
content: "\e67f";
}@font-face {
font-family: "food-font-2";
src:url(//bomali.eu/wp-content/themes/acumec/assets/fonts/food-font-2.eot);
src:url(//bomali.eu/wp-content/themes/acumec/assets/fonts/food-font-2.eot?#iefix) format("embedded-opentype"),
url(//bomali.eu/wp-content/themes/acumec/assets/fonts/food-font-2.woff) format("woff"),
url(//bomali.eu/wp-content/themes/acumec/assets/fonts/food-font-2.ttf) format("truetype"),
url(//bomali.eu/wp-content/themes/acumec/assets/fonts/food-font-2.svg#food-font-2) format("svg");
font-weight: normal;
font-style: normal;
}
[class^="icon-food2-"]:before,
[class*=" icon-food2-"]:before {
font-family: "food-font-2" !important;
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-food2-food:before {
content: "a";
}
.icon-food2-music:before {
content: "b";
}
.icon-food2-crown-king-streamline:before {
content: "c";
}
.icon-food2-cocktail-mojito-streamline:before {
content: "d";
}
.icon-food2-eat-food-fork-knife-streamline:before {
content: "e";
}
.icon-food2-chef-food-restaurant-streamline:before {
content: "f";
}
.icon-food2-fire:before {
content: "g";
}
.icon-food2-bag-1:before {
content: "i";
}
.icon-food2-japan-streamline-tea:before {
content: "h";
}@font-face {
font-family: "Flaticon";
src: url(//bomali.eu/wp-content/themes/acumec/assets/fonts/Flaticon.eot);
src: url(//bomali.eu/wp-content/themes/acumec/assets/fonts/Flaticon.eot?#iefix) format("embedded-opentype"),
url(//bomali.eu/wp-content/themes/acumec/assets/fonts/Flaticon.woff) format("woff"),
url(//bomali.eu/wp-content/themes/acumec/assets/fonts/Flaticon.ttf) format("truetype"),
url(//bomali.eu/wp-content/themes/acumec/assets/fonts/Flaticon.svg#Flaticon) format("svg");
font-weight: normal;
font-style: normal;
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
font-family: Flaticon;
font-style: normal;
}
.flaticon-file:before { content: "\f100"; }
.flaticon-medal:before { content: "\f101"; }
.flaticon-ribbon:before { content: "\f102"; }
.flaticon-broken-link:before { content: "\f103"; }
.flaticon-man:before { content: "\f104"; }
.flaticon-handshake:before { content: "\f105"; }
.flaticon-idea-1:before { content: "\f106"; }
.flaticon-idea:before { content: "\f107"; }
.flaticon-strategy:before { content: "\f108"; }
.flaticon-support-1:before { content: "\f109"; }
.flaticon-pie-chart:before { content: "\f10a"; }
.flaticon-arrow-down-and-right:before { content: "\f10b"; }
.flaticon-support-2:before { content: "\f10c"; }
.flaticon-support:before { content: "\f10d"; }.sticky-desktop.header-fixed {
position: fixed !important;
top: 0;
z-index: 999;
width: 100%; }
.admin-bar .sticky-desktop.header-fixed {
top: 32px; }
@keyframes spin {
100% {
transform: rotate(360deg); } }
article, aside, footer, header, nav, section {
display: block; }
figcaption, figure, main {
display: block; }
figure {
margin: 1em 0; }
hr {
border: none;
height: 1px;
background-color: #ddd; }
pre {
font-size: 1em; }
a {
background-color: transparent;
-webkit-text-decoration-skip: objects; }
a:active, a:hover {
outline-width: 0; }
abbr[title] {
border-bottom: 1px #767676 dotted;
text-decoration: none; }
code, kbd, samp {
padding: 2px 4px;
border-radius: 4px;
background-color: #f9f2f4;
font-size: 12px;
color: #d05;
white-space: nowrap; }
ins {
text-decoration: none;
color: #82d10c;
padding: 0 5px;
background: #f1c40f;
border-radius: 4px; }
mark {
color: #fff;
background: #dd5b4e;
padding: 0 5px;
font-weight: 600;
border-radius: 4px; }
dfn {
font-style: italic; }
mark {
background-color: #eee;
color: #222; }
small {
font-size: 80%; }
sub, sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline; }
sub {
bottom: -0.25em; }
sup {
top: -0.5em; }
audio, video {
display: inline-block; }
audio:not([controls]) {
display: none;
height: 0; }
img {
border-style: none; }
svg:not(:root) {
overflow: hidden; }
button, input {
overflow: visible; }
button, select {
text-transform: none; }
button, html [type="button"], [type="reset"], [type="submit"] {
-webkit-appearance: button; }
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0; }
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText; }
fieldset {
border: 1px solid #bbb;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em; }
legend {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
color: inherit;
display: table;
max-width: 100%;
padding: 0;
white-space: normal; }
progress {
display: inline-block;
vertical-align: baseline; }
textarea {
overflow: auto; }
[type="checkbox"], [type="radio"] {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0; }
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
height: auto; }
[type="search"] {
-webkit-appearance: textfield;
outline-offset: -2px; }
[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
-webkit-appearance: none; }
::-webkit-file-upload-button {
-webkit-appearance: button;
font: inherit; }
details, menu {
display: block; }
summary {
display: list-item; }
canvas {
display: inline-block; }
template {
display: none; }
[hidden] {
display: none; }
table {
width: 100%; }
td {
border-top: 1px solid #ededed;
padding: 6px 10px 6px 0; }
td, th {
display: table-cell;
vertical-align: inherit;
text-align: left; }
dd {
margin: 0 0 20px; }
table {
width: 100%;
max-width: 100%;
margin: 10px 0; }
table td, table th {
padding: 13px 8px;
line-height: 1.42857;
vertical-align: top;
border: 1px solid #dadada; }
table th {
color: #323232;
font-weight: normal; }
.table_template thead {
background-color: #01b2b7;
color: #323232; }
.table_template thead.light {
background-color: #fff; }
.table_template th {
font-weight: 600; }
.table_template td, .table_template th {
padding: 18px 30px; }
.table_template tbody tr:nth-of-type(odd) {
background-color: rgba(238, 238, 238, 0.1); }
.table_template tbody tr:nth-of-type(even) {
background-color: rgba(17, 17, 17, 0.05); }
.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
padding: 13px 8px;
border-color: #dadada; }
.table {
border-top: 1px solid #dadada;
border-bottom: 1px solid #dadada; }
.table td + th, .table th + td, .table th + th, .table td + td {
border-left: 1px solid #dadada; }
.table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
border-bottom-width: 1px; }
.table > tbody > tr > td.media-middle {
vertical-align: middle; }
.table-responsive {
border: none; }
.first {
clear: both; }
.last {
margin-right: 0; }
img, figure {
max-width: 100%;
height: auto; }
img.bottom-align {
vertical-align: bottom; }
figcaption, .entry-caption {
padding: 2px 0 12px; }
figcaption p, .entry-caption p {
margin-bottom: 0; }
.screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
height: 1px;
overflow: hidden;
position: absolute !important;
width: 1px;
word-wrap: normal !important; }
.screen-reader-text:focus {
background-color: #f1f1f1;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
clip: auto !important;
color: #21759b;
display: block;
font-size: 14px;
font-size: 0.875rem;
font-weight: 600;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000; }
.wp-caption-text {
font-style: italic;
line-height: 1.35;
font-size: 13px; }
.gallery-caption {
font-family: inherit; }
.alignleft {
float: left;
display: table-cell;
margin: 5px 30px 10px 0; }
.alignright {
float: right;
display: table-cell;
margin: 5px 0 10px 30px; }
.aligncenter {
display: block;
clear: both;
margin: 0 auto;
margin-bottom: 15px; }
.alignleft.one-third, .alignright.one-third {
max-width: 33.33333%; }
.clear:before, .clear:after, .entry-content:before, .entry-content:after, .entry-footer:before, .entry-footer:after, .comment-content:before, .comment-content:after, .site-header:before, .site-header:after, .site-content:before, .site-content:after, .site-footer:before, .site-footer:after, .nav-links:before, .nav-links:after, .pagination:before, .pagination:after, .comment-author:before, .comment-author:after, .widget-area:before, .widget-area:after, .widget:before, .widget:after, .comment-meta:before, .comment-meta:after {
content: "";
display: block;
clear: both; }
.clear:after, .entry-content:after, .entry-footer:after, .comment-content:after, .site-header:after, .site-content:after, .site-footer:after, .nav-links:after, .pagination:after, .comment-author:after, .widget-area:after, .widget:after, .comment-meta:after {
clear: both; }
.btn, button, input[type="button"], input[type="submit"] {
display: inline-block;
padding: 12px 34px;
vertical-align: middle;
position: relative;
z-index: 1;
font-size: 12px;
font-weight: 700;
border-radius: 3px;
overflow: hidden;
text-transform: uppercase;
font-family: "Open sans"; }
.btn-theme-primary {
color: #fff;
background: #82d10c;
border-width: 1px;
border-style: solid;
border-color: transparent;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.btn-theme-primary:hover, .btn-theme-primary:focus {
background: #0c0d12;
border-color: transparent;
color: #fff;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.btn-theme-default {
color: #fff;
border: 1px solid #0c0d12;
background: #0c0d12;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.btn-theme-default:before {
content: "";
position: absolute;
background: #82d10c;
height: 100%;
width: 1%;
right: 0;
top: 0;
z-index: -1;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s;
opacity: 0; }
.btn-theme-default:hover:before, .btn-theme-default:focus:before {
opacity: 1;
width: 100%;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.btn-theme-default:hover, .btn-theme-default:focus {
border: 1px solid #82d10c;
color: #fff; }
button.btn-theme-default:hover, input[type="button"].btn-theme-default:hover, input[type="submit"].btn-theme-default:hover, button.btn-theme-default:focus, input[type="button"].btn-theme-default:focus, input[type="submit"].btn-theme-default:focus {
background-color: #82d10c; }
.btn-round {
border-radius: 2em; }
.cms-load-posts {
margin-top: 60px; }
.btn-loadmore {
display: inline-block;
color: #fff;
background: #82d10c;
border: 1px solid transparent;
border-radius: 3em;
padding: 17px 57px;
font-size: 12px;
font-weight: 700;
line-height: 1.3;
font-family: 'Open Sans', sans-serif;
text-transform: uppercase;
box-shadow: none;
text-shadow: none;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out; }
.btn-loadmore:hover, .btn-loadmore:active, .btn-loadmore:focus, .btn-loadmore:active:hover {
background: #0c0d12;
border: 1px solid transparent;
color: #fff;
box-shadow: none;
text-shadow: none; }
.btn-icon-right i.btn-icon {
padding-left: 8px;
padding-bottom: 3px; }
.btn-icon-left i.btn-icon {
padding-right: 8px;
padding-bottom: 3px; }
.border-button-round {
border-radius: 3px;
border-color: #323232; }
.btn-mn {
padding: 6px 20px;
font-size: 12px;
text-transform: capitalize; }
.btn-sm {
padding: 8px 25px;
font-size: 14px;
text-transform: capitalize; }
.btn-md {
padding: 17px 43px; }
.btn-lg {
padding: 14px 45px;
font-size: 15px;
text-transform: capitalize; }
.btn-bg {
text-transform: uppercase;
background: transparent;
border: 3px solid; }
.btn-bg.dark {
border-color: #555;
color: #444; }
.btn-bg.light {
border-color: #fff;
color: #fff; }
.btn-bg:hover, .btn-bg:focus {
border-width: 3px; }
.vc_btn3-size-xs {
padding: 6px 18px;
font-size: 12px; }
.vc_btn3-size-sm {
padding: 8px 18px;
font-size: 14px; }
.vc_btn3-size-md {
padding: 10px 18px;
font-size: 14px; }
.vc_btn3-size-lg {
padding: 12px 18px;
font-size: 15px; }
.site-content {
padding: 120px 0; }
@media (max-width: 991px) {
.site-content {
padding: 70px 0; } }
@media (max-width: 767px) {
.site-content {
padding: 50px 0; } }
.site-content h3.entry-title a:hover, .site-content h3.entry-title a:focus {
color: #82d10c; }
.site-content p i {
padding-right: 5px; }
.site-content .item-price .regular-price {
opacity: 0.5; }
.site-content .entry-header .media-status {
padding-bottom: 20px; }
.site-content .entry-header .media-status img {
width: 80px;
border-radius: 50%;
margin-bottom: 0; }
.site-content .case_studies .entry-post-wrap {
padding-bottom: 0; }
.site-content .case_studies .entry-post-wrap .entry-text {
font-size: 15px; }
.site-content .case_studies .entry-post-wrap .entry-text .entry-header {
text-align: left;
margin-bottom: 30px;
padding-bottom: 0;
border: none; }
.site-content .case_studies .entry-post-wrap .entry-text .entry-header .case-subtitle {
font-family: "Open Sans";
font-size: 14px;
font-style: italic;
color: #444;
border-bottom: 1px solid #d8d8d8;
display: inline-block;
margin-bottom: 28px; }
.site-content .case_studies .entry-post-wrap .entry-text .entry-header .archive_detail {
margin-bottom: 0;
padding-bottom: 12px; }
.site-content .case_studies .entry-post-wrap .entry-text .entry-header .archive_detail li {
color: #82d10c; }
.site-content .case_studies .entry-post-wrap .entry-text .entry-header .archive_detail li span {
margin-right: 5px; }
.site-content .case_studies .entry-post-wrap .entry-text .entry-header .archive_detail li a {
margin-left: 2px;
color: inherit; }
.site-content .case_studies .entry-post-wrap .entry-text .entry-header .archive_detail li a:hover, .site-content .case_studies .entry-post-wrap .entry-text .entry-header .archive_detail li a:focus {
color: #050508; }
.site-content ul.case-list li {
margin-bottom: 5px; }
.site-content ul.case-list li:last-child {
margin-bottom: 0; }
.site-content ul.case-list li i {
font-size: 12px;
color: #82d10c;
margin-right: 10px; }
.site-content .quote-meta .quote-content {
font-size: 20px;
color: #fff; }
.site-content .quote-meta .quote-title {
color: #82d10c;
font-weight: 800;
margin-bottom: 0;
padding-top: 0; }
.site-content .quote-meta .quote-subtitle {
color: #82d10c; }
.site-content .portfolio .entry-post-wrap {
border: none;
padding: 0; }
.site-content .portfolio .entry-post-wrap .entry-text {
padding: 0; }
.site-content .portfolio .entry-post-wrap .entry-text .entry-title {
font-size: 32px;
line-height: 38px; }
.site-content .portfolio .entry-post-wrap .entry-post-inner {
padding: 30px;
background: #faf9f9;
display: inline-block; }
.site-content .portfolio .entry-post-wrap .entry-post-inner .portfolio-brand > span, .site-content .portfolio .entry-post-wrap .entry-post-inner .portfolio-client > span, .site-content .portfolio .entry-post-wrap .entry-post-inner .icons-list-right > span {
color: #221f1f;
font-weight: 600;
font-family: 'Open Sans', sans-serif; }
.site-content .portfolio .entry-post-wrap .entry-post-inner .portfolio-brand a, .site-content .portfolio .entry-post-wrap .entry-post-inner .portfolio-client a, .site-content .portfolio .entry-post-wrap .entry-post-inner .icons-list-right a {
color: #909ba3; }
.site-content .portfolio .entry-post-wrap .entry-post-inner .portfolio-brand a:hover, .site-content .portfolio .entry-post-wrap .entry-post-inner .portfolio-client a:hover, .site-content .portfolio .entry-post-wrap .entry-post-inner .icons-list-right a:hover, .site-content .portfolio .entry-post-wrap .entry-post-inner .portfolio-brand a:focus, .site-content .portfolio .entry-post-wrap .entry-post-inner .portfolio-client a:focus, .site-content .portfolio .entry-post-wrap .entry-post-inner .icons-list-right a:focus {
color: #82d10c; }
.site-content .portfolio .entry-post-wrap .entry-post-inner .portfolio-brand > span {
margin-right: 75px; }
.site-content .portfolio .entry-post-wrap .entry-post-inner .portfolio-client > span {
margin-right: 40px; }
.site-content .portfolio .entry-post-wrap .entry-post-inner .portfolio-share .sharing-title {
color: #221f1f;
font-weight: 600;
font-family: 'Open Sans', sans-serif;
margin-right: 40px; }
.site-content .portfolio .entry-post-wrap .entry-post-inner .portfolio-share a {
color: #221f1f; }
.site-content .portfolio .entry-post-wrap .entry-post-inner .portfolio-share a:hover, .site-content .portfolio .entry-post-wrap .entry-post-inner .portfolio-share a:focus {
color: #82d10c; }
.site-content .portfolio .entry-post-wrap .entry-post-inner .icons-list-right > span {
margin-right: 50px; }
.site-content .portfolio .entry-post-wrap .entry-post-inner .icons-list-right a i {
color: #e54748; }
.site-content .portfolio .style-1 {
padding: 0 0 60px 0; }
@media (max-width: 767px) {
.site-content .portfolio .style-1 {
padding: 0 0 20px 0; } }
.site-content .portfolio .style-1 .post-gallery .item {
margin-bottom: 40px; }
.site-content .portfolio .style-1 .btn-portfolio {
margin-top: 60px; }
.site-content .portfolio .style-2 .entry-post-wrap {
padding: 60px 0;
margin-bottom: 0; }
@media (max-width: 767px) {
.site-content .portfolio .style-2 .entry-post-wrap {
margin-top: 20px;
padding: 20px 0; } }
.site-content .portfolio .style-2 .entry-post-wrap .entry-text {
margin: 40px 0; }
.site-content .portfolio .style-2 .entry-post-wrap .entry-text .entry-title {
margin-bottom: 25px; }
.site-content .portfolio .style-2 .entry-post-wrap .entry-text .btn-portfolio {
margin-top: 45px; }
.site-content .portfolio .style-2 .entry-post-wrap .entry-post-inner {
margin: 40px 0; }
.site-content .portfolio .style-3 .item-media .cms-grid-media.has-thumbnail {
margin-top: -100px; }
.site-content .portfolio .style-3 .item-media .cms-grid-media.has-thumbnail img {
width: 100%; }
.site-content .portfolio .style-3 .item-content {
margin-top: 100px;
margin-bottom: 60px;
padding: 0 180px 0 80px; }
@media (max-width: 991px) {
.site-content .portfolio .style-3 .item-content {
padding: 0 30px; } }
@media (max-width: 767px) {
.site-content .portfolio .style-3 .item-content {
padding: 0 15px;
margin-top: 60px;
margin-bottom: 20px; } }
.site-content .portfolio .style-3 .item-content .post-gallery {
margin-bottom: 40px; }
.site-content .portfolio .style-3 .item-content .post-gallery .first-gallery {
margin-bottom: 40px; }
.site-content .portfolio .style-3 .item-content .post-gallery .first-gallery img {
width: 100%; }
.site-content .portfolio .style-3 .item-content .post-gallery .post-gallery-carousel img {
cursor: pointer; }
.site-content .portfolio .style-3 .item-content .post-gallery .post-gallery-carousel .owl-nav .owl-prev, .site-content .portfolio .style-3 .item-content .post-gallery .post-gallery-carousel .owl-nav .owl-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
opacity: 0;
font-size: 0;
height: 40px;
width: 40px;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.site-content .portfolio .style-3 .item-content .post-gallery .post-gallery-carousel .owl-nav .owl-prev:before, .site-content .portfolio .style-3 .item-content .post-gallery .post-gallery-carousel .owl-nav .owl-next:before {
font-family: fontawesome;
font-weight: 600;
font-size: 16px;
line-height: 38px; }
.site-content .portfolio .style-3 .item-content .post-gallery .post-gallery-carousel .owl-nav .owl-prev.disabled, .site-content .portfolio .style-3 .item-content .post-gallery .post-gallery-carousel .owl-nav .owl-next.disabled {
background: #fff;
border-color: #e0dddb;
color: #e0dddb; }
.site-content .portfolio .style-3 .item-content .post-gallery .post-gallery-carousel .owl-nav .owl-prev {
left: 10px; }
.site-content .portfolio .style-3 .item-content .post-gallery .post-gallery-carousel .owl-nav .owl-prev:before {
content: "\f104"; }
.site-content .portfolio .style-3 .item-content .post-gallery .post-gallery-carousel .owl-nav .owl-next {
right: 10px; }
.site-content .portfolio .style-3 .item-content .post-gallery .post-gallery-carousel .owl-nav .owl-next:before {
content: "\f105"; }
.site-content .portfolio .style-3 .item-content .post-gallery .post-gallery-carousel:hover .owl-prev, .site-content .portfolio .style-3 .item-content .post-gallery .post-gallery-carousel:hover .owl-next {
opacity: 1; }
.site-content .portfolio .style-3 .item-content .btn-portfolio {
margin-top: 60px; }
.site-content .search-form {
position: relative; }
.site-content .search-form .form-group {
margin-bottom: 0; }
.site-content .search-form .form-group .form-control {
font-weight: 500;
color: #050508;
background: #fafafa;
padding: 15px 84px 15px 25px;
border-radius: 40px;
font-size: 13px;
height: 56px; }
.site-content .search-form .form-group .form-control::-webkit-input-placeholder {
font-style: italic;
font-size: 12px; }
.site-content .search-form .form-group .form-control:-moz-placeholder {
font-style: italic;
font-size: 12px; }
.site-content .search-form .form-group .form-control::-moz-placeholder {
font-style: italic;
font-size: 12px; }
.site-content .search-form .form-group .form-control:-ms-input-placeholder {
font-style: italic;
font-size: 12px; }
.site-content .search-form .form-group .form-control:focus::-webkit-input-placeholder {
opacity: 0.3; }
.site-content .search-form .form-group .form-control:focus:-moz-placeholder {
opacity: 0.3; }
.site-content .search-form .form-group .form-control:focus::-moz-placeholder {
opacity: 0.3; }
.site-content .search-form .form-group .form-control:focus:-ms-input-placeholder {
opacity: 0.3; }
.site-content .search-form .theme_button {
position: absolute;
top: 0;
right: 0;
height: 100%;
font-size: 14px;
background: transparent;
border: none;
color: #050508; }
.site-content .search-form .theme_button:hover {
color: #82d10c; }
.site-content .entry-footer a i {
padding-left: 0.75em;
padding-bottom: 3px; }
.site-content .tag-sticky-2 .span.post-sticky {
display: none; }
.site-content .sticky .entry-header {
position: relative; }
.site-content .sticky .entry-header span.post-sticky {
background: #82d10c;
color: #fff;
display: inline-block;
top: -10px;
right: -90px;
font-size: 16px;
height: 60px;
left: auto;
pointer-events: none;
position: absolute;
width: 60px;
border-radius: 0;
transform: rotate(-45deg); }
@media (max-width: 767px) {
.site-content .sticky .entry-header span.post-sticky {
right: -70px;
height: 30px;
font-size: 13px; } }
.site-content .sticky .entry-header span.post-sticky span {
transform: rotate(45deg);
position: relative;
top: 6px;
right: -12px; }
@media (max-width: 767px) {
.site-content .sticky .entry-header span.post-sticky span {
top: -4px;
right: -4px; } }
.site-content .sticky .entry-header .entry-title {
padding-right: 45px; }
.site-content img {
max-width: 100%; }
.site-content .menu-gallery.cms-gallerys {
padding-bottom: 20px;
margin: 0 -5px; }
.site-content .menu-gallery.cms-gallerys .menu-gallery-wrap {
float: left;
width: 25%;
padding: 0 5px 10px; }
.site-content .site-main .wpb_wrapper .vc_cta3-actions .vc_btn3 {
margin-top: 20px; }
.site-content .site-main .wpb_wrapper .cms-post-services {
margin-bottom: 50px; }
.site-content .site-main .wpb_wrapper .cms-post-services ul li {
padding: 0; }
.site-content .site-main .wpb_wrapper .cms-post-services ul li:before {
content: none; }
.site-content .site-main .wpb_wrapper .cms-post-services ul li a {
font-size: 14px;
font-weight: 400;
color: #181818;
padding: 15px 25px 15px 15px;
display: block;
background: #f1f1f1;
position: relative; }
.site-content .site-main .wpb_wrapper .cms-post-services ul li a:before {
content: "";
position: absolute;
height: 1px;
width: 100%;
z-index: 1;
background: #dfdfdf;
left: 0;
top: 0; }
.site-content .site-main .wpb_wrapper .cms-post-services ul li a:after {
content: "\f105";
font-family: "fontawesome";
position: absolute;
right: 13px;
opacity: 0;
visibility: hidden;
top: 50%;
transform: translateY(-50%); }
.site-content .site-main .wpb_wrapper .cms-post-services ul li a:hover, .site-content .site-main .wpb_wrapper .cms-post-services ul li a:focus, .site-content .site-main .wpb_wrapper .cms-post-services ul li a.active {
background: #82d10c;
color: #fff; }
.site-content .site-main .wpb_wrapper .cms-post-services ul li a:hover:after, .site-content .site-main .wpb_wrapper .cms-post-services ul li a:focus:after, .site-content .site-main .wpb_wrapper .cms-post-services ul li a.active:after {
opacity: 1;
visibility: visible; }
.site-content .site-main .wpb_wrapper .cms-post-services li:first-child a:before {
content: none; }
.site-content .site-main .wpb_wrapper .cms-download-file {
margin-bottom: 50px;
padding: 0 15px; }
.site-content .site-main .wpb_wrapper .cms-download-file h6 {
margin-bottom: 25px; }
.site-content .site-main .wpb_wrapper .cms-download-file .list-file li {
padding-bottom: 10px;
padding-left: 0; }
.site-content .site-main .wpb_wrapper .cms-download-file .list-file li:before {
content: none; }
.site-content .site-main .wpb_wrapper .cms-download-file .list-file li a {
color: #8a8a8a; }
.site-content .site-main .wpb_wrapper .cms-download-file .list-file li a:hover {
color: #82d10c; }
.site-content .site-main .entry-post-wrap {
position: relative; }
.site-content .site-main .acumec-blog .entry-wrap {
text-align: center;
position: relative; }
.site-content .site-main .acumec-blog .entry-wrap:before {
position: absolute;
content: '';
background-color: #323232;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0.8; }
.site-content .site-main .acumec-blog .entry-wrap .entry-header a {
color: #fff; }
.site-content .site-main .acumec-blog .entry-wrap .entry-header a:hover {
color: #82d10c; }
.site-content .site-main .acumec-blog .entry-wrap.entry-blog {
padding: 1px 10px !important;
margin-top: 0; }
.site-content .site-main .acumec-blog .entry-wrap.entry-blog .entry-header {
margin-bottom: 12px; }
.site-content .site-main .acumec-blog .entry-wrap.entry-blog .entry-inside {
margin-bottom: 12px; }
.site-content .site-main .acumec-blog .entry-wrap.entry-blog .entry-inside .entry-wrap {
padding: 0; }
.site-content .site-main .acumec-blog .entry-wrap.entry-blog .entry-inside .media img {
margin-bottom: 0; }
.site-content .site-main .grid-services {
margin-bottom: 55px; }
.site-content .site-main .grid-services .cms-grid-media.has-thumbnail {
margin-bottom: 25px; }
.site-content .site-main .grid-services .entry-wrap .entry-content {
font-size: 13px; }
.site-content .site-main .grid-services .entry-wrap .entry-footer {
margin-top: 15px; }
.site-content .site-main .acumec-blog .post-video iframe {
max-height: 350px; }
@media (max-width: 479px) {
.site-content .site-main .acumec-blog .post-video iframe {
max-height: 230px; } }
.site-content .site-main .acumec-blog .post-status, .site-content .site-main .acumec-blog .post-link {
margin-top: 0 !important; }
.site-content .site-main .acumec-blog .post-link .entry-wrap {
color: #fff;
padding: 50px 0; }
.site-content .site-main .acumec-blog .post-link .entry-wrap .entry-inside {
position: relative; }
.site-content .site-main .acumec-blog .post-link .entry-wrap .entry-inside .entry-meta ul li {
color: #fff; }
.site-content .site-main .acumec-blog .post-link .entry-wrap .entry-inside .lbl {
color: #fff; }
.site-content .site-main .acumec-blog .post-link .archive-link {
font-size: 16px; }
.site-content .site-main .acumec-blog .post-link .archive-link a {
color: #82d10c; }
.site-content .site-main .acumec-blog .post-link .archive-link a:hover, .site-content .site-main .acumec-blog .post-link .archive-link a:focus {
color: #82d10c; }
.site-content .site-main .acumec-blog .post-link .detail-author {
color: #fff; }
.site-content .site-main .acumec-blog .post-link .detail-author a {
color: inherit; }
.site-content .site-main .acumec-blog .post-link .detail-author a:hover, .site-content .site-main .acumec-blog .post-link .detail-author a:focus {
color: #82d10c; }
.site-content .site-main .acumec-blog .post-link .icon-link {
font-size: 24px;
margin-bottom: 20px;
margin-top: 30px;
color: #fff; }
.site-content .site-main .acumec-blog .post-thumbnail, .site-content .site-main .acumec-blog .cms-grid-media {
overflow: hidden; }
.site-content .site-main .acumec-blog .post-thumbnail img, .site-content .site-main .acumec-blog .cms-grid-media img {
zoom: 1;
filter: alpha(opacity=100);
opacity: 1;
-webkit-transition: all 0.9s ease 0s;
transition: all 0.9s ease 0s; }
.site-content .site-main .acumec-blog .post-thumbnail img:hover, .site-content .site-main .acumec-blog .cms-grid-media img:hover {
zoom: 1;
filter: alpha(opacity=80);
opacity: 0.8;
-webkit-transform: rotate(2deg);
-ms-transform: rotate(2deg);
transform: rotate(2deg);
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1); }
.site-content .site-main .acumec-blog.service .post-thumbnail {
overflow: visible; }
.site-content .site-main .acumec-blog.service .post-thumbnail img {
width: auto; }
.site-content .site-main .entry-post-wrap .post-audio .entry-wrap {
padding: 90px 60px 90px 60px; }
.site-content .site-main .entry-post-wrap .entry-footer1 {
display: table;
width: 100%;
padding: 0 0 20px 0; }
.site-content .site-main .entry-post-wrap .entry-footer1 .entry-share {
text-align: center; }
.site-content .site-main .entry-post-wrap .entry-footer1 .entry-share ul.social-share {
padding-left: 0; }
.site-content .site-main .entry-post-wrap .entry-footer1 .entry-share ul.social-share li {
padding: 0 4px;
margin-bottom: 10px;
display: inline-block; }
.site-content .site-main .entry-post-wrap .entry-footer1 .entry-share ul.social-share li a {
width: 180px;
height: 40px;
line-height: 40px;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
display: inline-block;
color: #fff; }
.site-content .site-main .entry-post-wrap .entry-footer1 .entry-share ul.social-share li a i {
margin-right: 10px;
font-size: 15px; }
.site-content .site-main .entry-post-wrap .entry-footer1 .entry-share ul.social-share li a:hover, .site-content .site-main .entry-post-wrap .entry-footer1 .entry-share ul.social-share li a:focus {
opacity: 0.7; }
.site-content .site-main .entry-post-wrap .post-link .entry-wrap {
padding: 50px 0; }
.site-content .site-main .entry-post-wrap .post-link .entry-wrap .entry-inside {
position: relative;
color: #fff; }
.site-content .site-main .entry-post-wrap .post-link .entry-wrap .entry-inside a {
color: #fff; }
.site-content .site-main .entry-post-wrap .post-link .entry-wrap .entry-inside a:hover, .site-content .site-main .entry-post-wrap .post-link .entry-wrap .entry-inside a:focus {
color: #82d10c; }
.site-content .site-main .entry-post-wrap .entry-wrap {
padding: 50px 30px;
text-align: center;
position: relative;
margin-bottom: 40px; }
.site-content .site-main .entry-post-wrap .entry-wrap.post-link {
padding: 60px; }
.site-content .site-main .entry-post-wrap .entry-wrap:before {
position: absolute;
content: '';
background-color: #323232;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0.8; }
.site-content .site-main .entry-post-wrap .entry-wrap .entry-header {
position: relative; }
.site-content .site-main .entry-post-wrap .entry-wrap .entry-header h4 {
color: #fff; }
.site-content .site-main .acumec-blog-grid .blog-grid-video, .site-content .site-main .acumec-blog-grid .blog-grid-gallery, .site-content .site-main .acumec-blog-grid .blog-grid-quote, .site-content .site-main .acumec-blog-grid .blog-grid-status, .site-content .site-main .acumec-blog-grid .blog-grid-link {
padding: 0 15px 30px; }
.site-content .site-main .acumec-blog-grid .blog-grid-video .post-video iframe, .site-content .site-main .acumec-blog-grid .blog-grid-gallery .post-video iframe, .site-content .site-main .acumec-blog-grid .blog-grid-quote .post-video iframe, .site-content .site-main .acumec-blog-grid .blog-grid-status .post-video iframe, .site-content .site-main .acumec-blog-grid .blog-grid-link .post-video iframe {
max-height: 300px; }
@media (max-width: 479px) {
.site-content .site-main .acumec-blog-grid .blog-grid-video .post-video iframe, .site-content .site-main .acumec-blog-grid .blog-grid-gallery .post-video iframe, .site-content .site-main .acumec-blog-grid .blog-grid-quote .post-video iframe, .site-content .site-main .acumec-blog-grid .blog-grid-status .post-video iframe, .site-content .site-main .acumec-blog-grid .blog-grid-link .post-video iframe {
max-height: 220px; } }
.site-content .site-main .acumec-blog-grid .blog-grid-audio {
padding: 0 15px 30px; }
.site-content .site-main .acumec-blog-grid .blog-grid-audio .entry-wrap {
padding: 90px 45px;
position: relative; }
@media (max-width: 767px) {
.site-content .site-main .acumec-blog-grid .blog-grid-audio .entry-wrap {
padding: 30px 15px; } }
.site-content .site-main .acumec-blog-grid .blog-grid-audio .entry-wrap::before {
position: absolute;
content: '';
background-color: #323232;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0.8; }
.site-content .site-main .acumec-blog-grid .blog-grid-quote .entry-wrap {
padding: 30px 20px 30px 20px;
text-align: center;
position: relative; }
.site-content .site-main .acumec-blog-grid .blog-grid-quote .entry-wrap:before {
position: absolute;
content: '';
background-color: #323232;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0.8; }
.site-content .site-main .acumec-blog-grid .blog-grid-status .entry-wrap, .site-content .site-main .acumec-blog-grid .blog-grid-link .entry-wrap {
text-align: center;
position: relative; }
.site-content .site-main .acumec-blog-grid .blog-grid-status .entry-wrap:before, .site-content .site-main .acumec-blog-grid .blog-grid-link .entry-wrap:before {
position: absolute;
content: '';
background-color: #323232;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0.8; }
.site-content .site-main .acumec-blog-grid .blog-grid-status .entry-wrap .entry-header, .site-content .site-main .acumec-blog-grid .blog-grid-link .entry-wrap .entry-header {
position: relative; }
.site-content .site-main .acumec-blog-grid .blog-grid-status .entry-wrap .entry-header h4, .site-content .site-main .acumec-blog-grid .blog-grid-link .entry-wrap .entry-header h4 {
color: #fff; }
.site-content .site-main .acumec-blog-grid .blog-grid-status .entry-wrap {
padding: 30px; }
.site-content .site-main .acumec-blog-grid .blog-grid-status .entry-wrap .entry-title a:hover, .site-content .site-main .acumec-blog-grid .blog-grid-status .entry-wrap .entry-title a:focus {
color: #82d10c; }
.site-content .site-main .acumec-blog-grid .blog-grid-link .entry-inside {
padding: 80px 20px;
text-align: center;
position: relative; }
.site-content .site-main .acumec-blog-grid .blog-grid-link .entry-inside a {
color: #fff; }
.site-content .site-main .acumec-blog-grid .blog-grid-link .entry-inside a:hover {
color: #82d10c; }
.site-content .site-main .blog-grid-wrap ul.archive_detail {
padding-bottom: 10px;
margin-bottom: 0; }
.site-content .site-main .blog-grid-wrap .blog-content {
padding: 0 15px 20px 15px; }
.site-content .site-main .blog-grid-wrap h4.entry-title {
color: #82d10c;
font-weight: 600; }
.site-content .wpb_single_image .vc_single_image-wrapper.vc_box_shadow {
box-shadow: 0 0 27px rgba(0, 0, 0, 0.05); }
@media (min-width: 1200px) {
.site-content .wpb_single_image .top-overlap {
margin-top: -160px; }
.site-content .wpb_single_image .full-overlap {
margin: -130px 0 -263px; } }
.site-content .detail-date {
padding-left: 0 !important; }
.site-content .detail-date:before {
content: none !important; }
.site-content .owl-dot {
background-color: #050508;
display: inline-block;
-webkit-transition: all 0.15s linear;
transition: all 0.15s linear; }
.site-content .owl-dot:hover, .site-content .owl-dot.active {
background: #82d10c; }
.site-content .owl-next, .site-content .owl-prev {
border: 1px solid transparent;
text-align: center;
display: inline-block;
background: #82d10c;
color: #fff; }
.site-content .owl-next:hover, .site-content .owl-prev:hover {
color: #fff;
background: #0c0d12;
border: 1px solid transparent; }
.site-content .overlay-opacity:before {
content: "";
position: absolute;
display: block !important;
height: 100%;
width: 100%;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.5); }
.site-content .contact-heading {
margin-bottom: 20px;
color: #fff; }
.site-content .form-home1 .row div {
padding: 0 15px 15px; }
.site-content .form-home1 .btn-send input {
margin-top: 0 !important; }
.site-content .home-carousel .transport-logo {
padding: 25px 35px; }
.site-content .template-cms_fancybox_single .fancy-style1.box-shadow .item-content {
padding-bottom: 0; }
.site-content .template-cms_fancybox_single .fancy-style1 .fancy-img img {
margin-bottom: 30px;
width: 100%; }
.site-content .template-cms_fancybox_single .box-shadow {
box-shadow: 0px 0px 10px -5px #000; }
.site-content .template-cms_fancybox_single .box-shadow .item-content {
padding: 0 20px 25px; }
.site-content .cms-grid-service-item .transport-logo {
padding: 40px 12px; }
.site-content .home-carousel .transport-logo, .site-content .cms-grid-service-item .transport-logo {
background: #fff; }
.site-content .home-carousel .transport-logo .transport-icon, .site-content .cms-grid-service-item .transport-logo .transport-icon {
color: #82d10c;
font-size: 27px;
width: 70px;
height: 70px;
border: 1px solid #ddd;
line-height: 70px;
border-radius: 50%;
text-align: center;
margin: 0 auto;
margin-bottom: 15px; }
.site-content .home-carousel .transport-logo .transport-content, .site-content .cms-grid-service-item .transport-logo .transport-content {
text-align: center; }
.site-content .home-carousel .owl-dot, .site-content .cms-grid-service-item .owl-dot {
height: 10px;
width: 10px;
margin-top: 50px; }
.site-content .home-carousel .owl-dot + .owl-dot, .site-content .cms-grid-service-item .owl-dot + .owl-dot {
margin-left: 10px; }
.site-content .home-carousel .owl-next, .site-content .cms-grid-service-item .owl-next, .site-content .home-carousel .owl-prev, .site-content .cms-grid-service-item .owl-prev {
height: 40px;
width: 40px;
margin-top: 50px;
line-height: 36px; }
.site-content .home-carousel .owl-next, .site-content .cms-grid-service-item .owl-next {
margin-right: 10px; }
.site-content .template-cms_grid .cms-grid-item.no-readmore .blog-wrap .entry-footer {
display: none; }
.site-content .template-cms_grid .cms-grid-item .blog-wrap .blog-content {
position: relative;
background: #f9f9f9;
padding: 40px 60px 30px 80px; }
.site-content .template-cms_grid .cms-grid-item .blog-wrap .blog-content p {
line-height: 26px; }
@media (min-width: 1200px) {
.site-content .template-cms_grid .cms-grid-item .blog-wrap .blog-content {
margin-left: 50px; } }
@media (max-width: 1199px) {
.site-content .template-cms_grid .cms-grid-item .blog-wrap .blog-content {
padding: 40px 50px 30px; } }
@media (max-width: 767px) {
.site-content .template-cms_grid .cms-grid-item .blog-wrap .blog-content {
padding: 30px 30px 20px; } }
@media (min-width: 1200px) {
.site-content .template-cms_grid .cms-grid-item .blog-wrap .blog-content .blog-date {
position: absolute;
left: 0;
top: 50%;
transform: translate(-50%, -50%);
z-index: 1;
display: inline-block;
min-width: 100px;
text-align: center;
background: #fff;
padding: 16px 10px;
box-shadow: 0 0 20px -2px #e5e5e5;
-webkit-transition: all 0.4s ease 0s;
transition: all 0.4s ease 0s; }
.site-content .template-cms_grid .cms-grid-item .blog-wrap .blog-content .blog-date:hover, .site-content .template-cms_grid .cms-grid-item .blog-wrap .blog-content .blog-date:focus {
background: #050508; }
.site-content .template-cms_grid .cms-grid-item .blog-wrap .blog-content .blog-date a {
display: block;
padding: 13px 10px; }
.site-content .template-cms_grid .cms-grid-item .blog-wrap .blog-content .blog-date span {
font-weight: 800;
font-size: 12px;
line-height: 20px;
color: #666;
font-family: "Open Sans";
display: block;
font-style: normal; }
.site-content .template-cms_grid .cms-grid-item .blog-wrap .blog-content .blog-date span.archive-day {
font-size: 24px;
line-height: 30px;
margin-bottom: 2px;
color: #82d10c; }
.site-content .template-cms_grid .cms-grid-item .blog-wrap .blog-content .blog-date:after {
content: none; } }
@media (max-width: 1199px) {
.site-content .template-cms_grid .cms-grid-item .blog-wrap .blog-content .blog-date span {
margin-right: 2px; }
.site-content .template-cms_grid .cms-grid-item .blog-wrap .blog-content .blog-date span:last-child {
margin-right: 0; } }
.site-content .template-cms_grid .cms-grid-item .blog-wrap .blog-content .entry-header .entry-meta ul.archive_detail {
margin-bottom: 0; }
.site-content .template-cms_grid .cms-grid-item .blog-wrap .blog-content .entry-header .entry-meta ul.archive_detail li.detail-title {
color: #666; }
.site-content .template-cms_grid .cms-grid-item .blog-wrap .blog-content .entry-header .entry-meta ul.archive_detail li.detail-title:after {
content: none; }
.site-content .template-cms_grid .cms-grid-item .blog-wrap .blog-content .entry-header h4.entry-title {
font-size: 18px;
font-weight: 700; }
.site-content .template-cms_grid .cms-load-posts {
margin-top: 40px; }
.site-content .template-cms_grid .cms-load-posts .btn-loadmore {
padding: 21px 59px;
background: transparent;
border: 3px solid #555;
color: #444; }
.site-content .template-cms_grid .cms-load-posts .btn-loadmore:hover, .site-content .template-cms_grid .cms-load-posts .btn-loadmore:focus {
border-width: 3px;
background: #0c0d12;
color: #fff;
border-color: transparent; }
.site-content .template-cms_grid .navigation {
margin-top: 40px; }
.site-content .image-carousel .owl-stage-outer {
border: 4px solid #fff;
border-radius: 3px;
box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.4); }
.site-content .image-carousel .owl-nav {
position: relative;
width: 100%;
text-align: center;
margin-top: 30px; }
.site-content .image-carousel .owl-nav .owl-prev, .site-content .image-carousel .owl-nav .owl-next {
width: 40px;
height: 40px;
line-height: 36px; }
.site-content .image-carousel .owl-nav .owl-prev {
margin-right: 5px; }
.site-content .image-carousel .owl-dots {
text-align: center;
padding: 0;
margin-top: 30px; }
.site-content .image-carousel .owl-dots .owl-dot {
display: inline-block;
width: 15px;
height: 4px;
margin: 0px 2px;
background: #373737;
border-radius: 0;
border: none;
-webkit-transition: all 0.15s linear;
transition: all 0.15s linear; }
.site-content .image-carousel .owl-dots .owl-dot.active {
background: #82d10c; }
@media (max-width: 767px) {
.site-content .image-carousel .post-thumbnail {
margin-bottom: 0; } }
.site-content .readmore {
padding: 9px 0 9px 15px;
border-radius: 2px; }
.site-content .readmore i {
margin-left: 35px;
width: 38px;
text-align: center;
line-height: 42px;
background: ; }
.site-content .readmore:hover {
background: #82d10c;
color: #fff;
opacity: 0.8; }
.site-content .cms-recent-post-wraper ul.post-list li {
border: 1px solid #dadada;
padding: 30px;
margin: 0;
position: relative;
background: #f5f5f5; }
.site-content .cms-recent-post-wraper ul.post-list li:before {
content: none; }
.site-content .cms-recent-post-wraper ul.post-list li:after {
border: 1px solid #dadada;
bottom: 10px;
content: "";
left: 10px;
pointer-events: none;
position: absolute;
right: 10px;
top: 10px;
z-index: 1; }
.site-content .cms-recent-post-wraper ul.post-list li .entry-content {
overflow: hidden; }
.site-content .cms-recent-post-wraper ul.post-list li .entry-content h3 a:hover, .site-content .cms-recent-post-wraper ul.post-list li .entry-content h3 a:focus {
color: #82d10c; }
.site-content .cms-recent-post-wraper ul.post-list li .blog-date a span {
font-size: 14px !important; }
.site-content .cms-recent-post-wraper ul.post-list li + li {
margin-top: 22px; }
.site-content .cms-recent-post-wraper .btn-readmore {
padding-top: 15px;
border-top: 1px solid #ddd; }
.border-image .vc_single_image-wrapper {
position: relative; }
.border-image .vc_single_image-wrapper:after {
border: 1px solid #fff;
bottom: 20px;
content: "";
left: 20px;
pointer-events: none;
position: absolute;
right: 20px;
top: 20px;
z-index: 1; }
.item-time {
display: inline-block;
font-family: "Roboto Slab", serif;
background: #050508;
color: #fff;
padding: 3px 10px; }
.acumec-blog {
margin: 0 0 30px 0; }
.acumec-blog .entry-header .entry-title {
font-size: 20px;
text-transform: capitalize;
margin-bottom: 10px;
-ms-word-wrap: break-word;
word-wrap: break-word; }
.acumec-blog .entry-header .entry-title a {
color: inherit; }
.acumec-blog .entry-header .entry-title a:hover, .acumec-blog .entry-header .entry-title a:focus {
color: #82d10c; }
.acumec-blog .post-audio .entry-wrap .entry-inside {
position: relative; }
.acumec-blog .blog-outer {
position: relative; }
.acumec-blog .blog-outer .blog-wrap {
margin: 0;
position: relative; }
.acumec-blog .blog-outer .blog-wrap .blog-content {
padding: 40px 0 30px; }
.acumec-blog ul li:before {
content: none; }
.acumec-blog p {
font-size: 15px;
line-height: 28px; }
.acumec-blog .detail-author {
font-size: 12px;
font-weight: 400;
font-family: "Open Sans";
display: table;
padding-top: 5px; }
.acumec-blog .detail-author > div {
display: table-cell;
vertical-align: middle; }
.acumec-blog .detail-author .author-thumbnail {
padding-right: 13px; }
.acumec-blog .detail-author .author-thumbnail img {
border-radius: 50%; }
.acumec-blog .detail-author a {
color: #666; }
.acumec-blog .detail-author a:hover, .acumec-blog .detail-author a:focus {
color: #82d10c; }
.blog-wrap .post-thumbnail, .blog-grid .post-thumbnail, .entry-post-wrap .post-thumbnail {
overflow: hidden; }
.blog-wrap .post-thumbnail img, .blog-grid .post-thumbnail img, .entry-post-wrap .post-thumbnail img {
zoom: 1;
filter: alpha(opacity=100);
opacity: 1;
-webkit-transition: all 0.9s ease 0s;
transition: all 0.9s ease 0s; }
.blog-wrap .post-thumbnail img:hover, .blog-grid .post-thumbnail img:hover, .entry-post-wrap .post-thumbnail img:hover {
zoom: 1;
filter: alpha(opacity=80);
opacity: 0.8;
-webkit-transform: rotate(2deg);
-ms-transform: rotate(2deg);
transform: rotate(2deg);
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1); }
.blog-grid-thumbnail {
padding: 0 15px 30px; }
.post_format-post-format-status .entry-wrap h2 a {
color: #fff; }
.post_format-post-format-status .entry-wrap h2 a:hover, .post_format-post-format-status .entry-wrap h2 a:focus {
color: #82d10c; }
.blog-wrap .entry-wrap .entry-header {
position: relative; }
.blog-wrap .entry-wrap .entry-header .entry-title {
margin-bottom: 0; }
.blog-wrap .post-audio .entry-wrap {
padding: 60px 60px 60px 60px; }
@media (max-width: 1199px) {
.blog-wrap .post-audio .entry-wrap {
padding: 40px 15px 40px 15px !important; } }
@media (max-width: 479px) {
.blog-wrap .post-audio .entry-wrap {
padding: 40px 5px 40px !important; } }
.blog-wrap .post-quote .entry-wrap, .blog-wrap .post-status .entry-wrap {
padding: 50px 30px; }
.blog-wrap .post-quote .entry-header .entry-title {
margin-bottom: 10px; }
.entry-meta ul {
font-style: italic; }
.entry-meta ul.single_detail {
padding: 0;
margin-bottom: 0; }
.entry-meta ul .blog-date i {
margin-right: 6px; }
.entry-meta ul a {
color: inherit; }
.entry-meta ul a:hover, .entry-meta ul a:focus {
color: #050508; }
.entry-meta ul li {
color: #82d10c;
display: inline-block;
position: relative;
padding-left: 0;
font-size: 13px; }
.entry-meta ul li span.fa {
padding: 0 6px 0 4px; }
.entry-meta ul li:after {
content: "/";
padding-right: 0px;
padding-left: 6px; }
.entry-meta ul li:last-child:after {
content: none; }
.entry-meta ul li.detail-title {
color: inherit; }
.entry-meta ul li.detail-title:after {
content: none; }
.entry-meta ul.archive_archive li.detail-title {
color: inherit; }
.entry-meta ul.archive_archive li.detail-title:after {
content: none; }
.entry-meta-related ul {
margin-bottom: 0; }
.entry-meta-related ul.single_detail {
padding: 0;
line-height: 1;
margin-left: 1px; }
.entry-meta-related ul li {
color: #82d10c;
display: inline-block;
position: relative;
margin-bottom: 8px; }
.entry-meta-related ul li + li {
padding-left: 15px; }
.entry-meta-related ul li + li:before {
content: "/";
position: absolute;
left: 3px;
top: 50%;
transform: translateY(-50%); }
.entry-meta-related ul li a {
color: inherit;
font-size: 13px;
font-style: italic; }
.entry-meta-related ul li a:hover, .entry-meta-related ul li a:focus {
color: #050508; }
.entry-meta-related ul li i {
margin-right: 6px; }
.entry-meta-related ul li:first-child {
padding-left: 0; }
.entry-meta-related ul li:last-child {
margin-right: 0; }
span.post-sticky {
display: none; }
.detail-author, .entry-footer {
margin-bottom: 20px; }
.entry-post-wrap {
padding-bottom: 32px; }
.entry-post-wrap .entry-meta-before {
text-align: center;
margin-bottom: -40px;
position: relative;
z-index: 1; }
@media (max-width: 479px) {
.entry-post-wrap .entry-meta-before {
margin-bottom: 0; } }
.entry-post-wrap .entry-meta-before .entry-meta-wrap {
position: relative;
display: inline-block;
padding: 20px 47px 25px;
background: #82d10c;
color: #fff;
border-radius: 5px; }
@media (max-width: 479px) {
.entry-post-wrap .entry-meta-before .entry-meta-wrap {
display: block;
padding: 20px 15px 25px;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0; } }
.entry-post-wrap .entry-meta-before .entry-meta-wrap ul.single_detail {
font-family: "Open Sans";
font-size: 13px;
font-weight: 700;
margin-bottom: 0; }
.entry-post-wrap .entry-meta-before .entry-meta-wrap ul.single_detail li {
position: relative;
display: inline-block; }
.entry-post-wrap .entry-meta-before .entry-meta-wrap ul.single_detail li + li {
margin-left: 15px;
padding-left: 15px; }
.entry-post-wrap .entry-meta-before .entry-meta-wrap ul.single_detail li + li:before {
position: absolute;
content: "|";
top: 0;
left: -4px; }
.entry-post-wrap .entry-meta-before .entry-meta-wrap ul.single_detail li a {
color: #fff; }
.entry-post-wrap .entry-meta-before .entry-meta-wrap ul.single_detail li a:hover, .entry-post-wrap .entry-meta-before .entry-meta-wrap ul.single_detail li a:focus {
color: #050508; }
.entry-post-wrap .entry-meta-before .entry-meta-wrap .author-image {
position: absolute;
left: 50%;
transform: translateX(-50%);
z-index: 1;
background: #82d10c;
border-radius: 50%;
bottom: -30px; }
.entry-post-wrap .entry-meta-before .entry-meta-wrap .author-image img {
display: inline-block;
margin: 7px;
border-radius: 50%; }
.entry-post-wrap .entry-header {
text-align: center;
padding-bottom: 25px;
margin-bottom: 45px;
border-bottom: 1px solid #ededed; }
.entry-post-wrap .entry-header h2.entry-title {
text-transform: uppercase;
margin-bottom: 5px;
-ms-word-wrap: break-word;
word-wrap: break-word; }
.entry-post-wrap .entry-header .entry-meta {
padding-bottom: 5px; }
.entry-post-wrap .entry-text {
overflow: hidden; }
.entry-post-wrap.post-status .entry-wrap {
padding: 50px 0 !important; }
.entry-post-wrap.post-status .entry-wrap .entry-header {
padding: 0;
margin: 0;
border: none; }
.entry-post-wrap.post-status .entry-wrap .entry-header .entry-title {
color: #fff; }
.entry-post-wrap.post-status .entry-meta {
text-align: center;
padding-bottom: 25px;
margin-bottom: 45px;
border-bottom: 1px solid #ededed; }
.entry-post-wrap .post-quote blockquote {
padding: 0;
margin: 0; }
.entry-post-wrap .post-quote blockquote p {
font-style: normal; }
.entry-post-wrap .post-thumbnail, .entry-post-wrap .post-gallery {
margin-bottom: 40px; }
.entry-post-wrap .post-video {
margin-bottom: 32px; }
.entry-post-wrap .post-video .entry-wrap {
padding: 120px 30px 50px !important; }
.entry-post-wrap .post-video iframe {
height: 350px; }
@media (max-width: 767px) {
.entry-post-wrap .post-video iframe {
height: 300px; } }
@media (max-width: 479px) {
.entry-post-wrap .post-video iframe {
height: 230px; } }
.entry-post-wrap blockquote {
line-height: 34px;
overflow: visible;
margin-bottom: 40px;
margin-top: 35px;
padding: 0 175px;
color: #82d10c; }
@media (max-width: 1199px) {
.entry-post-wrap blockquote {
padding: 0 100px; } }
@media (max-width: 767px) {
.entry-post-wrap blockquote {
padding: 0 50px; } }
@media (max-width: 399px) {
.entry-post-wrap blockquote {
padding: 0 30px; } }
.entry-post-wrap blockquote p {
font-size: 20px;
font-style: italic; }
.entry-post-wrap .single-tags {
font-size: 14px;
line-height: 30px;
color: #69d2e7; }
.entry-post-wrap .single-tags a {
color: inherit; }
.entry-post-wrap .single-tags a:hover, .entry-post-wrap .single-tags a:focus {
color: #82d10c; }
.entry-post-wrap .single-tags .lbl-tags {
margin-right: 20px;
color: #252525; }
.related-title {
margin: 0 0 40px; }
.post-related {
padding: 0 0 20px;
margin: 0 -15px; }
.post-related .post-related-item {
padding: 0 15px;
margin-bottom: 20px; }
@media (min-width: 992px) {
.post-related .post-related-item {
width: 50%;
float: left; } }
.post-related .post-related-item .related-item-wrap {
padding-bottom: 20px;
border-bottom: 1px solid #ececec; }
.post-related .related-thumbnail .cms-grid-media {
display: inline-block;
overflow: hidden; }
@media (max-width: 767px) {
.post-related .related-thumbnail .cms-grid-media {
display: block; } }
.post-related .related-thumbnail .cms-grid-media img {
width: 100px;
height: 80px; }
@media (max-width: 767px) {
.post-related .related-thumbnail .cms-grid-media img {
width: 100%;
height: auto; } }
@media (min-width: 768px) {
.post-related .item-media {
float: left;
margin-right: 20px;
line-height: 1; } }
@media (max-width: 767px) {
.post-related .item-media {
margin-bottom: 10px; } }
.post-related .item-title {
overflow: hidden; }
.post-related .item-title h6 {
margin-bottom: 0; }
.entry-post-wrap .entry-inside blockquote p:first-child, .blog-wrap .entry-inside blockquote p:first-child, .blog-grid-quote .entry-inside blockquote p:first-child {
color: #fff; }
.blog-wrap .entry-inside blockquote, .blog-grid .entry-inside blockquote {
border-left: none; }
.blog-grid .entry-inside blockquote p:last-child {
padding-top: 0;
line-height: 30px; }
.wpb_text_column blockquote {
font-size: inherit;
color: inherit !important;
line-height: inherit; }
body.primary_color1 .site-header .header-top.layout2 .header-top-wrap .header-top-left .widget div.textwidget .icon-header, body.primary_color1 .site-header.header-layout2 .header-main .header-navigation .main-navigation .menu-main-menu li.current-menu-ancestor > a, body.primary_color1 .site-header.header-layout2 .header-main .header-navigation .main-navigation .menu-main-menu li .current-menu-item > a, body.primary_color1 .site-header.header-layout2 .header-main .header-main-wrap .header-main-right .widget .header-block .block-content a, body.primary_color1 .team-position, body.primary_color1 .team-contact li span.title, body.primary_color1 .site-content ul.case-list li i, body.primary_color1 .cms-pricing-table.style2 .pricing-icon, body.primary_color1 .site-footer .info-box ul li span.icon-left, body.primary_color1 .site-footer.layout2 .footer-top .widget.widget_cs_recent_post_v2 .entry-main .title-recent:before, body.primary_color1 .footer-bottom a, body.primary_color1 .cms-testimonial .testimonial .testi-wrap .testi-content .testi-position, body.primary_color1 .cms-pricing-table.style2 ul.features-list li i, body.primary_color1 .site-header .header-top.layout2 .header-top-wrap .header-top-left .widget .textwidget > div .icon-header, body.primary_color1 .site-header.header-layout3 .header-main .menu-main-menu li.current-menu-ancestor > a, body.primary_color1 .site-header.header-layout3 .header-main .menu-main-menu li .current-menu-item > a, body.primary_color1 .cms-grid-service-2 .cms-grid-service .item-content ul.service-list, body.primary_color1 .entry-meta ul li, body.primary_color1 .site-footer.layout1 .footer-top .contact-info-box .hours li span, body.primary_color1 .zo-masonry-wrapper .zo-masonry-filter ul.zo-filter-category li a.active, body.primary_color1 .zo-masonry-wrapper .zo-masonry-filter ul.zo-filter-category li a:hover, body.primary_color1 .template-cms_grid--blog2 .blog-wrap .entry-footer a:hover, body.primary_color1 .template-cms_grid--blog2 .blog-wrap .entry-footer a:focus, body.primary_color1 .promo-video a i, body.primary_color1 .cms-grid-service-2 .cms-grid-service .item-content ul.service-list li:before, body.primary_color1 .site-header.header-layout2 .header-main .header-navigation .main-navigation .menu-main-menu > li > a:hover, body.primary_color1 .site-header.header-layout2 .header-main .header-navigation .main-navigation .menu-main-menu > li > a:focus, body.primary_color1 .site-header .menu-main-menu > li > ul.sub-menu > li li a:hover, body.primary_color1 .site-header .menu-main-menu > li > ul.sub-menu > li li a:focus, body.primary_color1 h1 a:hover, body.primary_color1 h2 a:hover, body.primary_color1 h3 a:hover, body.primary_color1 h4 a:hover, body.primary_color1 h5 a:hover, body.primary_color1 h6 a:hover, body.primary_color1 .template-cms_grid--blog2 .blog-wrap .blog-content .entry-header .entry-category a:hover, body.primary_color1 .template-cms_grid--blog2 .blog-wrap .blog-content .entry-header .entry-category a:focus, body.primary_color1 .acumec-blog .entry-header .entry-title a:hover, body.primary_color1 .acumec-blog .entry-header .entry-title a:focus, body.primary_color1 .site-footer.layout2 .footer-top a:hover, body.primary_color1 .site-footer.layout2 .footer-top a:focus, body.primary_color1 .zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content .taxs a:hover, body.primary_color1 .zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content .taxs a:focus, body.primary_color1 .site-header .widget_cart_search_wrap .header-search-cart > a:hover, body.primary_color1 .site-header .widget_cart_search_wrap .header-search-cart > a:focus, body.primary_color1 .site-header .header-middle .header-middle-wrap .header-middle-right .textwidget.custom-html-widget .block-left .icon-header, body.primary_color1 .site-header.header-default .header-main .menu-main-menu > li > a:hover, body.primary_color1 .site-header.header-default .header-main .menu-main-menu > li > a:focus, body.primary_color1 .site-header.header-default .header-main .menu-main-menu li.current-menu-ancestor > a, body.primary_color1 .site-header.header-default .header-main .menu-main-menu li.current-menu-item > a, body.primary_color1 .site-header.header-default .header-main .menu-main-menu li.current-menu-ancestor > a, body.primary_color1 .site-header.header-default .header-main .menu-main-menu li.current-menu-item > a, body.primary_color1 .site-header .menu-main-menu ul.sub-menu .current-menu-item > a, body.primary_color1 .site-header .menu-main-menu ul.sub-menu .current-menu-parent > a, body.primary_color1 .site-header .menu-main-menu ul.sub-menu .current_page_item > a, body.primary_color1 .site-header .menu-main-menu > li > ul.sub-menu > li li a:hover, body.primary_color1 .site-header .menu-main-menu > li > ul.sub-menu > li li a:focus, body.primary_color1 .cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-content-wrap ul.meta-list li a, body.primary_color1 .site-footer.layout1 .footer-top a:hover, body.primary_color1 .site-footer.layout1 .footer-top a:focus, body.primary_color1 .site-header .header-top.layout2 .widget_cms_socials_widget ul li a:hover, body.primary_color1 .site-header .header-top.layout2 .widget_cms_socials_widget ul li a:focus, body.primary_color1 .promo-video p, body.primary_color1 .site-header.header-layout3 .menu-main-menu > li > a:hover, body.primary_color1 .site-header.header-layout3 .menu-main-menu > li > a:focus, body.primary_color1 .widget_authenticate .fs-body .form a:hover, body.primary_color1 .widget_authenticate .fs-body .form a:focus {
color: #4e81f3; }
body.primary_color1 .zo-masonry-wrapper .zo-masonry-filter ul.zo-filter-category li a.active, body.primary_color1 .zo-masonry-wrapper .zo-masonry-filter ul.zo-filter-category li a:hover, body.primary_color1 .zo-masonry-wrapper .zo-masonry-filter ul.zo-filter-category li a:focus {
color: #4e81f3 !important; }
body.primary_color1 .btn-theme-primary, body.primary_color1 .site-header .widget_cart_search_wrap .widget_searchform_content .cshero-dropdown-search .theme_button, body.primary_color1 .rev_slider .contact-form.contact-service input.btn, body.primary_color1 .rev_slider .contact-form.contact-service textarea.btn, body.primary_color1 .contact-form.contact2 .btn-send input[type='submit'], body.primary_color1 .ef3-back-to-top, body.primary_color1 .btn-loadmore, body.primary_color1 .cms-pricing-table.style2.active, body.primary_color1 .promo-video a span, body.primary_color1 .site-content .owl-next, body.primary_color1 .site-content .owl-prev {
background: #4e81f3; }
body.primary_color1 .btn-theme-primary:hover, body.primary_color1 .site-header .widget_cart_search_wrap .widget_searchform_content .cshero-dropdown-search .theme_button:hover, body.primary_color1 .rev_slider .contact-form.contact-service input.btn:hover, body.primary_color1 .rev_slider .contact-form.contact-service textarea.btn:hover, body.primary_color1 .contact-form.contact2 .btn-send input[type='submit']:hover, body.primary_color1 .ef3-back-to-top:hover, body.primary_color1 .btn-loadmore:hover, body.primary_color1 .cms-pricing-table.style2.active:hover, body.primary_color1 .promo-video a span:hover, body.primary_color1 .site-content .owl-next:hover, body.primary_color1 .site-content .owl-prev:hover, body.primary_color1 .btn-theme-primary:focus, body.primary_color1 .site-header .widget_cart_search_wrap .widget_searchform_content .cshero-dropdown-search .theme_button:focus, body.primary_color1 .rev_slider .contact-form.contact-service input.btn:focus, body.primary_color1 .rev_slider .contact-form.contact-service textarea.btn:focus, body.primary_color1 .contact-form.contact2 .btn-send input[type='submit']:focus, body.primary_color1 .ef3-back-to-top:focus, body.primary_color1 .btn-loadmore:focus, body.primary_color1 .cms-pricing-table.style2.active:focus, body.primary_color1 .promo-video a span:focus, body.primary_color1 .site-content .owl-next:focus, body.primary_color1 .site-content .owl-prev:focus {
background: #0c0d12; }
body.primary_color1 .footer-bottom .widget.widget_cms_socials_widget ul li a:hover, body.primary_color1 .footer-bottom .widget.widget_cms_socials_widget ul li a:focus, body.primary_color1 .cms-grid-service-2 .cms-grid-service .item-content ul.service-list li:before, body.primary_color1 .site-header.header-default .header-main .header-main-right, body.primary_color1 .cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-date a {
background: #4e81f3; }
body.primary_color1 .cms-grid-team-2 .cms-grid-item-wrap .item-content .team-social li a:hover, body.primary_color1 .cms-grid-team-2 .cms-grid-item-wrap .item-content .team-social li a:focus, body.primary_color1 .zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content .grid-link a:hover, body.primary_color1 .zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content .grid-link a:focus {
background: #4e81f3 !important; }
body.primary_color1 .cms-blog-carousel.cms-carousel .owl-nav .owl-prev:before, body.primary_color1 .cms-blog-carousel.cms-carousel .owl-nav .owl-next:before {
background: rgba(78, 129, 243, 0.8); }
body.primary_color1 .cms-pricing-table.style2.active .pricing-icon, body.primary_color1 .cms-pricing-table.style2.active .title h3, body.primary_color1 .cms-pricing-table.style2.active .pricing, body.primary_color1 .cms-pricing-table.style2.active .pricing .sub_pricing, body.primary_color1 .cms-pricing-table.style2.active .description, body.primary_color1 .cms-pricing-table.style2.active ul.features-list li, body.primary_color1 .cms-pricing-table.style2.active ul.features-list li i {
color: #fff; }
@media (min-width: 1200px) {
body.primary_color1 .site-content .template-cms_grid .cms-grid-item .blog-wrap .blog-content .blog-date span.archive-day {
color: #4e81f3; } }
@media (max-width: 1199px) {
body.primary_color1 .site-header.header-layout2 .navbar-toggle .icon-bar, body.primary_color1 .site-header.header-default .navbar-toggle .icon-bar, body.primary_color1 .navbar-toggle:hover .icon-bar, body.primary_color1 .navbar-toggle:focus .icon-bar {
background: #4e81f3; }
body.primary_color1 .header-navigation .main-navigation .menu-main-menu > ul > li .cs-menu-toggle:hover, body.primary_color1 .header-navigation .main-navigation .menu-main-menu > li .cs-menu-toggle:hover, body.primary_color1 .site-header .header-main .header-navigation .main-navigation .menu-main-menu li a:hover, body.primary_color1 .site-header .header-main .header-navigation .main-navigation .menu-main-menu li a:focus, body.primary_color1 .site-header .header-main .header-navigation .main-navigation > div > ul > li.current-menu-ancestor > a, body.primary_color1 .site-header .header-main .header-navigation .main-navigation ul.nav-menu > li.current-menu-ancestor > a, body.primary_color1 .site-header .header-main .header-navigation .main-navigation > div > ul > li.current-menu-parent > a, body.primary_color1 .site-header .header-main .header-navigation .main-navigation ul.nav-menu > li.current-menu-parent > a, body.primary_color1 .site-header .header-main .header-navigation .main-navigation > div > ul > li.current-menu-ancestor > a, body.primary_color1 .site-header .header-main .header-navigation .main-navigation ul.nav-menu > li.current-menu-ancestor > a, body.primary_color1 .site-header .header-main .header-navigation .main-navigation > div > ul > li.current-menu-parent > a, body.primary_color1 .site-header .header-main .header-navigation .main-navigation ul.nav-menu > li.current-menu-parent > a {
color: #4e81f3; } }
body.primary_color1 select:focus, body.primary_color1 textarea:focus, body.primary_color1 input[type="text"]:focus, body.primary_color1 input[type="password"]:focus, body.primary_color1 input[type="datetime"]:focus, body.primary_color1 input[type="datetime-local"]:focus, body.primary_color1 input[type="date"]:focus, body.primary_color1 input[type="month"]:focus, body.primary_color1 input[type="time"]:focus, body.primary_color1 input[type="week"]:focus, body.primary_color1 input[type="number"]:focus, body.primary_color1 input[type="email"]:focus, body.primary_color1 input[type="url"]:focus, body.primary_color1 input[type="search"]:focus, body.primary_color1 input[type="tel"]:focus, body.primary_color1 input[type="color"]:focus, body.primary_color1 .login-select:focus, body.primary_color1 .form-control:focus, body.primary_color1 .uneditable-input:focus {
border-color: #4e81f3; }
body.primary_color1 .btn-bg {
text-transform: uppercase;
background: transparent;
border: 3px solid; }
body.primary_color1 .btn-bg.dark {
border-color: #555;
color: #444; }
body.primary_color1 .btn-bg.dark:hover, body.primary_color1 .btn-bg.dark:focus {
color: #fff; }
body.primary_color1 .btn-bg.light {
border-color: #fff;
color: #fff; }
body.primary_color1 .btn-bg:hover, body.primary_color1 .btn-bg:focus {
border-width: 3px; }
body.primary_color2 .site-header .header-top.layout2 .header-top-wrap .header-top-left .widget div.textwidget .icon-header, body.primary_color2 .site-header.header-layout2 .header-main .header-navigation .main-navigation .menu-main-menu li.current-menu-ancestor > a, body.primary_color2 .site-header.header-layout2 .header-main .header-navigation .main-navigation .menu-main-menu li .current-menu-item > a, body.primary_color2 .site-header.header-layout2 .header-main .header-main-wrap .header-main-right .widget .header-block .block-content a, body.primary_color2 .team-position, body.primary_color2 .team-contact li span.title, body.primary_color2 .site-content ul.case-list li i, body.primary_color2 .cms-pricing-table.style2 .pricing-icon, body.primary_color2 .site-footer .info-box ul li span.icon-left, body.primary_color2 .site-footer.layout2 .footer-top .widget.widget_cs_recent_post_v2 .entry-main .title-recent:before, body.primary_color2 .footer-bottom a, body.primary_color2 .cms-testimonial .testimonial .testi-wrap .testi-content .testi-position, body.primary_color2 .cms-pricing-table.style2 ul.features-list li i, body.primary_color2 .site-header .header-top.layout2 .header-top-wrap .header-top-left .widget .textwidget > div .icon-header, body.primary_color2 .site-header.header-layout3 .header-main .menu-main-menu li.current-menu-ancestor > a, body.primary_color2 .site-header.header-layout3 .header-main .menu-main-menu li .current-menu-item > a, body.primary_color2 .cms-grid-service-2 .cms-grid-service .item-content ul.service-list, body.primary_color2 .entry-meta ul li, body.primary_color2 .site-footer.layout1 .footer-top .contact-info-box .hours li span, body.primary_color2 .zo-masonry-wrapper .zo-masonry-filter ul.zo-filter-category li a.active, body.primary_color2 .zo-masonry-wrapper .zo-masonry-filter ul.zo-filter-category li a:hover, body.primary_color2 .template-cms_grid--blog2 .blog-wrap .entry-footer a:hover, body.primary_color2 .template-cms_grid--blog2 .blog-wrap .entry-footer a:focus, body.primary_color2 .promo-video a i, body.primary_color2 .cms-grid-service-2 .cms-grid-service .item-content ul.service-list li:before, body.primary_color2 .site-header.header-layout2 .header-main .header-navigation .main-navigation .menu-main-menu > li > a:hover, body.primary_color2 .site-header.header-layout2 .header-main .header-navigation .main-navigation .menu-main-menu > li > a:focus, body.primary_color2 .site-header .menu-main-menu > li > ul.sub-menu > li li a:hover, body.primary_color2 .site-header .menu-main-menu > li > ul.sub-menu > li li a:focus, body.primary_color2 h1 a:hover, body.primary_color2 h2 a:hover, body.primary_color2 h3 a:hover, body.primary_color2 h4 a:hover, body.primary_color2 h5 a:hover, body.primary_color2 h6 a:hover, body.primary_color2 .template-cms_grid--blog2 .blog-wrap .blog-content .entry-header .entry-category a:hover, body.primary_color2 .template-cms_grid--blog2 .blog-wrap .blog-content .entry-header .entry-category a:focus, body.primary_color2 .acumec-blog .entry-header .entry-title a:hover, body.primary_color2 .acumec-blog .entry-header .entry-title a:focus, body.primary_color2 .site-footer.layout2 .footer-top a:hover, body.primary_color2 .site-footer.layout2 .footer-top a:focus, body.primary_color2 .zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content .taxs a:hover, body.primary_color2 .zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content .taxs a:focus, body.primary_color2 .site-header .widget_cart_search_wrap .header-search-cart > a:hover, body.primary_color2 .site-header .widget_cart_search_wrap .header-search-cart > a:focus, body.primary_color2 .site-header .header-middle .header-middle-wrap .header-middle-right .textwidget.custom-html-widget .block-left .icon-header, body.primary_color2 .site-header.header-default .header-main .menu-main-menu > li > a:hover, body.primary_color2 .site-header.header-default .header-main .menu-main-menu > li > a:focus, body.primary_color2 .site-header.header-default .header-main .menu-main-menu li.current-menu-ancestor > a, body.primary_color2 .site-header.header-default .header-main .menu-main-menu li.current-menu-item > a, body.primary_color2 .site-header.header-default .header-main .menu-main-menu li.current-menu-ancestor > a, body.primary_color2 .site-header.header-default .header-main .menu-main-menu li.current-menu-item > a, body.primary_color2 .site-header .menu-main-menu ul.sub-menu .current-menu-item > a, body.primary_color2 .site-header .menu-main-menu ul.sub-menu .current-menu-parent > a, body.primary_color2 .site-header .menu-main-menu ul.sub-menu .current_page_item > a, body.primary_color2 .site-header .menu-main-menu > li > ul.sub-menu > li li a:hover, body.primary_color2 .site-header .menu-main-menu > li > ul.sub-menu > li li a:focus, body.primary_color2 .cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-content-wrap ul.meta-list li a, body.primary_color2 .site-footer.layout1 .footer-top a:hover, body.primary_color2 .site-footer.layout1 .footer-top a:focus, body.primary_color2 .site-header .header-top.layout2 .widget_cms_socials_widget ul li a:hover, body.primary_color2 .site-header .header-top.layout2 .widget_cms_socials_widget ul li a:focus, body.primary_color2 .promo-video p, body.primary_color2 .site-header.header-layout3 .menu-main-menu > li > a:hover, body.primary_color2 .site-header.header-layout3 .menu-main-menu > li > a:focus, body.primary_color2 .widget_authenticate .fs-body .form a:hover, body.primary_color2 .widget_authenticate .fs-body .form a:focus {
color: #ff5b29; }
body.primary_color2 .zo-masonry-wrapper .zo-masonry-filter ul.zo-filter-category li a.active, body.primary_color2 .zo-masonry-wrapper .zo-masonry-filter ul.zo-filter-category li a:hover, body.primary_color2 .zo-masonry-wrapper .zo-masonry-filter ul.zo-filter-category li a:focus {
color: #ff5b29 !important; }
body.primary_color2 .btn-theme-primary, body.primary_color2 .site-header .widget_cart_search_wrap .widget_searchform_content .cshero-dropdown-search .theme_button, body.primary_color2 .rev_slider .contact-form.contact-service input.btn, body.primary_color2 .rev_slider .contact-form.contact-service textarea.btn, body.primary_color2 .contact-form.contact2 .btn-send input[type='submit'], body.primary_color2 .ef3-back-to-top, body.primary_color2 .btn-loadmore, body.primary_color2 .cms-pricing-table.style2.active, body.primary_color2 .promo-video a span, body.primary_color2 .site-content .owl-next, body.primary_color2 .site-content .owl-prev {
background: #ff5b29; }
body.primary_color2 .btn-theme-primary:hover, body.primary_color2 .site-header .widget_cart_search_wrap .widget_searchform_content .cshero-dropdown-search .theme_button:hover, body.primary_color2 .rev_slider .contact-form.contact-service input.btn:hover, body.primary_color2 .rev_slider .contact-form.contact-service textarea.btn:hover, body.primary_color2 .contact-form.contact2 .btn-send input[type='submit']:hover, body.primary_color2 .ef3-back-to-top:hover, body.primary_color2 .btn-loadmore:hover, body.primary_color2 .cms-pricing-table.style2.active:hover, body.primary_color2 .promo-video a span:hover, body.primary_color2 .site-content .owl-next:hover, body.primary_color2 .site-content .owl-prev:hover, body.primary_color2 .btn-theme-primary:focus, body.primary_color2 .site-header .widget_cart_search_wrap .widget_searchform_content .cshero-dropdown-search .theme_button:focus, body.primary_color2 .rev_slider .contact-form.contact-service input.btn:focus, body.primary_color2 .rev_slider .contact-form.contact-service textarea.btn:focus, body.primary_color2 .contact-form.contact2 .btn-send input[type='submit']:focus, body.primary_color2 .ef3-back-to-top:focus, body.primary_color2 .btn-loadmore:focus, body.primary_color2 .cms-pricing-table.style2.active:focus, body.primary_color2 .promo-video a span:focus, body.primary_color2 .site-content .owl-next:focus, body.primary_color2 .site-content .owl-prev:focus {
background: #0c0d12; }
body.primary_color2 .footer-bottom .widget.widget_cms_socials_widget ul li a:hover, body.primary_color2 .footer-bottom .widget.widget_cms_socials_widget ul li a:focus, body.primary_color2 .cms-grid-service-2 .cms-grid-service .item-content ul.service-list li:before, body.primary_color2 .site-header.header-default .header-main .header-main-right, body.primary_color2 .cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-date a {
background: #ff5b29; }
body.primary_color2 .cms-grid-team-2 .cms-grid-item-wrap .item-content .team-social li a:hover, body.primary_color2 .cms-grid-team-2 .cms-grid-item-wrap .item-content .team-social li a:focus, body.primary_color2 .zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content .grid-link a:hover, body.primary_color2 .zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content .grid-link a:focus {
background: #ff5b29 !important; }
body.primary_color2 .cms-pricing-table.style2.active .pricing-icon, body.primary_color2 .cms-pricing-table.style2.active .title h3, body.primary_color2 .cms-pricing-table.style2.active .pricing, body.primary_color2 .cms-pricing-table.style2.active .pricing .sub_pricing, body.primary_color2 .cms-pricing-table.style2.active .description, body.primary_color2 .cms-pricing-table.style2.active ul.features-list li, body.primary_color2 .cms-pricing-table.style2.active ul.features-list li i {
color: #fff; }
@media (min-width: 1200px) {
body.primary_color2 .site-content .template-cms_grid .cms-grid-item .blog-wrap .blog-content .blog-date span.archive-day {
color: #ff5b29; } }
@media (max-width: 1199px) {
body.primary_color2 .site-header.header-layout2 .navbar-toggle .icon-bar, body.primary_color2 .site-header.header-default .navbar-toggle .icon-bar, body.primary_color2 .navbar-toggle:hover .icon-bar, body.primary_color2 .navbar-toggle:focus .icon-bar {
background: #ff5b29; }
body.primary_color2 .header-navigation .main-navigation .menu-main-menu > ul > li .cs-menu-toggle:hover, body.primary_color2 .header-navigation .main-navigation .menu-main-menu > li .cs-menu-toggle:hover, body.primary_color2 .site-header .header-main .header-navigation .main-navigation .menu-main-menu li a:hover, body.primary_color2 .site-header .header-main .header-navigation .main-navigation .menu-main-menu li a:focus, body.primary_color2 .site-header .header-main .header-navigation .main-navigation > div > ul > li.current-menu-ancestor > a, body.primary_color2 .site-header .header-main .header-navigation .main-navigation ul.nav-menu > li.current-menu-ancestor > a, body.primary_color2 .site-header .header-main .header-navigation .main-navigation > div > ul > li.current-menu-parent > a, body.primary_color2 .site-header .header-main .header-navigation .main-navigation ul.nav-menu > li.current-menu-parent > a, body.primary_color2 .site-header .header-main .header-navigation .main-navigation > div > ul > li.current-menu-ancestor > a, body.primary_color2 .site-header .header-main .header-navigation .main-navigation ul.nav-menu > li.current-menu-ancestor > a, body.primary_color2 .site-header .header-main .header-navigation .main-navigation > div > ul > li.current-menu-parent > a, body.primary_color2 .site-header .header-main .header-navigation .main-navigation ul.nav-menu > li.current-menu-parent > a {
color: #ff5b29; } }
body.primary_color2 select:focus, body.primary_color2 textarea:focus, body.primary_color2 input[type="text"]:focus, body.primary_color2 input[type="password"]:focus, body.primary_color2 input[type="datetime"]:focus, body.primary_color2 input[type="datetime-local"]:focus, body.primary_color2 input[type="date"]:focus, body.primary_color2 input[type="month"]:focus, body.primary_color2 input[type="time"]:focus, body.primary_color2 input[type="week"]:focus, body.primary_color2 input[type="number"]:focus, body.primary_color2 input[type="email"]:focus, body.primary_color2 input[type="url"]:focus, body.primary_color2 input[type="search"]:focus, body.primary_color2 input[type="tel"]:focus, body.primary_color2 input[type="color"]:focus, body.primary_color2 .login-select:focus, body.primary_color2 .form-control:focus, body.primary_color2 .uneditable-input:focus {
border-color: #ff5b29; }
body.primary_color2 .cms-blog-carousel.cms-carousel .owl-nav .owl-prev:before, body.primary_color2 .cms-blog-carousel.cms-carousel .owl-nav .owl-next:before {
background: rgba(255, 91, 41, 0.8); }
body.primary_color2 .btn-bg {
text-transform: uppercase;
background: transparent;
border: 3px solid; }
body.primary_color2 .btn-bg.dark {
border-color: #555;
color: #444; }
body.primary_color2 .btn-bg.dark:hover, body.primary_color2 .btn-bg.dark:focus {
color: #fff; }
body.primary_color2 .btn-bg.light {
border-color: #fff;
color: #fff; }
body.primary_color2 .btn-bg:hover, body.primary_color2 .btn-bg:focus {
border-width: 3px; }
.comments-area .comments-title {
margin-bottom: 30px;
font-weight: 800;
font-size: 24px; }
@media (min-width: 992px) {
.comments-area .spacing-r5 {
padding-right: 5px; }
.comments-area .spacing-l5 {
padding-left: 5px; } }
.comments-area ol.comment-list, .comments-area ol.children {
padding: 0;
list-style-type: none; }
.comments-area ol.comment-list li, .comments-area ol.children li {
position: relative; }
.comments-area ol.comment-list li .reply a, .comments-area ol.children li .reply a {
position: absolute;
top: -16px;
right: 15px;
display: inline-block;
padding: 3px 32px;
font-size: 12px;
border-radius: 25px;
font-family: "Open Sans";
text-transform: uppercase;
color: #fff;
background: #82d10c;
border: 1px solid transparent;
-webkit-transition: all 0.9s ease 0s;
transition: all 0.9s ease 0s; }
.comments-area ol.comment-list li .reply a:hover, .comments-area ol.children li .reply a:hover, .comments-area ol.comment-list li .reply a:focus, .comments-area ol.children li .reply a:focus {
background: #0c0d12;
border: 1px solid transparent;
color: #fff; }
.comments-area ol.comment-list li .comment-body, .comments-area ol.children li .comment-body {
border: 3px solid #f4f4f4; }
@media (min-width: 480px) {
.comments-area ol.comment-list li .comment-body, .comments-area ol.children li .comment-body {
display: flex; }
.comments-area ol.comment-list li .comment-body > div, .comments-area ol.children li .comment-body > div {
display: flex; } }
.comments-area ol.comment-list li .comment-body .comment-author-image img, .comments-area ol.children li .comment-body .comment-author-image img {
min-width: 100px;
max-height: 100px; }
.comments-area ol.comment-list li .comment-body .commentmetadata .comment-author h5.comment-author-title, .comments-area ol.children li .comment-body .commentmetadata .comment-author h5.comment-author-title {
float: left;
margin: 0px 0 20px 0;
font-size: 17px;
font-weight: 700;
text-transform: uppercase; }
@media (max-width: 479px) {
.comments-area ol.comment-list li .comment-body .commentmetadata .comment-author h5.comment-author-title, .comments-area ol.children li .comment-body .commentmetadata .comment-author h5.comment-author-title {
margin-top: 20px; } }
.comments-area ol.comment-list li .comment-body .commentmetadata .comment-main p, .comments-area ol.children li .comment-body .commentmetadata .comment-main p {
margin-bottom: 0; }
.comments-area ol.comment-list li .comment-body .commentmetadata .comment-date, .comments-area ol.children li .comment-body .commentmetadata .comment-date {
color: #a3a3a3;
cursor: pointer;
margin-left: 10px;
position: relative;
font-size: 12px;
font-weight: 400;
font-style: italic;
text-transform: none; }
.comments-area ol.comment-list {
margin-bottom: 63px; }
.comments-area ol.comment-list li .comment-body {
margin-bottom: 40px;
padding: 30px; }
.comments-area ol.comment-list .comment-respond {
margin-bottom: 40px; }
@media (min-width: 1200px) {
.comments-area ol.comment-list ol.children {
margin-left: 100px; } }
@media (max-width: 1199px) {
.comments-area ol.comment-list ol.children {
margin-left: 50px; } }
@media (max-width: 767px) {
.comments-area ol.comment-list ol.children {
margin-left: 30px; }
.comments-area ol.comment-list ol.comment-list .comment-author-image {
margin-bottom: 30px; } }
@media (max-width: 479px) {
.comments-area ol.comment-list ol.children {
margin-left: 15px; } }
.comments-area .commentmetadata {
overflow: hidden; }
@media (min-width: 480px) {
.comments-area .commentmetadata {
padding: 0 0 0 30px;
align-items: center; } }
.comments-area .comment-content ul {
list-style-type: disc;
padding-left: 20px; }
.comments-area .comment-respond .comment-reply-title {
font-size: 24px;
margin-bottom: 25px; }
.comments-area .comment-respond .comment-form {
margin: 0 -15px; }
.comments-area .comment-respond .comment-form p {
margin-bottom: 0; }
.comments-area .comment-respond .comment-form input, .comments-area .comment-respond .comment-form textarea {
margin: 5px 0;
font-size: 15px;
font-family: "Lato"; }
.comments-area .comment-respond .comment-form input {
padding: 10px 30px;
height: 53px;
border-radius: 25px; }
.comments-area .comment-respond .comment-form textarea {
padding: 12px 30px;
height: 160px;
border-radius: 20px; }
.comments-area .comment-respond .comment-form .logged-in-as {
padding: 0 15px;
font-style: italic;
line-height: 1;
margin-bottom: 15px; }
.comments-area .comment-respond .comment-form .logged-in-as > a {
color: #181818;
font-family: inherit; }
.comments-area .comment-respond .comment-form .logged-in-as > a:hover {
color: #82d10c; }
.comments-area .comment-respond .comment-form .logged-in-as + div {
width: 100%; }
.comments-area .comment-respond .comment-form .form-submit {
padding: 0 15px;
clear: both;
text-align: center; }
.comments-area .comment-respond .comment-form .form-submit input {
padding: 10px 40px;
text-transform: uppercase;
border-radius: 25px;
margin: 25px 0 0 0;
font-weight: 700;
line-height: 1;
font-size: 13px;
font-family: "Open Sans";
color: #fff;
background: #82d10c;
border: 1px solid transparent;
-webkit-transition: all 0.9s ease 0s;
transition: all 0.9s ease 0s; }
.comments-area .comment-respond .comment-form .form-submit input:hover, .comments-area .comment-respond .comment-form .form-submit input:focus {
background: #0c0d12;
border: 1px solid transparent;
color: #fff; }
.commentlist .bypostauthor {
background: transparent; }
.commentlist li ul.children li.bypostauthor {
background: transparent; }
.fs-form h4 {
color: #333;
margin-top: 35px;
text-transform: uppercase; }
@media (max-width: 479px) {
.fs-form h4 {
margin-top: 30px; } }
.fs-form .fs-close {
position: relative !important;
display: inline-block;
vertical-align: middle;
float: right;
margin-top: -9px; }
.fs-form.fs-dropdown {
position: absolute;
background: #fff;
z-index: 999;
width: 430px;
top: 36px; }
.fs-form.fs-dropdown .fs-close {
margin-top: 0;
font-size: 24px;
padding: 0 5px;
cursor: pointer; }
.fs-form.fs-popup .fs-card {
max-width: 430px;
padding: 0;
margin-top: 0;
border-radius: 10px; }
.fs-form .fs-header {
background: #fff;
color: #666;
padding: 15px 15px 10px !important;
text-align: center;
font-family: "lato";
font-size: 13px;
border-radius: 10px; }
.fs-form .fs-header .fs-subtitle {
font-style: italic;
line-height: 20px; }
.fs-form .fs-body {
position: relative; }
.fs-form .fs-body label.error {
display: table-caption; }
.fs-form .fs-body .form {
margin: 0 auto;
max-width: 330px; }
.fs-form .fs-body .form .fs-login-form-wrap, .fs-form .fs-body .form .fs-register-form-wrap {
padding: 15px;
color: #000; }
.fs-form .fs-body .form .form-group {
margin-bottom: 10px; }
.fs-form .fs-body .form .form-group .input-group {
width: 100%; }
.fs-form .fs-body .form .form-group input {
padding: 6px 30px;
height: 53px;
font-family: "Lato";
font-size: 12px;
font-weight: 400;
border-radius: 25px; }
@media (max-width: 479px) {
.fs-form .fs-body .form .form-group input {
height: 42px; } }
.fs-form .fs-body .form .btn-login, .fs-form .fs-body .form .btn-register {
font-family: 'Lato', sans-serif;
padding: 17px 73px;
border-radius: 30px;
margin: 0; }
.fs-form .fs-body .form .form-action {
color: #000;
line-height: 26px;
padding-top: 8px; }
.fs-form .fs-body .form .form-action input {
vertical-align: text-bottom;
margin-right: 4px;
margin-bottom: 4px; }
.fs-form .fs-body .form .fs-action {
margin-top: 25px;
text-align: center; }
.fs-form .fs-body .form a {
color: #0081ff; }
.fs-form .fs-body .form a:hover, .fs-form .fs-body .form a:focus {
color: #82d10c; }
.fs-form .fs-body .form a.forgot {
float: right; }
.fs-form .fs-body .form .fs-created {
margin-top: 15px;
padding-bottom: 32px;
text-align: center; }
.fs-form .fs-body .form .fs-reg-signin {
margin-top: 15px;
padding-bottom: 7px; }
.fs-form .fs-body .form.active {
padding-bottom: 20px; }
.widget_authenticate .fs-link a {
position: relative;
padding: 0 30px; }
@media (max-width: 479px) {
.widget_authenticate .fs-link a {
padding: 0 15px; } }
.widget_authenticate .fs-link a + a:before {
content: "";
position: absolute;
width: 1px;
height: 13px;
background: #cfcfcf;
left: 0;
top: 50%;
transform: translateY(-50%); }
ul.social-share {
padding-left: 0;
margin-bottom: 0;
list-style-type: none; }
ul.social-share .sharing-title {
display: inline-block; }
ul.social-share li.share-social {
padding: 0 5px;
margin-bottom: 5px;
display: inline-block; }
ul.social-share li.share-social a {
font-size: 14px;
display: inline-block; }
ul.social-share li.share-social a:hover, ul.social-share li.share-social a:focus {
opacity: 0.7; }
ul.social-share li:last-child {
padding-right: 0; }
ul.social-share li.share-title {
color: #181818; }
@media (max-width: 991px) {
.fa-layout-frontend span.fa-timeslot-book {
float: none; } }
.fa-layout-frontend .fc-toolbar.fc-header-toolbar .fc-left .fc-button, .fa-layout-frontend .fc-toolbar.fc-header-toolbar .fc-right .fc-button {
background: transparent;
border: none;
box-shadow: none;
font-size: 18px; }
.fa-layout-frontend table th.fc-day-header.fc-widget-header {
font-family: inherit;
background: #82d10c;
font-size: 15px;
line-height: 50px; }
.fa-layout-frontend table td.fc-today {
background: #82d10c; }
.fa-layout-frontend table td.fc-today span.fc-day-number {
color: #fff !important; }
.fa-layout-frontend table td.fa-fr-active {
background: #4e81f3; }
@media (max-width: 767px) {
.fa-layout-frontend table td span {
line-height: 50px !important; } }
.fa-layout-frontend table .fsa-ct-book {
text-align: left; }
.fa-layout-frontend table .fsa-ct-book .fa-booked-appt-list h4 {
font-size: 24px; }
.fa-layout-frontend table .fsa-ct-book span.fa-timeslot-time, .fa-layout-frontend table .fsa-ct-book span.fa-spaces-available {
color: #4e81f3; }
.fa-layout-frontend table .fsa-ct-book span.fa-timeslot-time i, .fa-layout-frontend table .fsa-ct-book span.fa-spaces-available i, .fa-layout-frontend table .fsa-ct-book span.fa-timeslot-time p.fa_spaces, .fa-layout-frontend table .fsa-ct-book span.fa-spaces-available p.fa_spaces {
color: inherit; }
.fa-layout-frontend table .fsa-ct-book button {
border: none; }
.fa-layout-frontend table .fsa-ct-book button span.btn {
background: #82d10c; }
.fa-layout-frontend table .fsa-ct-book button span.btn:hover, .fa-layout-frontend table .fsa-ct-book button span.btn:focus {
background: #4e81f3; }
@media (max-width: 399px) {
.md-effect-13.md-modal {
width: 320px; } }
.fa-button-request {
text-align: center; }
.widget_cms_socials_widget ul {
margin: 0;
padding: 0; }
.widget_cms_socials_widget ul li {
display: inline-block; }
.widget_cms_socials_widget ul li a {
font-size: 12px;
display: inline-block;
text-align: center;
border-radius: 50%; }
.share-facebook, .color-facebook {
background: #4c70b7; }
.share-twitter, .color-twitter {
background: #4cdbff; }
.share-google, .color-google, .color-google-plus {
background: #ff4c4c; }
.share-pinterest, .color-pinterest {
background: #e13138; }
.share-linkedin, .color-linkedin {
background: #4c94db; }
.share-tumblr, .color-tumblr {
background: #426d9b; }
.share-vk, .color-vk {
background: #4778ac; }
.share-xing, .color-xing {
background: #1a8e8c; }
.share-reddit, .color-reddit {
background: #377bda; }
.color-youtube {
background: #db4c4c; }
.color-rss {
background: #faa33d; }
.color-skype {
background: #13c1f3; }
.color-yahoo {
background: #ab47ac; }
.color-dribbble {
background: #ff70b7; }
.color-flickr {
background: #ff48a3; }
.color-github {
background: #3f91cb; }
.color-vimeo {
background: #35c6ea; }
.color-instagram {
background: #db944c; }
.color-behance {
background: #1879fd; }
.color-dropbox {
background: #17a3eb; }
.color-soundcloud {
background: #ff7e30; }
.color-lastfm {
background: #f34320; }
.color-deviantart {
background: #6a8a7b; }
.color-digg {
background: #75788d; }
.color-share {
background: #25a774; }
.color-wordpress {
background: #2592c3; }
.color-apple {
background: #b3b5b8; }
.cms-socials.style1 {
position: relative;
z-index: 1;
margin: 0 -13px;
width: 100%; }
.cms-socials.style1 a {
position: relative;
display: inline-block;
font-size: 14px;
padding: 0 13px 13px;
color: #666;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.cms-socials.style1 a:hover, .cms-socials.style1 a:focus {
color: #82d10c; }
.cms-socials.style2 a {
display: inline-block;
width: 32px;
height: 32px;
border-radius: 50%;
text-align: center;
line-height: 32px;
font-size: 17px;
text-decoration: none;
color: #fff;
margin: 0 8px 8px 0;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease; }
.cms-socials.style2 a:hover, .cms-socials.style2 a:focus {
background: #fff;
color: #82d10c; }
.cms-blog-carousel {
position: relative; }
@media (min-width: 768px) {
.cms-blog-carousel .owl-stage-outer {
width: 50%;
margin-left: 25%; } }
.cms-blog-carousel .carousel-item .blog-wrap .post-thumbnail {
border-radius: 2px;
overflow: hidden; }
.cms-blog-carousel .carousel-item .blog-wrap .blog-content {
display: table;
font-family: "Open Sans";
padding: 30px 0; }
.cms-blog-carousel .carousel-item .blog-wrap .blog-content > div {
display: table-cell;
vertical-align: middle; }
.cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-date {
text-align: center;
font-weight: 700;
font-size: 10px; }
.cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-date a {
color: #fff;
display: block;
padding: 9px 13px;
margin-right: 18px;
border-radius: 5px;
background: #82d10c; }
.cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-date a:hover, .cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-date a:focus {
color: #050508; }
.cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-date span.archive-day {
display: block;
font-size: 22px; }
.cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-date span.archive-month {
margin-right: 3px; }
.cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-content-wrap ul.meta-list {
font-size: 12px;
margin-bottom: 3px; }
.cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-content-wrap ul.meta-list li {
position: relative;
display: inline-block;
padding: 0 20px; }
.cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-content-wrap ul.meta-list li:first-child {
padding-left: 0; }
.cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-content-wrap ul.meta-list li:last-child {
padding-right: 0; }
.cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-content-wrap ul.meta-list li + li:before {
position: absolute;
content: "";
width: 1px;
height: 10px;
left: 0;
top: 50%;
transform: translateY(-50%);
background: #999; }
.cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-content-wrap ul.meta-list li a {
color: #82d10c; }
.cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-content-wrap ul.meta-list li a:hover, .cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-content-wrap ul.meta-list li a:focus {
color: #050508; }
.cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-content-wrap .entry-header h4.entry-title {
font-size: 17px;
font-weight: 700;
margin-bottom: 0;
font-family: "Open Sans"; }
.cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-content-wrap .blog-meta-after ul {
margin-top: 8px;
margin-bottom: 0; }
.cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-content-wrap .blog-meta-after ul .detail-tags span {
margin-right: 3px; }
.cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-content-wrap .entry-content {
margin-top: 10px; }
.cms-blog-carousel .carousel-item .blog-wrap .blog-content > div.blog-content-wrap .entry-footer {
margin-bottom: 0; }
.cms-blog-carousel.cms-carousel .acumec-blog {
margin: 0; }
.cms-blog-carousel.cms-carousel .owl-nav {
font-family: "Open Sans";
font-weight: 700;
text-align: center; }
.cms-blog-carousel.cms-carousel .owl-nav .owl-prev, .cms-blog-carousel.cms-carousel .owl-nav .owl-next {
width: 170px;
height: 150px;
line-height: 150px;
border-radius: 2px;
overflow: hidden;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-color: transparent;
border: none;
position: absolute;
z-index: 0;
font-size: 0;
text-transform: uppercase; }
@media (min-width: 1200px) {
.cms-blog-carousel.cms-carousel .owl-nav .owl-prev, .cms-blog-carousel.cms-carousel .owl-nav .owl-next {
top: 65px; } }
@media (max-width: 1199px) {
.cms-blog-carousel.cms-carousel .owl-nav .owl-prev, .cms-blog-carousel.cms-carousel .owl-nav .owl-next {
top: 62px;
width: 120px;
height: 100px;
line-height: 100px; } }
@media (max-width: 991px) {
.cms-blog-carousel.cms-carousel .owl-nav .owl-prev, .cms-blog-carousel.cms-carousel .owl-nav .owl-next {
top: 35px; } }
@media (max-width: 767px) {
.cms-blog-carousel.cms-carousel .owl-nav .owl-prev, .cms-blog-carousel.cms-carousel .owl-nav .owl-next {
position: relative;
top: 0; } }
@media (min-width: 768px) {
.cms-blog-carousel.cms-carousel .owl-nav .owl-prev.disabled, .cms-blog-carousel.cms-carousel .owl-nav .owl-next.disabled {
opacity: 0; } }
@media (max-width: 767px) {
.cms-blog-carousel.cms-carousel .owl-nav .owl-prev.disabled, .cms-blog-carousel.cms-carousel .owl-nav .owl-next.disabled {
font-size: 17px; }
.cms-blog-carousel.cms-carousel .owl-nav .owl-prev.disabled:before, .cms-blog-carousel.cms-carousel .owl-nav .owl-next.disabled:before {
opacity: 1; } }
.cms-blog-carousel.cms-carousel .owl-nav .owl-prev:before, .cms-blog-carousel.cms-carousel .owl-nav .owl-next:before {
position: absolute;
display: block;
content: "";
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: -1;
opacity: 0;
background: rgba(130, 209, 12, 0.8);
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.cms-blog-carousel.cms-carousel .owl-nav .owl-prev:hover, .cms-blog-carousel.cms-carousel .owl-nav .owl-next:hover, .cms-blog-carousel.cms-carousel .owl-nav .owl-prev:focus, .cms-blog-carousel.cms-carousel .owl-nav .owl-next:focus {
font-size: 17px;
background-color: transparent;
background-size: cover;
background-position: center;
background-repeat: no-repeat; }
.cms-blog-carousel.cms-carousel .owl-nav .owl-prev:hover:before, .cms-blog-carousel.cms-carousel .owl-nav .owl-next:hover:before, .cms-blog-carousel.cms-carousel .owl-nav .owl-prev:focus:before, .cms-blog-carousel.cms-carousel .owl-nav .owl-next:focus:before {
opacity: 1; }
.cms-blog-carousel.cms-carousel .owl-nav .owl-prev {
margin-right: 0; }
@media (min-width: 992px) {
.cms-blog-carousel.cms-carousel .owl-nav .owl-prev {
left: 92px; } }
@media (max-width: 991px) {
.cms-blog-carousel.cms-carousel .owl-nav .owl-prev {
left: 30px; } }
@media (max-width: 767px) {
.cms-blog-carousel.cms-carousel .owl-nav .owl-prev {
left: 0;
margin-right: 10px; } }
@media (min-width: 992px) {
.cms-blog-carousel.cms-carousel .owl-nav .owl-next {
right: 108px; } }
@media (max-width: 991px) {
.cms-blog-carousel.cms-carousel .owl-nav .owl-next {
right: 44px; } }
@media (max-width: 767px) {
.cms-blog-carousel.cms-carousel .owl-nav .owl-next {
right: 0; } }
.cms-post-carousel .post-carousel {
position: relative; }
.cms-post-carousel .post-carousel .post-thumbnail {
background-position: center;
background-size: cover; }
@media (min-width: 1200px) {
.cms-post-carousel .post-carousel .post-thumbnail {
height: 682px; } }
@media (max-width: 1199px) {
.cms-post-carousel .post-carousel .post-thumbnail {
height: 600px; } }
@media (max-width: 767px) {
.cms-post-carousel .post-carousel .post-thumbnail {
height: 500px; } }
@media (max-width: 479px) {
.cms-post-carousel .post-carousel .post-thumbnail {
height: 400px; } }
.cms-post-carousel .post-carousel .post-thumbnail .bg_overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: calc(100% + 1px);
background: rgba(42, 42, 42, 0.5); }
.cms-post-carousel .post-carousel .post-thumbnail img {
min-height: 400px; }
.cms-post-carousel .post-carousel .blog-content {
position: absolute;
text-align: center;
width: 100%;
top: 50%;
transform: translateY(-50%);
color: #fff; }
@media (max-width: 479px) {
.cms-post-carousel .post-carousel .blog-content {
padding: 0 10px; } }
.cms-post-carousel .post-carousel .blog-content .sub-title {
font-size: 25px;
font-weight: 700;
color: #fff;
margin-bottom: 16px; }
@media (max-width: 991px) {
.cms-post-carousel .post-carousel .blog-content .sub-title {
font-size: 20px;
margin-bottom: 5px; } }
@media (max-width: 479px) {
.cms-post-carousel .post-carousel .blog-content .sub-title {
font-size: 18px; } }
.cms-post-carousel .post-carousel .blog-content .entry-title {
font-size: 55px;
line-height: 1.4;
color: #fff;
margin-bottom: 5px; }
@media (max-width: 991px) {
.cms-post-carousel .post-carousel .blog-content .entry-title {
font-size: 40px; } }
@media (max-width: 479px) {
.cms-post-carousel .post-carousel .blog-content .entry-title {
font-size: 26px; } }
.cms-post-carousel .post-carousel .blog-content .entry-content {
font-size: 20px;
padding-bottom: 25px; }
@media (max-width: 991px) {
.cms-post-carousel .post-carousel .blog-content .entry-content {
font-size: 18px; } }
@media (max-width: 479px) {
.cms-post-carousel .post-carousel .blog-content .entry-content {
font-size: 16px; } }
.cms-post-carousel .post-carousel .blog-content .entry-content p {
letter-spacing: 0.4px; }
.cms-post-carousel .post-carousel .blog-content .entry-footer a.btn {
padding: 20px 62px;
border-radius: 3em; }
@media (max-width: 479px) {
.cms-post-carousel .post-carousel .blog-content .entry-footer a.btn {
padding: 14px 46px; } }
.cms-post-carousel .owl-nav {
text-align: center;
transform: translateY(-50%); }
@media (max-width: 1199px) {
.cms-post-carousel .owl-nav {
display: none; } }
.cms-post-carousel .owl-nav div.owl-prev, .cms-post-carousel .owl-nav div.owl-next {
width: 350px;
height: auto;
padding: 47px 55px;
position: relative;
border: none;
background-size: cover;
background-position: center;
background-color: transparent; }
.cms-post-carousel .owl-nav div.owl-prev > div, .cms-post-carousel .owl-nav div.owl-next > div {
position: relative;
z-index: 1; }
.cms-post-carousel .owl-nav div.owl-prev .bg-icon, .cms-post-carousel .owl-nav div.owl-next .bg-icon {
width: 32px;
height: 32px;
border-radius: 50%;
font-family: fontawesome;
background: #82d10c;
display: block;
line-height: 32px;
font-size: 13px;
top: 50%;
transform: translateY(-50%);
position: absolute;
z-index: 1;
text-align: center;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.cms-post-carousel .owl-nav div.owl-prev .bg-overlay, .cms-post-carousel .owl-nav div.owl-next .bg-overlay {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba(130, 209, 12, 0.95);
z-index: 0;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.cms-post-carousel .owl-nav div.owl-prev:hover .bg-icon, .cms-post-carousel .owl-nav div.owl-next:hover .bg-icon, .cms-post-carousel .owl-nav div.owl-prev:hover .bg-overlay, .cms-post-carousel .owl-nav div.owl-next:hover .bg-overlay {
background: rgba(255, 255, 255, 0.95) !important;
color: #444; }
.cms-post-carousel .owl-nav div.owl-prev:hover .title, .cms-post-carousel .owl-nav div.owl-next:hover .title {
color: #444; }
.cms-post-carousel .owl-nav div.owl-prev:hover .prev-post, .cms-post-carousel .owl-nav div.owl-next:hover .prev-post, .cms-post-carousel .owl-nav div.owl-prev:hover .next-post, .cms-post-carousel .owl-nav div.owl-next:hover .next-post {
color: #82d10c; }
.cms-post-carousel .owl-nav div.owl-prev .prev-post, .cms-post-carousel .owl-nav div.owl-next .prev-post, .cms-post-carousel .owl-nav div.owl-prev .next-post, .cms-post-carousel .owl-nav div.owl-next .next-post {
font-family: "Open Sans";
font-weight: 400;
font-size: 13px;
line-height: 30px;
text-transform: uppercase; }
.cms-post-carousel .owl-nav div.owl-prev .title, .cms-post-carousel .owl-nav div.owl-next .title {
font-family: "Open Sans";
font-weight: 700;
font-size: 14px;
line-height: 21px;
text-transform: uppercase; }
.cms-post-carousel .owl-nav div.owl-prev.disabled, .cms-post-carousel .owl-nav div.owl-next.disabled {
display: none; }
.cms-post-carousel .owl-nav .owl-next {
text-align: right; }
.cms-post-carousel .owl-nav .owl-next .right {
right: -16px; }
.cms-post-carousel .owl-nav .owl-next .right:before {
content: "\f105"; }
.cms-post-carousel .owl-nav .owl-prev {
text-align: left;
margin-right: 0 !important; }
.cms-post-carousel .owl-nav .owl-prev .left {
left: -16px; }
.cms-post-carousel .owl-nav .owl-prev .left:before {
content: "\f104"; }
.cms-team-single .cms-team-single-wrap {
display: inline-block;
position: relative; }
.cms-team-single .cms-team-single-wrap.border-image:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 8px;
background: linear-gradient(to right, #82d10c, #4e81f3); }
.cms-team-single .cms-team-single-wrap.border-image:after {
content: "";
position: absolute;
top: 0;
right: 0;
width: 8px;
height: 100%;
background: linear-gradient(#4e81f3, #82d10c); }
.cms-team-single .cms-team-single-wrap .team-social {
position: absolute;
top: 50%;
right: 38px;
transform: translateY(-50%); }
.cms-team-single .cms-team-single-wrap .team-social a {
display: block;
width: 50px;
height: 50px;
line-height: 50px;
font-size: 18px;
background: #070606;
text-align: center;
border-radius: 50%;
color: #fff; }
.cms-team-single .cms-team-single-wrap .team-social a + a {
margin-top: 10px; }
.cms-team-single .cms-team-single-wrap .team-social a:hover, .cms-team-single .cms-team-single-wrap .team-social a:focus {
color: #fff; }
.cms-team-single.layout1 .team-thumbnail img {
width: 100%; }
.cms-team-single.layout2 .cms-team-item .team-detail .team-content {
padding: 30px;
text-align: center; }
.cms-team-single.layout2 .cms-team-item .team-detail .team-content .name {
margin-bottom: 0; }
.cms-team-single.layout2 .cms-team-item .team-detail .team-content .position {
color: #222;
font-style: italic;
margin-bottom: 5px; }
.cms-team-single.layout2 .cms-team-item .team-detail .team-content ul.team-socials li {
display: inline-block;
padding: 0 5px; }
.cms-team-single.layout2 .cms-team-item .team-detail .team-content ul.team-socials a {
color: #222; }
.cms-team-single.layout2 .cms-team-item .team-detail .team-content ul.team-socials a:hover, .cms-team-single.layout2 .cms-team-item .team-detail .team-content ul.team-socials a:focus {
color: #82d10c; }
.cms-team-single.layout2 .cms-team-item .team-image {
overflow: hidden; }
.cms-team-single.layout2 .cms-team-item .team-image img {
width: 100%;
zoom: 1;
filter: alpha(opacity=100);
opacity: 1;
-webkit-transition: all 0.9s ease 0s;
transition: all 0.9s ease 0s; }
.cms-team-single.layout2 .cms-team-item .team-image img:hover, .cms-team-single.layout2 .cms-team-item .team-image img:focus {
zoom: 1;
filter: alpha(opacity=80);
opacity: 0.8;
-webkit-transform: rotate(2deg);
-ms-transform: rotate(2deg);
transform: rotate(2deg);
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1); }
.page-title-carousel .owl-nav {
position: absolute;
bottom: 30px;
right: 90px;
color: #fff; }
@media (max-width: 991px) {
.page-title-carousel .owl-nav {
bottom: 10px;
right: 40px; } }
@media (max-width: 479px) {
.page-title-carousel .owl-nav {
bottom: 0; } }
.page-title-carousel .owl-nav .owl-prev, .page-title-carousel .owl-nav .owl-next {
font-size: 0;
position: relative; }
.page-title-carousel .owl-nav .owl-prev:before, .page-title-carousel .owl-nav .owl-next:before {
font-family: fontawesome;
position: absolute;
font-size: 14px; }
.page-title-carousel .owl-nav .owl-prev:before {
content: "\f0d9";
right: 70px;
bottom: -30px; }
@media (max-width: 479px) {
.page-title-carousel .owl-nav .owl-prev:before {
right: 30px; } }
.page-title-carousel .owl-nav .owl-next:before {
content: "\f0da";
right: 0; }
@media (max-width: 479px) {
.page-title-carousel .owl-nav .owl-next:before {
right: -20px; } }
.page-title.style-2 .page-title-content {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 100%;
z-index: 1; }
.page-title .page-title-content .breadcrumb-text {
color: #b2b2b2; }
.page-title .page-title-content .breadcrumb-text a {
color: inherit; }
.page-title .page-title-content .breadcrumb-text a:hover, .page-title .page-title-content .breadcrumb-text a:focus {
color: #82d10c; }
.page-title .page-title-content .page-title-text h1 {
color: #fff; }
.beside_slider {
position: absolute;
right: 114px;
bottom: 30px;
z-index: 1;
color: #fff; }
@media (max-width: 991px) {
.beside_slider {
right: 64px;
bottom: 10px; } }
@media (max-width: 479px) {
.beside_slider {
right: 34px;
bottom: 0; }
.beside_slider span {
font-size: 12px; } }
.cms-countdown {
display: table;
margin: 0 0 0 auto; }
.cms-countdown .countdown-inner {
margin: 0 -1px 20px;
padding: 20px 0;
text-align: center; }
.cms-countdown .countdown-inner > div {
float: right;
padding: 0 5px 10px;
width: 143px;
height: auto; }
.cms-countdown .countdown-item-container {
font-family: "Open Sans";
font-weight: 800;
padding: 33px 0;
color: #fff;
background: rgba(0, 0, 0, 0.5);
border-radius: 50%; }
.cms-countdown .countdown-item-container .countdown-amount {
font-size: 38px;
line-height: 1;
margin-bottom: 4px;
display: block; }
.cms-countdown .countdown-item-container .countdown-period {
display: block;
font-size: 18px;
line-height: 25px;
font-weight: 500; }
@media (max-width: 1199px) {
.cms-countdown .countdown-amount {
font-size: 30px; }
.cms-countdown .countdown-period {
font-size: 14px; } }
.entry-content .widget.widget_newsletterwidget {
padding: 0;
margin: 0;
background: transparent; }
.entry-content .widget.widget_newsletterwidget .tnp-widget form {
position: relative; }
.entry-content .widget.widget_newsletterwidget .tnp-widget form .tnp-field-email {
margin-bottom: 0; }
.entry-content .widget.widget_newsletterwidget .tnp-widget form .tnp-field-email label {
display: none; }
.entry-content .widget.widget_newsletterwidget .tnp-widget form .tnp-field-email .tnp-email {
height: 56px;
padding: 10px 40px;
border-radius: 2em;
font-style: italic;
padding: 10px 35px 10px 45px; }
.entry-content .widget.widget_newsletterwidget .tnp-widget form .tnp-field-email .tnp-email::-webkit-input-placeholder {
font-size: 12px; }
.entry-content .widget.widget_newsletterwidget .tnp-widget form .tnp-field-email .tnp-email:-moz-placeholder {
font-size: 12px; }
.entry-content .widget.widget_newsletterwidget .tnp-widget form .tnp-field-email .tnp-email::-moz-placeholder {
font-size: 12px; }
.entry-content .widget.widget_newsletterwidget .tnp-widget form .tnp-field-email .tnp-email:-ms-input-placeholder {
font-size: 12px; }
.entry-content .widget.widget_newsletterwidget .tnp-widget form .tnp-field-button {
position: absolute;
top: 0;
right: 0;
width: 75px !important;
height: 100%;
margin-bottom: 0; }
.entry-content .widget.widget_newsletterwidget .tnp-widget form .tnp-field-button:hover:before {
color: #82d10c; }
.entry-content .widget.widget_newsletterwidget .tnp-widget form .tnp-field-button:before {
content: "\f105";
font-family: Fontawesome;
text-align: center;
position: absolute;
width: 100%;
height: 100%;
line-height: 56px;
top: 0;
left: 0;
color: #b4b4b4;
font-size: 16px;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.entry-content .widget.widget_newsletterwidget .tnp-widget form .tnp-field-button .tnp-submit {
background: transparent;
font-size: 0;
border: none;
border-radius: 0;
height: 56px;
text-indent: 10000px; }
.wpb_gallery .flex-direction-nav {
position: absolute;
top: 50%;
width: 100%; }
.wpb_gallery .flex-control-nav {
display: none; }
a.play-video {
color: #82d10c; }
a.play-video:hover, a.play-video:focus {
color: #050508; }
.cms-grid-filter {
margin: 30px 0 20px;
text-align: center; }
.cms-grid-filter ul li {
padding: 0; }
.cms-grid-filter ul li a {
color: #333;
cursor: pointer;
font-weight: 400;
font-size: 14px;
font-family: 'Open Sans', sans-serif;
margin: 0 15px 10px 0;
padding: 4px 40px;
border-radius: 20px;
overflow: visible;
position: relative;
display: inline-block;
-webkit-transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out, border-color 0.5s ease-in-out;
transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out, border-color 0.5s ease-in-out; }
.cms-grid-filter ul li a.active, .cms-grid-filter ul li a:hover, .cms-grid-filter ul li a:focus {
background: #82d10c;
color: #fff; }
.cms-client-carousel .owl-carousel {
position: relative; }
.cms-client-carousel .owl-carousel.has-nav {
padding: 0 30px; }
.cms-client-carousel .owl-carousel .owl-stage {
display: flex; }
.cms-client-carousel .owl-carousel .owl-item.active {
display: flex;
align-items: center; }
.cms-client-carousel .owl-carousel .owl-item .client-item {
width: 100%; }
.cms-client-carousel .owl-carousel .owl-item .client-image {
text-align: center; }
.cms-client-carousel .owl-carousel .owl-item img {
width: auto;
display: inline-block; }
.cms-client-carousel .owl-carousel .owl-nav .owl-prev, .cms-client-carousel .owl-carousel .owl-nav .owl-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 25px;
height: 25px;
line-height: 21px;
border-radius: 50%;
border: 2px solid #8f8f8f;
font-size: 13px;
color: #8f8f8f;
background: transparent;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.cms-client-carousel .owl-carousel .owl-nav .owl-prev:hover, .cms-client-carousel .owl-carousel .owl-nav .owl-next:hover, .cms-client-carousel .owl-carousel .owl-nav .owl-prev:focus, .cms-client-carousel .owl-carousel .owl-nav .owl-next:focus {
background: #82d10c;
color: #fff;
border-color: transparent; }
@media (min-width: 1300px) {
.cms-client-carousel .owl-carousel .owl-nav .owl-prev {
left: 0; }
.cms-client-carousel .owl-carousel .owl-nav .owl-next {
right: 0; } }
@media (max-width: 1299px) {
.cms-client-carousel .owl-carousel .owl-nav .owl-prev, .cms-client-carousel .owl-carousel .owl-nav .owl-next {
display: none; } }
.item-price {
display: inline-block;
background: #333;
color: #fff;
padding: 3px 10px; }
.template-cms_grid--blog {
text-align: center; }
.template-cms_grid--blog .acumec-blog.has-post-thumbnail .entry-meta-before {
margin-bottom: -40px; }
.template-cms_grid--blog .acumec-blog.has-post-thumbnail .entry-meta-before .entry-meta-wrap {
margin-bottom: 0; }
.template-cms_grid--blog .entry-meta-before {
text-align: center;
margin-bottom: 0px;
position: relative;
z-index: 1; }
@media (max-width: 479px) {
.template-cms_grid--blog .entry-meta-before {
margin-bottom: 0; } }
.template-cms_grid--blog .entry-meta-before .entry-meta-wrap {
position: relative;
display: inline-block;
padding: 20px 47px 25px;
background: #82d10c;
color: #fff;
border-radius: 5px;
margin-bottom: 40px; }
@media (max-width: 479px) {
.template-cms_grid--blog .entry-meta-before .entry-meta-wrap {
display: block;
padding: 17px 15px 22px;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0; } }
.template-cms_grid--blog .entry-meta-before .entry-meta-wrap ul.post-archive {
font-family: "Open Sans";
font-size: 12px;
font-weight: 700;
margin-bottom: 0; }
.template-cms_grid--blog .entry-meta-before .entry-meta-wrap ul.post-archive li {
position: relative;
display: inline-block; }
.template-cms_grid--blog .entry-meta-before .entry-meta-wrap ul.post-archive li + li {
margin-left: 15px;
padding-left: 15px; }
.template-cms_grid--blog .entry-meta-before .entry-meta-wrap ul.post-archive li + li:before {
position: absolute;
content: "|";
top: 0;
left: -4px; }
.template-cms_grid--blog .entry-meta-before .entry-meta-wrap ul.post-archive li a {
color: #fff; }
.template-cms_grid--blog .entry-meta-before .entry-meta-wrap ul.post-archive li a:hover, .template-cms_grid--blog .entry-meta-before .entry-meta-wrap ul.post-archive li a:focus {
color: #050508; }
.template-cms_grid--blog .entry-meta-before .entry-meta-wrap .author-image {
position: absolute;
left: 50%;
transform: translateX(-50%);
z-index: 1;
background: #82d10c;
border-radius: 50%;
bottom: -30px; }
.template-cms_grid--blog .entry-meta-before .entry-meta-wrap .author-image img {
display: inline-block;
margin: 7px;
border-radius: 50%; }
.template-cms_grid--blog .acumec-blog {
margin-bottom: 55px; }
.template-cms_grid--blog .blog-content {
padding: 0 !important; }
.template-cms_grid--blog .blog-content .entry-header h4.entry-title {
font-size: 16px;
font-weight: 700; }
.template-cms_grid--blog .blog-content .entry-content p {
margin-bottom: 15px;
line-height: 26px; }
.template-cms_grid--blog .blog-content .entry-content .entry-meta ul a:hover, .template-cms_grid--blog .blog-content .entry-content .entry-meta ul a:focus {
color: #050508; }
.template-cms_grid--blog .post-thumbnail {
margin-bottom: 30px;
border-radius: 5px; }
.template-cms_grid--blog .post-video {
margin-bottom: 22px; }
.template-cms_grid--blog .post-video iframe {
max-height: 250px !important; }
.template-cms_grid--blog .post-audio {
margin-bottom: 30px; }
.template-cms_grid--blog .post-link .entry-wrap {
padding: 30px !important; }
.template-cms_grid--blog .post-quote blockquote p.quote-content {
font-size: 16px; }
.template-cms_grid--blog .post-status .entry-wrap {
margin-bottom: 30px; }
.template-cms_grid--blog .entry-header {
padding: 0 15px; }
.template-cms_grid--blog .entry-header h4 .entry-title {
font-weight: 700; }
.template-cms_grid--blog .entry-content {
padding: 0 25px; }
.template-cms_grid--blog .navigation {
padding-top: 20px !important; }
.template-cms_grid--blog2 .blog-wrap .blog-content {
text-align: center; }
.template-cms_grid--blog2 .blog-wrap .blog-content .entry-header .entry-title {
font-size: 16px;
font-weight: 700;
margin-top: 24px;
line-height: 26px;
text-transform: uppercase; }
.template-cms_grid--blog2 .blog-wrap .blog-content .entry-header .entry-category {
font-size: 13px;
font-style: italic;
color: #888;
margin-bottom: 18px; }
.template-cms_grid--blog2 .blog-wrap .blog-content .entry-header .entry-category a {
color: inherit; }
.template-cms_grid--blog2 .blog-wrap .blog-content .entry-header .entry-category a:hover, .template-cms_grid--blog2 .blog-wrap .blog-content .entry-header .entry-category a:focus {
color: #82d10c; }
.template-cms_grid--blog2 .blog-wrap .entry-footer {
text-align: center; }
.template-cms_grid--blog2 .blog-wrap .entry-footer a {
color: #c6c6c6; }
.template-cms_grid--blog2 .blog-wrap .entry-footer a:hover, .template-cms_grid--blog2 .blog-wrap .entry-footer a:focus {
color: #82d10c; }
.template-cms_grid--blog2 .blog-wrap .entry-footer a i {
font-size: 24px;
padding-left: 0;
padding-bottom: 0; }
.template-cms_grid--blog2 .navigation {
padding-top: 20px !important; }
.template-cms_grid--case_studies .cms-grid-item {
padding-bottom: 15px; }
.template-cms_grid--case_studies .acumec-blog .blog-outer .blog-wrap .post-thumbnail {
border-radius: 5px; }
.template-cms_grid--case_studies .acumec-blog .blog-outer .blog-wrap .blog-content {
text-align: center;
font-family: "Open Sans";
padding: 25px 30px 0; }
.template-cms_grid--case_studies .acumec-blog .blog-outer .blog-wrap .blog-content .entry-title {
font-size: 16px;
line-height: 22px;
font-weight: 700;
text-transform: uppercase; }
.template-cms_grid--case_studies .acumec-blog .blog-outer .blog-wrap .blog-content .entry-meta ul {
color: #ff5927;
font-style: normal;
margin-bottom: 14px; }
.template-cms_grid--case_studies .acumec-blog .blog-outer .blog-wrap .blog-content .entry-meta ul li {
color: inherit;
font-size: 14px; }
.template-cms_grid--case_studies .navigation.paging-navigation {
margin-top: 20px; }
.template-cms_grid--projects .cms-grid-filter {
margin: 0; }
.template-cms_grid--projects .cms-grid-filter ul.cms-filter-category {
text-align: center;
margin-bottom: 38px; }
.template-cms_grid--projects .cms-grid-filter ul.cms-filter-category li {
position: relative;
padding: 0; }
.template-cms_grid--projects .cms-grid-filter ul.cms-filter-category li:before {
position: absolute;
content: "/";
top: 50%;
transform: translateY(-50%);
left: -5px; }
.template-cms_grid--projects .cms-grid-filter ul.cms-filter-category li a {
color: #444;
cursor: pointer;
font-size: 13px;
font-weight: 700;
font-family: 'Open Sans', sans-serif;
padding: 10px 25px;
margin: 0;
text-transform: uppercase;
overflow: visible;
position: relative;
display: inline-block;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.template-cms_grid--projects .cms-grid-filter ul.cms-filter-category li a.active, .template-cms_grid--projects .cms-grid-filter ul.cms-filter-category li a:hover, .template-cms_grid--projects .cms-grid-filter ul.cms-filter-category li a:focus {
color: #82d10c !important;
background: none; }
.template-cms_grid--projects .cms-grid-filter ul.cms-filter-category li:first-child:before {
content: none; }
.template-cms_grid--projects .cms-grid-filter ul.cms-filter-category li:first-child a {
padding-left: 0; }
.template-cms_grid--projects .cms-grid-filter ul.cms-filter-category li:last-child a {
padding-right: 0; }
.template-cms_grid--projects .cms-grid .cms-grid-item .cms-project-inner {
position: relative; }
.template-cms_grid--projects .cms-grid .cms-grid-item .cms-project-inner .project-thumbnail img {
width: 100%; }
.template-cms_grid--projects .cms-grid .cms-grid-item .cms-project-inner .grid-item-wrap {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(251, 251, 251, 0.9);
opacity: 0;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s;
cursor: pointer; }
.template-cms_grid--projects .cms-grid .cms-grid-item .cms-grid-inner {
position: relative;
height: 100%;
width: 100%;
overflow: hidden; }
.template-cms_grid--projects .cms-grid .cms-grid-item .cms-grid-inner .item-content {
position: absolute;
left: 0;
width: 100%;
top: 40%;
padding: 30px 60px;
text-align: center;
transform: translateY(-50%);
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
@media (max-width: 1599px) {
.template-cms_grid--projects .cms-grid .cms-grid-item .cms-grid-inner .item-content {
padding: 20px 40px; } }
@media (max-width: 1299px) {
.template-cms_grid--projects .cms-grid .cms-grid-item .cms-grid-inner .item-content {
padding: 15px 30px; } }
@media (max-width: 479px) {
.template-cms_grid--projects .cms-grid .cms-grid-item .cms-grid-inner .item-content {
padding: 15px; } }
.template-cms_grid--projects .cms-grid .cms-grid-item .cms-grid-inner .item-content .taxs {
color: #999; }
.template-cms_grid--projects .cms-grid .cms-grid-item .cms-grid-inner .item-content .taxs a {
color: inherit;
font-size: 13px;
font-style: italic; }
.template-cms_grid--projects .cms-grid .cms-grid-item .cms-grid-inner .item-content .taxs a:hover, .template-cms_grid--projects .cms-grid .cms-grid-item .cms-grid-inner .item-content .taxs a:focus {
color: #82d10c; }
.template-cms_grid--projects .cms-grid .cms-grid-item .cms-grid-inner .item-content .entry-title {
margin-bottom: 15px;
font-size: 18px;
font-weight: 700;
text-transform: capitalize; }
.template-cms_grid--projects .cms-grid .cms-grid-item .cms-grid-inner .item-content .grid-link a {
width: 51px;
height: 51px;
line-height: 51px;
color: #fff;
background: #0c0d12;
border-radius: 50%;
display: inline-block;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.template-cms_grid--projects .cms-grid .cms-grid-item .cms-grid-inner .item-content .grid-link a:hover, .template-cms_grid--projects .cms-grid .cms-grid-item .cms-grid-inner .item-content .grid-link a:focus {
color: #fff !important;
background: #82d10c !important; }
.template-cms_grid--projects .cms-grid .cms-grid-item .cms-grid-inner .item-content .btn-portfolio {
margin-top: 35px;
font-family: 'Open Sans', sans-serif;
font-size: 14px; }
@media (max-width: 479px) {
.template-cms_grid--projects .cms-grid .cms-grid-item .cms-grid-inner .item-content .btn-portfolio {
margin-top: 15px; } }
.template-cms_grid--projects .cms-grid .cms-grid-item:hover .cms-project-inner .grid-item-wrap {
opacity: 1;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.template-cms_grid--projects .cms-grid .cms-grid-item:hover .cms-grid-inner .item-content {
top: 50%;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.template-cms_grid--projects .cms-load-posts {
margin-top: 40px; }
.template-cms_grid--projects .navigation {
margin-top: 40px; }
.zo-masonry-wrapper .zo-masonry-filter ul.zo-filter-category {
text-align: center;
margin-bottom: 38px; }
.zo-masonry-wrapper .zo-masonry-filter ul.zo-filter-category li {
position: relative;
padding: 0; }
.zo-masonry-wrapper .zo-masonry-filter ul.zo-filter-category li:before {
position: absolute;
content: "/";
top: 50%;
transform: translateY(-50%);
left: -5px; }
.zo-masonry-wrapper .zo-masonry-filter ul.zo-filter-category li a {
color: #444;
cursor: pointer;
font-size: 13px;
font-weight: 700;
font-family: 'Open Sans', sans-serif;
padding: 10px 25px;
text-transform: uppercase;
overflow: visible;
position: relative;
display: inline-block;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.zo-masonry-wrapper .zo-masonry-filter ul.zo-filter-category li a.active, .zo-masonry-wrapper .zo-masonry-filter ul.zo-filter-category li a:hover, .zo-masonry-wrapper .zo-masonry-filter ul.zo-filter-category li a:focus {
color: #82d10c !important; }
.zo-masonry-wrapper .zo-masonry-filter ul.zo-filter-category li:first-child:before {
content: none; }
.zo-masonry-wrapper .zo-masonry-filter ul.zo-filter-category li:first-child a {
padding-left: 0; }
.zo-masonry-wrapper .zo-masonry-filter ul.zo-filter-category li:last-child a {
padding-right: 0; }
.zo-masonry-wrapper .zo-masonry .zo-masonry-item .zo-masonry-inner {
position: relative; }
.zo-masonry-wrapper .zo-masonry .zo-masonry-item .zo-masonry-inner .grid-item-wrap {
position: absolute;
width: 100%;
height: 100%;
background-color: rgba(251, 251, 251, 0.9);
opacity: 0;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s;
cursor: pointer; }
.zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner {
position: relative;
height: 100%;
width: 100%;
overflow: hidden; }
.zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content {
position: absolute;
left: 0;
width: 100%;
top: 40%;
padding: 30px 60px;
text-align: center;
transform: translateY(-50%);
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
@media (max-width: 1599px) {
.zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content {
padding: 20px 40px; } }
@media (max-width: 1299px) {
.zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content {
padding: 15px 30px; } }
@media (max-width: 479px) {
.zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content {
padding: 15px; } }
.zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content .taxs {
color: #999; }
.zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content .taxs a {
color: inherit;
font-size: 13px;
font-style: italic; }
.zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content .taxs a:hover, .zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content .taxs a:focus {
color: #82d10c; }
.zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content .entry-title {
margin-bottom: 15px;
font-size: 18px;
font-weight: 700; }
.zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content .grid-link a {
width: 51px;
height: 51px;
line-height: 51px;
color: #fff;
background: #0c0d12;
border-radius: 50%;
display: inline-block;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content .grid-link a:hover, .zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content .grid-link a:focus {
color: #fff !important;
background: #82d10c !important; }
.zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content .btn-portfolio {
margin-top: 35px;
font-family: 'Open Sans', sans-serif;
font-size: 14px; }
@media (max-width: 479px) {
.zo-masonry-wrapper .zo-masonry .zo-masonry-item .cms-grid-inner .item-content .btn-portfolio {
margin-top: 15px; } }
.zo-masonry-wrapper .zo-masonry .zo-masonry-item:hover .zo-masonry-inner .grid-item-wrap {
opacity: 1;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.zo-masonry-wrapper .zo-masonry .zo-masonry-item:hover .zo-masonry-inner .item-content {
top: 50%;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.zo-masonry-wrapper .navigation {
margin-top: 40px; }
.cms-grid-team-1 .cms-grid-item {
margin-bottom: 40px; }
.cms-grid-team-1 .cms-grid-item-wrap .item-media {
position: relative;
border-radius: 5px;
overflow: hidden;
margin-bottom: 20px; }
.cms-grid-team-1 .cms-grid-item-wrap .item-media:hover .media-overlay {
opacity: 1;
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0); }
.cms-grid-team-1 .cms-grid-item-wrap .item-media .media-links img {
width: 100%; }
.cms-grid-team-1 .cms-grid-item-wrap .item-media .media-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(130, 209, 12, 0.95);
opacity: 0;
-webkit-transform: translate(100%, 0);
-ms-transform: translate(100%, 0);
transform: translate(100%, 0);
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.cms-grid-team-1 .cms-grid-item-wrap .item-media .media-overlay:hover, .cms-grid-team-1 .cms-grid-item-wrap .item-media .media-overlay:focus {
opacity: 1; }
.cms-grid-team-1 .cms-grid-item-wrap .item-media .media-overlay .team-btn {
position: relative;
height: 100%;
width: 100%;
overflow: hidden; }
.cms-grid-team-1 .cms-grid-item-wrap .item-media .media-overlay .team-btn .team-button {
background: transparent;
border: 2px solid #fff;
top: 50%;
text-align: center;
transform: translateY(-50%); }
.cms-grid-team-1 .cms-grid-item-wrap .item-media .media-overlay .team-btn .team-button:hover, .cms-grid-team-1 .cms-grid-item-wrap .item-media .media-overlay .team-btn .team-button:focus {
background: #0c0d12;
color: #fff; }
.cms-grid-team-1 .cms-grid-item-wrap .item-content {
font-family: "Montserrat"; }
.cms-grid-team-1 .cms-grid-item-wrap .item-content .entry-title {
font-weight: 700;
font-size: 18px;
font-family: inherit; }
.cms-grid-team-1 .cms-grid-item-wrap .item-content .team-position {
font-size: 12px;
line-height: 20px;
margin-bottom: 25px;
font-family: inherit; }
.cms-grid-team-1 .cms-grid-item-wrap .item-content .team-contact {
padding-bottom: 10px; }
.cms-grid-team-1 .cms-grid-item-wrap .item-content .team-social a {
border-radius: 5px;
margin: 0; }
.cms-grid-team-1 .cms-grid-item-wrap .item-content .team-social a:hover, .cms-grid-team-1 .cms-grid-item-wrap .item-content .team-social a:focus {
background: #82d10c !important;
color: #fff !important; }
.cms-grid-team-1 .navigation {
padding-top: 20px !important; }
.cms-grid-team-2 .cms-grid-item {
margin-bottom: 20px; }
.cms-grid-team-2 .cms-grid-item-wrap .item-media {
position: relative;
border-radius: 5px;
overflow: hidden;
margin-bottom: 20px; }
.cms-grid-team-2 .cms-grid-item-wrap .item-media:hover .media-overlay {
opacity: 1;
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0); }
.cms-grid-team-2 .cms-grid-item-wrap .item-media .media-links img {
width: 100%; }
.cms-grid-team-2 .cms-grid-item-wrap .item-media .media-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transform: translate(100%, 0);
-ms-transform: translate(100%, 0);
transform: translate(100%, 0);
background: rgba(130, 209, 12, 0.95);
opacity: 0;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.cms-grid-team-2 .cms-grid-item-wrap .item-media .media-overlay:hover, .cms-grid-team-2 .cms-grid-item-wrap .item-media .media-overlay:focus {
opacity: 1; }
.cms-grid-team-2 .cms-grid-item-wrap .item-media .media-overlay .team-btn {
position: relative;
height: 100%;
width: 100%;
overflow: hidden; }
.cms-grid-team-2 .cms-grid-item-wrap .item-media .media-overlay .team-btn .team-button {
background: transparent;
border: 2px solid #fff;
top: 50%;
text-align: center;
transform: translateY(-50%); }
.cms-grid-team-2 .cms-grid-item-wrap .item-media .media-overlay .team-btn .team-button:hover, .cms-grid-team-2 .cms-grid-item-wrap .item-media .media-overlay .team-btn .team-button:focus {
background: #0c0d12;
color: #fff; }
.cms-grid-team-2 .cms-grid-item-wrap .item-content {
font-family: "Montserrat"; }
.cms-grid-team-2 .cms-grid-item-wrap .item-content .item-content-wrap {
display: table;
width: 100%;
padding-bottom: 20px; }
@media (min-width: 480px) {
.cms-grid-team-2 .cms-grid-item-wrap .item-content .item-content-wrap .item-heading, .cms-grid-team-2 .cms-grid-item-wrap .item-content .item-content-wrap ul.team-social {
display: table-cell;
vertical-align: middle; } }
.cms-grid-team-2 .cms-grid-item-wrap .item-content .item-heading .entry-title {
font-size: 18px; }
.cms-grid-team-2 .cms-grid-item-wrap .item-content .item-heading .team-position {
font-size: 12px;
line-height: 20px;
margin-bottom: 0;
margin-top: 2px; }
.cms-grid-team-2 .cms-grid-item-wrap .item-content .team-contact {
padding-bottom: 10px;
font-family: "Lato"; }
.cms-grid-team-2 .cms-grid-item-wrap .item-content .team-contact li {
font-size: 14px;
margin-bottom: 5px; }
.cms-grid-team-2 .cms-grid-item-wrap .item-content .team-contact li span.title {
font-weight: 500;
margin-right: 10px; }
@media (max-width: 479px) {
.cms-grid-team-2 .cms-grid-item-wrap .item-content .team-social {
margin-top: 10px; } }
.cms-grid-team-2 .cms-grid-item-wrap .item-content .team-social li {
padding: 2px 0; }
.cms-grid-team-2 .cms-grid-item-wrap .item-content .team-social li a {
border-radius: 50%;
height: 35px;
margin: 0; }
.cms-grid-team-2 .cms-grid-item-wrap .item-content .team-social li a:hover, .cms-grid-team-2 .cms-grid-item-wrap .item-content .team-social li a:focus {
background: #82d10c !important;
color: #fff !important; }
.cms-grid-team-2 .navigation {
padding-top: 20px !important; }
.cms-testimonial.has-bg {
padding: 65px 135px; }
@media (max-width: 991px) {
.cms-testimonial.has-bg {
padding: 50px 100px; } }
@media (max-width: 767px) {
.cms-testimonial.has-bg {
padding: 45px 70px; } }
@media (max-width: 479px) {
.cms-testimonial.has-bg {
padding: 40px; } }
.cms-testimonial.center {
text-align: center; }
.cms-testimonial.center .testimonial {
display: table;
margin: 0 auto; }
.cms-testimonial.right {
text-align: right; }
.cms-testimonial.right .testimonial {
display: table;
margin: 0 0 0 auto; }
.cms-testimonial .testi-description blockquote {
margin-bottom: 30px; }
.cms-testimonial .testi-description blockquote p {
font-style: italic;
font-size: 20px;
line-height: 34px;
letter-spacing: 0.6px; }
.cms-testimonial .testimonial {
display: table; }
.cms-testimonial .testimonial > div {
display: table-cell;
vertical-align: middle; }
.cms-testimonial .testimonial .testi-wrap > div {
display: table-cell;
vertical-align: middle; }
.cms-testimonial .testimonial .testi-wrap .testi-avatar img {
width: 55px;
margin-right: 15px;
border-radius: 50%; }
.cms-testimonial .testimonial .testi-wrap .testi-content h4 {
margin-bottom: 0; }
.cms-testimonial .testimonial .testi-wrap .testi-content .testi-position {
font-family: "Open Sans";
font-size: 11px;
line-height: 18px;
margin-top: 2px;
color: #82d10c; }
.cms-testimonial .testimonial .testi-sign {
padding-left: 65px; }
.cms-testimonial .testimonial .testi-sign img {
max-height: 55px;
width: auto; }
.cms-grid-service-1 .cms-grid-service {
position: relative;
padding: 70px 55px 65px;
margin-bottom: 30px;
overflow: hidden; }
.cms-grid-service-1 .cms-grid-service .service-bg1, .cms-grid-service-1 .cms-grid-service .service-bg2 {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: -1;
background-position: center !important;
background-size: cover !important;
background-repeat: no-repeat !important;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.cms-grid-service-1 .cms-grid-service .service-bg1 {
opacity: 1; }
.cms-grid-service-1 .cms-grid-service .service-bg2 {
opacity: 0;
-webkit-transition: all 0.2s 0.2s ease-in-out;
transition: all 0.2s 0.2s ease-in-out; }
.cms-grid-service-1 .cms-grid-service .service-bg2 .overlay {
width: 100%;
height: 100%;
top: 0;
left: 0;
background: transparent; }
.cms-grid-service-1 .cms-grid-service:hover .service-bg1 {
opacity: 0; }
.cms-grid-service-1 .cms-grid-service:hover .service-bg2 {
opacity: 1;
overflow: hidden;
-webkit-transition-delay: 0s;
transition-delay: 0s;
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0); }
.cms-grid-service-1 .cms-grid-service .item-media .media-links .cms-grid-media {
margin-bottom: 25px; }
.cms-grid-service-1 .cms-grid-service .item-media .media-links .cms-grid-media img {
max-height: 100px; }
.cms-grid-service-1 .cms-grid-service .item-content .entry-title {
margin-bottom: 15px;
font-size: 18px; }
.cms-grid-service-1 .cms-grid-service .item-content .item-description {
font-size: 14px; }
.cms-grid-service-1 .navigation {
margin-top: 40px; }
.cms-grid-service-2 .cms-grid-service {
position: relative;
margin-bottom: 52px;
overflow: hidden; }
.cms-grid-service-2 .cms-grid-service .item-media .media-links .cms-grid-media {
margin-bottom: 25px; }
.cms-grid-service-2 .cms-grid-service .item-media .media-links .cms-grid-media img {
height: 90px; }
.cms-grid-service-2 .cms-grid-service .item-content .service-title {
margin-bottom: 15px;
font-weight: 700;
color: #444;
text-transform: uppercase; }
.cms-grid-service-2 .cms-grid-service .item-content .item-description {
font-size: 14px;
margin-top: 10px; }
.cms-grid-service-2 .cms-grid-service .item-content ul.service-list {
position: relative;
font-size: 13px;
color: #82d10c;
margin-top: 10px;
margin-bottom: 0; }
.cms-grid-service-2 .cms-grid-service .item-content ul.service-list li {
margin-bottom: 10px;
padding-left: 21px; }
.cms-grid-service-2 .cms-grid-service .item-content ul.service-list li:last-child {
margin-bottom: 0; }
.cms-grid-service-2 .cms-grid-service .item-content ul.service-list li:before {
content: "";
position: absolute;
width: 5px;
height: 5px;
background: #82d10c;
left: 0;
top: 50%;
transform: translateY(-50%); }
.cms-grid-service-2 .cms-grid-service .item-content ul.service-list span {
color: #666; }
.cms-grid-service-2 .navigation {
padding-top: 18px !important; }
.cms-grid-service-2 .cms-load-posts {
margin-top: 10px; }
.cms-grid-service-3 .cms-grid-service {
position: relative;
padding: 60px 33px 54px;
margin-bottom: 30px;
overflow: hidden;
box-shadow: 0 0px 20px -3px #e5e5e5; }
.cms-grid-service-3 .cms-grid-service:hover img {
zoom: 1;
filter: alpha(opacity=80);
opacity: 0.8;
-webkit-transform: rotate(2deg);
-ms-transform: rotate(2deg);
transform: rotate(2deg);
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2); }
.cms-grid-service-3 .cms-grid-service .item-media .media-links .cms-grid-media {
margin-bottom: 25px; }
.cms-grid-service-3 .cms-grid-service .item-media .media-links .cms-grid-media img {
max-width: 70px;
height: 70px;
zoom: 1;
filter: alpha(opacity=100);
opacity: 1;
-webkit-transition: all 0.9s ease 0s;
transition: all 0.9s ease 0s; }
.cms-grid-service-3 .cms-grid-service .item-content .entry-title {
margin-bottom: 12px;
font-size: 16px;
line-height: 24px;
font-weight: 700; }
.cms-grid-service-3 .cms-grid-service .item-content .item-description {
font-size: 14px; }
.cms-grid-service-3 .navigation {
margin-top: 40px; }
.wpb_gallery_slides ul.wpb_image_grid_ul {
margin: -3px; }
.wpb_gallery_slides ul.wpb_image_grid_ul li.isotope-item {
padding: 3px; }
.cms-pricing-table.style1 {
padding: 60px 30px;
border-radius: 5px;
margin-bottom: 30px;
background: #fff;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.07); }
@media (min-width: 768px) {
.cms-pricing-table.style1.overlap {
margin-bottom: -120px; } }
.cms-pricing-table.style1 .title h3 {
font-size: 16px;
font-weight: 700;
color: #82d10c;
margin-bottom: 0;
text-transform: uppercase;
margin-bottom: 6px; }
.cms-pricing-table.style1 .sub_title {
font-size: 14px;
line-height: 1; }
.cms-pricing-table.style1 .pricing {
font-family: "Open Sans";
font-size: 40px;
font-weight: 800;
margin-bottom: 16px;
color: #444;
line-height: 1; }
.cms-pricing-table.style1 .sub_pricing {
font-family: "Open Sans";
font-size: 13px;
font-weight: 400;
position: relative;
color: #888;
margin-bottom: 16px; }
.cms-pricing-table.style1 .pricing-thumbnail {
margin-bottom: 16px; }
.cms-pricing-table.style1 .pricing-thumbnail img {
max-height: 150px; }
.cms-pricing-table.style1 .btn-pricing {
padding: 14px 38px;
border-radius: 2em; }
.cms-pricing-table.style1.default {
position: relative;
z-index: 1; }
.cms-pricing-table.style1.default .btn-pricing {
padding: 12px 38px;
background: transparent;
color: #444;
border: 3px solid #555; }
.cms-pricing-table.style1.default .btn-pricing:hover, .cms-pricing-table.style1.default .btn-pricing:focus {
background: #0c0d12 !important;
color: #fff !important;
border-color: transparent !important; }
.cms-pricing-table.style1.active {
background: #fbfbfb;
position: relative;
z-index: 0; }
.cms-pricing-table.style1.active a.btn:hover, .cms-pricing-table.style1.active a.btn:focus {
background: #0c0d12 !important;
color: #fff !important; }
.cms-pricing-table.style1 ul.features-list {
margin-bottom: 30px;
font-size: 13px; }
.cms-pricing-table.style1 ul.features-list li {
margin-bottom: 12px; }
.cms-pricing-table.style1 ul.features-list li i {
color: #82d10c;
margin-right: 10px; }
.cms-pricing-table.style2 {
border-radius: 5px;
box-shadow: 0 0px 20px -3px #ececec;
background: #fff;
padding: 60px 65px;
margin-bottom: 30px;
position: relative;
overflow: hidden;
z-index: 0; }
@media (max-width: 1199px) {
.cms-pricing-table.style2 {
padding: 50px 40px; } }
.cms-pricing-table.style2.active {
background: #82d10c;
z-index: 1; }
@media (min-width: 992px) {
.cms-pricing-table.style2.active {
padding-bottom: 84px;
padding-top: 84px;
margin-top: -23px; } }
.cms-pricing-table.style2.active .pricing-icon, .cms-pricing-table.style2.active .title h3, .cms-pricing-table.style2.active .pricing, .cms-pricing-table.style2.active .pricing .sub_pricing, .cms-pricing-table.style2.active .description, .cms-pricing-table.style2.active ul.features-list li, .cms-pricing-table.style2.active ul.features-list li i {
color: #fff; }
.cms-pricing-table.style2.active .btn-pricing {
padding: 15px 50px;
background: transparent;
border: 3px solid #fff;
color: #fff; }
.cms-pricing-table.style2.active .btn-pricing:hover, .cms-pricing-table.style2.active .btn-pricing:focus {
background: #0c0d12 !important;
color: #fff !important;
border-color: #fff !important; }
.cms-pricing-table.style2 .pricing-icon {
color: #82d10c; }
.cms-pricing-table.style2 .pricing-icon span {
font-size: 50px;
color: inherit; }
.cms-pricing-table.style2 .pricing-thumbnail img {
width: auto;
max-height: 50px; }
.cms-pricing-table.style2 .pricing-icon, .cms-pricing-table.style2 .pricing-thumbnail {
margin-bottom: 30px; }
.cms-pricing-table.style2 .title h3 {
font-size: 18px;
font-weight: 700;
margin-bottom: 18px; }
.cms-pricing-table.style2 .sub_title {
color: #363332;
font-size: 13px; }
.cms-pricing-table.style2 .pricing {
color: #444;
font-weight: 800;
font-size: 50px;
font-family: 'Open Sans'; }
.cms-pricing-table.style2 .pricing span.prefix_pricing {
font-size: 25px;
margin-right: 10px;
vertical-align: super; }
.cms-pricing-table.style2 .pricing .sub_pricing {
font-weight: 400;
font-size: 12px;
color: #888;
margin-left: 2px; }
.cms-pricing-table.style2 .description {
padding-top: 23px;
font-style: italic;
font-size: 14px; }
.cms-pricing-table.style2 ul.features-list {
margin: 30px 0 30px; }
.cms-pricing-table.style2 ul.features-list li {
font-size: 15px;
font-weight: 400;
color: #444;
font-size: 13px;
line-height: 1.4;
padding: 7px 0; }
.cms-pricing-table.style2 ul.features-list li i {
margin-right: 10px;
color: #82d10c; }
.cms-pricing-table.style2 .btn-pricing {
margin-top: 7px;
padding: 17px 50px;
border: 1px solid;
border-radius: 25px; }
.cms-pricing-table.style2 .btn-pricing:hover, .cms-pricing-table.style2 .btn-pricing:focus {
background: #0c0d12 !important;
color: #fff !important; }
.fa-ul {
margin: 0 0 0 20px;
padding-bottom: 10px; }
.fa-ul li {
margin: 0 0 10px 0; }
.fa-ul li:last-child {
margin: 0; }
.fa-ul li i {
margin-top: 2px; }
.list-light li i {
color: #ccc; }
.list-dark li i {
color: #333; }
.list-colored li i {
color: #82d10c; }
.pos-inline {
display: inline-block; }
.vc_tta-accordion.vc_tta-style-theme .vc_tta-panel .vc_tta-panel-heading h4 {
position: relative;
color: #333; }
.vc_tta-accordion.vc_tta-style-theme .vc_tta-panel .vc_tta-panel-heading h4:before {
position: absolute;
content: "";
width: 26px;
height: 26px;
border-radius: 50%;
top: 50%;
transform: translateY(-50%);
background: #1b1b1b; }
.vc_tta-accordion.vc_tta-style-theme .vc_tta-panel .vc_tta-panel-heading h4 a {
padding: 19px 15px 19px 60px !important;
font-size: 16px;
font-weight: 700;
line-height: 1.3; }
.vc_tta-accordion.vc_tta-style-theme .vc_tta-panel .vc_tta-panel-heading h4 a i {
width: 10px;
height: 10px;
color: #fff; }
.vc_tta-accordion.vc_tta-style-theme .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-controls-icon-position-left:before {
left: 20px; }
.vc_tta-accordion.vc_tta-style-theme .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-controls-icon-position-left i {
left: 28px; }
.vc_tta-accordion.vc_tta-style-theme .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-controls-icon-position-right:before {
right: 20px; }
.vc_tta-accordion.vc_tta-style-theme .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-controls-icon-position-right i {
right: 28px; }
.vc_tta-accordion.vc_tta-style-theme .vc_tta-panel .vc_tta-panel-body {
padding: 20px 0 35px 0 !important; }
.vc_tta-accordion.vc_tta-style-theme .vc_tta-panel.vc_active .vc_tta-panel-heading h4:before {
background: #82d10c; }
.vc_tta-accordion.vc_tta-style-primary .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
font-size: 18px; }
.vc_tta-accordion.vc_tta-style-primary .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title > a {
padding-left: 52px !important;
line-height: 1.3; }
.vc_tta-accordion.vc_tta-style-primary .vc_tta-panel.vc_active .vc_tta-panel-heading, .vc_tta-accordion.vc_tta-style-primary .vc_tta-panel.vc_active .vc_tta-panel-body {
background: #e9e9e9; }
.vc_tta-accordion.vc_tta-style-primary .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title, .vc_tta-accordion.vc_tta-style-primary .vc_tta-panel.vc_active .vc_tta-panel-body .vc_tta-panel-title {
color: #4e81f3; }
.vc_tta-accordion.vc_tta-style-primary .vc_tta-panel-heading {
padding: 13px; }
.vc_tta-accordion.vc_tta-style-primary.vc_tta-controls-align-left .vc_tta-panel-body {
padding: 0 60px 25px 60px !important;
margin-top: -10px; }
.vc_tta-accordion.vc_tta-style-second .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading {
padding: 0;
border: none !important;
background: #e8eef1; }
.vc_tta-accordion.vc_tta-style-second .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
font-weight: 500;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1.3px;
color: #666; }
.vc_tta-accordion.vc_tta-style-second .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title > a {
padding: 17px 62px 17px 62px;
line-height: 1.3; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-shape-rounded .vc_tta-panels .vc_tta-panel-heading {
border-radius: 5px !important; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-controls-align-left .vc_tta-panel-body {
padding: 18px 0 !important;
margin-top: -10px; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-blue .vc_tta-panel.vc_active .vc_tta-panel-heading {
background: #5472d2; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-blue .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-turquoise .vc_tta-panel.vc_active .vc_tta-panel-heading {
background: #00c1cf; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-turquoise .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-pink .vc_tta-panel.vc_active .vc_tta-panel-heading {
background: #fe6c61; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-pink .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-violet .vc_tta-panel.vc_active .vc_tta-panel-heading {
background: #8d6dc4; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-violet .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-peacoc .vc_tta-panel.vc_active .vc_tta-panel-heading {
background: #4cadc9; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-peacoc .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-chino .vc_tta-panel.vc_active .vc_tta-panel-heading {
background: #cec2ab; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-chino .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-mulled-wine .vc_tta-panel.vc_active .vc_tta-panel-heading {
background: #50485b; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-mulled-wine .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-vista-blue .vc_tta-panel.vc_active .vc_tta-panel-heading {
background: #75d69c; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-vista-blue .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-black .vc_tta-panel.vc_active .vc_tta-panel-heading {
background: #2a2a2a; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-black .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-grey .vc_tta-panel.vc_active .vc_tta-panel-heading {
background: #f7f7f7; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-orange .vc_tta-panel.vc_active .vc_tta-panel-heading {
background: #f7be68; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-orange .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-sky .vc_tta-panel.vc_active .vc_tta-panel-heading {
background: #5aa1e3; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-sky .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-green .vc_tta-panel.vc_active .vc_tta-panel-heading {
background: #6dab3c; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-green .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-juicy-pink .vc_tta-panel.vc_active .vc_tta-panel-heading {
background: #f4524d; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-juicy-pink .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-sandy-brown .vc_tta-panel.vc_active .vc_tta-panel-heading {
background: #f79468; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-sandy-brown .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-purple .vc_tta-panel.vc_active .vc_tta-panel-heading {
background: #b97ebb; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-purple .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-white .vc_tta-panel.vc_active .vc_tta-panel-heading {
background: #fff; }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-gradient .vc_tta-panel.vc_active .vc_tta-panel-heading {
background: linear-gradient(to right, , ); }
.vc_tta-accordion.vc_tta-style-second.vc_tta-color-gradient .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-color-blue .vc_tta-panel .vc_tta-panel-heading {
background: #5472d2; }
.vc_tta-accordion.vc_tta-color-blue .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-color-turquoise .vc_tta-panel .vc_tta-panel-heading {
background: #00c1cf; }
.vc_tta-accordion.vc_tta-color-turquoise .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-color-pink .vc_tta-panel .vc_tta-panel-heading {
background: #fe6c61; }
.vc_tta-accordion.vc_tta-color-pink .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-color-violet .vc_tta-panel .vc_tta-panel-heading {
background: #8d6dc4; }
.vc_tta-accordion.vc_tta-color-violet .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-color-peacoc .vc_tta-panel .vc_tta-panel-heading {
background: #4cadc9; }
.vc_tta-accordion.vc_tta-color-peacoc .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-color-chino .vc_tta-panel .vc_tta-panel-heading {
background: #cec2ab; }
.vc_tta-accordion.vc_tta-color-chino .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-color-mulled-wine .vc_tta-panel .vc_tta-panel-heading {
background: #50485b; }
.vc_tta-accordion.vc_tta-color-mulled-wine .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-color-vista-blue .vc_tta-panel .vc_tta-panel-heading {
background: #75d69c; }
.vc_tta-accordion.vc_tta-color-vista-blue .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-color-black .vc_tta-panel .vc_tta-panel-heading {
background: #2a2a2a; }
.vc_tta-accordion.vc_tta-color-black .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-color-grey .vc_tta-panel .vc_tta-panel-heading {
background: #f7f7f7; }
.vc_tta-accordion.vc_tta-color-orange .vc_tta-panel .vc_tta-panel-heading {
background: #f7be68; }
.vc_tta-accordion.vc_tta-color-orange .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-color-sky .vc_tta-panel .vc_tta-panel-heading {
background: #5aa1e3; }
.vc_tta-accordion.vc_tta-color-sky .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-color-green .vc_tta-panel .vc_tta-panel-heading {
background: #6dab3c; }
.vc_tta-accordion.vc_tta-color-green .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-color-juicy-pink .vc_tta-panel .vc_tta-panel-heading {
background: #f4524d; }
.vc_tta-accordion.vc_tta-color-juicy-pink .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-color-sandy-brown .vc_tta-panel .vc_tta-panel-heading {
background: #f79468; }
.vc_tta-accordion.vc_tta-color-sandy-brown .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-color-purple .vc_tta-panel .vc_tta-panel-heading {
background: #b97ebb; }
.vc_tta-accordion.vc_tta-color-purple .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-accordion.vc_tta-color-white .vc_tta-panel .vc_tta-panel-heading {
background: #fff; }
.vc_tta-accordion.vc_tta-color-gradient .vc_tta-panel .vc_tta-panel-heading {
background: linear-gradient(to right, , ); }
.vc_tta-accordion.vc_tta-color-gradient .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
color: #fff; }
.vc_tta-tabs.vc_tta-style-theme .vc_tta-tabs-list {
display: flex !important; }
.vc_tta-tabs.vc_tta-style-theme .vc_tta-tab {
display: flex !important;
flex-wrap: wrap;
align-items: flex-start;
border-radius: 0;
background: transparent;
border: none;
padding-right: 60px !important;
color: inherit;
text-align: center;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.vc_tta-tabs.vc_tta-style-theme .vc_tta-tab:last-child {
padding-right: 0 !important; }
.vc_tta-tabs.vc_tta-style-theme .vc_tta-tab:last-child > a:before {
content: none !important; }
.vc_tta-tabs.vc_tta-style-theme .vc_tta-tab.vc_active, .vc_tta-tabs.vc_tta-style-theme .vc_tta-tab.vc_active:hover, .vc_tta-tabs.vc_tta-style-theme .vc_tta-tab.vc_active:focus {
border-radius: 0;
background: transparent;
border: none;
color: inherit;
border: none; }
.vc_tta-tabs.vc_tta-style-theme .vc_tta-tab.vc_active h3 {
background: #82d10c;
color: #fff;
border-color: #82d10c; }
.vc_tta-tabs.vc_tta-style-theme .vc_tta-tab.vc_active p a {
color: #82d10c; }
.vc_tta-tabs.vc_tta-style-theme .vc_tta-tab:hover h3, .vc_tta-tabs.vc_tta-style-theme .vc_tta-tab:focus h3 {
background: #82d10c;
color: #fff;
border-color: #82d10c; }
.vc_tta-tabs.vc_tta-style-theme .vc_tta-tab:hover a, .vc_tta-tabs.vc_tta-style-theme .vc_tta-tab:focus a {
color: #82d10c; }
.vc_tta-tabs.vc_tta-style-theme .vc_tta-tab > a {
padding: 0 !important;
margin: 0 !important;
border: none !important;
position: unset !important; }
.vc_tta-tabs.vc_tta-style-theme .vc_tta-tab > a:before {
content: "";
display: block;
position: absolute;
background: #dfdfe0;
top: 23px !important;
right: -45px !important;
width: 100% !important;
height: 2px !important;
border: none !important; }
.vc_tta-tabs.vc_tta-style-theme .vc_tta-tab > a:hover h3, .vc_tta-tabs.vc_tta-style-theme .vc_tta-tab > a:focus h3 {
background: #82d10c;
color: #fff;
border-color: #82d10c; }
.vc_tta-tabs.vc_tta-style-theme .vc_tta-tab > a h3 {
width: 45px;
height: 45px;
line-height: 45px;
border-radius: 50%;
font-weight: 500;
background: #fff;
border: 1px solid #dfdfe0;
margin-bottom: 0;
color: rgba(95, 95, 95, 0.5);
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.vc_tta-tabs.vc_tta-style-theme .vc_tta-tab p {
margin-top: 14px;
text-align: left; }
.vc_tta-tabs.vc_tta-style-theme .vc_tta-tab p a {
font-size: 14px;
font-family: "Open Sans";
letter-spacing: 0.5px;
color: rgba(95, 95, 95, 0.5); }
.vc_tta-tabs.vc_tta-style-theme .vc_tta-tab p a:hover, .vc_tta-tabs.vc_tta-style-theme .vc_tta-tab p a:focus {
color: #82d10c; }
@media (max-width: 767px) {
.vc_tta-tabs.vc_tta-style-theme .vc_tta-panel-heading {
background: #f5f5f5; } }
.vc_tta-tabs.vc_tta-style-theme .vc_tta-panel-body {
padding: 0 !important;
border: none !important; }
.cms-progress-wraper.layout_style2 .cms-progress-header {
padding-bottom: 5px; }
.cms-progress-wraper.layout_style2 .cms-progress-title {
display: inline-block; }
.cms-progress-wraper.layout_style1 .cms-progress-header {
padding-bottom: 16px; }
.cms-progress-wraper.layout_style1 .cms-progress-title {
float: left;
font-weight: 500;
font-style: italic;
color: #555; }
.cms-progress-wraper.layout_style1 .cms-progress-value {
float: right;
font-style: normal;
font-weight: 700; }
.cms-progress-wraper .cms-progress-header {
font-size: 15px;
font-weight: 700;
color: #555; }
.cms-progress-wraper .cms-progress-header .cms-progress-title {
margin-bottom: 0;
color: inherit; }
.cms-progress-wraper .cms-progress-header .cms-progress-value {
line-height: 1; }
.cms-progress-wraper .cms-progress {
margin-bottom: 30px;
box-shadow: none;
background: #f7f7f7; }
.cms-progress-wraper .cms-progress .progress-bar {
box-shadow: none; }
.cms-message-box .alert {
padding: 13px 15px; }
.cms-message-box .alert h4 {
margin-bottom: auto;
display: inline-block; }
.cms-message-box .alert-theme {
background: #82d10c;
color: #fff; }
.vc_cta3-container .vc_cta3-content h2 {
color: #666; }
.vc_cta3-container .vc_cta3-content p {
margin-bottom: 15px;
font-size: 21px;
font-weight: 200; }
.vc_btn3-color-default {
background: #0c0d12 !important;
color: #fff !important;
border: 1px solid #0c0d12 !important; }
.vc_btn3-color-default:hover, .vc_btn3-color-default:focus {
background: #82d10c !important;
color: #fff !important;
border: 1px solid #82d10c !important; }
.vc_btn3-color-primary {
background: #82d10c !important;
color: #fff !important;
border: 1px solid transparent !important; }
.vc_btn3-color-primary:hover, .vc_btn3-color-primary:focus {
background: #0c0d12 !important;
color: #fff !important;
border: 1px solid transparent !important; }
.vc_general.vc_cta3 {
border-color: #ccc !important; }
@media (min-width: 1200px) {
.vc_general.vc_cta3 {
padding: 48px 60px !important; } }
.cms-counter-wraper.style-1 .cms-counter-single {
position: relative; }
@media (min-width: 768px) {
.cms-counter-wraper.style-1 .cms-counter-single .border-right {
position: absolute;
width: 1px;
height: 100%;
background: #d3d7e9;
right: -15px;
top: 0; } }
.cms-counter-wraper.style-1 .counter-content {
text-align: center; }
.cms-counter-wraper.style-1 .counter-content .cms-counter {
font-size: 26px;
line-height: 1.3;
color: #4f4474;
margin-bottom: 0;
margin-top: 8px;
font-weight: 300;
font-family: "Montserrat"; }
.cms-counter-wraper.style-1 .counter-content .counter-title {
font-size: 12px;
margin-bottom: 0;
color: #4d5260;
font-weight: 400;
opacity: 0.7; }
.cms-counter-wraper.style-1 .counter-content span.cms-icon {
display: block;
margin-top: 8px; }
.cms-counter-wraper.style-1 .counter-content span.cms-icon i {
font-size: 45px; }
.cms-counter-wraper.style-1 .counter-content .counter-image {
line-height: 1;
margin-top: 8px; }
.cms-counter-wraper.style-2 .cms-counter-single {
position: relative;
text-align: center; }
@media (min-width: 992px) {
.cms-counter-wraper.style-2 .cms-counter-single .border-right.horizontal {
width: 80px;
height: 3px;
right: -55px; } }
@media (min-width: 768px) {
.cms-counter-wraper.style-2 .cms-counter-single .border-right {
position: absolute;
background: #ccc;
top: 50%;
transform: translateY(-50%); }
.cms-counter-wraper.style-2 .cms-counter-single .border-right.vertical {
width: 1px;
height: 40px;
right: -15px; } }
.cms-counter-wraper.style-2 .cms-counter-single .counter-content {
overflow: hidden;
font-family: "Open Sans"; }
.cms-counter-wraper.style-2 .cms-counter-single .counter-content .cms-counter {
font-weight: 800;
font-size: 40px;
line-height: 48px;
margin-bottom: 0; }
.cms-counter-wraper.style-2 .cms-counter-single .counter-content .counter-title {
font-size: 13px;
margin-bottom: 0;
font-weight: 700; }
.cms-counter-wraper.style-2 .cms-counter-single .counter-content .counter-des {
line-height: 1.4; }
.cms-counter-wraper.style-3 {
background: #fff;
padding: 50px 15px;
box-shadow: 0 0 20px 0px #e9e9e9; }
.cms-counter-wraper.style-3 .cms-counter-single-style3 {
display: table;
margin: 0 auto; }
.cms-counter-wraper.style-3 .cms-counter-single-style3 .cms-counter-single {
display: flex; }
.cms-counter-wraper.style-3 .cms-counter-single-style3 .cms-counter-single > div {
display: flex;
align-items: center; }
.cms-counter-wraper.style-3 .cms-counter-single-style3 .cms-counter-single .counter-icon {
padding-right: 15px; }
.cms-counter-wraper.style-3 .cms-counter-single-style3 .cms-counter-single .counter-icon i {
font-size: 38px;
line-height: 1;
color: #82d10c; }
.cms-counter-wraper.style-3 .cms-counter-single-style3 .cms-counter-single .counter-content .counter-content-wrap .cms-counter {
font-size: 28px;
color: #444;
line-height: 30px;
margin-bottom: 0; }
.cms-counter-wraper.style-3 .cms-counter-single-style3 .cms-counter-single .counter-content .counter-content-wrap .counter-title {
font-weight: 400;
font-size: 12px;
line-height: 24px;
color: #666;
margin-bottom: 0; }
.content-align-right {
text-align: right; }
.content-align-center {
text-align: center; }
.content-align-left {
text-align: left; }
.cms-fancy-single-wraper .fancy-style2 {
position: relative;
display: table; }
.cms-fancy-single-wraper .fancy-style2 > div {
display: table-cell;
vertical-align: middle; }
.cms-fancy-single-wraper .fancy-style2 > div + div {
padding-left: 17px; }
.cms-fancy-single-wraper .fancy-style2.border .fancy-media {
box-shadow: 0 0 20px -6px #dbdbdb; }
.cms-fancy-single-wraper .fancy-style2 .fancy-media {
width: 65px;
height: 65px;
border-radius: 50%;
color: #82d10c; }
.cms-fancy-single-wraper .fancy-style2 .fancy-media.fancy-icon-wrap {
background: transparent;
color: inherit;
line-height: 65px; }
.cms-fancy-single-wraper .fancy-style2 .fancy-media.fancy-icon-wrap i {
font-size: 25px;
font-weight: 500; }
.cms-fancy-single-wraper .fancy-style2 .fancy-media.fancy-image img {
width: 100%;
border-radius: 50%; }
.cms-fancy-single-wraper .fancy-style2 .item-content .content {
font-size: 13px;
font-style: italic; }
.cms-fancy-single-wraper .fancy-style2 .item-content .content p {
margin-bottom: 0; }
.cms-fancy-single-wraper .fancy-style2 .item-content .fancy-title {
font-size: 15px;
font-weight: 700;
margin-bottom: 2px;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.cms-fancy-single-wraper .fancy-style2 .item-content .fancy-title a:hover, .cms-fancy-single-wraper .fancy-style2 .item-content .fancy-title a:focus {
color: #82d10c; }
.cms-fancy-single-wraper .fancy-icon-wrap {
background: #050508;
color: #fff;
font-size: 20px;
letter-spacing: -1px;
font-weight: 600;
height: 50px;
width: 50px;
line-height: 75px;
text-align: center;
position: relative;
-webkit-border-radius: 50%;
-khtml-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%; }
.cms-fancy-single-wraper .fancy-icon-wrap i {
font-size: inherit; }
@media (min-width: 480px) {
.cms-testimonial-wrap.layout1 .cms-carousel {
padding: 0 90px; } }
.cms-testimonial-wrap.layout1 .testi-content {
text-align: center; }
.cms-testimonial-wrap.layout1 .testi-content .testi-content-wrap {
padding: 38px 15px 20px; }
.cms-testimonial-wrap.layout1 .testi-content .testi-content-wrap .testi-description {
font-size: 16px;
font-style: italic;
line-height: 24px; }
.cms-testimonial-wrap.layout1 .testi-content .testi-content-wrap .testi-wrap > div {
display: inline-block; }
.cms-testimonial-wrap.layout1 .testi-content .testi-content-wrap .testi-wrap .testi-title {
font-size: 18px;
color: #444;
font-weight: 800;
text-transform: uppercase;
font-family: 'Open Sans', sans-serif;
margin-right: 12px; }
.cms-testimonial-wrap.layout1 .testi-content .testi-content-wrap .testi-wrap .testi-title a {
color: inherit; }
.cms-testimonial-wrap.layout1 .testi-content .post-thumbnail {
display: table;
margin: 0 auto; }
.cms-testimonial-wrap.layout1 .testi-content .post-thumbnail img {
width: auto; }
.cms-testimonial-wrap.layout1 .testi-content .testi-position {
font-size: 12px;
font-weight: 400;
color: #82d10c;
font-family: 'Open Sans', sans-serif; }
.cms-testimonial-wrap.layout1 .testi-content .testi-text {
color: #666;
position: relative; }
.cms-testimonial-wrap.layout1 .testi-content .testi-text p {
margin-bottom: 0; }
.cms-testimonial-wrap.layout1 .owl-dot {
background-color: #82d10c; }
.cms-testimonial-wrap.layout1 .owl-dot.active, .cms-testimonial-wrap.layout1 .owl-dot:hover, .cms-testimonial-wrap.layout1 .owl-dot:focus {
opacity: 0.7; }
.cms-testimonial-wrap.layout1 .owl-nav .owl-prev {
left: 0; }
.cms-testimonial-wrap.layout1 .owl-nav .owl-next {
right: 0; }
.cms-testimonial-wrap.layout1 .owl-nav .owl-next, .cms-testimonial-wrap.layout1 .owl-nav .owl-prev {
position: relative;
top: 0;
border: none;
line-height: 85px;
width: 85px;
height: 85px;
border-radius: 50%;
background-size: cover;
background-position: center; }
@media (min-width: 480px) {
.cms-testimonial-wrap.layout1 .owl-nav .owl-next, .cms-testimonial-wrap.layout1 .owl-nav .owl-prev {
position: absolute;
top: 30px; } }
.cms-testimonial-wrap.layout1 .owl-nav .owl-next.disabled, .cms-testimonial-wrap.layout1 .owl-nav .owl-prev.disabled {
border: 2px solid #e0dddb;
color: #e0dddb;
background: transparent; }
.cms-testimonial-wrap.layout1 .owl-nav .owl-next.disabled .bg-overlay, .cms-testimonial-wrap.layout1 .owl-nav .owl-prev.disabled .bg-overlay {
display: none; }
.cms-testimonial-wrap.layout1 .owl-nav .owl-next .bg-icon, .cms-testimonial-wrap.layout1 .owl-nav .owl-prev .bg-icon {
width: 100%;
height: 100%;
border-radius: 50%;
font-family: fontawesome;
background: transparent;
display: block;
line-height: 85px;
font-size: 13px;
top: 50%;
transform: translateY(-50%);
position: absolute;
z-index: 1;
text-align: center;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.cms-testimonial-wrap.layout1 .owl-nav .owl-next .bg-icon.left:before, .cms-testimonial-wrap.layout1 .owl-nav .owl-prev .bg-icon.left:before {
content: "\f104";
font-size: 34px;
font-weight: 200; }
.cms-testimonial-wrap.layout1 .owl-nav .owl-next .bg-icon.right:before, .cms-testimonial-wrap.layout1 .owl-nav .owl-prev .bg-icon.right:before {
content: "\f105";
font-size: 34px;
font-weight: 200; }
.cms-testimonial-wrap.layout1 .owl-nav .owl-next .bg-overlay, .cms-testimonial-wrap.layout1 .owl-nav .owl-prev .bg-overlay {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
border-radius: 50%;
background: rgba(130, 209, 12, 0.9);
z-index: 0;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.cms-testimonial-wrap.layout1 .owl-nav .owl-next:hover .bg-overlay, .cms-testimonial-wrap.layout1 .owl-nav .owl-prev:hover .bg-overlay {
background: rgba(5, 5, 8, 0.8); }
.cms-testimonial-wrap.layout1 .owl-nav + .owl-dots {
margin-top: 0; }
.cms-testimonial-wrap.layout1 .owl-dots .owl-dot {
height: 4px;
width: 15px;
margin: 0 2px; }
@media (min-width: 768px) {
.cms-testimonial-wrap.large-1 .testi-description {
padding: 0 150px; } }
@media (min-width: 480px) {
.cms-testimonial-wrap.large-1 .owl-nav .owl-next, .cms-testimonial-wrap.large-1 .owl-nav .owl-prev {
position: absolute;
top: 0;
left: 50%; } }
@media (min-width: 480px) {
.cms-testimonial-wrap.large-1 .owl-nav .owl-next {
transform: translate(80px, 30px); } }
@media (min-width: 480px) {
.cms-testimonial-wrap.large-1 .owl-nav .owl-prev {
transform: translate(-165px, 30px); } }
.cms-testimonial-wrap .owl-nav {
margin-top: 40px; }
.rev_slider .contact-form.contact-service {
padding-bottom: 30px !important; }
.rev_slider .contact-form.contact-service input, .rev_slider .contact-form.contact-service textarea {
margin-bottom: 10px !important;
text-align: left !important; }
.rev_slider .contact-form.contact-service input.btn, .rev_slider .contact-form.contact-service textarea.btn {
background: #82d10c; }
.rev_slider .contact-form.contact-service input.btn:hover, .rev_slider .contact-form.contact-service textarea.btn:hover, .rev_slider .contact-form.contact-service input.btn:focus, .rev_slider .contact-form.contact-service textarea.btn:focus {
background: #0c0d12; }
.rev_slider .contact-form.contact-service .wpcf7-not-valid-tip {
display: none; }
.rev_slider div.wpcf7-validation-errors {
display: block !important;
border-color: #f00 !important;
margin-top: 5px !important;
font-size: 13px !important;
line-height: 16px !important; }
.vc_pie_chart {
margin-top: 10px; }
.vc_pie_chart .wpb_wrapper {
overflow: auto; }
.vc_pie_chart .vc_pie_wrapper {
padding-bottom: 20px;
text-align: center; }
.vc_pie_chart .vc_pie_wrapper .vc_pie_chart_value {
font-size: 18px;
font-weight: 600;
color: #59585b; }
.vc_pie_chart .wpb_pie_chart_heading {
font-size: 15px;
color: #333;
text-align: center;
text-transform: uppercase;
margin-bottom: 20px;
width: 100%; }
@media (max-width: 1199px) {
.overlap-bottom > .vc_column-inner {
margin-bottom: 0px !important; } }
.cms-custom-heading.style1 .title-heading {
position: relative;
font-size: 24px;
font-family: 'Open Sans', sans-serif;
color: #333;
line-height: 34px;
font-weight: 800; }
.cms-custom-heading.style2 {
position: relative; }
.cms-custom-heading.style2 .title-heading {
position: relative;
font-size: 17px;
font-weight: 700;
line-height: 1;
color: #333; }
.cms-custom-heading.style2 .title-heading span {
color: #82d10c;
margin-right: 20px; }
.cms-custom-heading.style2 .title-heading img {
display: inline-block;
width: 17px;
margin-right: 20px; }
.cms-custom-heading.style3 .title-heading {
font-size: 37px;
font-weight: 800;
line-height: 44px;
font-family: "Open Sans";
color: #333; }
.cms-custom-heading.style3 .title-heading span.title {
color: #82d10c; }
.cms-custom-heading.style3 .title-heading .media i {
margin-bottom: 15px;
font-size: 40px;
display: block;
color: #82d10c;
font-weight: 500; }
.cms-custom-heading.style3 .title-heading .media img {
width: 42px;
margin-bottom: 14px; }
.contact-list {
font-family: "Open Sans";
font-size: 13px; }
.contact-list li {
margin-bottom: 5px; }
.contact-list li:last-child {
margin-bottom: 0; }
.contact-list li span {
font-weight: 700;
color: #82d10c; }
.about-quote {
font-weight: 300;
font-size: 25px;
font-style: italic;
text-align: center;
line-height: 32px;
color: #63615e !important; }
.about-quote p:last-child {
color: inherit; }
.about-quote p:first-child:before, .about-quote p:first-child:after {
content: none; }
.about-quote cite {
display: block;
float: none;
font-weight: 600;
font-style: normal;
text-transform: uppercase; }
.progress {
position: relative; }
.progress .progress-bar {
position: absolute;
overflow: hidden;
line-height: 20px;
border-radius: 4px;
box-shadow: none; }
.cms-carousel .owl-nav {
text-align: center; }
.cms-carousel .owl-nav .owl-prev, .cms-carousel .owl-nav .owl-next {
width: 45px;
height: 45px;
line-height: 43px;
font-weight: 600;
font-size: 20px; }
.cms-carousel .owl-nav .owl-prev i, .cms-carousel .owl-nav .owl-next i {
font-size: inherit;
font-weight: inherit; }
.cms-carousel .owl-nav .owl-prev {
margin-right: 5px; }
.cms-carousel .owl-nav + .owl-dots {
margin-top: 20px; }
.cms-carousel .owl-dots {
text-align: center; }
.cms-carousel .owl-dots .owl-dot {
width: 15px;
height: 4px;
margin: 0 2px; }
.cms-carousel.template-cms_carousel.style-1 .cms-carousel-item .has-post-thumbnail .blog-grid-thumbnail, .cms-carousel.template-cms_carousel.style-1 .cms-carousel-item .format-gallery .blog-grid-thumbnail {
padding: 0 15px;
margin-bottom: 30px; }
.cms-carousel.template-cms_carousel.style-1 .blog-grid-wrap .entry-header {
margin-bottom: 5px; }
.cms-carousel.template-cms_carousel.style-1 .blog-grid-wrap .entry-header .entry-title {
font-size: 18px; }
.cms-carousel.template-cms_carousel.style-1 .blog-grid-wrap .blog-date {
color: #666;
font-size: 13px; }
.cms-carousel.template-cms_carousel.style-1 .blog-grid-wrap .blog-date i {
color: #050508;
margin-right: 8px; }
.cms-carousel.template-cms_carousel.style-1 .blog-grid-wrap .blog-date:hover, .cms-carousel.template-cms_carousel.style-1 .blog-grid-wrap .blog-date:focus {
color: #82d10c; }
.cms-carousel.template-cms_carousel--case_studies .acumec-blog {
margin-bottom: 0; }
.cms-carousel.template-cms_carousel--case_studies .acumec-blog .blog-outer .blog-wrap .post-thumbnail {
border-radius: 5px; }
.cms-carousel.template-cms_carousel--case_studies .acumec-blog .blog-outer .blog-wrap .blog-content {
text-align: center;
font-family: "Open Sans";
padding: 25px 30px 0; }
.cms-carousel.template-cms_carousel--case_studies .acumec-blog .blog-outer .blog-wrap .blog-content .entry-title {
font-size: 16px;
line-height: 22px;
font-weight: 700;
text-transform: uppercase; }
.cms-carousel.template-cms_carousel--case_studies .acumec-blog .blog-outer .blog-wrap .blog-content .entry-meta ul {
color: #ff5927;
font-style: normal;
margin-bottom: 14px; }
.cms-carousel.template-cms_carousel--case_studies .acumec-blog .blog-outer .blog-wrap .blog-content .entry-meta ul li {
color: inherit;
font-size: 14px; }
.cms-carousel.template-cms_carousel--case_studies .owl-nav .owl-prev, .cms-carousel.template-cms_carousel--case_studies .owl-nav .owl-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
border-radius: 50%;
font-size: 14px; }
.cms-carousel.template-cms_carousel--case_studies .owl-nav .owl-prev {
left: -115px; }
.cms-carousel.template-cms_carousel--case_studies .owl-nav .owl-next {
right: -115px; }
.cms-gallerys .cms-image-wrap img {
width: 100%;
margin-bottom: 30px; }
.promo-video {
position: relative;
z-index: 1;
display: flex; }
.promo-video a {
display: flex;
align-items: center;
color: #82d10c;
text-align: center; }
.promo-video a:hover span, .promo-video a:focus span {
background: #0c0d12;
color: #fff; }
.promo-video a:hover i, .promo-video a:focus i {
color: #fff !important; }
.promo-video a span {
width: 50px;
height: 50px;
line-height: 50px;
border-radius: 50%;
background: #82d10c;
color: #fff;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.promo-video a i {
font-size: 70px;
color: #82d10c; }
.promo-video p {
display: flex;
align-items: center;
flex: auto;
margin-bottom: 0;
font-family: "Montserrat";
font-size: 12px;
color: #82d10c;
font-weight: 700;
margin-left: 15px; }
.promo-video1 {
text-align: center;
font-size: 55px;
padding: 100px 0; }
@media (max-width: 767px) {
.promo-video1 {
padding: 80px 0; } }
.promo-video2 a.play-video {
width: 130px;
height: 130px;
border-radius: 50%;
display: block;
text-align: center;
line-height: 130px;
font-size: 24px;
color: #fff;
background: #82d10c; }
@media (max-width: 1199px) {
.promo-video2 a.play-video {
width: 100px;
height: 100px;
line-height: 100px; } }
@media (max-width: 767px) {
.promo-video2 a.play-video {
width: 70px;
height: 70px;
line-height: 70px; } }
.promo-video2 a.play-video:hover, .promo-video2 a.play-video:focus {
background: #050508; }
.promo-center {
display: table;
margin: 0 auto; }
.promo-right {
display: table;
margin: 0 0 0 auto; }
.promo-middle {
position: absolute;
top: 50%;
transform: translateY(-50%);
right: -65px; }
@media (max-width: 1199px) {
.promo-middle {
right: -50px; } }
@media (max-width: 991px) {
.promo-middle {
transform: translate(50%, -50%);
right: 50%; } }
.btn-home {
color: #050508;
font-family: 'Open Sans', sans-serif;
font-size: 12px;
font-weight: 600; }
.btn-home:hover, .btn-home:focus {
color: #82d10c; }
.btn-home span {
margin-right: 8px; }
.fs-wrapper form input, .fs-wrapper form textarea {
margin-bottom: 30px;
border-radius: 2px; }
.fs-wrapper form .hour, .fs-wrapper form .date {
position: relative; }
.ui-datepicker-header .ui-corner-all {
font-size: 0;
position: relative;
width: 30px;
padding: 0 10px;
color: #0081ff; }
.ui-datepicker-header .ui-corner-all:hover, .ui-datepicker-header .ui-corner-all:focus {
color: #82d10c; }
.ui-datepicker-header .ui-corner-all:after {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: 12px;
line-height: 60px;
text-rendering: auto;
-webkit-font-smoothing: antialiased; }
.ui-datepicker-header .ui-datepicker-next:after {
content: "\f0da"; }
.ui-datepicker-header .ui-datepicker-prev:after {
content: "\f0d9"; }
.ui-datepicker-header .ui-datepicker-title {
float: left;
width: calc(100% - 60px);
text-align: center;
font-weight: 600;
line-height: 60px;
font-size: 20px;
text-transform: uppercase;
color: #82d10c; }
.ui-datepicker {
background: #fff;
padding: 0px 40px 10px;
box-shadow: 3px 0 5px rgba(0, 0, 0, 0.1), -3px 0 5px rgba(0, 0, 0, 0.1);
max-width: 310px;
z-index: 2; }
.ui-datepicker table.ui-datepicker-calendar {
width: 230px; }
.ui-datepicker table.ui-datepicker-calendar td, .ui-datepicker table.ui-datepicker-calendar th {
border: none; }
.shopping_cart_dropdown .shopping_cart_dropdown_inner::-webkit-scrollbar {
height: 0;
width: 7px;
background-color: transparent; }
.shopping_cart_dropdown .shopping_cart_dropdown_inner::-webkit-scrollbar-track {
border-radius: 10px; }
.shopping_cart_dropdown .shopping_cart_dropdown_inner::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: transparent; }
.shopping_cart_dropdown:hover .shopping_cart_dropdown_inner::-webkit-scrollbar {
width: 7px;
height: auto;
background-color: #f5f5f5; }
.shopping_cart_dropdown:hover .shopping_cart_dropdown_inner::-webkit-scrollbar-thumb {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
background-color: rgba(127, 127, 127, 0.4); }
.main-navigation::-webkit-scrollbar {
height: 0;
width: 7px;
background-color: transparent; }
.shopping_cart_dropdown .shopping_cart_dropdown_inner::-webkit-scrollbar {
height: 0;
width: 7px;
background-color: transparent; }
.shopping_cart_dropdown .shopping_cart_dropdown_inner::-webkit-scrollbar-track {
border-radius: 10px; }
.shopping_cart_dropdown .shopping_cart_dropdown_inner::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: transparent; }
.shopping_cart_dropdown:hover .shopping_cart_dropdown_inner::-webkit-scrollbar {
width: 7px;
height: auto;
background-color: #f5f5f5; }
.shopping_cart_dropdown:hover .shopping_cart_dropdown_inner::-webkit-scrollbar-thumb {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
background-color: rgba(127, 127, 127, 0.4); }
.main-navigation::-webkit-scrollbar-track {
border-radius: 10px; }
.shopping_cart_dropdown .shopping_cart_dropdown_inner::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: transparent; }
.shopping_cart_dropdown:hover .shopping_cart_dropdown_inner::-webkit-scrollbar {
width: 7px;
height: auto;
background-color: #f5f5f5; }
.shopping_cart_dropdown:hover .shopping_cart_dropdown_inner::-webkit-scrollbar-thumb {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
background-color: rgba(127, 127, 127, 0.4); }
@media (max-width: 767px) {
.vc_empty_space.overlap-space {
height: 0 !important; } }
.site-footer {
font-family: 'Open Sans', sans-serif; }
.site-footer ul {
margin-bottom: 0; }
@media (min-width: 1200px) {
.site-footer .lg-half {
width: 25%; } }
@media (min-width: 1200px) {
.site-footer .col-half {
width: 16.667%; } }
@media (min-width: 992px) and (max-width: 1199px) {
.site-footer .col-half {
width: 33.333%; } }
.site-footer .info-box ul li {
display: table; }
.site-footer .info-box ul li span {
display: table-cell;
vertical-align: middle; }
.site-footer .info-box ul li span.icon-left {
font-size: 31px;
color: #82d10c;
padding-right: 15px; }
.site-footer .info-box ul li span.info-right {
font-size: 13px;
line-height: 22px; }
.site-footer .widget.widget_categories, .site-footer .widget.widget_archive, .site-footer .widget.widget_pages, .site-footer .widget.widget_meta, .site-footer .widget.widget_recent_entries, .site-footer .widget.widget_nav_menu ul li {
position: relative; }
.site-footer .widget.widget_categories a, .site-footer .widget.widget_archive a, .site-footer .widget.widget_pages a, .site-footer .widget.widget_meta a, .site-footer .widget.widget_recent_entries a, .site-footer .widget.widget_nav_menu ul li a {
margin-bottom: 7px;
position: relative;
display: inline-block; }
.site-footer .widget.widget_categories a:after, .site-footer .widget.widget_archive a:after, .site-footer .widget.widget_pages a:after, .site-footer .widget.widget_meta a:after, .site-footer .widget.widget_recent_entries a:after, .site-footer .widget.widget_nav_menu ul li a:after {
content: none; }
.site-footer .widget.widget_categories ul.children, .site-footer .widget.widget_archive ul.children, .site-footer .widget.widget_pages ul.children, .site-footer .widget.widget_meta ul.children, .site-footer .widget.widget_recent_entries ul.children, .site-footer .widget.widget_nav_menu ul li ul.children {
padding-left: 16px; }
.site-footer .widget.widget_nav_menu ul li a {
display: inline-block; }
.site-footer .widget.widget_nav_menu ul.menu li.menu-item-has-children ul.sub-menu {
padding-left: 16px; }
.site-footer .widget.widget_cms_socials_widget ul li {
margin-right: 27px; }
.site-footer .widget.widget_cms_socials_widget ul li:last-child {
margin-right: 0; }
.site-footer .widget.widget_cms_socials_widget ul li a {
font-size: 14px; }
.site-footer .widget.widget_calendar {
max-width: 375px; }
.site-footer .widget.widget_calendar table th, .site-footer .widget.widget_calendar table caption {
color: #fff; }
.site-footer .widget.widget_search .searchform {
position: relative; }
.site-footer .widget.widget_search .searchform input.form-control {
padding-right: 65px; }
.site-footer .widget.widget_search .searchform button.theme_button {
position: absolute;
top: 0;
right: 0;
height: 100%;
width: 50px;
padding: 0;
background: #82d10c;
border: none;
color: #fff; }
.site-footer .widget.widget_search .searchform button.theme_button:hover {
opacity: 0.7; }
.site-footer .widget.widget_tag_cloud .tagcloud a {
font-size: 14px !important;
background-color: #fff;
border: 1px solid #d7d7d7;
border-radius: 2px;
line-height: 1;
display: inline-block;
padding: 7px 13px;
margin: 0 7px 7px 0;
color: #939393; }
.site-footer .widget.widget_tag_cloud .tagcloud a:hover {
color: #82d10c; }
.site-footer .widget.widget_recent_comments ul li a, .site-footer .widget.widget_rss ul li a {
color: #0081ff;
position: relative;
padding: 6px 0; }
.site-footer .widget.widget_recent_comments ul li a:hover, .site-footer .widget.widget_rss ul li a:hover {
color: #82d10c; }
.site-footer .widget.widget_recent_comments ul li a:after, .site-footer .widget.widget_rss ul li a:after {
content: none; }
.site-footer .widget.widget_rss li {
padding: 5px 0; }
@media (max-width: 1199px) {
.site-footer .footer-wrap + .footer-wrap {
margin-top: 40px; } }
@media (min-width: 1400px) {
.site-footer .container-fullwidth {
padding: 0 270px; } }
@media (max-width: 1399px) {
.site-footer .container-fullwidth {
padding: 0 80px; } }
@media (max-width: 991px) {
.site-footer .container-fullwidth {
padding: 0 50px; } }
@media (max-width: 767px) {
.site-footer .container-fullwidth {
padding: 0 30px; } }
@media (max-width: 479px) {
.site-footer .container-fullwidth {
padding: 0 15px; } }
.site-footer.layout1 .footer-top {
padding: 125px 0 120px;
position: relative;
color: #bdbdbd;
font-family: "Lato";
background: url(//bomali.eu/wp-content/themes/acumec/assets/images/bg-footer.png);
background-size: cover;
background-repeat: no-repeat; }
.site-footer.layout1 .footer-top .bg-overlay {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
background: transparent; }
.site-footer.layout1 .footer-top a {
font-size: 14px;
color: #bdbdbd; }
.site-footer.layout1 .footer-top a:hover, .site-footer.layout1 .footer-top a:focus {
color: #82d10c; }
.site-footer.layout1 .footer-top h3.wg-title {
font-size: 15px;
line-height: 24px;
position: relative;
margin-bottom: 22px;
color: #fff;
text-transform: uppercase; }
.site-footer.layout1 .footer-top .contact-info-box {
font-family: "Open Sans";
font-weight: 700;
font-size: 13px; }
.site-footer.layout1 .footer-top .contact-info-box .hours li span {
color: #82d10c;
margin-right: 2px;
display: inline-block; }
.site-footer.layout1 .footer-top .widget + .widget {
margin-top: 15px; }
.site-footer.layout1 .footer-top .widget.widget_text.widget_custom_html span {
display: block;
font-size: 13px;
font-weight: 500;
line-height: 15px;
margin-bottom: 15px; }
.site-footer.layout1 .footer-top .widget.widget_text.widget_custom_html span i {
margin-right: 25px; }
.site-footer.layout1 .footer-top .widget.widget_text .textwidget p {
overflow: hidden;
font-family: 'Open Sans', sans-serif; }
.site-footer.layout1 .footer-top .widget.widget_text .textwidget p i {
font-size: 20px;
padding: 3px 22px 0 0;
width: auto;
text-align: center;
float: left; }
.site-footer.layout1 .footer-top .widget.widget_cs_recent_post_v2 .widget-recent-item {
margin-bottom: 20px; }
.site-footer.layout1 .footer-top .widget.widget_cs_recent_post_v2 .entry-thumbnail {
width: 60px;
float: left;
margin-right: 20px; }
.site-footer.layout1 .footer-top .widget.widget_cs_recent_post_v2 .entry-thumbnail img {
border-radius: 3px; }
.site-footer.layout1 .footer-top .widget.widget_cs_recent_post_v2 .entry-main {
overflow: auto; }
.site-footer.layout1 .footer-top .widget.widget_cs_recent_post_v2 .entry-main .title-recent {
font-size: 13px;
font-weight: 600;
line-height: 20px;
margin-top: -5px; }
.site-footer.layout1 .footer-top .widget.widget_cs_recent_post_v2 .entry-main span.date {
font-size: 11px;
font-weight: 600; }
.site-footer.layout1 .footer-top .widget.widget_cs_recent_post_v2 .entry-main span.date i {
margin-right: 5px; }
.site-footer.layout1 .footer-top .widget.widget_znews-twitter-widget .news-tweet-content {
border-bottom: 1px dashed #666;
padding: 0 0 20px 0;
margin: 0 0 20px 0;
position: relative; }
.site-footer.layout1 .footer-top .widget.widget_znews-twitter-widget .news-tweet-content .tweet-text i {
font-size: 18px;
margin-left: -38px;
vertical-align: middle;
margin-right: 5px; }
.site-footer.layout1 .footer-top .widget.widget_newsletterwidget {
color: #979da4;
font-weight: 400;
font-size: 13px;
line-height: 30px; }
.site-footer.layout1 .footer-top .widget.widget_newsletterwidget .tnp-widget {
margin-top: 22px;
position: relative; }
.site-footer.layout1 .footer-top .widget.widget_newsletterwidget .tnp-widget label {
font-size: 0;
display: none; }
.site-footer.layout1 .footer-top .widget.widget_newsletterwidget .tnp-widget .tnp-email {
font-size: 12px;
font-family: "Lato";
padding: 20px 80px 20px 36px;
border-radius: 30px; }
.site-footer.layout1 .footer-top .widget.widget_newsletterwidget .tnp-widget .tnp-email::-webkit-input-placeholder {
color: #666;
font-style: italic; }
.site-footer.layout1 .footer-top .widget.widget_newsletterwidget .tnp-widget .tnp-email:-moz-placeholder {
color: #666;
font-style: italic; }
.site-footer.layout1 .footer-top .widget.widget_newsletterwidget .tnp-widget .tnp-email::-moz-placeholder {
color: #666;
font-style: italic; }
.site-footer.layout1 .footer-top .widget.widget_newsletterwidget .tnp-widget .tnp-email:-ms-input-placeholder {
color: #666;
font-style: italic; }
.site-footer.layout1 .footer-top .widget.widget_newsletterwidget .tnp-widget .tnp-field-button {
position: absolute;
top: 0;
right: 0;
width: 75px;
height: 100%;
margin-bottom: 0; }
.site-footer.layout1 .footer-top .widget.widget_newsletterwidget .tnp-widget .tnp-field-button .tnp-submit {
background: transparent;
border: none;
height: 100%;
text-indent: 10000px; }
.site-footer.layout1 .footer-top .widget.widget_newsletterwidget .tnp-widget .tnp-field-button:hover:before {
color: #82d10c; }
.site-footer.layout1 .footer-top .widget.widget_newsletterwidget .tnp-widget .tnp-field-button:before {
content: "\f105";
font-family: fontawesome;
position: absolute;
left: 50%;
top: 50%;
font-size: 16px;
transform: translate(-50%, -50%); }
.site-footer.layout1 .footer-top .widget.widget_nav_menu .menu-menu-footer-container .menu {
height: 50%; }
.site-footer.layout1 .footer-top .widget.widget_nav_menu .menu-menu-footer-container .menu li.menu-item {
position: relative;
padding-right: 15px;
width: 50%;
float: left; }
@media (max-width: 1199px) {
.site-footer.layout1 .footer-top .widget.widget_nav_menu .menu-menu-footer-container .menu li.menu-item {
width: 100%; } }
.site-footer.layout1 .footer-top .widget.widget_nav_menu .menu-menu-footer-container .menu li.menu-item > a {
color: #bdbdbd;
font-weight: 400;
font-size: 13px;
line-height: 30px;
padding: 0 0 0 12px; }
.site-footer.layout1 .footer-top .widget.widget_nav_menu .menu-menu-footer-container .menu li.menu-item > a:before {
content: "\f105";
font-family: fontawesome;
position: absolute;
left: 0; }
.site-footer.layout1 .footer-top .widget.widget_nav_menu .menu-menu-footer-container .menu li.menu-item > a:after {
content: none; }
.site-footer.layout1 .footer-top .widget.widget_nav_menu .menu-menu-footer-container .menu li.menu-item > a:hover {
color: #4183d7; }
.site-footer.layout2 .footer-top {
padding: 100px 0;
position: relative;
color: #666;
font-family: "Lato"; }
.site-footer.layout2 .footer-top .bg-overlay {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
background: transparent; }
.site-footer.layout2 .footer-top a {
color: #444; }
.site-footer.layout2 .footer-top a:hover, .site-footer.layout2 .footer-top a:focus {
color: #82d10c; }
.site-footer.layout2 .footer-top h3.wg-title {
font-size: 16px;
line-height: 24px;
position: relative;
margin-bottom: 35px;
text-transform: uppercase; }
.site-footer.layout2 .footer-top .contact-info-box {
font-family: "Open Sans";
font-weight: 700;
font-size: 13px; }
.site-footer.layout2 .footer-top .contact-info-box .hours li span {
color: #82d10c;
margin-right: 2px;
display: inline-block; }
.site-footer.layout2 .footer-top .widget + .widget {
margin-top: 30px; }
.site-footer.layout2 .footer-top .widget.widget_text .textwidget p {
font-size: 14px;
overflow: hidden;
font-family: 'Lato', sans-serif; }
.site-footer.layout2 .footer-top .widget.widget_text .textwidget p i {
font-size: 20px;
padding: 3px 22px 0 0;
width: auto;
text-align: center;
float: left; }
.site-footer.layout2 .footer-top .widget.widget_cs_recent_post_v2 {
font-family: "Open Sans"; }
.site-footer.layout2 .footer-top .widget.widget_cs_recent_post_v2 .widget-recent-item {
margin-bottom: 20px; }
.site-footer.layout2 .footer-top .widget.widget_cs_recent_post_v2 .entry-thumbnail {
width: 60px;
float: left;
margin-right: 20px; }
.site-footer.layout2 .footer-top .widget.widget_cs_recent_post_v2 .entry-thumbnail img {
border-radius: 3px; }
.site-footer.layout2 .footer-top .widget.widget_cs_recent_post_v2 .entry-main {
overflow: auto; }
.site-footer.layout2 .footer-top .widget.widget_cs_recent_post_v2 .entry-main .title-recent {
font-size: 13px;
font-weight: 400;
line-height: 20px;
margin-top: -5px;
position: relative; }
.site-footer.layout2 .footer-top .widget.widget_cs_recent_post_v2 .entry-main .title-recent:before {
position: absolute;
content: "\f0da";
font-family: fontawesome;
left: 0;
top: 50%;
transform: translateY(-50%);
font-size: 16px;
color: #82d10c; }
.site-footer.layout2 .footer-top .widget.widget_cs_recent_post_v2 .entry-main .title-recent a.entry-title {
display: inline-block;
margin-left: 18px;
font-size: 13px; }
.site-footer.layout2 .footer-top .widget.widget_cs_recent_post_v2 .entry-main span.date {
font-size: 11px;
font-weight: 600; }
.site-footer.layout2 .footer-top .widget.widget_cs_recent_post_v2 .entry-main span.date i {
margin-right: 5px; }
.site-footer.layout2 .footer-top .widget.widget_acumec_flickr_widget .flickr-wrap {
margin: -3px; }
.site-footer.layout2 .footer-top .widget.widget_acumec_flickr_widget .flickr-wrap .flickr_badge_image {
padding: 3px;
float: left;
width: 33.33%;
margin: 0;
height: auto; }
.site-footer.layout2 .footer-top .widget.widget_acumec_flickr_widget .flickr-wrap .flickr_badge_image a {
display: block;
overflow: hidden; }
.site-footer.layout2 .footer-top .widget.widget_acumec_flickr_widget .flickr-wrap .flickr_badge_image img {
width: 100%;
zoom: 1;
filter: alpha(opacity=100);
opacity: 1;
-webkit-transition: all 0.9s ease 0s;
transition: all 0.9s ease 0s; }
.site-footer.layout2 .footer-top .widget.widget_acumec_flickr_widget .flickr-wrap .flickr_badge_image img:hover, .site-footer.layout2 .footer-top .widget.widget_acumec_flickr_widget .flickr-wrap .flickr_badge_image img:focus {
zoom: 1;
filter: alpha(opacity=80);
opacity: 0.8;
-webkit-transform: rotate(2deg);
-ms-transform: rotate(2deg);
transform: rotate(2deg);
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1); }
.site-footer.layout2 .footer-top .widget.widget_znews-twitter-widget .news-tweet-content {
border-bottom: 1px dashed #666;
padding: 0 0 20px 0;
margin: 0 0 20px 0;
position: relative; }
.site-footer.layout2 .footer-top .widget.widget_znews-twitter-widget .news-tweet-content .tweet-text i {
font-size: 18px;
margin-left: -38px;
vertical-align: middle;
margin-right: 5px; }
.site-footer.layout2 .footer-top .widget.widget_newsletterwidget {
color: #979da4;
font-weight: 400;
font-size: 13px;
line-height: 30px; }
.site-footer.layout2 .footer-top .widget.widget_newsletterwidget .tnp-widget {
margin-top: 22px;
position: relative; }
.site-footer.layout2 .footer-top .widget.widget_newsletterwidget .tnp-widget label {
font-size: 0;
display: none; }
.site-footer.layout2 .footer-top .widget.widget_newsletterwidget .tnp-widget .tnp-email {
font-size: 12px;
font-family: "Lato";
padding: 20px 80px 20px 36px;
border-radius: 30px; }
.site-footer.layout2 .footer-top .widget.widget_newsletterwidget .tnp-widget .tnp-email::-webkit-input-placeholder {
color: #666;
font-style: italic; }
.site-footer.layout2 .footer-top .widget.widget_newsletterwidget .tnp-widget .tnp-email:-moz-placeholder {
color: #666;
font-style: italic; }
.site-footer.layout2 .footer-top .widget.widget_newsletterwidget .tnp-widget .tnp-email::-moz-placeholder {
color: #666;
font-style: italic; }
.site-footer.layout2 .footer-top .widget.widget_newsletterwidget .tnp-widget .tnp-email:-ms-input-placeholder {
color: #666;
font-style: italic; }
.site-footer.layout2 .footer-top .widget.widget_newsletterwidget .tnp-widget .tnp-field-button {
position: absolute;
top: 0;
right: 0;
width: 75px;
height: 100%;
margin-bottom: 0; }
.site-footer.layout2 .footer-top .widget.widget_newsletterwidget .tnp-widget .tnp-field-button .tnp-submit {
background: transparent;
border: none;
height: 100%;
text-indent: 10000px; }
.site-footer.layout2 .footer-top .widget.widget_newsletterwidget .tnp-widget .tnp-field-button:hover:before {
color: #82d10c; }
.site-footer.layout2 .footer-top .widget.widget_newsletterwidget .tnp-widget .tnp-field-button:before {
content: "\f105";
font-family: fontawesome;
position: absolute;
left: 50%;
top: 50%;
font-size: 16px;
transform: translate(-50%, -50%); }
.site-footer.layout2 .footer-top .widget.widget_nav_menu .menu-menu-footer-container .menu {
height: 50%; }
.site-footer.layout2 .footer-top .widget.widget_nav_menu .menu-menu-footer-container .menu li.menu-item {
position: relative;
padding-right: 15px;
width: 50%;
float: left; }
@media (max-width: 1199px) {
.site-footer.layout2 .footer-top .widget.widget_nav_menu .menu-menu-footer-container .menu li.menu-item {
width: 100%; } }
.site-footer.layout2 .footer-top .widget.widget_nav_menu .menu-menu-footer-container .menu li.menu-item > a {
color: #bdbdbd;
font-weight: 400;
font-size: 13px;
line-height: 30px;
padding: 0 0 0 12px; }
.site-footer.layout2 .footer-top .widget.widget_nav_menu .menu-menu-footer-container .menu li.menu-item > a:before {
content: "\f105";
font-family: fontawesome;
position: absolute;
left: 0; }
.site-footer.layout2 .footer-top .widget.widget_nav_menu .menu-menu-footer-container .menu li.menu-item > a:after {
content: none; }
.site-footer.layout2 .footer-top .widget.widget_nav_menu .menu-menu-footer-container .menu li.menu-item > a:hover {
color: #4183d7; }
.client-logo-footer {
padding: 40px 0; }
.client-logo-footer .client-footer .widget.widget_media_image {
text-align: center;
height: 150px;
line-height: 150px; }
.client-logo-footer .client-footer .widget.widget_media_image img {
width: auto;
max-height: 70px;
padding: 0 15px;
display: inline-block; }
.footer-bottom {
padding: 20px 0 5px;
font-size: 12px;
border-top: 1px solid #ededed; }
.footer-bottom a {
color: #82d10c; }
.footer-bottom a:hover, .footer-bottom a:focus {
color: #82d10c; }
.footer-bottom.text-center .widget_calendar {
margin: auto; }
.footer-bottom.text-right .widget_calendar {
margin-left: auto; }
@media (min-width: 992px) {
.footer-bottom .footer-row {
display: flex;
align-items: center; }
.footer-bottom .footer-row .footer-bottom-right {
text-align: right; } }
.footer-bottom .widget {
margin-bottom: 15px; }
.footer-bottom .widget p {
margin-bottom: 0; }
.footer-bottom .widget p:last-child {
margin-bottom: 0 !important; }
.footer-bottom .widget.widget_cms_socials_widget ul {
margin: -2px; }
.footer-bottom .widget.widget_cms_socials_widget ul li {
margin: 0px;
padding: 2px; }
.footer-bottom .widget.widget_cms_socials_widget ul li a {
display: inline-block;
border-radius: 3px;
width: 35px;
height: 38px;
text-align: center;
line-height: 38px;
background: #f7f7f7;
color: #555;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.footer-bottom .widget.widget_cms_socials_widget ul li a:hover, .footer-bottom .widget.widget_cms_socials_widget ul li a:focus {
color: #fff;
background: #82d10c; }
textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .login-select, .form-control, .uneditable-input {
display: block;
height: 53px;
background-color: #fff;
border-radius: 2px;
color: #777;
padding-left: 15px;
padding-right: 15px;
font-weight: 500;
border: 1px solid #eee;
background-image: none;
width: 100%;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out; }
textarea::-webkit-input-placeholder, input[type="text"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, input[type="datetime"]::-webkit-input-placeholder, input[type="datetime-local"]::-webkit-input-placeholder, input[type="date"]::-webkit-input-placeholder, input[type="month"]::-webkit-input-placeholder, input[type="time"]::-webkit-input-placeholder, input[type="week"]::-webkit-input-placeholder, input[type="number"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, input[type="url"]::-webkit-input-placeholder, input[type="search"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder, input[type="color"]::-webkit-input-placeholder, .login-select::-webkit-input-placeholder, .form-control::-webkit-input-placeholder, .uneditable-input::-webkit-input-placeholder {
color: #666;
font-family: "Montserrat";
font-size: 11px; }
textarea:-moz-placeholder, input[type="text"]:-moz-placeholder, input[type="password"]:-moz-placeholder, input[type="datetime"]:-moz-placeholder, input[type="datetime-local"]:-moz-placeholder, input[type="date"]:-moz-placeholder, input[type="month"]:-moz-placeholder, input[type="time"]:-moz-placeholder, input[type="week"]:-moz-placeholder, input[type="number"]:-moz-placeholder, input[type="email"]:-moz-placeholder, input[type="url"]:-moz-placeholder, input[type="search"]:-moz-placeholder, input[type="tel"]:-moz-placeholder, input[type="color"]:-moz-placeholder, .login-select:-moz-placeholder, .form-control:-moz-placeholder, .uneditable-input:-moz-placeholder {
color: #666;
font-family: "Montserrat";
font-size: 11px; }
textarea::-moz-placeholder, input[type="text"]::-moz-placeholder, input[type="password"]::-moz-placeholder, input[type="datetime"]::-moz-placeholder, input[type="datetime-local"]::-moz-placeholder, input[type="date"]::-moz-placeholder, input[type="month"]::-moz-placeholder, input[type="time"]::-moz-placeholder, input[type="week"]::-moz-placeholder, input[type="number"]::-moz-placeholder, input[type="email"]::-moz-placeholder, input[type="url"]::-moz-placeholder, input[type="search"]::-moz-placeholder, input[type="tel"]::-moz-placeholder, input[type="color"]::-moz-placeholder, .login-select::-moz-placeholder, .form-control::-moz-placeholder, .uneditable-input::-moz-placeholder {
color: #666;
font-family: "Montserrat";
font-size: 11px; }
textarea:-ms-input-placeholder, input[type="text"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, input[type="datetime"]:-ms-input-placeholder, input[type="datetime-local"]:-ms-input-placeholder, input[type="date"]:-ms-input-placeholder, input[type="month"]:-ms-input-placeholder, input[type="time"]:-ms-input-placeholder, input[type="week"]:-ms-input-placeholder, input[type="number"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, input[type="url"]:-ms-input-placeholder, input[type="search"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder, input[type="color"]:-ms-input-placeholder, .login-select:-ms-input-placeholder, .form-control:-ms-input-placeholder, .uneditable-input:-ms-input-placeholder {
color: #666;
font-family: "Montserrat";
font-size: 11px; }
select {
display: block;
height: 50px;
background-color: #fff;
border-radius: 2px;
color: #777;
padding-left: 12px;
padding-right: 30px;
padding-top: 11px;
padding-bottom: 11px;
font-weight: 400;
border: 1px solid #eee;
background-image: none;
width: 100%;
letter-spacing: 0.03em;
color: #888;
font-size: 14px;
font-weight: 400; }
select:focus, textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .login-select:focus, .form-control:focus, .uneditable-input:focus {
outline: none;
border-color: #82d10c; }
fieldset {
padding: 20px;
border: 1px solid #dadada; }
textarea {
resize: vertical;
height: 198px;
padding: 13px 15px; }
select {
max-width: 100%;
overflow: auto;
vertical-align: top;
outline: none;
border: 1px solid #dadada; }
button::-moz-focus-inner {
border: 0;
padding: 0; }
input[type="radio"], input[type="checkbox"] {
margin: 8px 0 0; }
.mfp-container .btn:hover, .mfp-container button:hover, .mfp-container input[type="button"]:hover, .mfp-container input[type="submit"]:hover, .mfp-container .btn:active, .mfp-container button:active, .mfp-container input[type="button"]:active, .mfp-container input[type="submit"]:active, .mfp-container .btn:focus, .mfp-container button:focus, .mfp-container input[type="button"]:focus, .mfp-container input[type="submit"]:focus {
box-shadow: none;
outline: none; }
.mfp-container img.mfp-img {
padding: 35px 0 25px; }
.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
outline: none; }
.lbl {
color: #82d10c; }
.form-control {
box-shadow: none;
-webkit-box-shadow: none; }
.form-control:focus {
box-shadow: none;
-webkit-box-shadow: none; }
.search-no-results .entry-content { }
.search-no-results .entry-content form {
position: relative;
width: 100%; }
.search-no-results .entry-content .form-control {
box-shadow: none;
border: 1px solid #dadada;
background-color: #fff;
margin-bottom: 0;
padding-right: 38px;
border-radius: 0; }
.search-no-results .entry-content .btn {
position: absolute;
top: 0;
right: 0;
background-color: transparent !important;
border: 0;
color: #82d10c;
width: 50px;
height: 45px;
font-size: 18px;
padding: 0;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out; }
.search-no-results .entry-content .btn i {
line-height: 45px; }
.search-no-results .entry-content .btn:hover, .search-no-results .entry-content .btn:focus, .search-no-results .entry-content .btn:active {
color: #050508;
outline: none;
box-shadow: none; }
.search-no-results .entry-content .btn span {
font-size: 18px; }
.contact-form input, .contact-form textarea {
border-radius: 3em;
padding: 15px 30px; }
.contact-form.contact1 textarea {
height: 160px; }
.contact-form.contact1 .btn-send {
text-align: center;
margin-bottom: 0; }
.contact-form.contact1 .btn-send input[type='submit'] {
font-size: 13px;
font-weight: 700;
font-family: "Open Sans";
padding: 18px 40px;
margin-top: 15px; }
.contact-form.contact2 .btn-send input[type='submit'] {
background: #82d10c;
font-size: 13px;
padding: 17px 55px; }
.contact-form.contact2 .btn-send input[type='submit']:hover, .contact-form.contact2 .btn-send input[type='submit']:focus {
background: #0c0d12; }
.contact-form.contact-contact textarea {
height: 117px; }
.contact-form.contact-contact textarea, .contact-form.contact-contact input {
border-width: 2px; }
.contact-form.contact-contact .btn-send {
text-align: center;
margin-bottom: 0; }
.contact-form.contact-contact .btn-send input[type='submit'] {
font-weight: 700;
font-family: "Open Sans";
padding: 18px 47px;
margin-top: 15px;
border-width: 1px; }
.contact-form.contact-service {
background: #fff;
padding: 50px !important;
margin: 0 10px !important;
text-align: center !important;
border-radius: 10px;
box-shadow: 0 0px 20px -5px #d5d5d5; }
.contact-form.contact-service .contact-title {
margin-bottom: 0; }
.contact-form.contact-service .contact-subtitle {
font-style: italic;
font-size: 13px;
line-height: 22px;
margin-bottom: 25px;
letter-spacing: 0.6px;
color: #666; }
.contact-form.contact-service .btn-send input {
padding: 18px 50px;
border-radius: 30px; }
.contact-form.contact-service span.wpcf7-not-valid-tip {
text-align: left; }
.wpcf7-validation-errors {
display: none !important; }
.wpcf7-form div.wpcf7-mail-sent-ok {
border: none; }
.wpcf7-form p {
margin-bottom: 10px; }
.wpcf7-form .row {
margin-left: -5px;
margin-right: -5px; }
.wpcf7-form .row > div {
padding-left: 5px;
padding-right: 5px; }
.wpcf7-form textarea {
height: 95px; }
.wpcf7-form .wpcf7-submit {
margin-top: 10px;
padding: 20px 55px; }
@media (max-width: 479px) {
.wpcf7-form .wpcf7-submit {
padding: 10px 25px; } }
.wpcf7-form div.wpcf7-validation-errors {
display: none; }
div.wpcf7 .screen-reader-response {
display: none; }
div.wpcf7 span.wpcf7-not-valid-tip {
font-size: 13px !important;
margin-bottom: 10px !important; }
div.wpcf7 .wpcf7-form .ajax-loader {
display: none; }
div.wpcf7 .wpcf7-form .ajax-loader.is-active {
display: inline-block; }
.form-group {
margin: 0; }
.site-header .header-top {
position: relative; }
.site-header .header-top:before {
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0;
left: 0; }
.site-header .header-top.layout2 {
color: #fff;
line-height: 50px;
font-size: 12px; }
@media (max-width: 1199px) {
.site-header .header-top.layout2 {
display: none; } }
.site-header .header-top.layout2:before {
background: #050508; }
.site-header .header-top.layout2 .widget_cms_socials_widget ul li a {
min-width: 35px;
margin: 0 2px;
text-align: center;
background: rgba(255, 255, 255, 0.05);
border-radius: 0; }
.site-header .header-top.layout2 .widget_cms_socials_widget ul li a:hover, .site-header .header-top.layout2 .widget_cms_socials_widget ul li a:focus {
color: #82d10c;
background: rgba(255, 255, 255, 0.2); }
.site-header .header-top.layout2 .header-top-wrap > div {
display: flex;
align-items: center;
flex: auto; }
.site-header .header-top.layout2 .header-top-wrap .header-top-left {
padding: 0; }
.site-header .header-top.layout2 .header-top-wrap .header-top-left .widget {
position: relative;
padding: 0 50px; }
.site-header .header-top.layout2 .header-top-wrap .header-top-left .widget:before {
position: absolute;
width: 1px;
height: 13px;
background: #cfcfcf;
right: 0;
top: 50%;
transform: translateY(-50%); }
.site-header .header-top.layout2 .header-top-wrap .header-top-left .widget:first-child {
padding-left: 0; }
.site-header .header-top.layout2 .header-top-wrap .header-top-left .widget:last-child {
padding-right: 0; }
.site-header .header-top.layout2 .header-top-wrap .header-top-left .widget:last-child:before {
width: 0; }
.site-header .header-top.layout2 .header-top-wrap .header-top-left .widget .textwidget {
display: table;
width: 100%; }
.site-header .header-top.layout2 .header-top-wrap .header-top-left .widget .textwidget > div {
display: table-cell;
vertical-align: middle; }
.site-header .header-top.layout2 .header-top-wrap .header-top-left .widget .textwidget > div .icon-header {
margin-right: 12px;
color: #82d10c; }
@media (min-width: 1200px) {
.site-header .header-top.layout2 .header-top-wrap .header-top-right {
flex: none; } }
.site-header .header-top.layout2 .header-top-wrap .header-top-right .widget {
position: relative; }
.site-header .header-top.layout2 .header-top-wrap .header-top-right .widget + .widget {
margin-left: 0; }
.site-header .header-top.layout2 .header-top-wrap .header-top-right .widget + .widget:before {
position: absolute;
width: 1px;
height: 13px;
background: #cfcfcf;
left: 0;
top: 50%;
transform: translateY(-50%); }
.site-header .header-top .shopping_cart_dropdown {
background: #fff none repeat scroll 0 0;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
left: auto !important;
max-width: 370px;
min-width: 300px;
padding: 30px 20px 12px;
position: absolute;
right: 0;
display: none;
z-index: 999;
top: 100%;
bottom: auto; }
.site-header .header-top .shopping_cart_dropdown {
color: #323232; }
.site-header .header-top .shopping_cart_dropdown .shopping_cart_dropdown_inner {
overflow-y: auto;
margin-bottom: 15px; }
.site-header .header-top .shopping_cart_dropdown li.mini_cart_item {
position: relative;
margin-bottom: 30px; }
.site-header .header-top .shopping_cart_dropdown li.mini_cart_item .remove {
position: absolute;
right: 5px;
top: 0;
line-height: 1;
color: #0081ff; }
.site-header .header-top .shopping_cart_dropdown li.mini_cart_item .remove:hover, .site-header .header-top .shopping_cart_dropdown li.mini_cart_item .remove:focus {
color: #82d10c; }
.site-header .header-top .shopping_cart_dropdown li.mini_cart_item .item-wrap {
display: table;
width: 100%; }
.site-header .header-top .shopping_cart_dropdown li.mini_cart_item .item-wrap > div {
display: table-cell;
vertical-align: top; }
.site-header .header-top .shopping_cart_dropdown li.mini_cart_item .item-wrap .mini-cart-media {
width: 80px;
padding-right: 22px; }
.site-header .header-top .shopping_cart_dropdown li.mini_cart_item .item-wrap .product-desc {
padding-right: 20px; }
.site-header .header-top .shopping_cart_dropdown li.mini_cart_item img {
width: 80px;
border-radius: 3px;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2); }
.site-header .header-top .shopping_cart_dropdown .woocommerce-Price-amount {
display: inline-block;
background: #333;
color: #fff;
padding: 3px 10px;
line-height: 1.42857; }
.site-header .header-top .shopping_cart_dropdown p.button {
padding: 0;
border: none;
background: transparent; }
.site-header .header-top .shopping_cart_dropdown p.button:before, .site-header .header-top .shopping_cart_dropdown p.button:after {
content: none; }
.site-header .header-top a {
color: #fff; }
.site-header .header-top .header-top-wrap {
position: relative; }
@media (min-width: 1200px) {
.site-header .header-top .header-top-wrap {
display: flex; } }
.site-header .header-top .header-top-wrap .header-top-left {
display: inline-block;
padding: 13px 0; }
@media (max-width: 1199px) {
.site-header .header-top .header-top-wrap .header-top-left {
display: block;
text-align: center; } }
.site-header .header-top .header-top-wrap .header-top-left p {
margin-bottom: 0; }
@media (min-width: 1200px) {
.site-header .header-top .header-top-wrap .header-top-right {
float: right; }
.site-header .header-top .header-top-wrap .header-top-right .widget {
display: inline-block;
vertical-align: middle; }
.site-header .header-top .header-top-wrap .header-top-right .widget + .widget {
margin-left: 40px; }
.site-header .header-top .header-top-wrap .header-top-right .widget.widget_cart_search_wrap {
margin-left: 10px; } }
.site-header .header-top .header-top-wrap .header-top-right .textwidget.custom-html-widget {
display: table; }
.site-header .header-top .header-top-wrap .header-top-right .textwidget.custom-html-widget > div {
display: table-cell;
vertical-align: middle; }
.site-header .header-top .header-top-wrap .header-top-right .textwidget.custom-html-widget .block-left {
padding-right: 12px; }
.site-header .header-top .header-top-wrap .header-top-right .textwidget.custom-html-widget .block-left .icon-header {
width: 55px;
height: 55px;
text-align: center;
line-height: 46px;
border: 3px solid #fcfcfc;
border-radius: 50%;
font-size: 20px;
color: #82d10c; }
.site-header .header-top .header-top-wrap .header-top-right .textwidget.custom-html-widget .block-right {
overflow: hidden; }
.site-header .header-top .header-top-wrap .header-top-right .textwidget.custom-html-widget .block-right h5 {
font-size: 15px;
color: #4d4d4d; }
.site-header .header-top .header-top-wrap .header-top-right .textwidget.custom-html-widget .block-right p {
line-height: 16px;
font-size: 13px; }
.site-header .header-top .header-top-wrap .header-top-right .widget_text .textwidget p {
margin-bottom: 0 !important;
position: relative; }
.site-header .header-top .header-top-wrap .header-top-right .widget_cart_search_wrap .cshero-header-cart-search a {
padding: 0 16px;
height: auto;
background: transparent;
color: #fff;
display: inline-table; }
.site-header .header-top .header-top-wrap .header-top-right .widget_cart_search_wrap .cshero-header-cart-search a:hover > i {
opacity: 0.6; }
.site-header .header-top .header-top-wrap .header-top-right .widget_cart_search_wrap .cshero-header-cart-search a span.cart_total {
position: absolute;
top: 1px;
left: 1px;
font-size: 12px;
line-height: 1; }
.site-header .header-top .header-top-wrap .header-top-right .widget_cart_search_wrap .cshero-header-cart-search a i {
width: auto;
height: auto;
margin-left: 0;
vertical-align: inherit;
font-size: inherit;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.site-header .header-top .header-top-wrap .header-top-right .widget_gtranslate {
float: right;
position: relative;
z-index: 1; }
.site-header .header-top .header-top-wrap .header-top-right .widget_gtranslate .switcher {
width: 90px; }
.site-header .header-top .header-top-wrap .header-top-right .widget_gtranslate .switcher .selected {
background: transparent; }
.site-header .header-top .header-top-wrap .header-top-right .widget_gtranslate .switcher .selected a {
border: none;
background: url(http://dev.joomexp.com/wordpress/acumec/wp-content/plugins/gtranslate/arrow_down.png) 74px center no-repeat;
color: #666;
padding: 0px 5px;
width: 74px;
background-color: transparent;
line-height: 45px; }
.site-header .header-top .header-top-wrap .header-top-right .widget_gtranslate .switcher .option {
position: absolute; }
.site-header .header-middle {
position: relative; }
.site-header .header-middle:before {
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0;
left: 0; }
.site-header .header-middle.layout1 {
background: transparent;
padding: 42px 0; }
@media (max-width: 1199px) {
.site-header .header-middle.layout1 {
padding: 30px 0; } }
.site-header .header-middle .shopping_cart_dropdown {
background: #fff none repeat scroll 0 0;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
left: auto !important;
max-width: 370px;
min-width: 300px;
padding: 30px 20px 12px;
position: absolute;
right: 0;
display: none;
z-index: 999;
top: 100%;
bottom: auto; }
.site-header .header-middle .shopping_cart_dropdown {
color: #323232; }
.site-header .header-middle .shopping_cart_dropdown .shopping_cart_dropdown_inner {
overflow-y: auto;
margin-bottom: 15px; }
.site-header .header-middle .shopping_cart_dropdown li.mini_cart_item {
position: relative;
margin-bottom: 30px; }
.site-header .header-middle .shopping_cart_dropdown li.mini_cart_item .remove {
position: absolute;
right: 5px;
top: 0;
line-height: 1;
color: #0081ff; }
.site-header .header-middle .shopping_cart_dropdown li.mini_cart_item .remove:hover, .site-header .header-middle .shopping_cart_dropdown li.mini_cart_item .remove:focus {
color: #82d10c; }
.site-header .header-middle .shopping_cart_dropdown li.mini_cart_item .item-wrap {
display: table;
width: 100%; }
.site-header .header-middle .shopping_cart_dropdown li.mini_cart_item .item-wrap > div {
display: table-cell;
vertical-align: top; }
.site-header .header-middle .shopping_cart_dropdown li.mini_cart_item .item-wrap .mini-cart-media {
width: 80px;
padding-right: 22px; }
.site-header .header-middle .shopping_cart_dropdown li.mini_cart_item .item-wrap .product-desc {
padding-right: 20px; }
.site-header .header-middle .shopping_cart_dropdown li.mini_cart_item img {
width: 80px;
border-radius: 3px;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2); }
.site-header .header-middle .shopping_cart_dropdown .woocommerce-Price-amount {
display: inline-block;
background: #333;
color: #fff;
padding: 3px 10px;
line-height: 1.42857; }
.site-header .header-middle .shopping_cart_dropdown p.button {
padding: 0;
border: none;
background: transparent; }
.site-header .header-middle .shopping_cart_dropdown p.button:before, .site-header .header-middle .shopping_cart_dropdown p.button:after {
content: none; }
.site-header .header-middle a {
color: #fff; }
.site-header .header-middle .header-middle-wrap {
position: relative;
display: flex; }
.site-header .header-middle .header-middle-wrap .header-middle-left {
display: inline-block;
padding: 13px 0; }
@media (max-width: 1199px) {
.site-header .header-middle .header-middle-wrap .header-middle-left {
display: block;
text-align: center; } }
.site-header .header-middle .header-middle-wrap .header-middle-left p {
margin-bottom: 0; }
@media (min-width: 1200px) {
.site-header .header-middle .header-middle-wrap .header-middle-right {
float: right;
display: flex;
align-items: center; }
.site-header .header-middle .header-middle-wrap .header-middle-right .widget {
display: inline-block;
vertical-align: middle; }
.site-header .header-middle .header-middle-wrap .header-middle-right .widget + .widget {
margin-left: 40px; }
.site-header .header-middle .header-middle-wrap .header-middle-right .widget.widget_cart_search_wrap {
margin-left: 10px; } }
@media (max-width: 1199px) {
.site-header .header-middle .header-middle-wrap .header-middle-right {
display: none; } }
.site-header .header-middle .header-middle-wrap .header-middle-right .textwidget.custom-html-widget {
display: table; }
.site-header .header-middle .header-middle-wrap .header-middle-right .textwidget.custom-html-widget > div {
display: table-cell;
vertical-align: middle; }
.site-header .header-middle .header-middle-wrap .header-middle-right .textwidget.custom-html-widget .block-left {
padding-right: 12px; }
.site-header .header-middle .header-middle-wrap .header-middle-right .textwidget.custom-html-widget .block-left .icon-header {
position: relative;
width: 55px;
height: 55px;
text-align: center;
border: 3px solid #fcfcfc;
border-radius: 50%;
font-size: 20px;
color: #82d10c;
line-height: 1 !important; }
.site-header .header-middle .header-middle-wrap .header-middle-right .textwidget.custom-html-widget .block-left .icon-header i {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
line-height: 1;
border: none;
padding-bottom: 3px; }
.site-header .header-middle .header-middle-wrap .header-middle-right .textwidget.custom-html-widget .block-right {
overflow: hidden; }
.site-header .header-middle .header-middle-wrap .header-middle-right .textwidget.custom-html-widget .block-right h5 {
font-size: 15px;
color: #4d4d4d; }
.site-header .header-middle .header-middle-wrap .header-middle-right .textwidget.custom-html-widget .block-right p {
line-height: 16px;
font-size: 13px; }
.site-header .header-middle .header-middle-wrap .header-middle-right .widget_text .textwidget p {
margin-bottom: 0 !important;
position: relative; }
.site-header .header-middle .header-middle-wrap .header-middle-right .widget_cart_search_wrap .cshero-header-cart-search a {
padding: 0 16px;
height: auto;
background: transparent;
color: #fff;
display: inline-table; }
.site-header .header-middle .header-middle-wrap .header-middle-right .widget_cart_search_wrap .cshero-header-cart-search a:hover > i {
opacity: 0.6; }
.site-header .header-middle .header-middle-wrap .header-middle-right .widget_cart_search_wrap .cshero-header-cart-search a span.cart_total {
position: absolute;
top: 1px;
left: 1px;
font-size: 12px;
line-height: 1; }
.site-header .header-middle .header-middle-wrap .header-middle-right .widget_cart_search_wrap .cshero-header-cart-search a i {
width: auto;
height: auto;
margin-left: 0;
vertical-align: inherit;
font-size: inherit;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.site-header .header-middle .header-middle-wrap .header-middle-right .widget_gtranslate {
float: right;
position: relative;
z-index: 1; }
.site-header .header-middle .header-middle-wrap .header-middle-right .widget_gtranslate .switcher {
width: 90px; }
.site-header .header-middle .header-middle-wrap .header-middle-right .widget_gtranslate .switcher .selected {
background: transparent; }
.site-header .header-middle .header-middle-wrap .header-middle-right .widget_gtranslate .switcher .selected a {
border: none;
background: url(http://dev.joomexp.com/wordpress/acumec/wp-content/plugins/gtranslate/arrow_down.png) 74px center no-repeat;
color: #666;
padding: 0px 5px;
width: 74px;
background-color: transparent;
line-height: 45px; }
.site-header .header-middle .header-middle-wrap .header-middle-right .widget_gtranslate .switcher .option {
position: absolute; }
.site-header .widget_cart_search_wrap {
display: table-cell;
vertical-align: middle;
position: relative; }
.site-header .widget_cart_search_wrap .header-search-cart > a {
display: block;
padding: 0;
text-align: center;
background: transparent;
font-size: 20px;
color: #050508; }
.site-header .widget_cart_search_wrap .header-search-cart > a:hover, .site-header .widget_cart_search_wrap .header-search-cart > a:focus {
color: #82d10c; }
.site-header .widget_cart_search_wrap .header-search-cart .icon_cart_wrap {
font-size: 20px;
line-height: 45px;
position: relative; }
.site-header .widget_cart_search_wrap .widget_searchform_content {
background: #fff none repeat scroll 0 0;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
left: auto !important;
max-width: 370px;
min-width: 300px;
padding: 20px;
position: absolute;
right: 0;
display: none;
z-index: 99;
bottom: auto; }
.site-header .widget_cart_search_wrap .widget_searchform_content.popup {
position: fixed;
max-width: 100%;
min-width: 100%;
top: 0;
left: 0;
right: 0; }
.site-header .widget_cart_search_wrap .widget_searchform_content.dropdown {
top: 69px; }
.site-header .widget_cart_search_wrap .widget_searchform_content.active {
display: block !important; }
.site-header .widget_cart_search_wrap .widget_searchform_content .form-group {
margin-bottom: 0; }
.site-header .widget_cart_search_wrap .widget_searchform_content .form-group .form-control {
border-radius: 0; }
.site-header .widget_cart_search_wrap .widget_searchform_content .theme_button {
position: absolute;
top: 0;
right: 0;
height: 52px;
width: 50px;
padding: 0;
color: #fff;
background: #82d10c;
border: none;
border-radius: 0;
-webkit-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s; }
.site-header .widget_cart_search_wrap .widget_searchform_content .theme_button:hover {
color: #fff;
background: #0c0d12; }
.site-header .widget_cart_search_wrap .widget_searchform_content .cshero-popup-search .searchform {
position: relative; }
.site-header .widget_cart_search_wrap .widget_searchform_content .cshero-popup-search .searchform #s {
display: block;
height: 50px;
background-color: #fbfbfb;
border-radius: 0;
color: #1a1a1a;
padding-left: 30px;
padding-right: 50px;
padding-top: 11px;
padding-bottom: 11px;
font-size: 11px;
font-weight: 400;
border: 1px solid transparent;
background-image: none;
width: 100%;
letter-spacing: 0.03em;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out; }
.site-header .widget_cart_search_wrap .widget_searchform_content .cshero-dropdown-search {
position: relative; }
.site-header .widget_cart_search_wrap .widget_searchform_content .cshero-dropdown-search .form-group .form-control {
padding: 6px 65px 6px 15px; }
@media (min-width: 1400px) {
.site-header .container-fullwidth {
padding: 0 80px; } }
@media (max-width: 1399px) {
.site-header .container-fullwidth {
padding: 0 50px; } }
@media (max-width: 767px) {
.site-header .container-fullwidth {
padding: 0 30px; } }
@media (max-width: 479px) {
.site-header .container-fullwidth {
padding: 0 15px; } }
.site-header.header-transparent .header-top .header-top-wrap .header-top-right .icon-header i {
color: #4e81f3; }
.site-branding {
position: relative;
display: flex;
align-items: center;
flex: auto; }
.site-branding .site-title a[rel="home"] {
color: inherit; }
.header-main.border-header {
border-bottom: 1px solid transparent; }
.no-display-text {
display: none; }
.site {
position: relative; }
ul {
list-style-type: none;
padding: 0; }
li a:empty {
display: none; }
a {
text-decoration: none;
outline: 0;
color: #82d10c;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
a:hover, a:focus {
outline: none;
text-decoration: none;
color: #82d10c;
text-decoration: none; }
a[href^=tel] {
color: inherit; }
iframe {
width: 100%; }
dd, dt {
line-height: 2; }
.owl-carousel {
display: none; }
.vc_row.overlay-opacity {
position: relative;
overflow: hidden; }
.row-overlay-opacity-05 {
background: rgba(0, 0, 0, 0.5); }
.to_animate {
visibility: hidden; }
.bg-fixed {
background-attachment: fixed; }
.animated {
visibility: visible !important; }
.site-header {
position: relative; }
.text-center {
text-align: center !important; }
.visible_overflow {
overflow: visible !important;
z-index: 1; }
.visible_overflow .vc_column-inner {
position: relative;
z-index: 2; }
.blockquote {
padding-bottom: 25px; }
.blockquote p:before {
content: "\f10d";
font-family: 'fontawesome';
padding-right: 4px;
vertical-align: super;
font-size: 8px; }
.blockquote p:after {
content: "\f10e";
font-family: 'fontawesome';
padding-left: 4px;
vertical-align: super;
font-size: 8px; }
.box-shadow > div.vc_column-inner {
box-shadow: 0 0 20px -2px #e5e5e5; }
.sidebar-left > div {
float: right; }
.ef3-back-to-top {
position: fixed;
right: -40px;
bottom: 20px;
width: 40px;
height: 40px;
line-height: 38px;
text-decoration: none;
text-align: center;
font-size: 21px;
visibility: hidden;
opacity: 0;
transition: all 240ms;
cursor: pointer;
z-index: 9999;
border-radius: 50%;
color: #fff;
background: #82d10c;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.ef3-back-to-top:hover {
color: #fff;
background: #0c0d12;
text-decoration: none; }
.vc_row.overlay-opacity {
position: relative;
overflow: hidden;
color: inherit;
background-color: rgba(0, 0, 0, 0.5); }
.vc_row.overlay-opacity:before {
background-color: inherit; }
body .navigation {
padding-top: 40px;
text-align: center; }
body .navigation .pagination {
margin: 0;
display: block;
font-size: 14px;
font-weight: 600; }
body .navigation .pagination li:before {
content: none; }
body .navigation .page-numbers {
color: #050508;
background: #f7f7f7;
display: inline-block;
text-align: center;
width: 52px;
height: 52px;
line-height: 52px;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
body .navigation .dots:hover, body .navigation .dots:focus {
color: #fff; }
body .navigation .page-numbers {
margin-bottom: 5px; }
body .navigation .page-numbers.prev, body .navigation .page-numbers.next {
background: #82d10c;
color: #fff; }
body .navigation .page-numbers.prev:hover, body .navigation .page-numbers.next:hover, body .navigation .page-numbers.prev:focus, body .navigation .page-numbers.next:focus {
background: #050508; }
body .navigation .page-numbers.prev i, body .navigation .page-numbers.next i {
font-size: 15px; }
body .navigation .page-numbers.prev {
margin-right: 17px; }
body .navigation .page-numbers.next {
margin-left: 17px; }
body .navigation .page-numbers.current, body .navigation .page-numbers:hover, body .navigation .page-numbers:focus {
background: #050508;
color: #fff; }
body.archive .navigation {
padding-top: 0; }
body.blog .navigation {
padding: 40px 45px 0 45px; }
@media (max-width: 767px) {
body.blog .navigation {
padding: 40px 15px 0 15px; } }
body.page .navigation {
padding-top: 0; }
body.page .navigation .next {
margin-left: 17px; }
body.page .navigation .prev {
margin-right: 17px; }
body .error-404 {
font-family: 'Open Sans', sans-serif;
font-weight: 800; }
body .error-404 h1.page-title-404 {
font-size: 65px;
line-height: 70px;
margin-bottom: 0;
margin-top: 26px; }
body .error-404 p {
font-size: 25px;
line-height: 35px;
margin-top: 20px;
margin-bottom: 0;
color: #444; }
body .error-404 p a {
text-transform: uppercase;
color: #82d10c; }
body .error-404 p a:hover, body .error-404 p a:focus {
color: #82d10c; }
body .error-404 .error-search {
margin-bottom: 0px;
margin-top: 45px; }
body .error-404 .error-search .search-form .form-group .form-control {
height: 56px; }
body .error-404 .btn-action {
margin-top: 22px; }
body .error-404 .btn-action .btn-404 {
font-family: "Montserrat";
padding: 18px 37px; }
body .error-404 .btn-action .btn-round {
border-radius: 3em; }
.wpb_button, .wpb_wrapper .wpb_content_element, ul.wpb_thumbnails-fluid > li {
margin-bottom: 0;
background-position: center !important; }
.vc_column-inner {
padding-top: 0 !important; }
.ef3-back-to-top.active {
right: 20px;
visibility: visible;
opacity: 1; }
.wp-caption {
max-width: 100%; }
.edit-link {
display: block;
margin-top: 20px; }
.edit-link a:first-child {
margin-right: 8px; }
.post-password-form p {
position: relative;
width: max-content;
width: -moz-max-content; }
.post-password-form p label input {
width: 300px;
padding-right: 115px; }
.post-password-form p input[type="submit"] {
position: absolute;
bottom: 5px;
right: 0;
height: 50px;
background: #82d10c;
border: none;
color: #fff; }
.post-password-form p input[type="submit"]:hover {
opacity: 0.7; }
.site-main .entry-content ul > li, .site-main .comment-content ul > li, .site-main .entry-content ol > li, .site-main .comment-content ol > li {
position: relative; }
.site-main .entry-content ul > li, .site-main .comment-content ul > li {
position: relative; }
.site-main .entry-content ol, .site-main .comment-content ol {
padding-left: 28px; }
@media (min-width: 600px) {
.site-main.single-project .project-header {
display: table;
width: 100%; }
.site-main.single-project .project-header > div {
display: table-cell;
vertical-align: middle; } }
.site-main.single-project .project-header .project-header-left {
padding-bottom: 25px; }
@media (min-width: 600px) {
.site-main.single-project .project-header .project-header-left {
padding-right: 5px; } }
.site-main.single-project .project-header .project-header-left .project-cate {
color: #999; }
.site-main.single-project .project-header .project-header-left .project-cate a {
font-style: italic;
color: inherit; }
.site-main.single-project .project-header .project-header-left .project-cate a:hover, .site-main.single-project .project-header .project-header-left .project-cate a:focus {
color: #82d10c; }
.site-main.single-project .project-header .project-header-left .entry-header h2 {
font-size: 24px;
color: #444;
margin-top: 5px;
margin-bottom: 0; }
.site-main.single-project .project-header .project-header-right {
padding-bottom: 25px; }
@media (min-width: 600px) {
.site-main.single-project .project-header .project-header-right {
text-align: right; } }
.site-main.single-project .project-header .project-header-right .btn-launch {
font-weight: 800;
border-radius: 30px; }
.site-main.single-project .single-content .project-description {
font-size: 15px;
font-style: italic;
color: #666;
padding-bottom: 35px; }
.site-main.single-project .single-content .post-thumbnail {
margin-bottom: 0; }
.site-main.single-project .single-content .client-information {
background: #fafafa; }
.site-main.single-project .single-content .client-information .client-information-wrap {
background: transparent;
padding: 0 30px; }
@media (max-width: 767px) {
.site-main.single-project .single-content .client-information .client-information-wrap {
padding: 30px; } }
.site-main.single-project .single-content .client-information .client-information-wrap .client-information-box {
padding: 40px 53px;
background: #fff;
border-radius: 5px;
box-shadow: 0 0px 20px 0 #dbdbdb; }
@media (max-width: 1199px) {
.site-main.single-project .single-content .client-information .client-information-wrap .client-information-box {
padding: 30px; } }
@media (min-width: 768px) {
.site-main.single-project .single-content .client-information .client-information-wrap .client-information-box {
transform: translateY(-30px); } }
.site-main.single-project .single-content .client-information .client-information-wrap .client-information-box h4.project-title {
font-size: 17px;
font-weight: 800;
margin-bottom: 12px; }
@media (min-width: 768px) {
.site-main.single-project .single-content .client-information .client-information-wrap .client-information-box .information-wrap {
display: table;
width: 100%; }
.site-main.single-project .single-content .client-information .client-information-wrap .client-information-box .information-wrap .information-item {
display: table-cell;
vertical-align: middle; } }
.site-main.single-project .single-content .client-information .client-information-wrap .client-information-box .information-wrap .information-item {
font-size: 13px;
padding-right: 5px; }
.site-main.single-project .single-content .client-information .client-information-wrap .client-information-box .information-wrap .information-item .client {
display: table;
margin: 5px 0; }
.site-main.single-project .single-content .client-information .client-information-wrap .client-information-box .information-wrap .information-item .client > div {
display: table-cell;
vertical-align: middle; }
.site-main.single-project .single-content .client-information .client-information-wrap .client-information-box .information-wrap .information-item .client .client-thumbnail img {
margin-right: 16px;
border-radius: 50%;
width: 56px; }
.site-main.single-project .single-content .client-information .client-information-wrap .client-information-box .information-wrap .information-item .client .client-content h5.client-title {
margin-bottom: 0;
color: #444;
font-weight: 600; }
.site-main.single-project .single-content .client-information .client-information-wrap .client-information-box .information-wrap .information-item .client .client-content .client-position {
font-family: "Open Sans";
font-size: 11px;
color: #82d10c; }
.site-main.single-project .single-content .client-information .client-information-wrap .client-information-box .information-wrap .information-item .information-item-wrap span {
font-weight: 700;
color: #82d10c; }
.site-main.single-project .single-content .client-information .client-information-wrap .client-information-box .information-wrap .information-item .information-item-wrap span + span {
font-style: italic;
color: #444;
font-weight: 500;
margin-left: 6px; }
.site-main.single-project .single-content .client-information .client-information-wrap .client-information-box .information-wrap .information-item .information-item-wrap span a {
color: inherit; }
.site-main.single-project .single-content .client-information .client-information-wrap .client-information-box .information-wrap .information-item .information-item-wrap span a:hover, .site-main.single-project .single-content .client-information .client-information-wrap .client-information-box .information-wrap .information-item .information-item-wrap span a:focus {
color: #82d10c; }
.site-main.single-project .single-content .client-information .client-information-wrap .client-information-box .information-wrap .information-item .information-item-wrap + .information-item-wrap {
margin-top: 2px; }
.site-main.single-project .entry-post-wrap {
padding-bottom: 0; }
.site-main.single-team .entry-post-wrap {
padding-bottom: 0; }
.site-main.single-team .entry-post-wrap .entry-text .entry-header {
border: none;
padding-bottom: 10px;
margin-bottom: 0; }
@media (min-width: 768px) {
.site-main.single-team .entry-post-wrap .entry-text .entry-header {
display: flex;
flex-wrap: wrap;
clear: both; } }
@media (min-width: 768px) {
.site-main.single-team .entry-post-wrap .entry-text .entry-header > div {
display: flex;
align-items: center; } }
.site-main.single-team .entry-post-wrap .entry-text .entry-header .header-left .post-thumbnail {
width: 100%; }
.site-main.single-team .entry-post-wrap .entry-text .entry-header .header-right {
text-align: left; }
.site-main.single-team .entry-post-wrap .entry-text .entry-header .header-right .team-contact {
margin-bottom: 0;
padding-bottom: 32px; }
.site-main.single-team .entry-post-wrap .entry-text .entry-header .header-right .team-contact li {
font-size: 13px; }
.site-main.single-team .entry-post-wrap .entry-text .entry-header .header-right .team-link {
padding-bottom: 40px; }
@media (min-width: 480px) {
.site-main.single-team .entry-post-wrap .entry-text .entry-header .header-right .team-link {
display: flex;
align-items: center; } }
.site-main.single-team .entry-post-wrap .entry-text .entry-header .header-right .team-link .team-btn {
margin-right: 35px;
margin: 10px 35px 0px 0; }
.site-main.single-team .entry-post-wrap .entry-text .entry-header .header-right .team-link .team-social {
margin: 10px 0 0 0; }
.site-main.single-service .entry-service-wrap {
position: relative; }
.site-main.single-service .entry-service-wrap .entry-text {
overflow: hidden; }
@media (min-width: 768px) {
.site-main.single-service .entry-service-wrap .entry-text .entry-header {
display: flex; }
.site-main.single-service .entry-service-wrap .entry-text .entry-header > div {
display: flex;
flex-wrap: wrap;
align-items: center;
flex: auto; } }
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-left {
overflow: hidden; }
@media (min-width: 768px) {
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-left {
max-width: 400px; } }
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-left img {
width: 100%;
zoom: 1;
filter: alpha(opacity=100);
opacity: 1;
-webkit-transition: all 0.9s ease 0s;
transition: all 0.9s ease 0s; }
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-left img:hover {
zoom: 1;
filter: alpha(opacity=80);
opacity: 0.8;
-webkit-transform: rotate(2deg);
-ms-transform: rotate(2deg);
transform: rotate(2deg);
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1); }
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-right {
background: #fbfbfb; }
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-right img {
height: 100px;
max-width: 100px; }
@media (min-width: 992px) {
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-right {
padding-left: 40px;
padding-right: 10px; } }
@media (min-width: 768px) and (max-width: 991px) {
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-right {
padding-left: 20px;
padding-right: 10px;
padding-bottom: 5px;
padding-top: 5px; } }
@media (max-width: 767px) {
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-right {
padding: 40px 30px 30px 30px; } }
@media (min-width: 480px) {
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-right .header-right-wrap .post-thumbnail {
float: left;
margin-right: 25px; } }
@media (min-width: 480px) {
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-right .header-right-wrap .header-right-heading {
overflow: hidden; } }
@media (max-width: 479px) {
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-right .header-right-wrap .header-right-heading {
margin-top: 20px; } }
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-right .header-right-wrap .header-right-heading .service-title {
margin-bottom: 0; }
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-right .header-right-wrap .header-right-heading .service-type {
font-style: italic;
font-size: 13px; }
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-right .header-right-wrap .header-right-heading .service-cate {
color: #82d10c;
font-family: "Open Sans";
margin-top: 10px; }
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-right .header-right-wrap .header-right-heading .service-cate i {
margin-right: 10px; }
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-right .header-right-wrap .header-right-heading .service-cate a {
color: inherit; }
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-right .header-right-wrap .header-right-heading .service-cate a:hover, .site-main.single-service .entry-service-wrap .entry-text .entry-header .header-right .header-right-wrap .header-right-heading .service-cate a:focus {
color: #050508; }
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-right .header-right-wrap .header-right-heading ul.service-list {
margin-bottom: 0;
margin-top: 38px;
list-style-type: square;
padding-left: 16px;
color: #82d10c; }
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-right .header-right-wrap .header-right-heading ul.service-list li {
margin-bottom: 10px; }
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-right .header-right-wrap .header-right-heading ul.service-list li span {
color: #666;
font-size: 13px; }
.site-main.single-service .entry-service-wrap .entry-text .entry-header .header-right .header-right-wrap .header-right-heading ul.service-list li:last-child {
margin-bottom: 0; }
.entry-title {
font-size: 24px;
color: #444;
margin-bottom: 0;
line-height: 30px; }
.team-position {
font-family: "Open Sans";
font-size: 13px;
color: #82d10c;
margin-bottom: 23px; }
.team-description {
font-size: 15px;
font-style: italic;
line-height: 26px;
margin-bottom: 30px;
letter-spacing: 0.6px; }
.team-contact {
font-family: "Open Sans";
padding-bottom: 42px; }
.team-contact li {
margin-bottom: 10px; }
.team-contact li span.title {
font-weight: 700;
color: #82d10c; }
.team-button {
padding: 17px 39px;
display: inline-block;
font-weight: 400; }
.team-button i {
margin-bottom: 1px;
margin-right: 11px; }
.team-social li {
display: inline-block; }
.team-social li a {
display: inline-block;
width: 35px;
height: 38px;
font-size: 11px;
line-height: 38px;
color: #333;
text-align: center;
background: #f7f7f7;
margin: 0 3px;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.team-social li a:hover, .team-social li a:focus {
background: #050508;
color: #82d10c; }
.unordered-list li:before {
position: absolute;
left: 0;
top: 0;
content: "\f00c";
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
color: #82d10c;
font-size: 14px; }
.page-title {
font-family: 'Open Sans', sans-serif;
position: relative;
background-repeat: no-repeat;
background-size: cover;
background-image: url(//bomali.eu/wp-content/themes/acumec/assets/images/page-title.jpg); }
.page-title .bg-overlay {
background: rgba(42, 42, 42, 0.5); }
@media (min-width: 1200px) {
.page-title.style-1 {
padding: 325px 0; } }
@media (max-width: 1199px) {
.page-title.style-1 {
padding: 150px 0; } }
@media (max-width: 767px) {
.page-title.style-1 {
padding: 100px 0; } }
.page-title.layout-2 .page-title-text h1 {
margin-bottom: 10px;
-ms-word-wrap: break-word;
word-wrap: break-word; }
@media (min-width: 600px) {
.page-title.layout-3 .breadcrumb-text {
padding-bottom: 10px; } }
.page-title.layout-4 .page-title-wrap .row, .page-title.layout-5 .page-title-wrap .row {
width: 100%; }
@media (min-width: 768px) {
.page-title.layout-4 .page-title-wrap .row, .page-title.layout-5 .page-title-wrap .row {
display: flex; }
.page-title.layout-4 .page-title-wrap .row > div, .page-title.layout-5 .page-title-wrap .row > div {
display: flex;
flex: auto;
align-items: center; } }
.page-title.layout-4 .page-title-wrap .row h1, .page-title.layout-5 .page-title-wrap .row h1, .page-title.layout-4 .page-title-wrap .row .breadcrumb-wrap, .page-title.layout-5 .page-title-wrap .row .breadcrumb-wrap {
width: 100%; }
@media (max-width: 767px) {
.page-title.layout-4 .page-title-text h1 {
margin-bottom: 8px; } }
@media (max-width: 767px) {
.page-title.layout-5 .breadcrumb-text .breadcrumb-wrap {
margin-bottom: 8px; } }
.page-title .page-title-wrap {
padding: 110px 0 80px; }
.page-title .bg-overlay {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0; }
.page-title .page-title-text h1 {
text-transform: capitalize;
font-weight: 800;
margin-bottom: 0;
font-family: 'Open Sans', sans-serif; }
@media (min-width: 992px) {
.page-title .page-title-text h1 {
font-size: 35px;
line-height: 1.1; } }
.page-title .breadcrumb-text {
font-weight: 700;
font-size: 13px;
line-height: 18px;
text-transform: uppercase; }
.page-title .breadcrumb-text span {
color: #fff;
cursor: pointer; }
.page-title .breadcrumb-text span a {
color: inherit; }
.page-title .breadcrumb-text span a:hover {
color: #82d10c; }
@media (min-width: 480px) {
.page-title .breadcrumb-text span:first-child {
margin-right: 2px; }
.page-title .breadcrumb-text span + span {
margin-left: 5px; } }
.contact-info {
position: relative;
padding: 30px 35px;
background: #292929;
border-radius: 10px;
display: table;
width: auto;
color: #fff; }
.contact-info li {
color: inherit !important; }
.contact-info li i {
margin-right: 20px; }
.contact-info:before {
content: "";
position: absolute;
top: -7px;
left: 25px;
border-style: solid;
border-width: 0 10px 10px 10px;
border-color: transparent transparent #292929 transparent;
width: 0;
height: 0;
z-index: -1; }
.contact-info1 ul li {
font-size: 16px;
margin-bottom: 5px; }
.contact-info1 ul li i {
margin-right: 15px;
color: #4e81f3;
float: left;
line-height: 30px; }
.contact-info1 ul li span {
display: block;
overflow: hidden;
color: #82d10c; }
.no-padding {
padding: 0; }
.carousel .carousel-control {
top: 50%;
transform: translateY(-50%);
width: 40px;
height: 40px;
line-height: 38px;
background-color: #82d10c;
background-image: none;
opacity: 1; }
.carousel .carousel-control:focus, .carousel .carousel-control:hover {
opacity: 0.6; }
.carousel .left {
left: 20px; }
.carousel .right {
right: 20px; }
.entry-content .entry-inside blockquote, .comment-content .entry-inside blockquote {
color: #fff; }
.entry-content blockquote, .comment-content blockquote {
color: #181818; }
.entry-content blockquote span, .comment-content blockquote span {
text-transform: capitalize;
font-style: italic;
position: absolute;
bottom: 0; }
.author-meta {
display: table;
position: relative;
z-index: 0;
margin: 0 0 54px;
padding-left: 30px;
width: 100%;
background-image: url(//bomali.eu/wp-content/themes/acumec/assets/images/bg-footer.png);
background-repeat: no-repeat;
background-size: cover; }
@media (max-width: 767px) {
.author-meta {
padding-right: 30px; } }
.author-meta:before {
content: "";
position: absolute;
z-index: -1;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: transparent; }
.author-meta .display_table_md {
display: table-row; }
@media (min-width: 768px) {
.author-meta .display_table_md .display_table_cell_md {
display: table-cell;
vertical-align: middle; }
.author-meta .display_table_md .display_table_cell_md .item-content {
padding: 0px 30px 0 45px; }
.author-meta .display_table_md .col-avatar {
width: 155px; } }
@media (max-width: 767px) {
.author-meta .display_table_md .display_table_cell_md {
text-align: center; }
.author-meta .display_table_md .col-avatar {
margin: 0 auto;
width: 100px; } }
.author-meta .display_table_md .col-avatar {
padding: 25px 0; }
.author-meta .display_table_md .col-avatar .item-media img {
height: 170px;
max-width: 100%;
vertical-align: middle;
width: auto; }
@media (max-width: 767px) {
.author-meta .display_table_md .col-avatar .item-media img {
height: 110px; } }
@media (min-width: 768px) {
.author-meta .item-content .item-header {
display: table; }
.author-meta .item-content .item-header ul, .author-meta .item-content .item-header h4 {
display: table-cell;
vertical-align: middle; } }
@media (max-width: 767px) {
.author-meta .item-content .item-header {
margin: 0 auto; } }
@media (min-width: 768px) {
.author-meta .item-content .item-header ul.author-social {
padding-left: 36px; } }
.author-meta .item-content .item-header ul.author-social li {
display: inline-block; }
.author-meta .item-content .item-header ul.author-social li a {
display: inline-block;
width: 36px;
height: 36px;
line-height: 36px;
text-align: center;
border-radius: 50%;
background-color: #82d10c;
color: #fff;
margin: 2px; }
.author-meta .item-content .item-header ul.author-social li a:hover, .author-meta .item-content .item-header ul.author-social li a:focus {
background-color: #0c0d12;
color: #fff; }
.author-meta .item-content .item-header ul.author-social li:last-child a {
margin-right: 0; }
.author-meta .item-content h4 {
text-transform: uppercase;
color: #fff; }
.author-meta .item-content p.desc {
font-size: 15px;
color: #e1e1e1;
margin-top: 12px;
margin-bottom: 0; }
.post-navigation .post-nav-wrap {
padding: 40px 5px;
position: relative; }
.post-navigation .post-nav-wrap:before {
content: "";
width: 100%;
height: 100%;
position: absolute;
background: rgba(8, 8, 8, 0.6);
top: 0;
left: 0; }
.post-navigation .post-nav-wrap h3 {
margin-top: 10px; }
.post-navigation .post-nav-wrap a {
color: #fff;
position: relative; }
.post-navigation .post-nav-wrap a:hover {
color: #82d10c; }
@media (max-width: 767px) {
.post-navigation .post-nav-wrap {
margin-bottom: 30px; } }
@media (min-width: 1200px) {
.admin-bar #header_side {
top: 32px; } }
.site-header .header-main {
position: relative; }
.site-header .header-main:before {
position: absolute;
content: "";
top: 0;
left: 0;
width: 100%;
height: 100%;
background: transparent; }
.site-header .header-main .header-main-wrap {
position: relative; }
.site-header .header-main .header-main-wrap ul.sub-menu.multicolumn {
width: auto !important;
max-width: 1140px; }
.site-header .header-main .header-main-wrap ul.sub-menu.multicolumn.submenu-open > li > ul {
display: block; }
.site-header .header-main .header-main-wrap ul.sub-menu.multicolumn.submenu-open > li span.cs-menu-toggle {
display: none; }
.site-header .header-main .header-main-wrap ul.sub-menu.multicolumn li a:hover, .site-header .header-main .header-main-wrap ul.sub-menu.multicolumn li a:focus {
color: #82d10c; }
.site-header .menu-main-menu .current-menu-ancestor > a, .site-header .menu-main-menu .current-menu-item > a {
color: #82d10c; }
.site-header .menu-main-menu ul.sub-menu {
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px; }
@media (min-width: 1200px) {
.site-header .menu-main-menu ul.sub-menu {
box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.2); }
.site-header .menu-main-menu ul.sub-menu:before {
content: "";
position: absolute;
width: 100%;
height: 100%;
background: transparent;
left: 0 !important;
top: 0; }
.site-header .menu-main-menu ul.sub-menu li a:hover, .site-header .menu-main-menu ul.sub-menu li a:focus {
background: #050508; } }
.site-header .menu-main-menu ul.sub-menu li a {
width: 100%;
background: none;
padding: 5px 20px 5px 20px;
color: #5c5c5c;
font-size: 13px;
font-family: 'Lato', sans-serif;
text-decoration: none;
display: inline-block;
line-height: inherit;
clear: both;
position: relative;
outline: 0;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.site-header .menu-main-menu ul.sub-menu .current-menu-item > a, .site-header .menu-main-menu ul.sub-menu .current-menu-parent > a, .site-header .menu-main-menu ul.sub-menu .current_page_item > a {
color: #82d10c; }
.site-header .menu-main-menu li.has_full_width ul.drop_full_width.sub-menu {
left: 0;
right: 0;
width: 1140px;
z-index: 9999;
padding: 20px 30px;
top: auto; }
@media (max-width: 1199px) {
.site-header .menu-main-menu li.has_full_width ul.drop_full_width.sub-menu {
width: 100% !important;
left: 0 !important;
border-top: none;
border-bottom: solid 1px #f0f0f0; }
.site-header .menu-main-menu li.has_full_width ul.drop_full_width.sub-menu li {
padding-left: 0 !important; } }
.site-header .menu-main-menu li.has_full_width ul.drop_full_width.sub-menu span.menu-title {
font-weight: 400;
display: inline-block;
font-size: 15px; }
.site-header .menu-main-menu li.has_full_width .menu_content .menu-item h5 a:hover, .site-header .menu-main-menu li.has_full_width .menu_content .menu-item h5 a:focus {
padding-left: 0; }
.site-header .menu-main-menu li a {
position: relative;
padding: 15px 20px 16px;
line-height: 24px;
font-size: 15px;
display: inline-block;
text-decoration: none;
text-transform: capitalize;
outline: 0;
-webkit-transition: color 0.3s linear, background 0.3s linear;
transition: color 0.3s linear, background 0.3s linear; }
.site-header .menu-main-menu li a:hover, .site-header .menu-main-menu li a:focus {
color: #82d10c; }
.site-header .menu-main-menu > li > ul.sub-menu {
padding: 10px 0; }
@media (min-width: 1200px) {
.site-header .menu-main-menu > li > ul.sub-menu > li > a:hover, .site-header .menu-main-menu > li > ul.sub-menu > li > a:focus {
color: #fff; } }
.site-header .header-main .bg-overlay {
position: absolute;
left: 0;
top: 0;
content: '';
background: transparent;
height: 100%;
width: 100%; }
.site-header .header-main .header-main-left-menu {
position: relative; }
@media screen and (min-width: 1200px) {
.site-header {
background: transparent; }
.site-header .header-navigation {
background: none !important; }
.site-header .header-main-right-menu {
position: relative; }
.site-header .menu-main-menu > li > ul.sub-menu > li li a:hover, .site-header .menu-main-menu > li > ul.sub-menu > li li a:focus {
background: transparent;
color: #82d10c; }
.site-header .menu-main-menu > li > ul.sub-menu.multicolumn:before {
left: 104px; }
.site-header .menu-main-menu > li > ul.sub-menu.multicolumn.columns2 > li {
width: 50%; }
.site-header .menu-main-menu > li > ul.sub-menu.multicolumn.columns2 ul.sub-menu {
min-width: 50%; }
.site-header .menu-main-menu > li > ul.sub-menu.multicolumn.columns3 > li {
width: 33.333%; }
.site-header .menu-main-menu > li > ul.sub-menu.multicolumn.columns3 ul.sub-menu {
min-width: 33.333%; }
.site-header .menu-main-menu > li > ul.sub-menu.multicolumn.columns4 > li {
width: 25%; }
.site-header .menu-main-menu > li > ul.sub-menu.multicolumn.columns4 ul.sub-menu {
min-width: 25%; }
.site-header .menu-main-menu > li > ul.sub-menu.multicolumn.columns5 > li {
width: 20%; }
.site-header .menu-main-menu > li > ul.sub-menu.multicolumn.columns5 ul.sub-menu {
min-width: 20%; }
.site-header .menu-main-menu > li > ul.sub-menu.multicolumn > li {
float: left; }
.site-header .menu-main-menu > li > ul.sub-menu.multicolumn > li.menu-item {
font-weight: 600; }
.site-header .menu-main-menu > li > ul.sub-menu.multicolumn > li.menu-item > a:hover, .site-header .menu-main-menu > li > ul.sub-menu.multicolumn > li.menu-item > a:focus {
background: none; }
.site-header .menu-main-menu > li > ul.sub-menu.multicolumn > li.menu-item > a > span.menu-title {
font-weight: inherit; }
.site-header .menu-main-menu > li > ul.sub-menu.multicolumn > li.menu-item-has-children > a span.menu-title {
font-weight: inherit; }
.site-header .menu-main-menu > li > ul.sub-menu.multicolumn > li.menu-item-has-children > a:after {
content: none; }
.site-header .menu-main-menu > li > ul.sub-menu.multicolumn > li.menu-item-has-children.group ul.sub-menu {
position: relative;
opacity: 1;
visibility: visible;
left: 0;
top: 0;
box-shadow: none;
margin-top: 0; }
.site-header .menu-main-menu > li > ul.sub-menu.multicolumn ul.sub-menu {
background: transparent; } }
@media (max-width: 1199px) {
.site-header.header-transparent .header-main:before {
background: #050508; }
.site-header .menu-main-menu li ul.sub-menu.multicolumn {
padding: 0 25px !important;
border-bottom: none !important; } }
.site-header .header-top { }
@media (max-width: 1199px) {
.site-header .header-top.layout2 {
display: block; }
.site-header .header-top.layout2 .header-top-wrap .header-top-left, .site-header .header-top.layout2 .header-top-wrap .header-top-center {
display: none; }
.site-header .header-top.layout2 .header-top-wrap .header-top-right {
display: block;
flex: none;
text-align: center;
line-height: 1;
padding: 20px 0; } }
.site-header.header-default {
position: relative; }
.site-header.header-default:before {
background: transparent;
top: 0;
left: 0;
width: 100%;
height: 100%;
position: absolute; }
.site-header.header-default .header-main {
position: relative; }
@media (min-width: 1200px) {
.site-header.header-default .header-main {
margin-bottom: -30px;
z-index: 99; } }
.site-header.header-default .header-main.border-header {
border-bottom-style: none; }
@media (min-width: 1200px) {
.site-header.header-default .header-main.border-header .header-main-wrap {
border-bottom: 1px solid transparent; } }
.site-header.header-default .header-main.header-fixed {
position: fixed; }
.site-header.header-default .header-main.header-fixed.border-header {
border-bottom-style: solid; }
.site-header.header-default .header-main.header-fixed.border-header .header-main-wrap {
border-bottom: none; }
.site-header.header-default .header-main.header-fixed .main_logo {
display: none; }
.site-header.header-default .header-main .menu-main-menu > li > a {
font-weight: 800;
font-size: 12px;
color: #fff;
text-transform: uppercase; }
.site-header.header-default .header-main .menu-main-menu > li > a:hover, .site-header.header-default .header-main .menu-main-menu > li > a:focus {
color: #82d10c; }
.site-header.header-default .header-main .menu-main-menu > li > a {
padding: 18px 30px 18px 30px; }
.site-header.header-default .header-main .menu-main-menu li.current-menu-ancestor > a, .site-header.header-default .header-main .menu-main-menu li.current-menu-item > a {
color: #82d10c; }
.site-header.header-default .header-main .header-main-wrap {
position: relative;
font-family: 'Open Sans', sans-serif; }
@media (min-width: 1200px) {
.site-header.header-default .header-main .header-main-wrap {
display: flex; } }
.site-header.header-default .header-main .header-main-left-menu {
flex: auto;
padding-left: 0;
background: transparent;
position: relative; }
@media (min-width: 1200px) {
.site-header.header-default .header-main .header-main-left-menu {
padding-left: 40px; } }
.site-header.header-default .header-main .header-main-left-menu:before {
content: "";
position: absolute;
width: 100%;
height: 100%;
left: 0;
background: #050508; }
.site-header.header-default .header-main .header-main-right {
flex: none;
position: relative;
display: flex; }
.site-header.header-default .header-main .header-main-right .header-main-right-wrap {
display: flex;
align-items: center;
background: #82d10c; }
.site-header.header-default .header-main .header-main-right a {
display: inline-block;
font-weight: 800;
font-size: 12px;
color: #fff;
padding: 18px 36px;
line-height: 24px; }
.site-header.header-default .header-main .header-main-right a:hover, .site-header.header-default .header-main .header-main-right a:focus {
color: #050508; }
.site-header.header-default .header-main.sticky-desktop.header-fixed:before {
background: #050508; }
.site-header.header-default .header-main.sticky-desktop.header-fixed .header-main-left-menu {
background: transparent !important; }
.site-header.header-default .header-main.sticky-desktop.header-fixed .header-main-left-menu:before {
background: transparent !important; }
.site-header.header-default .header-main.sticky-desktop.header-fixed .header-main-wrap {
top: 0;
position: relative; }
@media (min-width: 1200px) {
.site-header.header-default.header-transparent .header-main-left-menu {
padding-left: 30px; } }
.site-header.header-default.header-transparent .header-middle .header-middle-wrap .header-middle-right .textwidget.custom-html-widget .block-right {
color: #fff; }
.site-header.header-default.header-transparent .header-middle .header-middle-wrap .header-middle-right .textwidget.custom-html-widget .block-right h5 {
color: #fff; }
@media (max-width: 1199px) {
.site-header.header-default .navbar-toggle .icon-bar {
background: #82d10c; }
.site-header.header-default .navbar-toggle:hover .icon-bar, .site-header.header-default .navbar-toggle:focus .icon-bar {
background: #82d10c; } }
.site-header.header-layout2 { }
.site-header.header-layout2 .header-main .header-navigation .main-navigation .menu-main-menu li.current-menu-ancestor > a, .site-header.header-layout2 .header-main .header-navigation .main-navigation .menu-main-menu li .current-menu-item > a {
color: #82d10c; }
.site-header.header-layout2 .header-main .header-navigation .main-navigation .menu-main-menu li a {
font-weight: 600;
font-size: 13px;
font-family: 'Open Sans', sans-serif; }
.site-header.header-layout2 .header-main .header-navigation .main-navigation .menu-main-menu li a span {
font-weight: inherit !important; }
.site-header.header-layout2 .header-main .header-navigation .main-navigation .menu-main-menu > li > a {
font-weight: 800;
font-size: 12px;
text-transform: uppercase;
color: #fff; }
.site-header.header-layout2 .header-main .header-navigation .main-navigation .menu-main-menu > li > a:hover, .site-header.header-layout2 .header-main .header-navigation .main-navigation .menu-main-menu > li > a:focus {
color: #82d10c; }
@media (min-width: 1600px) {
.site-header.header-layout2 .container-fullwidth {
padding: 0 80px; } }
@media (max-width: 1599px) {
.site-header.header-layout2 .container-fullwidth {
padding: 0 50px; } }
@media (max-width: 1299px) {
.site-header.header-layout2 .container-fullwidth {
padding: 0 30px; } }
@media (max-width: 479px) {
.site-header.header-layout2 .container-fullwidth {
padding: 0 15px; } }
.site-header.header-layout2 .container-fullwidth .site-branding {
padding: 0 80px; }
@media (max-width: 1599px) {
.site-header.header-layout2 .container-fullwidth .site-branding {
padding: 0 50px; } }
@media (max-width: 1399px) {
.site-header.header-layout2 .container-fullwidth .site-branding {
padding: 0 30px; } }
@media (max-width: 1199px) {
.site-header.header-layout2 .container-fullwidth .site-branding {
padding: 30px; } }
@media (min-width: 1200px) {
.site-header.header-layout2 .header-main:before {
background: #fff; }
.site-header.header-layout2 .header-main .site-branding {
width: auto; }
.site-header.header-layout2 .header-main .header-navigation .main-navigation .menu-main-menu > li > a {
color: #444;
padding: 42px 18px; }
.site-header.header-layout2 .header-main .header-navigation .main-navigation .menu-main-menu > li > a:hover, .site-header.header-layout2 .header-main .header-navigation .main-navigation .menu-main-menu > li > a:focus {
color: #82d10c; }
.site-header.header-layout2 .header-main .header-main-wrap {
display: flex; }
.site-header.header-layout2 .header-main .header-main-wrap > div {
display: flex;
flex: auto;
align-items: center;
position: relative; }
.site-header.header-layout2 .header-main .header-main-wrap .header-main-right {
margin-left: 30px; }
.site-header.header-layout2 .header-main .header-main-wrap .header-main-right .widget {
position: relative;
padding: 0 30px; }
.site-header.header-layout2 .header-main .header-main-wrap .header-main-right .widget:before {
position: absolute;
background: #cfcfcf;
width: 1px;
height: 32px;
right: 0;
top: 50%;
transform: translateY(-50%); }
.site-header.header-layout2 .header-main .header-main-wrap .header-main-right .widget:first-child {
padding-left: 0; }
.site-header.header-layout2 .header-main .header-main-wrap .header-main-right .widget:last-child {
padding-right: 0; }
.site-header.header-layout2 .header-main .header-main-wrap .header-main-right .widget:last-child:before {
width: 0; }
.site-header.header-layout2 .header-main .header-main-wrap .header-main-right .widget .header-block {
font-family: "Open Sans", sans-serif;
color: #444;
line-height: 1.5; }
.site-header.header-layout2 .header-main .header-main-wrap .header-main-right .widget .header-block .block-title {
font-weight: 800;
font-size: 18px; }
.site-header.header-layout2 .header-main .header-main-wrap .header-main-right .widget .header-block .block-content {
font-weight: 400;
font-size: 11px; }
.site-header.header-layout2 .header-main .header-main-wrap .header-main-right .widget .header-block .block-content a {
color: #82d10c; }
.site-header.header-layout2 .header-main .header-main-wrap .header-main-right .widget .header-block .block-content a:hover, .site-header.header-layout2 .header-main .header-main-wrap .header-main-right .widget .header-block .block-content a:focus {
color: #82d10c; }
.site-header.header-layout2 .header-main .header-main-wrap .header-main-right .widget ul li a {
color: #202020;
width: auto;
height: auto; }
.site-header.header-layout2 .header-main .header-main-wrap .header-main-right .widget ul li a:hover, .site-header.header-layout2 .header-main .header-main-wrap .header-main-right .widget ul li a:focus {
color: #82d10c; }
.site-header.header-layout2 .header-main .header-main-wrap .header-main-right .widget ul li:first-child {
padding: 0; }
.site-header.header-layout2 .header-main .header-main-wrap .header-main-right .widget ul li + li {
padding: 0 0 0 10px; }
.site-header.header-layout2 .header-main .header-main-wrap .header-main-right .widget.widget_cms_socials_widget ul li a {
font-size: 17px; }
.site-header.header-layout2 .header-main.header-fixed {
background: transparent;
box-shadow: 0 10px 20px -15px #ececec; }
.site-header.header-layout2 .header-main.header-fixed:before {
background: #fff; }
.site-header.header-layout2 .header-main.header-fixed .has-sticky-logo {
display: none; }
.site-header.header-layout2.header-transparent:before {
background: transparent; }
.site-header.header-layout2.header-transparent .header-main:before {
background: transparent; }
.site-header.header-layout2.header-transparent .header-main.header-fixed:before {
background: #fff; }
.site-header.header-layout2.header-transparent .header-main.header-fixed .header-navigation .main-navigation .menu-main-menu > li > a {
color: #202020; }
.site-header.header-layout2.header-transparent .header-main.header-fixed .header-navigation .main-navigation .menu-main-menu > li > a:hover, .site-header.header-layout2.header-transparent .header-main.header-fixed .header-navigation .main-navigation .menu-main-menu > li > a:focus {
color: #82d10c; }
.site-header.header-layout2.header-transparent .header-main.header-fixed .header-navigation .main-navigation .menu-main-menu li.current-menu-ancestor > a, .site-header.header-layout2.header-transparent .header-main.header-fixed .header-navigation .main-navigation .menu-main-menu li .current-menu-item > a {
color: #82d10c; }
.site-header.header-layout2.header-transparent .header-main.header-fixed .header-main-wrap .header-main-right .widget.widget_cart_search_wrap .header-search-cart > a {
color: #050508; }
.site-header.header-layout2.header-transparent .header-main.header-fixed .header-main-wrap .header-main-right .widget .header-block .block-title {
color: #444; }
.site-header.header-layout2.header-transparent .header-main.header-fixed .header-main-wrap .header-main-right .widget ul li a {
color: #202020; }
.site-header.header-layout2.header-transparent .header-main .header-main-wrap .header-main-right .widget.widget_cart_search_wrap .header-search-cart > a {
color: #fff; }
.site-header.header-layout2.header-transparent .header-main .header-main-wrap .header-main-right .widget .header-block .block-title {
color: #fff; }
.site-header.header-layout2.header-transparent .header-main .header-main-wrap .header-main-right .widget ul li a {
color: #fff; }
.site-header.header-layout2.header-transparent .header-main .header-main-wrap .header-main-right .widget ul li a:hover, .site-header.header-layout2.header-transparent .header-main .header-main-wrap .header-main-right .widget ul li a:focus {
color: #82d10c; }
.site-header.header-layout2.header-transparent .site-branding {
background: transparent; }
.site-header.header-layout2.header-transparent .header-navigation .main-navigation .menu-main-menu > li > a {
color: #fff; }
.site-header.header-layout2.header-transparent .header-navigation .main-navigation .menu-main-menu > li > a:hover, .site-header.header-layout2.header-transparent .header-navigation .main-navigation .menu-main-menu > li > a:focus {
color: #82d10c; } }
@media (max-width: 1199px) {
.site-header.header-layout2 .main_logo {
padding: 0 15px; }
.site-header.header-layout2 .header-main {
background: #fff; }
.site-header.header-layout2 .header-main .header-main-wrap {
padding: 30px 0; }
.site-header.header-layout2 .navbar-toggle .icon-bar {
background: #82d10c; } }
.site-header.header-layout3 .header-main {
position: relative; }
.site-header.header-layout3 .header-main .menu-main-menu li.current-menu-ancestor > a, .site-header.header-layout3 .header-main .menu-main-menu li .current-menu-item > a {
color: #82d10c; }
.site-header.header-layout3 .header-main.header-fixed {
position: fixed; }
.site-header.header-layout3 .header-main.header-fixed .main_logo.has-sticky-logo {
display: none; }
.site-header.header-layout3 .header-main:before {
background: #1a2441; }
.site-header.header-layout3 .header-main .header-main-left-menu {
position: relative; }
@media (min-width: 1200px) {
.site-header.header-layout3 .header-main .header-main-left-menu {
padding-left: 10px; } }
.site-header.header-layout3 .header-main.sticky-desktop.header-fixed .header-main-left-menu {
background: transparent; }
.site-header.header-layout3 .header-main.sticky-desktop.header-fixed .header-main-left-menu:before {
background: transparent !important; }
.site-header.header-layout3 .header-main.sticky-desktop.header-fixed .header-main-wrap {
top: 0;
position: relative; }
.site-header.header-layout3.header-transparent .header-main.header-fixed:before {
background: #1a2441; }
.site-header.header-layout3.header-transparent .header-main:before {
background: transparent; }
.site-header.header-layout3 .header-top.layout2 .site-branding {
display: none; }
.site-header.header-layout3 .header-main-wrap {
position: relative; }
@media (min-width: 1200px) {
.site-header.header-layout3 .header-main-wrap {
display: flex;
font-family: 'Open Sans', sans-serif; }
.site-header.header-layout3 .header-main-wrap > div {
display: flex;
align-items: center;
flex: auto;
vertical-align: middle; } }
@media (max-width: 1199px) {
.site-header.header-layout3 .header-main-wrap {
padding: 30px 0; } }
.site-header.header-layout3 .menu-main-menu > li > a {
font-weight: 800;
font-size: 12px;
color: #fff;
text-transform: uppercase; }
.site-header.header-layout3 .menu-main-menu > li > a:hover, .site-header.header-layout3 .menu-main-menu > li > a:focus {
color: #82d10c; }
.site-header.header-layout3 .menu-main-menu > li > a:before {
background: #82d10c; }
.site-header.header-layout3 .menu-main-menu > li > a {
padding: 43px 20px; }
.site-header.header-layout3 .header-main-right {
flex: none;
position: relative; }
.site-header.header-layout3 .header-main-right .widget.widget_text {
height: 71px;
width: auto;
background: #82d10c;
line-height: 70px;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.site-header.header-layout3 .header-main-right .widget.widget_text:hover, .site-header.header-layout3 .header-main-right .widget.widget_text:focus {
cursor: pointer; }
.site-header.header-layout3 .header-main-right .left-icon {
float: left;
font-size: 22px;
line-height: 70px;
margin-left: 30px;
margin-right: 15px; }
.site-header.header-layout3 .header-main-right .left-icon span {
color: #82d10c; }
.site-header.header-layout3 .header-main-right .right-content {
overflow: hidden;
padding-top: 18px;
margin-right: 30px; }
.site-header.header-layout3 .header-main-right p {
margin: 0;
color: #fff; }
.site-header.header-layout3 .header-main-right p:first-child {
font-size: 18px;
font-weight: 600;
line-height: 1; }
.site-header.header-layout3 .header-main-right p:last-child {
font-size: 13px;
line-height: 1;
margin-top: 3px; }
.site-header.header-layout3 .header-main-right a {
font-weight: 600;
line-height: 20px;
color: #fff; }
.site-header.header-layout3 .header-main-right-menu {
flex-direction: row-reverse; }
.site-header.header-layout3.header-fixed .main_logo {
display: none; }
.sticky_logo {
display: none; }
.header-fixed .sticky_logo {
display: block; }
.site-header.header-transparent {
background: transparent;
position: absolute;
width: 100%;
z-index: 999;
box-shadow: none;
left: 0;
top: 0; }
@media screen and (min-width: 1200px) {
#menu-mobile, .cs-menu-toggle {
display: none; }
.admin-bar .site-header .widget_cart_search_wrap .widget_searchform_content.popup {
margin-top: 32px; }
.header-navigation .main-navigation.collapse {
display: block;
vertical-align: middle;
overflow: visible;
height: auto !important; }
.header-navigation .main-navigation .menu-main-menu {
margin: 0; }
.header-navigation .main-navigation .menu-main-menu li.has_full_width {
position: inherit; }
.header-navigation .main-navigation .menu-main-menu li.has_full_width ul.drop_full_width.sub-menu .menu_filter {
width: 20%;
float: left; }
.header-navigation .main-navigation .menu-main-menu li.has_full_width ul.drop_full_width.sub-menu .menu_filter ul li a {
float: left; }
.header-navigation .main-navigation .menu-main-menu li.has_full_width ul.drop_full_width.sub-menu .menu_content {
float: right;
width: 80%; }
.header-navigation .main-navigation .menu-main-menu li.has_full_width ul.drop_full_width.sub-menu .menu_content .col4 {
display: inline-block; }
.header-navigation .main-navigation .menu-main-menu > ul > li, .header-navigation .main-navigation .menu-main-menu > li {
vertical-align: middle;
display: inline-block;
position: relative; }
.header-navigation .main-navigation .menu-main-menu > ul > li.page_item_has_children, .header-navigation .main-navigation .menu-main-menu > li.page_item_has_children {
position: relative; }
.header-navigation .main-navigation .menu-main-menu > ul > li.page_item_has_children > .cs-menu-toggle, .header-navigation .main-navigation .menu-main-menu > li.page_item_has_children > .cs-menu-toggle {
display: none; }
.header-navigation .main-navigation .menu-main-menu > ul > li ul.sub-menu, .header-navigation .main-navigation .menu-main-menu > li ul.sub-menu, .header-navigation .main-navigation .menu-main-menu > ul > li ul.children, .header-navigation .main-navigation .menu-main-menu > li ul.children {
background: #fff;
clip: rect(1px, 1px, 1px, 1px); }
.header-navigation .main-navigation .menu-main-menu > ul > li ul.sub-menu > li, .header-navigation .main-navigation .menu-main-menu > li ul.sub-menu > li, .header-navigation .main-navigation .menu-main-menu > ul > li ul.children > li, .header-navigation .main-navigation .menu-main-menu > li ul.children > li {
position: relative; }
.header-navigation .main-navigation .menu-main-menu > ul > li ul.sub-menu .menu-item-has-children > a:after, .header-navigation .main-navigation .menu-main-menu > li ul.sub-menu .menu-item-has-children > a:after, .header-navigation .main-navigation .menu-main-menu > ul > li ul.children .menu-item-has-children > a:after, .header-navigation .main-navigation .menu-main-menu > li ul.children .menu-item-has-children > a:after, .header-navigation .main-navigation .menu-main-menu > ul > li ul.sub-menu .page_item_has_children > a:after, .header-navigation .main-navigation .menu-main-menu > li ul.sub-menu .page_item_has_children > a:after, .header-navigation .main-navigation .menu-main-menu > ul > li ul.children .page_item_has_children > a:after, .header-navigation .main-navigation .menu-main-menu > li ul.children .page_item_has_children > a:after {
font-family: "FontAwesome";
content: " \f105";
position: absolute;
right: 15px;
font-weight: 300;
font-size: 14px; }
.header-navigation .main-navigation li ul {
margin: 0;
padding: 0;
position: absolute;
top: 130%;
z-index: 10;
overflow: hidden;
opacity: 0;
left: 0;
visibility: hidden;
display: block;
list-style: none;
text-align: left;
min-width: 200px;
-webkit-transition: visibility 0.35s ease-in-out, opacity 0.35s ease-in-out, top 0.35s ease-in-out, bottom 0.35s ease-in-out, left 0.35s ease-in-out, right 0.35s ease-in-out;
transition: visibility 0.35s ease-in-out, opacity 0.35s ease-in-out, top 0.35s ease-in-out, bottom 0.35s ease-in-out, left 0.35s ease-in-out, right 0.35s ease-in-out; }
.header-navigation .main-navigation li:hover > ul, .header-navigation .main-navigation li:focus > ul {
top: 100%;
opacity: 1;
visibility: visible;
border-left: 0;
overflow: inherit;
clip: inherit !important; }
.header-navigation .main-navigation li li {
margin: 0;
border-top: none; }
.header-navigation .main-navigation li li > ul {
top: auto;
margin-top: 42px;
left: 130%; }
.header-navigation .main-navigation li li:hover > ul {
left: 100%;
margin-top: -36px;
top: auto; }
.header-navigation .main-navigation li li li:hover > ul {
left: 100%;
margin-top: -36px;
top: auto; }
.header-navigation .main-navigation li li:last-child > a {
border-bottom: 0 !important; }
.header-navigation .main-navigation li ul.back {
left: -100% !important; }
.header-navigation .main-navigation li ul.back ul:not(.back) {
right: 100%;
left: auto !important; }
.header-navigation .main-navigation li ul.back ul.back {
left: 100%;
right: auto; }
.header-navigation .main-navigation li ul.back ul.back ul:not(.back) {
left: 100%;
right: auto; }
.header-navigation .main-navigation li ul.back ul.back ul.back {
right: 100%;
left: auto !important; }
.cshero-main-header.header-fixed .header-navigation .main-navigation .menu-main-menu > li.menu-item-has-children > .cs-menu-toggle {
display: none; }
.navbar-toggle {
display: none; } }
@media screen and (max-width: 1199px) {
.header-navigation {
position: absolute;
top: 100%;
left: 0;
right: 0;
z-index: 998;
width: 100%;
display: block;
text-align: left;
padding: 0 30px; }
.header-navigation:before {
content: "";
width: 100%;
height: 100%;
background: #050508;
position: absolute;
top: 0;
left: 0;
z-index: -1; }
.site-header .header-main .header-navigation .main-navigation {
float: none !important;
max-height: 450px;
overflow-y: auto; }
.site-header .header-main .header-navigation .main-navigation .menu-main-menu li a:hover, .site-header .header-main .header-navigation .main-navigation .menu-main-menu li a:focus {
color: #82d10c; }
.site-header .header-main .header-navigation .main-navigation > div > ul, .site-header .header-main .header-navigation .main-navigation ul.nav-menu {
margin: 0;
padding: 0;
list-style: none;
margin-top: 20px;
margin-bottom: 20px; }
.site-header .header-main .header-navigation .main-navigation > div > ul > li, .site-header .header-main .header-navigation .main-navigation ul.nav-menu > li {
list-style: none; }
.site-header .header-main .header-navigation .main-navigation > div > ul > li.current-menu-ancestor > a, .site-header .header-main .header-navigation .main-navigation ul.nav-menu > li.current-menu-ancestor > a, .site-header .header-main .header-navigation .main-navigation > div > ul > li.current-menu-parent > a, .site-header .header-main .header-navigation .main-navigation ul.nav-menu > li.current-menu-parent > a {
color: #82d10c; }
.site-header .header-main .header-navigation .main-navigation > div > ul > li > a, .site-header .header-main .header-navigation .main-navigation ul.nav-menu > li > a {
padding: 8px 60px 8px 0;
line-height: 24px;
display: block;
color: #fff; }
.site-header .header-main .header-navigation .main-navigation > div > ul > li > a:hover, .site-header .header-main .header-navigation .main-navigation ul.nav-menu > li > a:hover, .site-header .header-main .header-navigation .main-navigation > div > ul > li > a:focus, .site-header .header-main .header-navigation .main-navigation ul.nav-menu > li > a:focus {
color: #82d10c; }
.site-header .header-main .header-navigation .main-navigation > div > ul > li .children span.cs-menu-toggle, .site-header .header-main .header-navigation .main-navigation ul.nav-menu > li .children span.cs-menu-toggle {
right: 10px; }
.site-header .header-main .header-navigation .main-navigation > div > ul > li .children .children span.cs-menu-toggle, .site-header .header-main .header-navigation .main-navigation ul.nav-menu > li .children .children span.cs-menu-toggle {
right: 20px; }
.main_logo {
padding: 10px 0; }
.navbar-toggle {
display: block;
margin: 0;
width: 32px;
height: 40px;
min-width: 1px;
border-width: 0;
position: absolute;
top: 50%;
right: 0;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%); }
.navbar-toggle.collapsed {
background: transparent; }
.navbar-toggle .icon-bar {
background: #fff;
-webkit-transition: background 0.3s linear 0s;
transition: background 0.3s linear 0s; }
.navbar-toggle:hover, .navbar-toggle:focus {
background: transparent; }
.navbar-toggle:hover .icon-bar, .navbar-toggle:focus .icon-bar {
background: #82d10c; }
.header-navigation .main-navigation li ul, .header-navigation .main-navigation li ul ul {
width: 100% !important; }
.collapse .main-navigation div.nav-menu > ul {
display: block; }
.header-navigation .main-navigation .menu-main-menu > ul > li, .header-navigation .main-navigation .menu-main-menu > li {
position: relative; }
.header-navigation .main-navigation .menu-main-menu > ul > li li, .header-navigation .main-navigation .menu-main-menu > li li {
position: relative; }
.header-navigation .main-navigation .menu-main-menu > ul > li .cs-menu-toggle, .header-navigation .main-navigation .menu-main-menu > li .cs-menu-toggle {
cursor: pointer;
position: absolute;
right: 0px;
text-align: center;
top: 0;
padding: 7px 24px;
vertical-align: middle;
display: block;
z-index: 100;
font-size: 20px; }
.header-navigation .main-navigation .menu-main-menu > ul > li .cs-menu-toggle:hover, .header-navigation .main-navigation .menu-main-menu > li .cs-menu-toggle:hover {
color: #82d10c; }
.header-navigation .main-navigation .menu-main-menu > ul > li .cs-menu-toggle i, .header-navigation .main-navigation .menu-main-menu > li .cs-menu-toggle i {
line-height: 1; }
.header-navigation .main-navigation .menu-main-menu > ul > li ul.sub-menu, .header-navigation .main-navigation .menu-main-menu > li ul.sub-menu, .header-navigation .main-navigation .menu-main-menu > ul > li ul.children, .header-navigation .main-navigation .menu-main-menu > li ul.children {
overflow: hidden;
display: none;
border-top-left-radius: 0;
border-top-right-radius: 0;
padding: 0px 0 0px 25px; }
.header-navigation .main-navigation .menu-main-menu > ul > li ul.sub-menu .cs-menu-toggle, .header-navigation .main-navigation .menu-main-menu > li ul.sub-menu .cs-menu-toggle, .header-navigation .main-navigation .menu-main-menu > ul > li ul.children .cs-menu-toggle, .header-navigation .main-navigation .menu-main-menu > li ul.children .cs-menu-toggle {
width: 60px;
height: 46px;
line-height: 42px; }
.header-navigation .main-navigation .menu-main-menu > ul > li ul.sub-menu li, .header-navigation .main-navigation .menu-main-menu > li ul.sub-menu li, .header-navigation .main-navigation .menu-main-menu > ul > li ul.children li, .header-navigation .main-navigation .menu-main-menu > li ul.children li {
line-height: 24px;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.header-navigation .main-navigation .menu-main-menu > ul > li ul.sub-menu li:last-child, .header-navigation .main-navigation .menu-main-menu > li ul.sub-menu li:last-child, .header-navigation .main-navigation .menu-main-menu > ul > li ul.children li:last-child, .header-navigation .main-navigation .menu-main-menu > li ul.children li:last-child {
border-bottom: 0; }
.header-navigation .main-navigation .menu-main-menu > ul > li ul.sub-menu li a, .header-navigation .main-navigation .menu-main-menu > li ul.sub-menu li a, .header-navigation .main-navigation .menu-main-menu > ul > li ul.children li a, .header-navigation .main-navigation .menu-main-menu > li ul.children li a {
display: block;
color: #fff;
padding: 11px 60px 11px 0;
font-weight: 600; }
.header-navigation .main-navigation .menu-main-menu > ul > li ul.sub-menu li a:hover, .header-navigation .main-navigation .menu-main-menu > li ul.sub-menu li a:hover, .header-navigation .main-navigation .menu-main-menu > ul > li ul.children li a:hover, .header-navigation .main-navigation .menu-main-menu > li ul.children li a:hover, .header-navigation .main-navigation .menu-main-menu > ul > li ul.sub-menu li a:focus, .header-navigation .main-navigation .menu-main-menu > li ul.sub-menu li a:focus, .header-navigation .main-navigation .menu-main-menu > ul > li ul.children li a:focus, .header-navigation .main-navigation .menu-main-menu > li ul.children li a:focus {
color: #82d10c; }
.header-navigation .main-navigation .menu-main-menu > ul > li ul.sub-menu.submenu-open .submenu-open + .cs-menu-toggle i:before, .header-navigation .main-navigation .menu-main-menu > li ul.sub-menu.submenu-open .submenu-open + .cs-menu-toggle i:before, .header-navigation .main-navigation .menu-main-menu > ul > li ul.children.submenu-open .submenu-open + .cs-menu-toggle i:before, .header-navigation .main-navigation .menu-main-menu > li ul.children.submenu-open .submenu-open + .cs-menu-toggle i:before {
content: "\f106"; }
.header-navigation .main-navigation .menu-main-menu > ul > li ul.sub-menu.submenu-open + .cs-menu-toggle i:before, .header-navigation .main-navigation .menu-main-menu > li ul.sub-menu.submenu-open + .cs-menu-toggle i:before, .header-navigation .main-navigation .menu-main-menu > ul > li ul.children.submenu-open + .cs-menu-toggle i:before, .header-navigation .main-navigation .menu-main-menu > li ul.children.submenu-open + .cs-menu-toggle i:before {
content: "\f106"; } }
@media screen and (max-width: 1199px) and (max-width: 767px) {
.header-navigation {
padding: 0 15px; } }
@media screen and (max-width: 1199px) and (max-width: 479px) {
.header-navigation {
padding: 0 0 0 15px; } }
@media screen and (max-width: 1199px) and (max-width: 767px) {
.header-navigation .main-navigation .menu-main-menu > ul > li ul.sub-menu, .header-navigation .main-navigation .menu-main-menu > li ul.sub-menu, .header-navigation .main-navigation .menu-main-menu > ul > li ul.children, .header-navigation .main-navigation .menu-main-menu > li ul.children {
padding: 0px 0 0px 10px; } }
@media screen and (max-width: 1199px) and (max-width: 479px) {
.header-navigation .main-navigation .menu-main-menu > ul > li ul.sub-menu, .header-navigation .main-navigation .menu-main-menu > li ul.sub-menu, .header-navigation .main-navigation .menu-main-menu > ul > li ul.children, .header-navigation .main-navigation .menu-main-menu > li ul.children {
padding: 0; } }
.header-navigation .main-navigation::-webkit-scrollbar {
height: 0;
width: 7px;
background-color: transparent; }
.header-navigation .main-navigation::-webkit-scrollbar-track {
border-radius: 10px; }
.header-navigation .main-navigation::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: transparent; }
.header-navigation:hover .main-navigation::-webkit-scrollbar {
width: 7px;
height: auto;
background-color: #f5f5f5; }
.header-navigation:hover .main-navigation::-webkit-scrollbar-thumb {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
background-color: rgba(127, 127, 127, 0.4); }
@media (min-width: 768px) {
.is-sidebar-left > div {
float: right; } }
.woo-sidebar .widget-area .widget {
padding: 35px 15px; }
.widget-area img, .wpb_widgetised_column img {
width: 100%; }
.widget-area h3.wg-title, .wpb_widgetised_column h3.wg-title {
padding-bottom: 0;
margin-bottom: 14px;
margin-top: 0;
font-size: 15px; }
.widget-area .widget_text .textwidget select, .wpb_widgetised_column .widget_text .textwidget select {
width: 100%; }
.widget-area .widget_rss .rss-date, .wpb_widgetised_column .widget_rss .rss-date {
display: block; }
.widget-area .widget, .wpb_widgetised_column .widget {
padding: 35px 34px;
background: #f7f7f7;
overflow: hidden;
margin-bottom: 30px; }
@media (max-width: 1199px) {
.widget-area .widget, .wpb_widgetised_column .widget {
padding: 45px 25px; } }
@media (max-width: 479px) {
.widget-area .widget, .wpb_widgetised_column .widget {
padding: 45px 15px; } }
.widget-area .widget ul, .wpb_widgetised_column .widget ul {
margin-bottom: 0; }
.widget-area .widget .tagcloud a, .wpb_widgetised_column .widget .tagcloud a {
font-size: 13px !important;
color: #939393;
border: 1px solid #d7d7d7;
border-radius: 20px;
line-height: 1;
display: inline-block;
padding: 10px 13px;
margin: 0 7px 10px 0;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.widget-area .widget .tagcloud a:hover, .wpb_widgetised_column .widget .tagcloud a:hover {
color: #fff;
background: #4e81f3;
border-color: transparent; }
.widget-area .widget_categories a, .wpb_widgetised_column .widget_categories a, .widget-area .widget_archive a, .wpb_widgetised_column .widget_archive a, .widget-area .widget_pages a, .wpb_widgetised_column .widget_pages a, .widget-area .widget_meta a, .wpb_widgetised_column .widget_meta a, .widget-area .widget_recent_entries a, .wpb_widgetised_column .widget_recent_entries a, .widget-area .widget_nav_menu a, .wpb_widgetised_column .widget_nav_menu a {
position: relative; }
.widget-area .widget_categories a:hover, .wpb_widgetised_column .widget_categories a:hover, .widget-area .widget_archive a:hover, .wpb_widgetised_column .widget_archive a:hover, .widget-area .widget_pages a:hover, .wpb_widgetised_column .widget_pages a:hover, .widget-area .widget_meta a:hover, .wpb_widgetised_column .widget_meta a:hover, .widget-area .widget_recent_entries a:hover, .wpb_widgetised_column .widget_recent_entries a:hover, .widget-area .widget_nav_menu a:hover, .wpb_widgetised_column .widget_nav_menu a:hover {
color: #82d10c; }
.widget-area .contact-side, .wpb_widgetised_column .contact-side {
color: #2d2d2d;
margin-top: -10px; }
.widget-area .contact-side p, .wpb_widgetised_column .contact-side p {
font-family: 'Open Sans', sans-serif;
font-size: 13px;
font-weight: 500;
margin: 0; }
.widget-area .contact-side p.intro, .wpb_widgetised_column .contact-side p.intro {
font-size: 15px;
font-family: 'Lato', sans-serif;
margin: 0 0 15px; }
.widget-area .contact-side p i, .wpb_widgetised_column .contact-side p i {
margin-right: 16px; }
.widget-area .contact-side a.btn, .wpb_widgetised_column .contact-side a.btn {
margin-top: 20px; }
.widget-area .widget_recent_comments ul li a, .wpb_widgetised_column .widget_recent_comments ul li a, .widget-area .widget_rss ul li a, .wpb_widgetised_column .widget_rss ul li a {
color: #0081ff;
position: relative;
line-height: 20px; }
.widget-area .widget_recent_comments ul li a:hover, .wpb_widgetised_column .widget_recent_comments ul li a:hover, .widget-area .widget_rss ul li a:hover, .wpb_widgetised_column .widget_rss ul li a:hover {
color: #82d10c; }
.widget-area .widget_recent_comments ul li a:after, .wpb_widgetised_column .widget_recent_comments ul li a:after, .widget-area .widget_rss ul li a:after, .wpb_widgetised_column .widget_rss ul li a:after {
content: none; }
.widget-area .widget_recent_comments img, .wpb_widgetised_column .widget_recent_comments img, .widget-area .widget_rss img, .wpb_widgetised_column .widget_rss img {
width: auto; }
.widget-area .cms-recent-post .widget-recent-item, .wpb_widgetised_column .cms-recent-post .widget-recent-item {
margin: 0 0 20px; }
.widget-area .cms-recent-post .widget-recent-item:first-child, .wpb_widgetised_column .cms-recent-post .widget-recent-item:first-child {
padding-top: 5px; }
.widget-area .cms-recent-post .widget-recent-item:last-child, .wpb_widgetised_column .cms-recent-post .widget-recent-item:last-child {
margin: 0; }
.widget-area .cms-recent-post .entry-top, .wpb_widgetised_column .cms-recent-post .entry-top {
display: table;
width: 100%; }
.widget-area .cms-recent-post .entry-top > div, .wpb_widgetised_column .cms-recent-post .entry-top > div {
display: table-cell;
vertical-align: middle; }
.widget-area .cms-recent-post .entry-top .entry-thumbnail, .wpb_widgetised_column .cms-recent-post .entry-top .entry-thumbnail {
padding-right: 15px; }
.widget-area .cms-recent-post .entry-top .entry-thumbnail img, .wpb_widgetised_column .cms-recent-post .entry-top .entry-thumbnail img {
min-width: 60px;
max-width: 60px;
border-radius: 50%; }
.widget-area .cms-recent-post .entry-main, .wpb_widgetised_column .cms-recent-post .entry-main {
position: relative;
overflow: hidden;
font-family: "Open Sans"; }
.widget-area .cms-recent-post .entry-main .title-recent, .wpb_widgetised_column .cms-recent-post .entry-main .title-recent {
font-weight: 700;
font-size: 14px;
line-height: 22px;
margin-bottom: 12px; }
.widget-area .cms-recent-post .entry-main .title-recent a, .wpb_widgetised_column .cms-recent-post .entry-main .title-recent a {
font-size: inherit;
font-weight: inherit;
line-height: inherit; }
.widget-area .cms-recent-post .entry-main .date, .wpb_widgetised_column .cms-recent-post .entry-main .date {
font-weight: 400;
font-size: 12px;
margin-bottom: 5px;
display: block;
line-height: 1; }
.widget-area .cms-recent-post .entry-main .date a, .wpb_widgetised_column .cms-recent-post .entry-main .date a {
color: #82d10c; }
.widget-area .cms-recent-post .entry-main .date a:hover, .wpb_widgetised_column .cms-recent-post .entry-main .date a:hover, .widget-area .cms-recent-post .entry-main .date a:focus, .wpb_widgetised_column .cms-recent-post .entry-main .date a:focus {
color: #82d10c; }
.widget-area .cms-recent-post p.description, .wpb_widgetised_column .cms-recent-post p.description {
margin-bottom: 0; }
.widget-area .cms-recent-post .btn-recent, .wpb_widgetised_column .cms-recent-post .btn-recent {
margin-top: 30px; }
::-moz-selection {
color: #fff;
background-color: #82d10c; }
body {
font-family: 'Lato', sans-serif;
font-size: 15px;
color: #666;
font-weight: normal;
background: #fff;
line-height: 26px;
overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 {
font-family: 'Open Sans', sans-serif;
margin-top: 0;
font-weight: 800; }
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
color: inherit;
font-family: inherit; }
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
color: #82d10c; }
h1, .h1 {
font-size: 24px;
margin-top: 0;
color: #333; }
h2, .h2 {
font-size: 22px;
color: #252525;
line-height: 34px; }
h3, .h3 {
font-size: 20px;
color: #444;
line-height: 28px; }
h4, .h4 {
font-size: 18px;
color: #444;
line-height: 26px; }
h5, .h5 {
font-size: 16px;
color: #666; }
h6, .h6 {
font-size: 14px;
color: #666;
line-height: 28px; }
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
padding-top: 0;
margin-top: 0; }
dfn, cite, em, i {
font-size: 14px;
font-style: italic;
margin-left: 0 !important;
vertical-align: inherit !important; }
p {
margin: 0 0 20px; }
p:empty {
display: none; }
address {
margin-bottom: 20px !important; }
table td, table th {
text-align: center; }
blockquote {
padding: 0;
position: relative;
clear: both;
overflow: hidden;
margin-bottom: 0;
border-left: none; }
blockquote p:first-child:before {
content: "\f10d";
font-family: 'fontawesome';
padding-right: 10px;
vertical-align: top;
font-size: 8px; }
blockquote p:first-child:after {
content: "\f10e";
font-family: 'fontawesome';
padding-left: 10px;
vertical-align: top;
font-size: 8px; }
blockquote p + p {
padding-top: 15px;
font-weight: 600; }
blockquote p br {
display: none; }
blockquote cite {
float: right;
margin-top: 20px; }
img, figure {
max-width: 100%;
height: auto; }
pre {
border-radius: 0;
white-space: pre;
background: #eee;
font-size: 15px;
line-height: 1.6;
margin-bottom: 1.6em;
max-width: 100%;
overflow: auto;
padding: 1.6em; }
:focus {
outline: none; }
.widget_cms_instagram_widget .cms-instagram-pics.row {
margin: -5px; }
.widget_cms_instagram_widget .cms-instagram-pics .instagram-item {
padding: 5px; }
.widget_cms_instagram_widget .cms-instagram-pics .instagram-item img {
width: 100%; }
.widget-area .widget, .wpb_widgetised_column .widget {
display: block;
position: relative; }
.widget-area .widget:after, .wpb_widgetised_column .widget:after, .widget-area .widget:before, .wpb_widgetised_column .widget:before {
display: table;
content: ''; }
.widget-area .widget:last-child, .wpb_widgetised_column .widget:last-child {
margin-bottom: 0; }
.widget-area .widget > ul, .wpb_widgetised_column .widget > ul, .widget-area .widget > ol, .wpb_widgetised_column .widget > ol, .widget-area .widget > div > ul, .wpb_widgetised_column .widget > div > ul, .widget-area .widget > div > ol, .wpb_widgetised_column .widget > div > ol {
list-style-type: none;
padding: 0;
margin: 0; }
.widget-area .widget ul, .wpb_widgetised_column .widget ul {
list-style: none;
margin-bottom: 0; }
.widget-area .widget.widget_cms_image:before, .wpb_widgetised_column .widget.widget_cms_image:before, .widget-area .widget.widget_media_image:before, .wpb_widgetised_column .widget.widget_media_image:before, .widget-area .widget.widget_cms_image:after, .wpb_widgetised_column .widget.widget_cms_image:after, .widget-area .widget.widget_media_image:after, .wpb_widgetised_column .widget.widget_media_image:after {
content: none; }
.widget-area .widget_recent_entries li, .wpb_widgetised_column .widget_recent_entries li, .widget-area .widget_categories li, .wpb_widgetised_column .widget_categories li, .widget-area .widget_meta li, .wpb_widgetised_column .widget_meta li, .widget-area .widget_archive li, .wpb_widgetised_column .widget_archive li, .widget-area .widget_categories li, .wpb_widgetised_column .widget_categories li, .widget-area .widget_pages li, .wpb_widgetised_column .widget_pages li, .widget-area .widget_recent_comments li, .wpb_widgetised_column .widget_recent_comments li, .widget-area .widget_nav_menu li, .wpb_widgetised_column .widget_nav_menu li {
margin-bottom: 5px;
margin-left: 21px;
position: relative;
font-size: 13px; }
.widget-area .widget_recent_entries li a, .wpb_widgetised_column .widget_recent_entries li a, .widget-area .widget_categories li a, .wpb_widgetised_column .widget_categories li a, .widget-area .widget_meta li a, .wpb_widgetised_column .widget_meta li a, .widget-area .widget_archive li a, .wpb_widgetised_column .widget_archive li a, .widget-area .widget_categories li a, .wpb_widgetised_column .widget_categories li a, .widget-area .widget_pages li a, .wpb_widgetised_column .widget_pages li a, .widget-area .widget_recent_comments li a, .wpb_widgetised_column .widget_recent_comments li a, .widget-area .widget_nav_menu li a, .wpb_widgetised_column .widget_nav_menu li a {
color: #444; }
.widget-area .widget_recent_entries li a:before, .wpb_widgetised_column .widget_recent_entries li a:before, .widget-area .widget_categories li a:before, .wpb_widgetised_column .widget_categories li a:before, .widget-area .widget_meta li a:before, .wpb_widgetised_column .widget_meta li a:before, .widget-area .widget_archive li a:before, .wpb_widgetised_column .widget_archive li a:before, .widget-area .widget_categories li a:before, .wpb_widgetised_column .widget_categories li a:before, .widget-area .widget_pages li a:before, .wpb_widgetised_column .widget_pages li a:before, .widget-area .widget_recent_comments li a:before, .wpb_widgetised_column .widget_recent_comments li a:before, .widget-area .widget_nav_menu li a:before, .wpb_widgetised_column .widget_nav_menu li a:before {
content: "";
width: 5px;
height: 5px;
position: absolute;
left: -21px;
background: #82d10c;
top: 7px; }
.widget-area .widget_recent_entries li a:hover, .wpb_widgetised_column .widget_recent_entries li a:hover, .widget-area .widget_categories li a:hover, .wpb_widgetised_column .widget_categories li a:hover, .widget-area .widget_meta li a:hover, .wpb_widgetised_column .widget_meta li a:hover, .widget-area .widget_archive li a:hover, .wpb_widgetised_column .widget_archive li a:hover, .widget-area .widget_categories li a:hover, .wpb_widgetised_column .widget_categories li a:hover, .widget-area .widget_pages li a:hover, .wpb_widgetised_column .widget_pages li a:hover, .widget-area .widget_recent_comments li a:hover, .wpb_widgetised_column .widget_recent_comments li a:hover, .widget-area .widget_nav_menu li a:hover, .wpb_widgetised_column .widget_nav_menu li a:hover, .widget-area .widget_recent_entries li a:focus, .wpb_widgetised_column .widget_recent_entries li a:focus, .widget-area .widget_categories li a:focus, .wpb_widgetised_column .widget_categories li a:focus, .widget-area .widget_meta li a:focus, .wpb_widgetised_column .widget_meta li a:focus, .widget-area .widget_archive li a:focus, .wpb_widgetised_column .widget_archive li a:focus, .widget-area .widget_categories li a:focus, .wpb_widgetised_column .widget_categories li a:focus, .widget-area .widget_pages li a:focus, .wpb_widgetised_column .widget_pages li a:focus, .widget-area .widget_recent_comments li a:focus, .wpb_widgetised_column .widget_recent_comments li a:focus, .widget-area .widget_nav_menu li a:focus, .wpb_widgetised_column .widget_nav_menu li a:focus {
color: #82d10c; }
.widget-area .widget_recent_entries li:last-child, .wpb_widgetised_column .widget_recent_entries li:last-child, .widget-area .widget_categories li:last-child, .wpb_widgetised_column .widget_categories li:last-child, .widget-area .widget_meta li:last-child, .wpb_widgetised_column .widget_meta li:last-child, .widget-area .widget_archive li:last-child, .wpb_widgetised_column .widget_archive li:last-child, .widget-area .widget_categories li:last-child, .wpb_widgetised_column .widget_categories li:last-child, .widget-area .widget_pages li:last-child, .wpb_widgetised_column .widget_pages li:last-child, .widget-area .widget_recent_comments li:last-child, .wpb_widgetised_column .widget_recent_comments li:last-child, .widget-area .widget_nav_menu li:last-child, .wpb_widgetised_column .widget_nav_menu li:last-child {
margin-bottom: 0; }
.widget-area .widget_recent_entries ul ul.sub-menu li, .wpb_widgetised_column .widget_recent_entries ul ul.sub-menu li, .widget-area .widget_categories ul ul.sub-menu li, .wpb_widgetised_column .widget_categories ul ul.sub-menu li, .widget-area .widget_meta ul ul.sub-menu li, .wpb_widgetised_column .widget_meta ul ul.sub-menu li, .widget-area .widget_archive ul ul.sub-menu li, .wpb_widgetised_column .widget_archive ul ul.sub-menu li, .widget-area .widget_categories ul ul.sub-menu li, .wpb_widgetised_column .widget_categories ul ul.sub-menu li, .widget-area .widget_pages ul ul.sub-menu li, .wpb_widgetised_column .widget_pages ul ul.sub-menu li, .widget-area .widget_recent_comments ul ul.sub-menu li, .wpb_widgetised_column .widget_recent_comments ul ul.sub-menu li, .widget-area .widget_nav_menu ul ul.sub-menu li, .wpb_widgetised_column .widget_nav_menu ul ul.sub-menu li {
margin-bottom: 0; }
.widget-area .widget_recent_comments li, .wpb_widgetised_column .widget_recent_comments li {
margin-left: 0; }
.widget-area .widget_recent_comments li a:before, .wpb_widgetised_column .widget_recent_comments li a:before {
content: none; }
.widget-area .widget_acumec_recent_post ul li, .wpb_widgetised_column .widget_acumec_recent_post ul li {
padding: 25px 0 20px;
border-bottom: 1px solid #e6e6e6; }
.widget-area .widget_acumec_recent_post ul li:first-child, .wpb_widgetised_column .widget_acumec_recent_post ul li:first-child {
padding-top: 10px; }
.widget-area .widget_acumec_recent_post ul li:last-child, .wpb_widgetised_column .widget_acumec_recent_post ul li:last-child {
border: none;
padding-bottom: 0; }
.widget-area .widget_acumec_recent_post ul li:hover .post-info h4 a:before, .wpb_widgetised_column .widget_acumec_recent_post ul li:hover .post-info h4 a:before, .widget-area .widget_acumec_recent_post ul li:focus .post-info h4 a:before, .wpb_widgetised_column .widget_acumec_recent_post ul li:focus .post-info h4 a:before {
opacity: 1; }
.widget-area .widget_acumec_recent_post ul li .entry-thumbnail img, .wpb_widgetised_column .widget_acumec_recent_post ul li .entry-thumbnail img {
margin-bottom: 15px; }
.widget-area .widget_acumec_recent_post ul li .post-info, .wpb_widgetised_column .widget_acumec_recent_post ul li .post-info {
font-family: "Open Sans";
font-size: 12px; }
.widget-area .widget_acumec_recent_post ul li .post-info h4, .wpb_widgetised_column .widget_acumec_recent_post ul li .post-info h4 {
font-size: 14px;
font-weight: 700;
margin-bottom: 0;
line-height: 22px; }
.widget-area .widget_acumec_recent_post ul li .post-info h4 a, .wpb_widgetised_column .widget_acumec_recent_post ul li .post-info h4 a {
color: inherit;
display: inline-block;
position: relative;
cursor: pointer; }
.widget-area .widget_acumec_recent_post ul li .post-info h4 a:before, .wpb_widgetised_column .widget_acumec_recent_post ul li .post-info h4 a:before {
position: absolute;
content: "";
background: #82d10c;
width: 5px;
height: 37px;
left: -34px;
top: 50%;
transform: translateY(-50%);
opacity: 0;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
@media (max-width: 1199px) {
.widget-area .widget_acumec_recent_post ul li .post-info h4 a:before, .wpb_widgetised_column .widget_acumec_recent_post ul li .post-info h4 a:before {
left: -25px; } }
@media (max-width: 479px) {
.widget-area .widget_acumec_recent_post ul li .post-info h4 a:before, .wpb_widgetised_column .widget_acumec_recent_post ul li .post-info h4 a:before {
left: -15px; } }
.widget-area .widget_acumec_recent_post ul li .post-info a, .wpb_widgetised_column .widget_acumec_recent_post ul li .post-info a {
color: #82d10c;
line-height: 20px; }
.widget-area .widget_acumec_recent_post ul li .post-info a:hover, .wpb_widgetised_column .widget_acumec_recent_post ul li .post-info a:hover, .widget-area .widget_acumec_recent_post ul li .post-info a:focus, .wpb_widgetised_column .widget_acumec_recent_post ul li .post-info a:focus {
color: #82d10c; }
.widget-area .widget_acumec_recent_post ul li .post-info a.entry-date, .wpb_widgetised_column .widget_acumec_recent_post ul li .post-info a.entry-date {
display: inline-block;
margin-top: 5px; }
.widget-area .widget_acumec_recent_post ul li .post-info a.post-readmore, .wpb_widgetised_column .widget_acumec_recent_post ul li .post-info a.post-readmore {
display: block; }
.widget-area .widget_acumec_recent_post ul li .post-info .post-views, .wpb_widgetised_column .widget_acumec_recent_post ul li .post-info .post-views {
margin-left: 5px;
margin-top: 5px;
line-height: 20px; }
.widget-area .widget_cms_image, .wpb_widgetised_column .widget_cms_image {
padding: 0;
color: #fff; }
.widget-area .widget_cms_image .content, .wpb_widgetised_column .widget_cms_image .content {
position: relative; }
.widget-area .widget_cms_image .content h3, .wpb_widgetised_column .widget_cms_image .content h3 {
color: #fff;
margin-bottom: 8px; }
.widget-area .widget_cms_image .content .text, .wpb_widgetised_column .widget_cms_image .content .text {
padding: 35px 37px 45px;
text-align: center; }
.widget-area .widget_cms_image .content .description, .wpb_widgetised_column .widget_cms_image .content .description {
font-size: 13px;
line-height: 22px; }
.widget-area .widget_cms_image .content .btn-cms-image, .wpb_widgetised_column .widget_cms_image .content .btn-cms-image {
border-radius: 25px;
border: 3px solid #fff;
background: transparent;
color: #fff; }
.widget-area .widget_cms_image .content .btn-cms-image:hover, .wpb_widgetised_column .widget_cms_image .content .btn-cms-image:hover, .widget-area .widget_cms_image .content .btn-cms-image:focus, .wpb_widgetised_column .widget_cms_image .content .btn-cms-image:focus {
background: #050508; }
.widget-area .widget.widget_newsletterwidget, .wpb_widgetised_column .widget.widget_newsletterwidget {
border: none;
box-shadow: none;
margin-bottom: 0;
text-align: center;
position: relative;
font-style: italic;
font-size: 13px;
color: #82d10c;
background-repeat: no-repeat;
background-size: cover;
background-color: transparent; }
.widget-area .widget.widget_newsletterwidget h3.wg-title, .wpb_widgetised_column .widget.widget_newsletterwidget h3.wg-title {
margin-bottom: 80px;
font-style: normal;
color: #fff; }
.widget-area .widget.widget_newsletterwidget .tnp-widget, .wpb_widgetised_column .widget.widget_newsletterwidget .tnp-widget {
font-style: normal; }
.widget-area .widget.widget_newsletterwidget .tnp-widget form, .wpb_widgetised_column .widget.widget_newsletterwidget .tnp-widget form {
position: relative; }
.widget-area .widget.widget_newsletterwidget .tnp-widget form .tnp-field, .wpb_widgetised_column .widget.widget_newsletterwidget .tnp-widget form .tnp-field {
margin-bottom: 0; }
.widget-area .widget.widget_newsletterwidget .tnp-widget form .tnp-field.tnp-field-email label, .wpb_widgetised_column .widget.widget_newsletterwidget .tnp-widget form .tnp-field.tnp-field-email label {
display: none; }
.widget-area .widget.widget_newsletterwidget .tnp-widget form .tnp-field.tnp-field-email .tnp-email, .wpb_widgetised_column .widget.widget_newsletterwidget .tnp-widget form .tnp-field.tnp-field-email .tnp-email {
height: 56px;
padding-left: 30px;
padding-right: 56px;
background: #fff;
border-radius: 25px; }
.widget-area .widget.widget_newsletterwidget .tnp-widget form .tnp-field.tnp-field-email .tnp-email::-webkit-input-placeholder, .wpb_widgetised_column .widget.widget_newsletterwidget .tnp-widget form .tnp-field.tnp-field-email .tnp-email::-webkit-input-placeholder {
font-family: "Lato";
font-size: 12px;
font-style: italic; }
.widget-area .widget.widget_newsletterwidget .tnp-widget form .tnp-field.tnp-field-email .tnp-email:-moz-placeholder, .wpb_widgetised_column .widget.widget_newsletterwidget .tnp-widget form .tnp-field.tnp-field-email .tnp-email:-moz-placeholder {
font-family: "Lato";
font-size: 12px;
font-style: italic; }
.widget-area .widget.widget_newsletterwidget .tnp-widget form .tnp-field.tnp-field-email .tnp-email::-moz-placeholder, .wpb_widgetised_column .widget.widget_newsletterwidget .tnp-widget form .tnp-field.tnp-field-email .tnp-email::-moz-placeholder {
font-family: "Lato";
font-size: 12px;
font-style: italic; }
.widget-area .widget.widget_newsletterwidget .tnp-widget form .tnp-field.tnp-field-email .tnp-email:-ms-input-placeholder, .wpb_widgetised_column .widget.widget_newsletterwidget .tnp-widget form .tnp-field.tnp-field-email .tnp-email:-ms-input-placeholder {
font-family: "Lato";
font-size: 12px;
font-style: italic; }
.widget-area .widget.widget_newsletterwidget .tnp-widget form .tnp-field.tnp-field-button, .wpb_widgetised_column .widget.widget_newsletterwidget .tnp-widget form .tnp-field.tnp-field-button {
position: absolute;
top: 0;
right: 0;
width: 56px;
height: 100%; }
.widget-area .widget.widget_newsletterwidget .tnp-widget form .tnp-field.tnp-field-button:hover:before, .wpb_widgetised_column .widget.widget_newsletterwidget .tnp-widget form .tnp-field.tnp-field-button:hover:before {
color: #82d10c; }
.widget-area .widget.widget_newsletterwidget .tnp-widget form .tnp-field.tnp-field-button .tnp-submit, .wpb_widgetised_column .widget.widget_newsletterwidget .tnp-widget form .tnp-field.tnp-field-button .tnp-submit {
color: #444;
height: 56px;
border-radius: 20px;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s;
font-size: 0;
text-indent: 10000px;
background: transparent;
border: 1px solid transparent; }
.widget-area .widget.widget_newsletterwidget .tnp-widget form .tnp-field.tnp-field-button:before, .wpb_widgetised_column .widget.widget_newsletterwidget .tnp-widget form .tnp-field.tnp-field-button:before {
content: "\f105";
font-family: Fontawesome;
text-align: center;
position: absolute;
width: 100%;
height: 100%;
line-height: 56px;
font-size: 16px;
font-weight: 700;
top: 0;
left: 0;
color: #444;
border-radius: 25px;
background: transparent;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.widget-area .wg-contact p, .wpb_widgetised_column .wg-contact p {
font-size: 13px;
margin-bottom: 5px; }
.widget-area .wg-contact ul.content li, .wpb_widgetised_column .wg-contact ul.content li {
font-family: "Open Sans";
font-size: 13px;
margin-bottom: 5px; }
.widget-area .wg-contact ul.content li:last-child, .wpb_widgetised_column .wg-contact ul.content li:last-child {
margin-bottom: 0; }
.widget-area .wg-contact ul.content li i, .wpb_widgetised_column .wg-contact ul.content li i {
color: #82d10c;
margin-right: 12px; }
.widget-area .widget_cms_testimonials .content .description, .wpb_widgetised_column .widget_cms_testimonials .content .description {
font-size: 13px;
color: #444; }
.widget-area .widget_cms_testimonials .content .content-wrap, .wpb_widgetised_column .widget_cms_testimonials .content .content-wrap {
margin-top: 15px;
display: table; }
.widget-area .widget_cms_testimonials .content .content-wrap > div, .wpb_widgetised_column .widget_cms_testimonials .content .content-wrap > div {
display: table-cell;
vertical-align: middle; }
.widget-area .widget_cms_testimonials .content .content-wrap > div.content-left, .wpb_widgetised_column .widget_cms_testimonials .content .content-wrap > div.content-left {
padding-right: 10px; }
.widget-area .widget_cms_testimonials .content .content-wrap > div.content-left img, .wpb_widgetised_column .widget_cms_testimonials .content .content-wrap > div.content-left img {
width: 44px; }
.widget-area .widget_cms_testimonials .content .content-wrap > div.content-right, .wpb_widgetised_column .widget_cms_testimonials .content .content-wrap > div.content-right {
font-family: "Open Sans", sans-serif; }
.widget-area .widget_cms_testimonials .content .content-wrap > div.content-right .name, .wpb_widgetised_column .widget_cms_testimonials .content .content-wrap > div.content-right .name {
font-size: 14px;
font-weight: 800;
color: #444; }
.widget-area .widget_cms_testimonials .content .content-wrap > div.content-right .position, .wpb_widgetised_column .widget_cms_testimonials .content .content-wrap > div.content-right .position {
font-size: 11px;
font-weight: 400;
line-height: 18px;
color: #82d10c; }
.widget-area .widget_acumec_flickr_widget h3.wg-title, .wpb_widgetised_column .widget_acumec_flickr_widget h3.wg-title {
margin-bottom: 20px; }
.widget-area .widget_acumec_flickr_widget .flickr-wrap, .wpb_widgetised_column .widget_acumec_flickr_widget .flickr-wrap {
margin: -5px; }
.widget-area .widget_acumec_flickr_widget .flickr-wrap .flickr_badge_image, .wpb_widgetised_column .widget_acumec_flickr_widget .flickr-wrap .flickr_badge_image {
width: 50%;
float: left;
padding: 5px;
margin: 0;
height: auto; }
@media (max-width: 991px) {
.widget-area .widget_acumec_flickr_widget .flickr-wrap .flickr_badge_image, .wpb_widgetised_column .widget_acumec_flickr_widget .flickr-wrap .flickr_badge_image {
width: 33.33%; } }
.widget-area .widget_acumec_flickr_widget .flickr-wrap .flickr_badge_image a, .wpb_widgetised_column .widget_acumec_flickr_widget .flickr-wrap .flickr_badge_image a {
display: block;
overflow: hidden; }
.widget-area .widget_acumec_flickr_widget .flickr-wrap .flickr_badge_image img, .wpb_widgetised_column .widget_acumec_flickr_widget .flickr-wrap .flickr_badge_image img {
height: auto;
width: 100%;
margin-bottom: 0;
zoom: 1;
filter: alpha(opacity=100);
opacity: 1;
-webkit-transition: all 0.9s ease 0s;
transition: all 0.9s ease 0s; }
.widget-area .widget_acumec_flickr_widget .flickr-wrap .flickr_badge_image img:hover, .wpb_widgetised_column .widget_acumec_flickr_widget .flickr-wrap .flickr_badge_image img:hover {
zoom: 1;
filter: alpha(opacity=80);
opacity: 0.8;
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1); }
.widget-area .widget_calendar .calendar_wrap, .wpb_widgetised_column .widget_calendar .calendar_wrap {
overflow-x: auto; }
.widget-area .widget_calendar table, .wpb_widgetised_column .widget_calendar table {
width: 100%;
margin: 0;
position: relative;
text-align: center;
background-color: #fff; }
@media (min-width: 1200px) {
.widget-area .widget_calendar table, .wpb_widgetised_column .widget_calendar table {
table-layout: fixed;
word-wrap: break-word; } }
.widget-area .widget_calendar table td, .wpb_widgetised_column .widget_calendar table td, .widget-area .widget_calendar table th, .wpb_widgetised_column .widget_calendar table th {
padding: 6px 8px;
font-size: 14px; }
.widget-area .widget_calendar caption, .wpb_widgetised_column .widget_calendar caption {
line-height: 1;
font-size: 16px;
font-weight: 600;
padding: 8px 0 8px;
text-align: center;
color: #fff;
background-color: #82d10c; }
.widget-area .widget_calendar thead, .wpb_widgetised_column .widget_calendar thead {
background-color: #444;
border: 1px solid #444;
color: #fff; }
.widget-area .widget_calendar thead th, .wpb_widgetised_column .widget_calendar thead th {
font-weight: 300; }
.widget-area .widget_calendar thead th:first-child, .wpb_widgetised_column .widget_calendar thead th:first-child {
padding-left: 5px; }
.widget-area .widget_calendar thead th:last-child, .wpb_widgetised_column .widget_calendar thead th:last-child {
padding-right: 5px; }
.widget-area .widget_calendar tbody, .wpb_widgetised_column .widget_calendar tbody {
font-weight: 300;
border: 1px solid #eee; }
.widget-area .widget_calendar tbody tr:first-child td, .wpb_widgetised_column .widget_calendar tbody tr:first-child td {
padding-top: 29px; }
.widget-area .widget_calendar tbody tr:last-child td, .wpb_widgetised_column .widget_calendar tbody tr:last-child td {
padding-bottom: 30px; }
.widget-area .widget_calendar tbody td, .wpb_widgetised_column .widget_calendar tbody td {
border: none;
padding: 6px 5px;
position: relative;
text-align: center; }
.widget-area .widget_calendar tbody td:first-child, .wpb_widgetised_column .widget_calendar tbody td:first-child {
padding-left: 5px; }
.widget-area .widget_calendar tbody td:last-child, .wpb_widgetised_column .widget_calendar tbody td:last-child {
padding-right: 5px; }
.widget-area .widget_calendar tbody td a, .wpb_widgetised_column .widget_calendar tbody td a {
font-weight: 600;
color: #82d10c; }
.widget-area .widget_calendar tbody td a:hover, .wpb_widgetised_column .widget_calendar tbody td a:hover {
color: #444; }
.widget-area .widget_calendar th, .wpb_widgetised_column .widget_calendar th {
text-align: center;
border: 0;
color: inherit; }
.widget-area .widget_calendar td, .wpb_widgetised_column .widget_calendar td {
border: 0; }
.widget-area .widget_calendar tfoot, .wpb_widgetised_column .widget_calendar tfoot {
position: absolute;
top: -3px;
right: 0;
left: 0; }
.widget-area .widget_calendar tfoot td, .wpb_widgetised_column .widget_calendar tfoot td {
position: absolute;
top: 0; }
.widget-area .widget_calendar tfoot td a, .wpb_widgetised_column .widget_calendar tfoot td a {
color: #fff;
text-align: center;
font-size: 0;
width: 30px;
height: 35px;
line-height: 40px;
display: inline-block; }
.widget-area .widget_calendar tfoot td a:hover, .wpb_widgetised_column .widget_calendar tfoot td a:hover {
color: #ddd; }
.widget-area .widget_calendar tfoot #prev, .wpb_widgetised_column .widget_calendar tfoot #prev {
left: 0;
padding: 0; }
.widget-area .widget_calendar tfoot #prev a, .wpb_widgetised_column .widget_calendar tfoot #prev a {
border-right: 1px solid rgba(255, 255, 255, 0.2); }
.widget-area .widget_calendar tfoot #prev a:before, .wpb_widgetised_column .widget_calendar tfoot #prev a:before {
font-size: 14px;
font-family: 'fontawesome';
content: '\f100'; }
.widget-area .widget_calendar tfoot #next, .wpb_widgetised_column .widget_calendar tfoot #next {
right: 0;
padding: 0; }
.widget-area .widget_calendar tfoot #next a, .wpb_widgetised_column .widget_calendar tfoot #next a {
border-left: 1px solid rgba(255, 255, 255, 0.2); }
.widget-area .widget_calendar tfoot #next a:after, .wpb_widgetised_column .widget_calendar tfoot #next a:after {
font-size: 14px;
font-family: 'fontawesome';
content: '\f101'; }
@media (max-width: 991px) {
.widget-area {
margin-top: 60px; } }
.widget-area .widget.widget_newsletterwidget {
padding: 35px 0;
background-image: url(//bomali.eu/wp-content/themes/acumec/assets/images/bg-sidebar2.png); }
.widget-area .widget.widget_newsletterwidget .tnp-widget {
position: absolute;
padding: 0 30px;
top: 53%;
transform: translateY(-50%);
font-style: normal; }
@media screen and (min-width: 1200px) {
.container {
padding-left: 0;
padding-right: 0; } }
@media (min-width: 1200px) {
.lg-5 {
width: 20%;
float: left;
position: relative; } }
@media (min-width: 992px) {
.md-5 {
width: 20%;
float: left;
position: relative; } }
@media screen and (min-width: 1238px) {
body .cs-boxed {
width: 1238px;
margin: 0 auto;
overflow: hidden;
position: relative; }
body .cs-boxed .header-layout2 .header-main-right-menu {
margin-left: 0 !important; }
body .cs-boxed .header-layout4 .container-fullwidth {
padding: 0 30px; }
body .cs-boxed .header-layout5 .container-fullwidth, body .cs-boxed .header-layout6 .container-fullwidth {
padding: 0 15px; }
body .cs-boxed .header-layout5 .site-branding, body .cs-boxed .header-layout6 .site-branding {
padding: 31px 50px 34px 0px; }
body .cs-boxed .header-layout6 .header-main-right {
display: none !important; }
body .cs-boxed .header-layout7.header-transparent .header-main .toggle_menu_side {
background: #82d10c; }
body .cs-boxed .cms-grid-gallery.template-cms_grid--portfolio2 .grid-link {
right: 20px; }
body .cs-boxed .cms-grid-gallery.template-cms_grid--portfolio2 .grid-link a {
width: 40px;
height: 40px;
line-height: 38px; }
body .cs-boxed .cms-grid-gallery.template-cms_grid--portfolio2 .cms-grid-item .cms-grid-item-wrap:hover .grid-link {
top: 20px; }
body.boxed-layout .header-fixed {
width: 1238px !important; }
body.boxed-layout .rev_slider_wrapper.fullwidthbanner-container {
width: 1238px !important;
left: 50% !important;
-webkit-transform: translate(-50%, 0);
-ms-transform: translate(-50%, 0);
transform: translate(-50%, 0); }
body.boxed-layout .vc_row[data-vc-stretch-content="true"] {
width: 1238px !important;
margin: 0 auto;
left: 50% !important;
-webkit-transform: translate(-50%, 0);
-ms-transform: translate(-50%, 0);
transform: translate(-50%, 0);
padding-left: 0 !important;
padding-right: 0 !important; } }
@media screen and (min-width: 1238px) and (min-width: 1400px) {
body .cs-boxed .header-layout5 .site-branding, body .cs-boxed .header-layout6 .site-branding {
padding: 31px 35px 34px 0px; } }
@font-face {
font-family: 'WooCommerce';
src: url(//bomali.eu/wp-content/themes/acumec/assets/fonts/WooCommerce.eot);
src: url(//bomali.eu/wp-content/themes/acumec/assets/fonts/WooCommerce.eot?#iefix) format('embedded-opentype'), url(//bomali.eu/wp-content/themes/acumec/assets/fonts/WooCommerce.woff) format('woff'), url(//bomali.eu/wp-content/themes/acumec/assets/fonts/WooCommerce.ttf) format('truetype'), url(//bomali.eu/wp-content/themes/acumec/assets/fonts/WooCommerce.svg#WooCommerce) format('svg');
font-weight: normal;
font-style: normal; }
.woocommerce-Reviews .comment-form-comment {
margin-top: 35px; }
.woocommerce-Reviews .comment-form-comment label {
display: block;
margin-bottom: 0; }
.product-price {
display: inline-block;
background: #333;
color: #fff;
padding: 3px 10px; }
.product-price del span {
opacity: 0.5; }
.woocommerce ins {
background: transparent;
color: #fff; }
.woocommerce .widget-area .widget .wg-title {
margin: 0 0 15px;
line-height: 28px;
color: #444; }
.woocommerce h3#order_review_heading {
padding-left: 15px; }
.woocommerce .button {
font-family: "Open Sans" !important;
display: inline-block;
padding: 6px 18px;
font-size: 14px;
font-weight: 700;
font-family: inherit;
vertical-align: middle;
text-transform: uppercase;
position: relative;
z-index: 1;
color: #fff;
border: 1px solid #0c0d12;
background: #0c0d12;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.woocommerce .button:before {
content: "";
position: absolute;
background: #82d10c;
height: 101%;
width: 1%;
right: 0;
top: 0;
z-index: -1;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s;
opacity: 0; }
.woocommerce .button:hover:before, .woocommerce .button:focus:before {
opacity: 1;
width: 100%;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.woocommerce .button:hover, .woocommerce .button:focus {
border: 1px solid #82d10c;
color: #fff; }
.woocommerce .button:after {
content: "\f217";
font-family: Fontawesome;
right: 0;
top: 0;
font-size: 14px;
padding-left: 0.75em; }
.woocommerce input.button:hover, .woocommerce button.button:hover, .woocommerce input.button:focus, .woocommerce button.button:focus {
background: #82d10c; }
.woocommerce .checkout_coupon {
padding-top: 20px; }
.woocommerce .checkout_coupon .button {
padding: 10px 20px; }
.woocommerce.widget_recently_viewed_products .product_list_widget li {
display: table;
width: 100%; }
.woocommerce.widget_recently_viewed_products .product_list_widget li a {
display: table-cell;
vertical-align: middle;
width: 90px; }
.woocommerce.widget_recently_viewed_products .product_list_widget li .product-content {
margin-left: 10px; }
.woocommerce.widget_recently_viewed_products li + li {
margin-top: 30px; }
.woocommerce .woocommerce-checkout-payment .woocommerce-form__label-for-checkbox, .woocommerce .woocommerce-account-fields .woocommerce-form__label-for-checkbox {
padding-left: 20px; }
.woocommerce .woocommerce-error {
padding-bottom: 30px; }
.woocommerce .woocommerce-error li {
padding-left: 0 !important;
color: #e95f5c !important; }
.woocommerce .widget_product_search form {
position: relative; }
.woocommerce .widget_product_search form input[type="search"] {
box-shadow: none;
background-color: #fbfbfb;
margin-bottom: 0;
padding-right: 40px;
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s; }
.woocommerce .widget_product_search form input[type="search"]:hover, .woocommerce .widget_product_search form input[type="search"]:focus, .woocommerce .widget_product_search form input[type="search"]:active {
border-color: #82d10c; }
.woocommerce .widget_product_search form input[type="search"]:hover + input[type="submit"], .woocommerce .widget_product_search form input[type="search"]:focus + input[type="submit"], .woocommerce .widget_product_search form input[type="search"]:active + input[type="submit"] {
color: #82d10c; }
.woocommerce .widget_product_search form input[type="submit"], .woocommerce .widget_product_search form button {
position: absolute;
top: 0;
right: 0;
padding: 0;
margin: 0;
height: 50px;
width: 50px;
line-height: 50px;
border: none;
font-size: 15px;
color: #fff;
text-align: center;
text-indent: 10000px;
background: transparent;
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s; }
.woocommerce .widget_product_search form input[type="submit"]:hover, .woocommerce .widget_product_search form button:hover, .woocommerce .widget_product_search form input[type="submit"]:active, .woocommerce .widget_product_search form button:active, .woocommerce .widget_product_search form input[type="submit"]:focus, .woocommerce .widget_product_search form button:focus, .woocommerce .widget_product_search form input[type="submit"]:hover.woocommerce .widget_product_search form input[type="submit"]:active, .woocommerce .widget_product_search form button:hover.woocommerce .widget_product_search form button:active, .woocommerce .widget_product_search form input[type="submit"]:active.woocommerce .widget_product_search form input[type="submit"]:focus, .woocommerce .widget_product_search form button:active.woocommerce .widget_product_search form button:focus {
color: #82d10c !important;
outline: none !important;
box-shadow: none !important;
background: transparent; }
.woocommerce .widget_product_search form:before {
content: "\f002";
font-family: Fontawesome;
font-style: normal;
font-size: inherit;
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s; }
.woocommerce .widget_product_search form:hover:before {
color: #82d10c; }
.woocommerce .woocommerce-MyAccount-navigation ul li {
padding-left: 0;
padding-right: 10px;
display: inline-block; }
.woocommerce .woocommerce-MyAccount-navigation ul li a {
font-size: 15px;
font-weight: 700; }
.woocommerce .widget_recent_reviews .product_list_widget li, .woocommerce .widget_top_rated_products .product_list_widget li {
position: relative; }
.woocommerce .widget_recent_reviews .product_list_widget li a, .woocommerce .widget_top_rated_products .product_list_widget li a {
font-size: 14px;
text-transform: uppercase;
font-family: "Lato";
font-weight: 700; }
.woocommerce .widget_recent_reviews .product_list_widget li a img, .woocommerce .widget_top_rated_products .product_list_widget li a img {
vertical-align: top;
width: 60px;
margin-right: 10px; }
.woocommerce .widget_recent_reviews .product_list_widget li .star-rating, .woocommerce .widget_top_rated_products .product_list_widget li .star-rating {
position: absolute;
top: 12px;
left: 70px;
left: 70px; }
.woocommerce .widget_recent_reviews .product_list_widget li .reviewer, .woocommerce .widget_top_rated_products .product_list_widget li .reviewer {
position: absolute;
top: 37px;
left: 70px; }
.woocommerce .widget_recent_reviews .product_list_widget li + li, .woocommerce .widget_top_rated_products .product_list_widget li + li {
margin-top: 30px; }
.woocommerce .widget_recent_reviews li .star-rating {
margin-top: 8px; }
.woocommerce .widget_product_categories .product-categories li a {
font-size: 14px;
line-height: 30px; }
.woocommerce .widget_product_categories .product-categories li a:before {
font-family: fontawesome;
content: "\f101";
position: relative;
padding-right: 7px; }
.woocommerce .woocommerce-widget-layered-nav a {
display: inline-block; }
.woocommerce .woocommerce-widget-layered-nav li + li {
margin-top: 10px; }
@media screen and (max-width: 767px) {
.woocommerce .widget-area {
margin-top: 30px; } }
.woocommerce .widget ul.product-categories li a {
display: inline-block;
color: #666; }
.woocommerce .widget ul.product-categories li a:hover, .woocommerce .widget ul.product-categories li a:focus {
color: #82d10c; }
.woocommerce .widget ul.product-categories .count {
float: right;
line-height: 30px; }
.woocommerce .widget_product_tag_cloud a {
font-size: 14px !important;
display: inline-block;
padding: 5px 18px;
margin-right: 6px;
margin-bottom: 10px;
color: #444;
line-height: 24px;
font-weight: 400;
border: 1px solid #82d10c;
-webkit-border-radius: 4px;
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px; }
.woocommerce .widget_product_tag_cloud a:hover {
background-color: #82d10c;
color: #fff; }
.woocommerce .widget_products .wg-title {
margin-bottom: 6px; }
.woocommerce .widget_products ul li {
padding: 15px 0;
position: relative; }
.woocommerce .widget_products ul li > a {
float: left; }
.woocommerce .widget_products ul li .product-content {
overflow: hidden; }
.woocommerce .widget_products ul.product_list_widget li img {
margin-right: 12px;
margin-left: 0;
width: 70px;
height: auto;
box-shadow: none; }
.woocommerce .widget_products ins {
background: transparent;
color: inherit; }
.woocommerce .widget_products .content-right {
margin-left: 82px; }
.woocommerce .widget_products .content-right a {
color: #444;
line-height: 22px;
margin-top: -2px; }
.woocommerce .widget_products .content-right a:hover {
color: #82d10c; }
.woocommerce .widget_products .content-right .amount {
font-size: 16px;
font-weight: 700;
line-height: 25.6px;
color: #82d10c; }
.woocommerce .widget_products .content-right .star-rating {
font-size: 11px;
margin-top: 4px; }
.woocommerce .widget_products .content-right .star-rating > span {
color: #ffca28; }
.woocommerce .widget_price_filter {
margin-bottom: 45px !important; }
.woocommerce .widget_price_filter .wg-title {
margin-bottom: 27px; }
.woocommerce .widget_price_filter .price_slider {
position: relative; }
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
background: transparent;
-webkit-border-radius: 0;
-khtml-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
margin: 0;
padding: 6px 0 0 0; }
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content:before {
content: "";
display: block;
background-color: #eeeff0;
height: 4px;
width: 100%; }
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
position: absolute;
background-color: #82d10c;
left: 0;
top: 6px; }
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
height: 4px;
-webkit-border-radius: 0;
-khtml-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0; }
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
width: 16px;
height: 16px;
position: absolute;
top: 0;
cursor: ew-resize;
background: #82d10c;
-webkit-border-radius: 50%;
-khtml-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%; }
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle[style="left: 100%;"] {
margin-left: -16px; }
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle:before {
display: block;
content: attr(data-title);
position: absolute;
top: 29px;
left: 50%;
font-size: 12px;
font-weight: 700;
color: #ababab;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%); }
.woocommerce .widget_price_filter .price_slider_amount {
margin-top: 20px;
display: block;
overflow: hidden; }
.woocommerce .widget_price_filter .price_slider_amount .button {
font-size: 12px;
letter-spacing: 0.1em;
text-transform: uppercase; }
.woocommerce .widget_price_filter .price_slider_amount .button:before {
display: none; }
.woocommerce .widget_price_filter .price_label {
display: inline-block !important;
float: right; }
.woocommerce .widget_shopping_cart ul {
padding-left: 0; }
.woocommerce .widget_shopping_cart ul li {
position: relative;
margin-bottom: 30px; }
.woocommerce .widget_shopping_cart .remove {
float: right;
line-height: 1; }
.woocommerce .widget_shopping_cart .wp-post-image {
float: left;
width: 50px;
margin-right: 15px; }
.woocommerce .widget_shopping_cart h5 {
font-size: 14px;
margin-bottom: 0; }
.woocommerce .widget_shopping_cart .quantity {
font-size: 12px; }
.woocommerce .widget_shopping_cart .variation {
margin-bottom: 0; }
.woocommerce .widget_shopping_cart .variation dt, .woocommerce .widget_shopping_cart .variation dd {
margin-bottom: 0;
display: inline-block; }
.woocommerce .widget_shopping_cart .total {
text-align: center;
margin: 30px 0; }
.woocommerce .widget_shopping_cart .buttons {
text-align: center; }
.woocommerce .widget_shopping_cart .buttons a {
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
line-height: 1;
display: inline-block;
text-align: center;
border-radius: 2px;
position: relative;
vertical-align: middle;
letter-spacing: 0.03em;
padding: 18px 20px;
min-width: 120px;
margin: 5px 2.5px;
-webkit-transition: all 0.3s linear 0s;
transition: all 0.3s linear 0s; }
.woocommerce .widget_shopping_cart .buttons a:hover, .woocommerce .widget_shopping_cart .buttons a:active, .woocommerce .widget_shopping_cart .buttons a:focus {
box-shadow: none;
outline: none; }
.woocommerce form#yith-wcwl-form {
overflow-x: auto; }
.woocommerce table.wishlist_table thead th {
padding: 15px;
vertical-align: middle;
text-align: left;
letter-spacing: 0.05em;
font-size: 13px;
font-weight: 700;
border-color: #ddd;
color: #56beb8; }
.woocommerce table.wishlist_table thead th.product-price {
display: table-cell;
font-family: inherit;
background: inherit;
color: #82d10c; }
.woocommerce table.wishlist_table tbody td {
border-top-color: transparent;
border-bottom: 1px solid #f2f2f2;
padding: 18px 15px;
vertical-align: middle;
font-size: 15px;
color: #666;
font-weight: 400;
text-align: center; }
.woocommerce table.wishlist_table tbody td.product-remove a.remove {
color: #444 !important; }
.woocommerce table.wishlist_table tbody td.product-remove a.remove:hover {
color: #82d10c !important;
background: inherit !important; }
.woocommerce table.wishlist_table tbody td.product-price {
display: table-cell;
font-family: inherit;
background: inherit; }
.woocommerce table.wishlist_table tbody td.product-price del, .woocommerce table.wishlist_table tbody td.product-price ins {
font-size: 15px;
color: #666;
font-weight: 400; }
.woocommerce table.wishlist_table tbody td.product-price del span {
opacity: 0.8; }
.woocommerce table.wishlist_table tbody td.product-price ins {
background: inherit;
border-radius: 0; }
.woocommerce table.wishlist_table tbody td.product-price ins span {
opacity: 1; }
.woocommerce table.wishlist_table tbody td.product-thumbnail {
text-align: center;
width: 120px; }
.woocommerce table.wishlist_table tbody td.product-thumbnail a {
min-width: 80px; }
.woocommerce table.wishlist_table tbody td.product-thumbnail img {
padding: 0;
width: 80px; }
.woocommerce table.wishlist_table tbody td.product-add-to-cart a {
display: inline-block !important; }
.woocommerce table.wishlist_table tbody td a {
font-size: 15px;
font-weight: 400; }
.onsale {
display: block !important;
position: absolute;
padding: 2px 5px 2px 5px;
text-align: center;
background: #82d10c;
color: #fff;
margin-top: 10px;
margin-left: 10px;
font-weight: 700;
z-index: 1; }
.onsale:before {
content: "";
width: 8px;
height: 8px;
display: block;
position: absolute;
right: -4px;
background: #82d10c;
transform: translateY(-50%) rotate(45deg);
top: 50%; }
.woocommerce-result-count {
display: inline-block;
margin-bottom: 30px;
line-height: 50px !important; }
@media screen and (max-width: 479px) {
.woocommerce-result-count {
float: none; } }
.woocommerce-ordering {
position: relative;
margin-bottom: 30px;
display: inline-block;
float: right; }
@media screen and (max-width: 479px) {
.woocommerce-ordering {
float: none; } }
.woocommerce-ordering:after {
position: absolute;
right: 10px;
top: 0;
line-height: 48px;
content: "\f0d7";
font-family: "FontAwesome";
font-size: 14px;
z-index: -1; }
.woocommerce-ordering select {
padding-top: 0;
padding-bottom: 0;
min-width: 230px;
margin-bottom: 0;
font-size: 13px;
padding: 10px 0 10px 12px;
cursor: pointer;
-webkit-appearance: none;
-moz-appearance: none;
-o-appearance: none;
appearance: none;
background: transparent; }
.woocommerce-ordering select::-ms-expand {
display: none; }
ul.products {
list-style: none;
margin: 0 -15px;
padding: 0; }
@media (min-width: 768px) {
ul.products {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap; } }
ul.products .product {
padding: 0 15px;
margin-bottom: 30px; }
@media (min-width: 768px) {
.columns-2 .products.grid .product {
-webkit-box-flex: 0;
-webkit-flex: 0 0 50%;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%; }
.columns-3 .products.grid .product {
-webkit-box-flex: 0;
-webkit-flex: 0 0 50%;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%; }
.columns-4 .products.grid .product {
-webkit-box-flex: 0;
-webkit-flex: 0 0 50%;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%; } }
@media (min-width: 992px) {
.columns-2 .products.grid .product {
-webkit-box-flex: 0;
-webkit-flex: 0 0 50%;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%; }
.columns-3 .products.grid .product {
-webkit-box-flex: 0;
-webkit-flex: 0 0 33.33333%;
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%; }
.columns-4 .products.grid .product {
-webkit-box-flex: 0;
-webkit-flex: 0 0 33.33333%;
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%; } }
@media (min-width: 1200px) {
.columns-2 .products.grid .product {
-webkit-box-flex: 0;
-webkit-flex: 0 0 50%;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%; }
.columns-3 .products.grid .product {
-webkit-box-flex: 0;
-webkit-flex: 0 0 33.33333%;
-ms-flex: 0 0 33.33333%;
flex: 0 0 33.33333%;
max-width: 33.33333%; }
.columns-4 .products.grid .product {
-webkit-box-flex: 0;
-webkit-flex: 0 0 25%;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%; } }
.wc-product-wrap {
position: relative;
margin: 0;
background: #f5f5f5; }
.wc-img-wrap {
overflow: hidden;
text-align: center;
position: relative;
z-index: 1; }
.wc-img-wrap img {
width: 100%; }
.wc-img-wrap .wc-loop-cart-wrap {
position: absolute;
width: 100%;
height: 100%;
top: 0;
opacity: 0;
background-color: rgba(0, 0, 0, 0.85);
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.wc-img-wrap:hover .wc-loop-cart-wrap {
opacity: 1; }
.wc-img-wrap .wc-cart-wrap {
position: absolute;
width: 100%;
top: 50%;
transform: translateY(-50%);
padding: 0 10px; }
.wc-loop-content-wrap {
padding: 25px 30px 30px 30px;
border: none; }
.wc-loop-content-wrap .star-rating {
margin-left: 5px;
line-height: 28px; }
.onsale {
display: none; }
.wc-loop-title {
text-transform: capitalize;
margin: 0 0 12px 0; }
.star-rating {
color: #82d10c;
font-size: 11px;
width: 60px;
letter-spacing: 0.2em;
position: relative;
text-align: left;
white-space: nowrap;
display: inline-block;
margin-right: 10px; }
.star-rating:before {
content: "\f006\f006\f006\f006\f006";
font-family: 'FontAwesome';
display: block; }
.star-rating span {
font-size: 0;
position: absolute;
left: 0;
top: 0;
overflow: hidden; }
.star-rating span:before {
font-family: 'FontAwesome';
color: #82d10c;
font-size: 11px;
content: "\f005\f005\f005\f005\f005";
display: block; }
.star-rating + .woocommerce-review-link {
font-size: 13px;
letter-spacing: 0.03em; }
.stars {
margin: 0 -5px; }
.stars a {
font-size: 0;
margin: 0 5px;
color: #ababab;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.stars a:before {
font-size: 11px;
font-family: 'FontAwesome'; }
.stars a.star-1:before {
content: "\f006"; }
.stars a.star-2:before {
content: "\f006\f006"; }
.stars a.star-3:before {
content: "\f006\f006\f006"; }
.stars a.star-4:before {
content: "\f006\f006\f006\f006"; }
.stars a.star-5:before {
content: "\f006\f006\f006\f006\f006"; }
.stars a.star-1:hover:before, .stars a.star-1.active:before {
content: "\f005"; }
.stars a.star-2:hover:before, .stars a.star-2.active:before {
content: "\f005\f005"; }
.stars a.star-3:hover:before, .stars a.star-3.active:before {
content: "\f005\f005\f005"; }
.stars a.star-4:hover:before, .stars a.star-4.active:before {
content: "\f005\f005\f005\f005"; }
.stars a.star-5:hover:before, .stars a.star-5.active:before {
content: "\f005\f005\f005\f005\f005"; }
.stars a:hover, .stars a.active {
color: #82d10c; }
ul.products .price ins {
margin-right: 4px;
background: transparent;
color: inherit; }
ul.products .price del {
opacity: 0.5; }
.added_to_cart {
font-size: 13px;
color: #fff;
line-height: 30px;
display: block; }
.added_to_cart:hover, .added_to_cart:focus {
color: #82d10c; }
.woocommerce-pagination {
line-height: 1; }
.woocommerce-pagination .pagination {
margin-bottom: 0;
border-radius: 5px; }
.woocommerce-pagination .pagination ul.page-numbers li {
display: inline-block;
margin-right: 0 !important;
text-align: center;
border: 0 !important; }
.woocommerce-pagination .pagination ul.page-numbers li .page-numbers {
position: relative;
float: left;
text-align: center;
line-height: 40px;
border: none;
font-size: 13px;
font-weight: 700;
min-width: 40px;
text-transform: uppercase;
width: 40px;
height: 40px;
margin-right: 5px;
margin-bottom: 6px;
border-radius: 2px;
background: #0c0d12;
border: 1px solid #0c0d12;
color: #fff; }
.woocommerce-pagination .pagination ul.page-numbers li .page-numbers.prev, .woocommerce-pagination .pagination ul.page-numbers li .page-numbers.next {
display: inline; }
.woocommerce-pagination .pagination ul.page-numbers li .page-numbers.prev i, .woocommerce-pagination .pagination ul.page-numbers li .page-numbers.next i {
font-weight: 700;
font-size: 15px; }
.woocommerce-pagination .pagination ul.page-numbers li .page-numbers.current, .woocommerce-pagination .pagination ul.page-numbers li .page-numbers:hover, .woocommerce-pagination .pagination ul.page-numbers li .page-numbers:focus {
color: #fff;
background: #82d10c;
border: 1px solid #82d10c; }
.woocommerce-product-gallery {
position: relative;
display: block;
overflow: hidden;
direction: ltr; }
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
max-width: inherit; }
.woocommerce-product-gallery.woocommerce-product-gallery--with-images { }
.woocommerce-product-gallery.woocommerce-product-gallery--with-images > .woocommerce-product-gallery__wrapper {
margin-left: -5px;
margin-right: -5px; }
.woocommerce-product-gallery.woocommerce-product-gallery--with-images > .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:nth-child(1) {
margin: 0 5px; }
.woocommerce-product-gallery.woocommerce-product-gallery--with-images > .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:nth-child(n+2) {
float: left;
margin: 10px 10px 0; }
.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-2 > figure > .woocommerce-product-gallery__image:nth-child(n+2) {
width: calc(50% - 10px); }
.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-3 > figure > .woocommerce-product-gallery__image:nth-child(n+2) {
width: calc(33.3333% - 10px); }
.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4 > figure > .woocommerce-product-gallery__image:nth-child(n+2) {
width: calc(25% - 10px); }
.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-5 > figure > .woocommerce-product-gallery__image:nth-child(n+2) {
width: calc(20% - 10px); }
.woocommerce-product-gallery .flex-control-thumbs {
margin: 0 -5px;
padding: 0; }
.woocommerce-product-gallery .flex-control-thumbs li {
list-style: none;
float: left;
cursor: pointer;
padding: 10px 5px 0;
position: relative; }
.woocommerce-product-gallery .flex-control-thumbs li img {
width: 100%; }
.woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li {
width: 50%; }
.woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li {
width: 33.3333%; }
.woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
width: 25%; }
.woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li {
width: 20%; }
.woocommerce-product-gallery figure {
margin: 0; }
.woocommerce-product-gallery figure img {
width: 100%; }
.woocommerce-product-gallery__trigger {
position: absolute;
top: 0;
right: 0;
z-index: 1;
text-align: center;
text-indent: -999px;
overflow: hidden;
text-decoration: none;
background-color: #444;
color: #fff;
width: 37px;
height: 37px;
line-height: 37px; }
.woocommerce-product-gallery__trigger:hover {
background-color: #82d10c;
color: #fff; }
.woocommerce-product-gallery__trigger:before {
font-family: "FontAwesome";
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: block;
content: "\f00e";
text-indent: 0; }
.woocommerce-product-gallery__trigger img {
display: none; }
.single-product .woocommerce-message {
border: 1px solid #82d10c;
padding: 20px 30px;
margin-bottom: 50px;
background: #82d10c;
color: #fff;
font-size: 16px; }
@media (max-width: 767px) {
.single-product .woocommerce-message {
text-align: center; } }
.single-product .woocommerce-message a.button {
padding: 10px 20px;
border: 1px solid #fff;
margin-right: 6px; }
@media (max-width: 767px) {
.single-product .woocommerce-message a.button {
display: block;
margin-bottom: 10px; } }
.single-product .woocommerce-message:before {
color: #82d10c; }
.single-product .img-summary-wrap {
padding-bottom: 40px; }
.single-product .img-summary-wrap > div {
margin-bottom: 30px; }
.single-product .product-title {
font-size: 20px;
color: #82d10c;
margin-top: 0; }
.single-product h6.product-title {
font-size: 16px; }
.single-product .woocommerce-product-rating {
display: inline-block;
margin-right: 50px;
margin-left: 10px;
margin-bottom: 18px; }
.single-product .woocommerce-product-details__short-description {
padding-bottom: 10px;
margin-top: 5px; }
.single-product form.cart {
display: inline-block;
margin-right: 5px; }
@media screen and (max-width: 479px) {
.single-product form.cart {
margin-bottom: 10px; } }
.single-product form.cart .quantity {
display: inline-block;
vertical-align: top;
margin-right: 36px; }
@media screen and (max-width: 479px) {
.single-product form.cart .quantity {
margin-right: 5px; } }
.single-product form.cart .quantity .qty {
border-radius: 2px;
max-width: 100px;
font-weight: 700;
height: 44px; }
.single-product form.cart table.variations {
margin-bottom: 0; }
.single-product form.cart table.variations td, .single-product form.cart table.variations th {
border-color: transparent;
padding: 0; }
.single-product form.cart table.variations label {
margin-bottom: 0;
font-size: 14px;
text-transform: capitalize;
letter-spacing: 1px;
font-weight: 700;
color: #666;
margin-top: 15px; }
.single-product form.cart table.variations select {
margin-bottom: 15px !important;
padding: 8px 12px; }
.single-product form.cart table.variations .reset_variations {
margin-bottom: 15px;
display: block; }
.single-product form.cart .woocommerce-variation-price {
margin-bottom: 20px; }
.single-product .yith-wcwl-add-to-wishlist, .single-product .compare-button {
display: inline-block;
padding: 0;
margin: 0; }
.single-product .yith-wcwl-add-to-wishlist + .clear, .single-product .compare-button + .clear, .single-product .yith-wcwl-add-to-wishlist + .clear, .single-product .compare-button + .clear {
display: none; }
.single-product .yith-wcwl-add-to-wishlist {
margin-right: 2px;
display: block;
text-align: left; }
.single-product .yith-wcwl-add-to-wishlist a, .single-product a.compare {
display: block;
cursor: pointer;
padding: 0 !important;
margin-top: 10px;
border-radius: 3px; }
.single-product .yith-wcwl-add-to-wishlist a + img {
display: none !important; }
.single-product a.compare:after {
content: "\f079"; }
.single-product .yith-wcwl-add-to-wishlist .feedback, .single-product .compare-button .feedback {
display: none; }
.single-product .product_meta {
margin-top: 32px; }
.single-product .product_meta .posted_in, .single-product .product_meta .tagged_as {
margin: 0;
font-size: 13px;
font-weight: 700;
line-height: 28px;
display: block; }
.single-product .product_meta .posted_in a, .single-product .product_meta .tagged_as a {
font-weight: 500;
line-height: 28px;
color: #050508; }
.single-product .product_meta .posted_in a:hover, .single-product .product_meta .tagged_as a:hover, .single-product .product_meta .posted_in a:focus, .single-product .product_meta .tagged_as a:focus {
color: #82d10c; }
.single-product .product_meta .cat-list, .single-product .product_meta .tag-list {
display: inline; }
.single-product .product-sharing {
margin-top: 10px; }
.single-product .product-sharing a {
font-size: 13px;
color: #444;
margin-right: 14px; }
.single-product .product-sharing a:hover {
color: #82d10c; }
.single-product .upsells {
margin-top: 50px; }
.single-product .upsells h2 {
margin-bottom: 20px; }
.single-product .upsells ul.products .product {
margin-bottom: 30px; }
.single-product .related h2 {
position: relative;
font-size: 40px;
line-height: 45px;
margin: 0 0 30px 0; }
.single-product .related .related-heading {
text-align: center; }
.single-product .related .related-heading span {
line-height: 0px;
max-width: 50px;
padding: 0;
position: relative;
vertical-align: middle;
text-transform: uppercase;
z-index: 1;
font-weight: 300;
font-size: 24px;
color: #323232;
margin: 0 auto 20px;
display: block; }
.single-product .related .related-heading span:before, .single-product .related .related-heading span:after {
position: absolute;
content: "";
width: 13px;
height: 1px;
background: #323232;
z-index: 100;
top: 50%; }
.single-product .related .related-heading span:before {
left: -13px; }
.single-product .related .related-heading span:after {
right: -13px; }
.single-product .related .related-heading span i {
font-size: inherit; }
.single-product .related .related-products li.product {
list-style: none; }
.single-product .related .related-products li.product .wc-product-wrap .wc-loop-content-wrap {
text-align: center; }
.single-product .related .related-products li.product .wc-product-wrap .wc-loop-content-wrap .wc-loop-title {
font-size: 15px;
margin: 0 0 18px 0; }
.single-product .related .related-products .owl-nav {
margin-top: 30px; }
.single-product .related .owl-nav .owl-prev, .single-product .related .owl-nav .owl-next {
line-height: 40px;
background-color: #fff;
border-color: #333;
color: #333;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.single-product .related .owl-nav .owl-prev:hover, .single-product .related .owl-nav .owl-next:hover {
background-color: #82d10c;
border-color: #82d10c;
color: #fff; }
.single-product .related .owl-nav .owl-prev i, .single-product .related .owl-nav .owl-next i {
font-size: 20px; }
.coupon {
padding-bottom: 30px; }
.coupon .coupon-code {
margin-bottom: 10px; }
.price {
display: inline-block;
font-family: "Roboto Slab", serif;
background: #333;
color: #fff;
padding: 3px 10px; }
.price del {
opacity: 0.5; }
.price ins {
color: #fff;
text-transform: uppercase;
background: transparent;
padding: 0;
margin-left: 5px; }
.woocommerce-tabs ul.tabs {
display: none; }
.woocommerce-tabs .panel {
display: block !important;
box-shadow: none;
margin-bottom: 50px; }
.woocommerce-tabs .woocommerce-Tabs-panel--description ul.list2 {
margin-top: 14px;
margin-bottom: 38px; }
.woocommerce-tabs table {
margin-top: 30px; }
.woocommerce-tabs table tbody th, .woocommerce-tabs table tbody td {
border-color: #f2f2f2;
font-family: "Poppins";
font-size: 13px;
color: #666;
line-height: 28px;
letter-spacing: 0.03em; }
.woocommerce-tabs table tbody th {
padding-left: 50px; }
@media screen and (max-width: 767px) {
.woocommerce-tabs table tbody th {
padding-left: 15px; } }
.woocommerce-tabs table tbody td {
padding-left: 20px; }
@media screen and (max-width: 767px) {
.woocommerce-tabs table tbody td {
padding-left: 15px; } }
.woocommerce-tabs table tbody tr:first-child th, .woocommerce-tabs table tbody tr:first-child td {
padding-top: 50px; }
@media screen and (max-width: 767px) {
.woocommerce-tabs table tbody tr:first-child th, .woocommerce-tabs table tbody tr:first-child td {
padding-top: 20px; } }
.woocommerce-tabs table tbody tr:last-child th, .woocommerce-tabs table tbody tr:last-child td {
padding-bottom: 50px; }
@media screen and (max-width: 767px) {
.woocommerce-tabs table tbody tr:last-child th, .woocommerce-tabs table tbody tr:last-child td {
padding-bottom: 20px; } }
.woocommerce-tabs table.shop_attributes tbody tr:first-child th, .woocommerce-tabs table.shop_attributes tbody tr:first-child td {
padding-top: 15px !important; }
.woocommerce-tabs table.shop_attributes tbody tr:last-child th, .woocommerce-tabs table.shop_attributes tbody tr:last-child td {
padding-bottom: 15px !important; }
.woocommerce-tabs .woocommerce-Tabs-panel--reviews {
margin-top: 35px; }
.woocommerce-tabs table.shop_attributes tbody th, .woocommerce-tabs table.shop_attributes tbody td {
padding: 15px 0; }
.woocommerce-tabs table.shop_attributes tbody th p, .woocommerce-tabs table.shop_attributes tbody td p {
margin-bottom: 0; }
.product-navigation .nav-links a {
max-width: 150px;
min-width: 120px;
padding: 15px 20px;
border: 1px solid transparent; }
.product-navigation .nav-links a:hover {
border: 1px solid ;
background: #fff;
color: ; }
.product-navigation .nav-links .pro-prev {
margin-right: 3px; }
.woocommerce-Reviews .woocommerce-Reviews-title {
margin-bottom: 20px; }
.woocommerce-Reviews ol.commentlist {
padding-left: 0;
margin-bottom: 30px;
list-style: none; }
.woocommerce-Reviews ol.commentlist li .comment_container {
margin: 0 0 40px 41px;
padding: 30px;
background: #f5f5f5;
position: relative; }
.woocommerce-Reviews ol.commentlist li .comment_container > img {
float: left;
margin: 0 0 20px -75px;
border: 4px solid #fff;
width: 90px;
border-radius: 50%; }
.woocommerce-Reviews ol.commentlist li .comment_container .comment-text {
overflow: hidden;
padding: 0 0 0 22px; }
.woocommerce-Reviews ol.commentlist li .comment_container .comment-text .comment-meta-wrap {
margin: 17px 0 0 0; }
@media (min-width: 480px) {
.woocommerce-Reviews ol.commentlist li .comment_container .comment-text .comment-meta-wrap {
text-align: right;
margin: 17px 0 20px 0; } }
.woocommerce-Reviews ol.commentlist li .comment_container .comment-text .meta {
margin: 0 20px 0 0;
text-align: left; }
@media (min-width: 480px) {
.woocommerce-Reviews ol.commentlist li .comment_container .comment-text .meta {
display: inline-block;
float: left; } }
.woocommerce-Reviews ol.commentlist li .comment_container .comment-text .description {
font-size: 15px;
line-height: 24px;
letter-spacing: 0.03em;
color: #555;
padding-top: 5px; }
.woocommerce-Reviews ol.commentlist li .comment_container .comment-text .woocommerce-review__author {
color: #82d10c;
font-size: 18px; }
.woocommerce-Reviews ol.commentlist li .comment_container .comment-text .woocommerce-review__dash {
display: none; }
.woocommerce-Reviews ol.commentlist li .comment_container .comment-text .woocommerce-review__published-date {
display: block;
font-size: 13px;
color: #999;
margin-top: 6px;
line-height: 1; }
.woocommerce-Reviews .comment-reply-title {
font-size: 18px;
color: #323232;
margin-bottom: 18px;
font-weight: 700;
margin-top: 0;
display: block; }
.woocommerce-Reviews .comment-form {
overflow: auto; }
.woocommerce-Reviews .comment-form .row {
margin: 0 -5px; }
.woocommerce-Reviews .comment-form .row > div {
padding: 0 5px; }
.woocommerce-Reviews .comment-form-rating span {
float: left;
font-size: 11px;
letter-spacing: 0.03em;
color: #888;
margin-right: 10px; }
.woocommerce-Reviews .form-submit .submit {
text-transform: uppercase;
padding: 10px 20px;
font-family: inherit;
font-weight: 700;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s;
color: #fff;
background: #82d10c;
border: 1px solid transparent; }
.woocommerce-Reviews .form-submit .submit:hover, .woocommerce-Reviews .form-submit .submit:active, .woocommerce-Reviews .form-submit .submit:focus, .woocommerce-Reviews .form-submit .submit:active:hover {
background: #0c0d12;
border: 1px solid transparent;
color: #fff; }
.entry-content .woocommerce-message {
padding: 10px 30px; }
.wc-backward {
padding: 10px 20px; }
.woocommerce-cart .woocommerce-message {
border-top-color: #82d10c; }
.woocommerce-cart .woocommerce-message:before {
color: #82d10c; }
.woocommerce-cart .cart-empty {
padding: 0 30px 0 30px; }
.woocommerce-cart .return-to-shop {
padding: 0 30px 20px 30px; }
.woocommerce-cart table.cart {
border: 0;
border-radius: 0;
margin-top: 0;
margin-bottom: 40px; }
.woocommerce-cart table.cart tr:hover {
background: #f9f9f9; }
.woocommerce-cart table.cart th, .woocommerce-cart table.cart td {
border: 1px solid #f2f2f2; }
.woocommerce-cart table.cart th.product-price, .woocommerce-cart table.cart td.product-price {
display: table-cell;
font-family: inherit;
background: transparent; }
.woocommerce-cart table.cart th {
padding: 15px;
vertical-align: middle;
text-align: left;
letter-spacing: 0.05em;
font-size: 13px;
font-weight: 700;
border-color: #ddd;
color: #82d10c; }
.woocommerce-cart table.cart td {
border-top-color: transparent;
border-bottom: 1px solid #f2f2f2;
padding: 18px 15px;
vertical-align: middle; }
.woocommerce-cart table.cart td, .woocommerce-cart table.cart td a {
font-size: 15px;
color: #666; }
.woocommerce-cart table.cart .product-remove {
text-align: center; }
@media screen and (min-width: 992px) {
.woocommerce-cart table.cart .product-remove {
width: 95px; } }
.woocommerce-cart table.cart .product-remove a {
color: #444;
background: transparent;
display: inline-block; }
.woocommerce-cart table.cart .product-remove a:hover {
color: #82d10c; }
.woocommerce-cart table.cart td.product-thumbnail {
text-align: center;
width: 120px; }
.woocommerce-cart table.cart td.product-thumbnail img {
padding: 0;
width: 80px; }
@media screen and (min-width: 992px) {
.woocommerce-cart table.cart td.product-name {
width: 33%; } }
.woocommerce-cart table.cart td.product-name .woocommerce-product-rating {
margin-bottom: 8px; }
.woocommerce-cart table.cart td.product-name .star-rating {
font-size: 11px;
color: #ffca28;
width: 62px;
height: 15px; }
.woocommerce-cart table.cart td.product-name dl.variation dd, .woocommerce-cart table.cart td.product-name dl.variation dt {
margin: 0;
padding: 0;
display: inline-block; }
.woocommerce-cart table.cart td.product-name dl.variation dd p, .woocommerce-cart table.cart td.product-name dl.variation dt p {
line-height: 22px; }
.woocommerce-cart table.cart .product-subtotal span {
color: #a94442; }
.woocommerce-cart table.cart .quantity {
padding-right: 0; }
.woocommerce-cart table.cart .quantity .qty {
background: #fff;
width: 100px;
height: 50px;
font-weight: 500;
float: none;
border: 3px solid #f2f2f2;
border-radius: 3px;
display: inline-block;
padding: 8px 12px; }
.woocommerce-cart table.cart .quantity .plus, .woocommerce-cart table.cart .quantity .minus {
width: 30px;
height: 50px;
font-size: 22px;
font-weight: 500;
background-color: #eee;
color: #666;
border: 1px solid #ddd; }
.woocommerce-cart table.cart .quantity .plus:focus, .woocommerce-cart table.cart .quantity .minus:focus {
outline: none; }
.woocommerce-cart table.cart .quantity .minus {
top: 0;
left: 0; }
.woocommerce-cart table.cart .quantity .plus {
top: 0;
right: 0;
border-bottom: 1px solid #ddd; }
.woocommerce-cart table.cart thead tr {
background: #fff; }
.woocommerce-cart table.cart thead tr:hover {
background-color: #fff; }
.woocommerce-cart table.cart tbody tr:last-child {
background: #fff;
border-bottom: 1px solid #666; }
.woocommerce-cart table.cart td.actions {
padding: 30px 15px 25px;
position: relative; }
.woocommerce-cart table.cart td.actions a:after {
content: "\f178"; }
.woocommerce-cart table.cart td.actions input {
background-color: #0c0d12;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.woocommerce-cart table.cart td.actions input:hover, .woocommerce-cart table.cart td.actions input:focus {
background-color: #82d10c !important; }
.woocommerce-cart table.cart td.actions a, .woocommerce-cart table.cart td.actions input {
margin-bottom: 15px;
color: #fff; }
@media (max-width: 767px) {
.woocommerce-cart table.cart .coupon-cart {
text-align: center !important; } }
.woocommerce-cart table.cart .coupon-cart input.coupon-code {
width: 600px;
margin: 0 auto 10px; }
@media (max-width: 767px) {
.woocommerce-cart table.cart .coupon-cart input.coupon-code {
width: 100%; } }
@media screen and (max-width: 767px) {
.woocommerce-cart table.cart thead {
display: none; }
.woocommerce-cart table.cart tbody tr {
display: block; }
.woocommerce-cart table.cart tbody tr:last-child {
display: table-row; }
.woocommerce-cart table.cart tbody tr:last-child td:before {
content: none; }
.woocommerce-cart table.cart tbody td {
border-top: 0;
display: block !important;
text-align: right !important;
padding: 10px 15px; }
.woocommerce-cart table.cart tbody td.product-remove {
border-top: 1px solid #eee; }
.woocommerce-cart table.cart tbody td.actions:before {
content: none; }
.woocommerce-cart table.cart tbody td:before {
content: attr(data-title) ": ";
font-weight: 700;
float: left; }
.woocommerce-cart table.cart tbody td.product-remove:before, .woocommerce-cart table.cart tbody td.product-thumbnail:before {
content: none; }
.woocommerce-cart table.cart tbody td.product-thumbnail {
width: 100%; }
.woocommerce-cart table.cart tbody td.product-thumbnail a {
display: block;
text-align: center; }
.woocommerce-cart .cart_item {
margin-bottom: 15px; } }
.woocommerce-cart .shipping-calculator-form {
display: block; }
.woocommerce-cart .cart-totals {
margin-bottom: 30px; }
.woocommerce-cart .cart-collaterals {
background: #fff none repeat scroll 0 0;
border: 1px solid #ccc;
border-radius: 6px;
padding-right: 20px;
padding-left: 20px;
padding-top: 25px;
padding-bottom: 30px;
text-align: center; }
@media (min-width: 768px) {
.woocommerce-cart .cart-collaterals {
padding-top: 43px;
padding-bottom: 48px;
padding-right: 60px;
padding-left: 60px; } }
.woocommerce-cart .cart-collaterals a.button {
font-size: 12px;
font-weight: 700;
padding: 11px 34px;
border-radius: 3px;
margin-top: 5px; }
.woocommerce-cart .cart-collaterals table {
margin: 0; }
.woocommerce-cart .cart-collaterals table th, .woocommerce-cart .cart-collaterals table td {
border: none;
padding: 0 0 10px 0;
vertical-align: middle;
text-align: center;
font-size: 19px;
font-weight: 400; }
.woocommerce-cart .cart-collaterals table .order-total span {
font-weight: 800; }
.woocommerce-form__label input {
top: -3px; }
@media (max-width: 479px) {
.shipping th, .shipping td {
display: block; } }
.shipping ul {
padding-left: 0;
list-style: none; }
@media (max-width: 479px) {
.shipping ul {
text-align: left; } }
.shipping ul li {
padding-left: 0 !important; }
.shipping ul li:before {
content: none !important; }
.cart_totals {
margin-bottom: -30px; }
.cart_totals .btn {
font-weight: 700;
font-family: inherit; }
.cart-shipping {
padding-bottom: 12px; }
.cart-shipping .shipping-calculator-button {
font-family: "Open Sans";
padding: 11px 34px;
font-weight: 700;
border-radius: 3px;
font-size: 12px;
text-transform: uppercase;
border: 1px solid #0c0d12;
color: #fff;
background: #0c0d12;
-webkit-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s; }
.cart-shipping .shipping-calculator-button:hover, .cart-shipping .shipping-calculator-button:focus {
border: 1px solid #82d10c;
color: #fff;
background: #82d10c; }
.woocommerce-checkout .woocommerce-message {
border-top-color: #82d10c; }
.woocommerce-checkout .woocommerce-message:before {
color: #82d10c; }
.woocommerce-checkout .woocommerce-info {
font-style: 14px;
color: #484848;
padding-bottom: 10px; }
.woocommerce-checkout .woocommerce-info a {
color: #0081ff; }
.woocommerce-checkout .woocommerce-info a:hover {
color: #82d10c; }
.woocommerce-checkout form.checkout {
margin-top: 50px; }
.woocommerce-checkout form.checkout h3 {
font-size: 20px;
text-transform: capitalize;
color: #444; }
.woocommerce-checkout form.checkout .select2-container .select2-choice, .woocommerce-checkout form.checkout .select2-container .select2-selection {
height: 50px !important;
padding: 10px 12px !important;
border-color: transparent;
background: #fbfbfb;
padding-left: 15px !important;
border: 1px solid #ddd;
border-radius: 2px; }
.woocommerce-checkout form.checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
color: #888;
font-size: 13px;
padding-left: 0; }
.woocommerce-checkout form.checkout .select2-container--open.select2-container .select2-selection {
border-color: #82d10c; }
.woocommerce-checkout form.checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
height: 48px;
width: 50px; }
.woocommerce-checkout form.checkout .col2-set .col-2 {
margin-top: 30px;
margin-bottom: 30px; }
.woocommerce-shipping-fields h3 {
position: relative; }
.woocommerce-shipping-fields h3 label {
margin: 0; }
.woocommerce-shipping-fields h3 input[type="checkbox"] {
position: absolute;
right: 0px;
top: -3px; }
@media screen and (max-width: 479px) {
.woocommerce-shipping-fields h3 input[type="checkbox"] {
position: relative;
right: auto;
top: 0;
left: 0;
margin: 0; } }
.woocommerce-checkout-review-order {
padding: 0 50px 25px;
margin-bottom: 30px;
border: 1px solid #ddd; }
@media screen and (max-width: 767px) {
.woocommerce-checkout-review-order {
padding: 0 15px 30px 15px; } }
.woocommerce-checkout-review-order table {
border-color: transparent;
margin: 0 0 40px 0;
border-radius: 0; }
.woocommerce-checkout-review-order table th {
text-align: left; }
.woocommerce-checkout-review-order table thead th {
font-size: 18px;
padding: 23px 0;
text-transform: uppercase;
border: 0; }
.woocommerce-checkout-review-order table thead .product-total {
text-align: right; }
.woocommerce-checkout-review-order table tbody {
border-bottom: 1px solid #ddd; }
.woocommerce-checkout-review-order table tbody td {
padding: 5px 0 10px;
font-size: 16px;
border: 0;
text-align: left; }
.woocommerce-checkout-review-order table tbody td + td {
text-align: right; }
.woocommerce-checkout-review-order table tbody td.product-name dl.variation dd, .woocommerce-checkout-review-order table tbody td.product-name dl.variation dt {
float: none;
margin-bottom: 0;
padding-bottom: 0; }
.woocommerce-checkout-review-order table tfoot th, .woocommerce-checkout-review-order table tfoot td {
border: 0;
font-size: 14px;
font-weight: 700;
padding: 7px 0; }
.woocommerce-checkout-review-order table tfoot td {
text-align: right; }
.woocommerce-checkout-review-order table tfoot tr.cart-subtotal td span {
font-weight: 700; }
.woocommerce-checkout-review-order table tfoot tr.cart-discount a.woocommerce-remove-coupon {
font-weight: 500;
font-size: 15px; }
.woocommerce-checkout-review-order table tfoot ul {
padding-left: 0;
list-style: none; }
.woocommerce-checkout-review-order table tfoot tr.order-total th, .woocommerce-checkout-review-order table tfoot tr.order-total td {
font-size: 14px;
font-weight: 700;
text-transform: uppercase;
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
padding-top: 15px;
padding-bottom: 15px; }
.woocommerce-checkout-payment {
background: transparent; }
.woocommerce-checkout-payment ul {
padding: 0;
list-style: none; }
.woocommerce-checkout-payment ul li {
padding-left: 0 !important; }
.woocommerce-checkout-payment ul li:before {
content: none !important; }
.woocommerce-checkout-payment ul li input {
margin: 4px 15px 0 0;
float: left; }
.woocommerce-checkout-payment ul li label {
font-size: 13px;
letter-spacing: 0.03em;
font-weight: 700;
margin-bottom: 10px;
-webkit-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s; }
.woocommerce-checkout-payment ul li label:hover {
cursor: pointer;
color: #82d10c; }
.woocommerce-checkout-payment ul li.active {
background: #444;
border-color: transparent;
border: 0; }
.woocommerce-checkout-payment .payment_box {
background-color: transparent;
margin: 0;
text-align: left;
font-size: 13px; }
.woocommerce-checkout-payment .payment_box p {
line-height: 24px; }
.woocommerce-checkout-payment .payment_box:before {
content: none; }
.woocommerce-checkout-payment .payment_method_paypal img, .woocommerce-checkout-payment .payment_method_paypal a {
display: none; }
.woocommerce-checkout-payment .place-order {
margin: 0; }
.woocommerce-checkout-payment .place-order input[type="submit"] {
float: none;
margin-top: 15px;
padding: 10px 20px; }
.woocommerce-order .order_details {
padding-left: 0; }
.woocommerce-order .order_details li {
border-bottom: 1px solid #f2f2f2;
border-right: medium none;
display: block;
float: none;
line-height: 38px;
margin-right: 0;
width: 100%; }
.woocommerce-order .order_details li strong {
float: right; }
.woocommerce-order .woocommerce-order-details {
margin-top: 50px; }
.woocommerce-order table.shop_table thead th {
border-color: #f2f2f2;
font-size: 13px;
letter-spacing: 0.03em;
font-weight: 700;
text-transform: uppercase;
padding: 13px 15px; }
.woocommerce-order table.shop_table tbody th, .woocommerce-order table.shop_table tfoot th, .woocommerce-order table.shop_table tbody td, .woocommerce-order table.shop_table tfoot td {
border-color: #f2f2f2;
padding: 13px 15px;
font-size: 13px;
letter-spacing: 0.03em; }
.woocommerce-order .woocommerce-customer-details {
margin-top: 50px; }
.woocommerce-order .woocommerce-column--shipping-address {
margin-top: 50px; }
.woocommerce-cart-form { }
.woocommerce-cart-form table a.button, .woocommerce-cart-form table input.button {
font-size: 12px !important;
font-weight: 700;
border-radius: 3px;
padding: 11px 35px; }
.woocommerce-account .site-main {
margin-bottom: 30px;
background-color: #fff; }
.woocommerce-account .woocommerce-MyAccount-navigation {
margin-bottom: 20px; }
.woocommerce-account .woocommerce-MyAccount-navigation ul {
list-style: none;
padding: 0; }
.woocommerce-account .woocommerce-MyAccount-content th {
font-weight: 700;
text-transform: uppercase; }
@media (max-width: 600px) {
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table thead {
display: none; }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr {
display: block;
margin-bottom: 15px; }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td {
display: block;
text-align: right !important; }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td:before {
content: attr(data-title) ": ";
font-weight: 700;
float: left; }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td + td {
border-top: none; } }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset {
margin-bottom: 30px; }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .woocommerce-address-fields__field-wrapper {
margin-bottom: 30px; }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .woocommerce-address-fields__field-wrapper .select2-selection--single {
padding: 7px 12px !important;
border-color: transparent;
background: #fbfbfb;
padding-left: 5px !important;
border: 1px solid #ddd;
border-radius: 2px; }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .woocommerce-address-fields__field-wrapper .select2-selection--single .select2-selection__rendered {
color: #0081ff;
font-size: 13px; }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .woocommerce-address-fields__field-wrapper .select2-selection--single .select2-selection__arrow {
top: 8px; }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message {
padding: 0; }
.woocommerce-account .woocommerce-MyAccount-content a.button {
margin-right: 10px; }
.woocommerce-account .woocommerce-MyAccount-content h3 {
font-size: 15px;
text-transform: uppercase;
margin-bottom: 10px; }
.woocommerce-account .woocommerce-MyAccount-content address {
margin: 0; }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address {
margin-bottom: 20px; }
.woocommerce-account h2 {
display: block;
font-size: 16px;
font-weight: 700;
margin-bottom: 30px;
padding-bottom: 0;
margin-top: 0;
padding-top: 0; }
.woocommerce-account input[type="text"], .woocommerce-account input[type="password"] {
background-image: none;
border: 1px solid #ddd !important;
border-radius: 0;
box-shadow: none !important;
color: #1a1a1a;
display: block;
font-size: 14px !important;
width: 100% !important;
line-height: 24px !important;
padding: 8px 12px;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out; }
.woocommerce-account input[type="text"]:focus, .woocommerce-account input[type="password"]:focus {
outline: 0;
border-color: #82d10c !important; }
.woocommerce-account form.login {
border: 0;
padding: 0;
margin: 0;
margin-top: 30px;
border-radius: 0; }
.woocommerce-account form.login label {
display: block;
line-height: 1;
font-size: 14px;
margin-bottom: 15px;
width: 100%;
font-weight: 400;
margin-top: 15px; }
.woocommerce-account form.login label input {
padding-top: 5px; }
.woocommerce-account form.login .form-row {
padding: 0;
margin: 20px 0; }
.ef4-gtb-block {
max-width: 610px;
margin-right: auto;
margin-left: auto; }
.ef4-gtb-block.align-wide {
max-width: 1100px; }
.ef4-gtb-block.align-full {
margin-left: calc(-100vw / 2 + 100% / 2);
margin-right: calc(-100vw / 2 + 100% / 2);
max-width: 100vw; }
.ef4-gtb-block.align-full img {
width: 100vw; }
.ef4-gtb-block .alignleft {
float: left;
margin: 0 30px 30px 0; }
[dir="rtl"] .ef4-gtb-block .alignleft {
float: right;
margin: 0 0 30px 30px; }
.ef4-gtb-block .alignright {
float: right;
margin: 0 0 30px 30px; }
[dir="rtl"] .ef4-gtb-block .alignright {
float: left;
margin: 0 30px 30px 0; }
.ef4-gtb-block.ef4-block-separator {
display: block;
clear: both; }
.ef4-gtb-block .blockquote, .ef4-gtb-block blockquote {
margin-top: 0;
padding: 0; }
.ef4-gtb-block .blockquote:before, .ef4-gtb-block blockquote:before {
display: none; }
.ef4-gtb-block.wp-block-paragraph p {
margin-bottom: 30px; }
.ef4-gtb-block.wp-block-latest-posts, .ef4-gtb-block.wp-block-categories, .ef4-gtb-block.wp-block-archives, .ef4-gtb-block.ef4-block-pullquote {
margin-bottom: 30px; }
.alignwide {
max-width: 1100px; }
ul.wp-block-gallery {
padding-left: 0;
padding-right: 0; }
.wp-block-heading > * {
margin-bottom: 30px; }
.wp-block-column .ef4-gtb-block {
max-width: 100%; }
.ef4-gtb-block + .page-links.clearfix{
max-width: 610px;
margin-right: auto;
margin-left: auto;
clear: both;
}