@charset "utf-8";
@charset "utf-8";
@charset "UTF-8";
@charset "UTF-8";

 .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
.animated.flipOutX,
.animated.flipOutY {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
@keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
@-webkit-keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
@keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
-webkit-animation-name: jello;
animation-name: jello;
-webkit-transform-origin: center;
transform-origin: center;
}
@-webkit-keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) 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 {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
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: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
@keyframes hinge {
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: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}

@font-face {
font-family: "linea-basic-10";
src:url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/fonts/linea-basic-10.eot);
src:url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/fonts/linea-basic-10.eot?#iefix) format("embedded-opentype"),
url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/fonts/linea-basic-10.woff) format("woff"),
url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/fonts/linea-basic-10.ttf) format("truetype"),
url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/fonts/linea-basic-10.svg#linea-basic-10) format("svg");
font-weight: normal;
font-style: normal;
}
[data-icon]:before {
font-family: "linea-basic-10" !important;
content: attr(data-icon);
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;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
font-family: "linea-basic-10" !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-basic-accelerator:before {
content: "a";
}
.icon-basic-alarm:before {
content: "b";
}
.icon-basic-anchor:before {
content: "c";
}
.icon-basic-anticlockwise:before {
content: "d";
}
.icon-basic-archive:before {
content: "e";
}
.icon-basic-archive-full:before {
content: "f";
}
.icon-basic-ban:before {
content: "g";
}
.icon-basic-battery-charge:before {
content: "h";
}
.icon-basic-battery-empty:before {
content: "i";
}
.icon-basic-battery-full:before {
content: "j";
}
.icon-basic-battery-half:before {
content: "k";
}
.icon-basic-bolt:before {
content: "l";
}
.icon-basic-book:before {
content: "m";
}
.icon-basic-book-pen:before {
content: "n";
}
.icon-basic-book-pencil:before {
content: "o";
}
.icon-basic-bookmark:before {
content: "p";
}
.icon-basic-calculator:before {
content: "q";
}
.icon-basic-calendar:before {
content: "r";
}
.icon-basic-cards-diamonds:before {
content: "s";
}
.icon-basic-cards-hearts:before {
content: "t";
}
.icon-basic-case:before {
content: "u";
}
.icon-basic-chronometer:before {
content: "v";
}
.icon-basic-clessidre:before {
content: "w";
}
.icon-basic-clock:before {
content: "x";
}
.icon-basic-clockwise:before {
content: "y";
}
.icon-basic-cloud:before {
content: "z";
}
.icon-basic-clubs:before {
content: "A";
}
.icon-basic-compass:before {
content: "B";
}
.icon-basic-cup:before {
content: "C";
}
.icon-basic-diamonds:before {
content: "D";
}
.icon-basic-display:before {
content: "E";
}
.icon-basic-download:before {
content: "F";
}
.icon-basic-exclamation:before {
content: "G";
}
.icon-basic-eye:before {
content: "H";
}
.icon-basic-eye-closed:before {
content: "I";
}
.icon-basic-female:before {
content: "J";
}
.icon-basic-flag1:before {
content: "K";
}
.icon-basic-flag2:before {
content: "L";
}
.icon-basic-floppydisk:before {
content: "M";
}
.icon-basic-folder:before {
content: "N";
}
.icon-basic-folder-multiple:before {
content: "O";
}
.icon-basic-gear:before {
content: "P";
}
.icon-basic-geolocalize-01:before {
content: "Q";
}
.icon-basic-geolocalize-05:before {
content: "R";
}
.icon-basic-globe:before {
content: "S";
}
.icon-basic-gunsight:before {
content: "T";
}
.icon-basic-hammer:before {
content: "U";
}
.icon-basic-headset:before {
content: "V";
}
.icon-basic-heart:before {
content: "W";
}
.icon-basic-heart-broken:before {
content: "X";
}
.icon-basic-helm:before {
content: "Y";
}
.icon-basic-home:before {
content: "Z";
}
.icon-basic-info:before {
content: "0";
}
.icon-basic-ipod:before {
content: "1";
}
.icon-basic-joypad:before {
content: "2";
}
.icon-basic-key:before {
content: "3";
}
.icon-basic-keyboard:before {
content: "4";
}
.icon-basic-laptop:before {
content: "5";
}
.icon-basic-life-buoy:before {
content: "6";
}
.icon-basic-lightbulb:before {
content: "7";
}
.icon-basic-link:before {
content: "8";
}
.icon-basic-lock:before {
content: "9";
}
.icon-basic-lock-open:before {
content: "!";
}
.icon-basic-magic-mouse:before {
content: "\"";
}
.icon-basic-magnifier:before {
content: "#";
}
.icon-basic-magnifier-minus:before {
content: "$";
}
.icon-basic-magnifier-plus:before {
content: "%";
}
.icon-basic-mail:before {
content: "&";
}
.icon-basic-mail-multiple:before {
content: "'";
}
.icon-basic-mail-open:before {
content: "(";
}
.icon-basic-mail-open-text:before {
content: ")";
}
.icon-basic-male:before {
content: "*";
}
.icon-basic-map:before {
content: "+";
}
.icon-basic-message:before {
content: ",";
}
.icon-basic-message-multiple:before {
content: "-";
}
.icon-basic-message-txt:before {
content: ".";
}
.icon-basic-mixer2:before {
content: "/";
}
.icon-basic-mouse:before {
content: ":";
}
.icon-basic-notebook:before {
content: ";";
}
.icon-basic-notebook-pen:before {
content: "<";
}
.icon-basic-notebook-pencil:before {
content: "=";
}
.icon-basic-paperplane:before {
content: ">";
}
.icon-basic-pencil-ruler:before {
content: "?";
}
.icon-basic-pencil-ruler-pen:before {
content: "@";
}
.icon-basic-photo:before {
content: "[";
}
.icon-basic-picture:before {
content: "]";
}
.icon-basic-picture-multiple:before {
content: "^";
}
.icon-basic-pin1:before {
content: "_";
}
.icon-basic-pin2:before {
content: "`";
}
.icon-basic-postcard:before {
content: "{";
}
.icon-basic-postcard-multiple:before {
content: "|";
}
.icon-basic-printer:before {
content: "}";
}
.icon-basic-question:before {
content: "~";
}
.icon-basic-rss:before {
content: "\\";
}
.icon-basic-server:before {
content: "\e000";
}
.icon-basic-server2:before {
content: "\e001";
}
.icon-basic-server-cloud:before {
content: "\e002";
}
.icon-basic-server-download:before {
content: "\e003";
}
.icon-basic-server-upload:before {
content: "\e004";
}
.icon-basic-settings:before {
content: "\e005";
}
.icon-basic-share:before {
content: "\e006";
}
.icon-basic-sheet:before {
content: "\e007";
}
.icon-basic-sheet-multiple:before {
content: "\e008";
}
.icon-basic-sheet-pen:before {
content: "\e009";
}
.icon-basic-sheet-pencil:before {
content: "\e00a";
}
.icon-basic-sheet-txt:before {
content: "\e00b";
}
.icon-basic-signs:before {
content: "\e00c";
}
.icon-basic-smartphone:before {
content: "\e00d";
}
.icon-basic-spades:before {
content: "\e00e";
}
.icon-basic-spread:before {
content: "\e00f";
}
.icon-basic-spread-bookmark:before {
content: "\e010";
}
.icon-basic-spread-text:before {
content: "\e011";
}
.icon-basic-spread-text-bookmark:before {
content: "\e012";
}
.icon-basic-star:before {
content: "\e013";
}
.icon-basic-tablet:before {
content: "\e014";
}
.icon-basic-target:before {
content: "\e015";
}
.icon-basic-todo:before {
content: "\e016";
}
.icon-basic-todo-pen:before {
content: "\e017";
}
.icon-basic-todo-pencil:before {
content: "\e018";
}
.icon-basic-todo-txt:before {
content: "\e019";
}
.icon-basic-todolist-pen:before {
content: "\e01a";
}
.icon-basic-todolist-pencil:before {
content: "\e01b";
}
.icon-basic-trashcan:before {
content: "\e01c";
}
.icon-basic-trashcan-full:before {
content: "\e01d";
}
.icon-basic-trashcan-refresh:before {
content: "\e01e";
}
.icon-basic-trashcan-remove:before {
content: "\e01f";
}
.icon-basic-upload:before {
content: "\e020";
}
.icon-basic-usb:before {
content: "\e021";
}
.icon-basic-video:before {
content: "\e022";
}
.icon-basic-watch:before {
content: "\e023";
}
.icon-basic-webpage:before {
content: "\e024";
}
.icon-basic-webpage-img-txt:before {
content: "\e025";
}
.icon-basic-webpage-multiple:before {
content: "\e026";
}
.icon-basic-webpage-txt:before {
content: "\e027";
}
.icon-basic-world:before {
content: "\e028";
}@font-face {
font-family: "Flaticon";
src: url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/fonts/Flaticon.eot);
src: url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/fonts/Flaticon.eot?#iefix) format("embedded-opentype"),
url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/fonts/Flaticon.woff) format("woff"),
url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/fonts/Flaticon.ttf) format("truetype"),
url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/fonts/Flaticon.svg#Flaticon) format("svg");
font-weight: normal;
font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: "Flaticon";
src: url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/fonts/.svg#Flaticon) format("svg");
}
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
font-family: Flaticon;
font-style: normal;
}
.flaticon-tool-2:before { content: "\f100"; }
.flaticon-ribbon:before { content: "\f101"; }
.flaticon-school-1:before { content: "\f102"; }
.flaticon-graduation:before { content: "\f103"; }
.flaticon-school:before { content: "\f104"; }
.flaticon-document:before { content: "\f105"; }
.flaticon-book-1:before { content: "\f106"; }
.flaticon-tool-1:before { content: "\f107"; }
.flaticon-tool:before { content: "\f108"; }
.flaticon-book:before { content: "\f109"; }
.flaticon-people:before { content: "\f10a"; }
.flaticon-diploma:before { content: "\f10b"; }.owl-carousel {
display: none;
width: 100%;
-webkit-tap-highlight-color: transparent; position: relative;
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(0px, 0px, 0px); }
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
-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 {
position: relative;
min-height: 1px;
float: left;
-webkit-backface-visibility: hidden;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none; }
.owl-carousel .owl-item img {
display: block;
width: 100%; }
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
display: none; }
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
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-loaded {
display: block; }
.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; } .no-js .owl-carousel {
display: block; } .owl-carousel .animated {
animation-duration: 1000ms;
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 500ms ease-in-out; } .owl-carousel .owl-item .owl-lazy {
opacity: 0;
transition: opacity 400ms ease; }
.owl-carousel .owl-item img.owl-lazy {
transform-style: preserve-3d; } .owl-carousel .owl-video-wrapper {
position: relative;
height: 100%;
background: #000; }
.owl-carousel .owl-video-play-icon {
position: absolute;
height: 80px;
width: 80px;
left: 50%;
top: 50%;
margin-left: -40px;
margin-top: -40px;
background: url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/css/owl.video.play.png) no-repeat;
cursor: pointer;
z-index: 1;
-webkit-backface-visibility: hidden;
transition: transform 100ms 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-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
display: none; }
.owl-carousel .owl-video-tn {
opacity: 0;
height: 100%;
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
transition: opacity 400ms ease; }
.owl-carousel .owl-video-frame {
position: relative;
z-index: 1;
height: 100%;
width: 100%; }.slick-slider
{
position: relative;
display: block;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
-khtml-user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}
.slick-list
{
position: relative;
display: block;
overflow: hidden;
margin: 0;
padding: 0;
}
.slick-list:focus
{
outline: none;
}
.slick-list.dragging
{
cursor: pointer;
cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list
{
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-track
{
position: relative;
top: 0;
left: 0;
display: block;
}
.slick-track:before,
.slick-track:after
{
display: table;
content: '';
}
.slick-track:after
{
clear: both;
}
.slick-loading .slick-track
{
visibility: hidden;
}
.slick-slide
{
display: none;
float: left;
height: 100%;
min-height: 1px;
}
[dir='rtl'] .slick-slide
{
float: right;
}
.slick-slide img
{
display: block;
}
.slick-slide.slick-loading img
{
display: none;
}
.slick-slide.dragging img
{
pointer-events: none;
}
.slick-initialized .slick-slide
{
display: block;
}
.slick-loading .slick-slide
{
visibility: hidden;
}
.slick-vertical .slick-slide
{
display: block;
height: auto;
border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
display: none;
}.mfp-bg {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1042;
overflow: hidden;
position: fixed;
background: #0b0b0b;
opacity: 0.8; }
.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;
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;
box-shadow: none;
touch-action: manipulation; }
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;
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; }
.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;
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; }
.mfp-arrow:before,
.mfp-arrow:after {
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 {
border-top-width: 13px;
border-bottom-width: 13px;
top: 8px; }
.mfp-arrow:before {
border-top-width: 21px;
border-bottom-width: 21px;
opacity: 0.7; }
.mfp-arrow-left {
left: 0; }
.mfp-arrow-left:after {
border-right: 17px solid #FFF;
margin-left: 31px; }
.mfp-arrow-left:before {
margin-left: 25px;
border-right: 27px solid #3F3F3F; }
.mfp-arrow-right {
right: 0; }
.mfp-arrow-right:after {
border-left: 17px solid #FFF;
margin-left: 39px; }
.mfp-arrow-right:before {
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;
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;
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; } }
  .menu-area {
padding: 30px 0 0;
}
.mega {
position: static !important;
}
#rs-header .menu-area .navbar ul > li.mega > ul {
width: 100%;
}
#rs-header .menu-area .navbar ul li.mega ul > li {
float: left !important;
}
#rs-header .menu-area .navbar ul li.three-col ul > li {
width: 33.33%;
}
#rs-header .menu-area .navbar ul li.two-col ul > li {
width: 50%;
}
#rs-header .menu-area .navbar ul li.four-col ul > li {
width: 25%;
}
#rs-header .menu-area .navbar ul li.mega ul li ul.sub-menu {
display: block;
width: 100%;
}
#rs-header .menu-area .navbar ul li.mega ul li ul li {
width: 100% !important;
float: none !important;
margin: 0;
}
#rs-header .menu-area .navbar ul li.mega ul li ul li a {
margin: 0 20px !important;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#rs-header .menu-area .navbar ul li.mega ul li ul li:last-child a {
border: none;
}
#rs-header .menu-area .navbar ul li.mega ul li ul li {
border: none;
}
.menu-area .navbar ul li ul li ul.sub-menu {
border: none;
}
.menu-area .navbar ul li.mega {
padding: 0 !important;
}
.menu-area .navbar ul li.mega a {
position: relative;
padding: 0 10px;
}
.menu-area .navbar ul li.mega ul li.menu-item-has-children > a:before {
display: none !important;
}
.rs-blog-details .author-block {
border: none;
background: #ff3115;
color: #505050;
}
.rs-blog-details .author-block .author-desc .author-web:hover {
color: #ff3115 !important;
}
.rs-blog-details .bs-desc {
line-height: 30px;
}
.menu-area .navbar ul li.menu-item-has-children .sub-menu a::before {
right: 10px !important;
top: 6px !important;
}
.menu-area .navbar ul li.left .sub-menu li .sub-menu {
left: -100% !important;
}
#rs-header .menu-area .navbar ul > li.mega > ul > li > a {
font-size: 15px;
text-transform: uppercase;
cursor: auto;
color: #fff !important;
padding: 12px 14px 16px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
position: relative;
margin: 0 20px !important;
}
#rs-header .menu-area .navbar ul > li.mega > ul > li > a:hover {
margin-left: 0;
}
.menu-area .navbar ul li.mega ul.sub-menu li + li {
border: none !important;
}
.toolbar-sl-share {
display: inline-block;
float: right;
}
.toolbar-login-btn {
display: inline-block;
margin-right: 15px;
float: right;
}
.toolbar-login-btn ul {
margin: 0;
}
.toolbar-login-btn ul li {
list-style: none;
}
@media screen and (min-width: 991px) {
.toolbar-sl-share,
.toolbar-login-btn {
float: right;
}
}
#rs-header .toolbar-area {
position: relative;
z-index: 9;
background: #212121;
}
#rs-header .toolbar-area .toolbar-contact ul li i {
color: #ff3115;
}
#rs-header.header-style2 .toolbar-contact-style4 {
position: relative;
top: 10px;
}
#rs-header.header-style2 .toolbar-contact-style4 ul li {
margin-right: 10px;
}
#rs-header.header-style2 .toolbar-contact-style4 ul li:last-child {
margin-right: 0;
}
#rs-header.header-style2 .toolbar-contact-style4 ul li i:before {
margin-left: 16px;
}
#rs-header.header-style2 .sticky_search {
text-align: right;
}
#rs-header.header-style2 .sticky_search .rs-search {
display: inline-block;
height: 60px;
line-height: 60px;
width: 60px;
text-align: center;
background: #ff3115;
color: #fff;
font-size: 19px;
}
#rs-header.header-style2 .sticky_form {
position: absolute;
width: 290px;
right: 15px;
}
#rs-header.header-style2 .sticky_form .menu_search [type="search"] {
border: 1px solid #e5e5e5;
padding: 16px 20px;
outline: none;
border-radius: 35px;
}
#rs-header.header-style2 .sticky_form .menu_search button {
top: 50%;
transform: translateY(-50%);
}
#rs-header.header-style2 .sticky_form .menu_search button i {
font-size: 18px;
}
#rs-header.header-style2 .menu_one {
position: relative;
top: 30px;
z-index: 111;
transition: 0.3s ease;
min-height: 30px;
background: #212121;
}
#rs-header.header-style2 .menu-area .navbar .menu-main-menu-container > ul > li {
height: 60px;
line-height: 60px;
}
#rs-header.header-style2 .menu-area .navbar .menu-main-menu-container > ul > li:first-child {
padding-left: 25px;
}
#rs-header.header-style2 .menu-area .navbar {
padding: 0;
}
#rs-header.header-style2 .menu-area .menu-offcanvas {
margin-right: 15px;
}
#rs-header.header-style2 .menu-area .menu-offcanvas .get-quote {
height: 60px;
line-height: 60px;
text-align: center;
padding: 0 25px;
}
#rs-header.header-style2 .menu-area .menu-offcanvas .get-quote .quote-button {
display: inline-block;
position: relative;
padding-right: 12px;
margin-right: 10px;
line-height: inherit;
}
#rs-header.header-style2 .menu-area .menu-offcanvas .get-quote .quote-button:after {
right: 0;
}
#rs-header.header-style2 .menu-area .menu-offcanvas .get-quote .nav-link-container {
display: inline-block;
line-height: inherit;
}
#rs-header.header-style2 .menu-responsive {
padding-right: 0;
}
#rs-header.header-style2 .menu-offcanvas {
padding-left: 0;
}
#rs-header.header-style2 .sticky .menu-area {
padding: 0;
background: #212121;
}
#rs-header.header-style2 .sticky .menu-middle {
display: none;
}
#rs-header.header-style2 .sticky .menu_one {
top: 0;
}
#rs-header.header-styl-3 {
position: absolute;
}
#rs-header.header-styl-3 .sticky_search {
display: inline-block;
margin-left: 20px;
padding-left: 20px;
border-left: 1px solid #ccc;
line-height: 12px;
}
#rs-header.header-styl-3 .sticky_search.active .rs-search i:before {
content: "\f010";
}
#rs-header.header-styl-3 .toolbar-area {
opacity: 1;
background: transparent;
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
#rs-header.header-styl-3 .sticky_form {
position: absolute;
width: 100%;
max-width: 320px;
right: 0;
}
#rs-header.header-styl-3 .sticky_form .menu_search [type="search"] {
border: 1px solid #e5e5e5;
padding: 16px 20px;
outline: none;
border-radius: 35px;
}
#rs-header.header-styl-3 .sticky_form .menu_search button {
top: 50%;
transform: translateY(-50%);
}
#rs-header.header-styl-3 .sticky_form .menu_search button i {
font-size: 18px;
}
#rs-header.header-styl-3 .rs-breadcrumbs .container {
top: auto;
bottom: 0;
}
#rs-header.header-styl-3 .menu-area {
padding: 0;
background: transparent;
opacity: 1;
}
#rs-header.header-styl-3 .menu-area .logo-area {
padding: 26px 0;
}
#rs-header.header-styl-3 .menu-area .navbar {
padding: 0;
}
#rs-header.header-styl-3 .menu-area .navbar .navbar-menu {
margin-left: auto;
}
#rs-header.header-styl-3 .menu-area .navbar ul {
text-align: right;
}
#rs-header.header-styl-3 .menu-area .navbar ul li {
line-height: 94px;
height: 94px;
}
#rs-header.header-styl-3 .menu-area .navbar ul li a:hover {
color: #ff3115 !important;
}
#rs-header.header-styl-3 .menu-area .navbar ul li ul {
padding-right: 0;
}
#rs-header.header-styl-3 .menu-area .navbar ul li ul li {
height: auto;
}
#rs-header.header-styl-3 .menu-area .navbar .menu > li:last-child {
padding-right: 0;
}
#rs-header.header-styl-3 .menu-area .menu-responsive {
position: relative;
z-index: 9;
}
#rs-header.header-styl-3 .menu-area .menu-responsive .nav-link-container {
position: absolute;
right: 15px;
top: 0;
height: 100%;
line-height: 93px;
}
#rs-header.header-styl-3 .menu-area .menu-responsive .nav-link-container a {
color: #505050;
}
#rs-header.header-styl-3 .menu-area .toggle-btn {
background-color: transparent;
cursor: pointer;
display: inline-block;
margin-left: 25px;
display: none;
}
#rs-header.header-styl-3 .menu-area .toggle-btn .border-icon {
display: block;
height: 2px;
margin-bottom: 5px;
width: 25px;
position: relative;
-webkit-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
background: #ffffff;
z-index: 11;
}
#rs-header.header-styl-3 .menu-area .toggle-btn .border-icon:last-child {
margin-bottom: 0;
}
#rs-header.header-styl-3 .menu-area .toggle-btn:hover .border-icon {
background: #ff3115;
}
#rs-header.header-styl-3 .menu-area .toggle-btn.active {
top: 40px;
}
#rs-header.header-styl-3 .menu-area .toggle-btn.active .border-icon {
background: #ff3115;
}
#rs-header.header-styl-3 .menu-area .toggle-btn.active .border-icon:nth-child(1) {
top: 9px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
#rs-header.header-styl-3 .menu-area .toggle-btn.active .border-icon:nth-child(2) {
opacity: 0;
visibility: hidden;
}
#rs-header.header-styl-3 .menu-area .toggle-btn.active .border-icon:nth-child(3) {
top: -5px;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
#rs-header.header-styl-3 .sidebarmenu-area .sticky_search,
#rs-header.header-styl-3 .sidebarmenu-area .nav-link-container {
color: #fff;
}
#rs-header.header-styl-3 .sidebarmenu-area .sticky_search:after {
background: #fff;
}
#rs-header.header-styl-3 .menu-area .navbar ul li.mega a::before {
right: 7px;
}
#rs-header.header-styl-3 .sticky .menu-area {
padding-top: 0;
background: #212121;
}
#rs-header.header-styl-3 .sticky .menu-area .logo-area:not(.sticky-logo) {
display: block !important;
}
#rs-header.header-styl-3 .sticky .menu-area .sticky-logo {
display: none !important;
}
#rs-header.header-styl-3 .sticky .menu-middle {
display: none;
}
#rs-header.header-styl-3 .sticky .menu_one {
top: 0 !important;
}
#rs-header.header-styl-3 .has-quote-text {
display: block;
text-align: right;
}
#rs-header.header-styl-3 .has-quote-text .navbar {
display: inline-block;
}
#rs-header.header-styl-3 .has-quote-text .get-quote {
display: inline-block;
margin-left: 20px;
border-radius: 35px;
}
#rs-header.header-styl-3 .has-quote-text .get-quote .quote-button {
line-height: 43px;
padding: 0 28px;
}
#rs-header .sidebarmenu-area .sticky_search {
padding-right: 15px;
}
#rs-header .sidebarmenu-area .nav-link-container {
padding-left: 8px;
}
#rs-header .sidebarmenu-area .sticky_form {
position: absolute;
top: 100%;
right: 15px;
z-index: 11;
width: 320px;
}
#rs-header .sidebarmenu-area .sticky_form [type="search"] {
padding: 16px 20px;
}
#rs-header .sidebarmenu-area .sticky_form button {
padding: 13px 12px;
font-size: 17px;
}
#rs-header .sidebarmenu-area .sticky_search {
position: relative;
}
#rs-header .sidebarmenu-area .sticky_search:after {
position: absolute;
top: 50%;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
right: 0;
width: 2px;
height: 13px;
background: #444;
content: "";
}
#rs-header .sidebarmenu-area .sticky_search,
#rs-header .sidebarmenu-area .nav-link-container a {
cursor: pointer;
}
#rs-header .sidebarmenu-area .sticky_search:hover,
#rs-header .sidebarmenu-area .nav-link-container a:hover {
color: #ff3115;
}
#rs-header.header-style-4 .logo-area {
text-align: center;
float: none;
}
#rs-header.header-style-4 .menu-area .navbar ul {
text-align: center;
}
#rs-header.header-style-4 .menu-area .navbar ul li > a:hover {
color: #ff3115 !important;
}
#rs-header.header-style-4 .navbar .menu-main-menu-container > ul > li {
height: 55px;
line-height: 55px;
}
#rs-header.header-style-4 .navbar .menu-main-menu-container > ul > li:first-child {
padding-left: 0;
}
#rs-header.header-style-4 .menu-responsive {
position: relative;
z-index: 9;
}
#rs-header.header-style-4 .fullwidth_menu {
margin-top: 27px;
background: #212121;
}
#rs-header.header-style-4 .fullwidth_menu .navbar {
padding: 0;
}
#rs-header.header-style-4 .sidebarmenu-area .sticky_search,
#rs-header.header-style-4 .sidebarmenu-area .nav-link-container {
display: inline-block;
padding: 0;
margin-left: -4px;
}
#rs-header.header-style-4 .sidebarmenu-area .sticky_search a,
#rs-header.header-style-4 .sidebarmenu-area .nav-link-container a {
height: 55px;
line-height: 55px;
display: inline-block;
cursor: pointer;
width: 45px;
text-align: center;
}
#rs-header.header-style-4 .sidebarmenu-area .sticky_search:after,
#rs-header.header-style-4 .sidebarmenu-area .nav-link-container:after {
display: none;
}
#rs-header.header-style-4 .sidebarmenu-area .sticky_search a {
color: #fff;
background: #ff3115;
}
#rs-header.header-style-4 .sidebarmenu-area .sticky_search a:hover {
background: #e41f05;
}
#rs-header.header-style-4 .sidebarmenu-area .nav-link-container a {
color: #fff;
background: #e41f05;
}
#rs-header.header-style-4 .sidebarmenu-area .nav-link-container a:hover {
background: #ff3115;
}
#rs-header.header-styl-5 .menu-area .navbar ul li > a {
color: #212121 !important;
}
#rs-header.header-styl-5 .menu-area .navbar ul li > a:hover {
color: #ff3115 !important;
}
.t-con-inner i {
float: left;
width: 40px;
margin-right: 0;
font-size: 38px;
color: #ff3115;
}
.t-con-inner .contact-inf {
float: left;
text-align: left;
margin-left: 17px;
}
.t-con-inner .contact-inf span {
color: #212121;
display: block;
text-align: left;
font-size: 17px;
padding: 0;
font-weight: 700;
line-height: 17px;
}
.t-con-inner .contact-inf a {
color: #505050;
}
.t-con-inner .contact-inf a:hover {
color: #ff3115;
}
#rs-header.header-style1 .header-inner .toolbar-area {
border: none;
}
#rs-header.style1 .sticky_search,
#rs-header.kids-header .sticky_search {
display: inline-block;
margin-left: 10px;
padding-left: 10px;
line-height: 12px;
}
#rs-header.style1 .sticky_search.active .rs-search i:before,
#rs-header.kids-header .sticky_search.active .rs-search i:before {
content: "\f010";
}
#rs-header.style1 .sticky_form,
#rs-header.kids-header .sticky_form {
position: absolute;
width: 100%;
max-width: 320px;
right: 0;
}
#rs-header.style1 .sticky_form .menu_search [type="search"],
#rs-header.kids-header .sticky_form .menu_search [type="search"] {
border: 1px solid #e5e5e5;
padding: 16px 20px;
outline: none;
border-radius: 35px;
}
#rs-header.style1 .sticky_form .menu_search button,
#rs-header.kids-header .sticky_form .menu_search button {
top: 50%;
transform: translateY(-50%);
}
#rs-header.style1 .sticky_form .menu_search button i,
#rs-header.kids-header .sticky_form .menu_search button i {
font-size: 18px;
}
#rs-header.style1 .rs-breadcrumbs .container,
#rs-header.kids-header .rs-breadcrumbs .container {
top: auto;
bottom: 0;
}
#rs-header.style1 .menu-area,
#rs-header.kids-header .menu-area {
padding: 0;
}
#rs-header.style1 .menu-area .logo-area a,
#rs-header.kids-header .menu-area .logo-area a {
line-height: 98px;
}
#rs-header.style1 .menu-area .navbar,
#rs-header.kids-header .menu-area .navbar {
padding: 0;
}
#rs-header.style1 .menu-area .navbar .navbar-menu,
#rs-header.kids-header .menu-area .navbar .navbar-menu {
margin-left: auto;
}
#rs-header.style1 .menu-area .navbar ul,
#rs-header.kids-header .menu-area .navbar ul {
text-align: right;
}
#rs-header.style1 .menu-area .navbar ul li,
#rs-header.kids-header .menu-area .navbar ul li {
line-height: 99px;
height: 99px;
}
#rs-header.style1 .menu-area .navbar ul li a,
#rs-header.kids-header .menu-area .navbar ul li a {
color: #505050;
}
#rs-header.style1 .menu-area .navbar ul li a:hover,
#rs-header.kids-header .menu-area .navbar ul li a:hover {
color: #ff3115 !important;
}
#rs-header.style1 .menu-area .navbar ul li ul,
#rs-header.kids-header .menu-area .navbar ul li ul {
padding-right: 0;
}
#rs-header.style1 .menu-area .navbar ul li ul li,
#rs-header.kids-header .menu-area .navbar ul li ul li {
height: auto;
}
#rs-header.style1 .menu-area .navbar ul li ul li a,
#rs-header.kids-header .menu-area .navbar ul li ul li a {
color: #bbb;
}
#rs-header.style1 .menu-area .navbar ul li ul li a:hover,
#rs-header.kids-header .menu-area .navbar ul li ul li a:hover {
color: #ff3115;
}
#rs-header.style1 .menu-area .navbar ul li ul li.current_page_item a,
#rs-header.kids-header .menu-area .navbar ul li ul li.current_page_item a {
color: #ff3115;
}
#rs-header.style1 .menu-area .navbar .menu > li:last-child,
#rs-header.kids-header .menu-area .navbar .menu > li:last-child {
padding-right: 0;
}
#rs-header.style1 .menu-area .menu-responsive,
#rs-header.kids-header .menu-area .menu-responsive {
position: relative;
z-index: 9;
display: block;
text-align: right;
}
#rs-header.style1 .menu-area .menu-responsive .navbar,
#rs-header.kids-header .menu-area .menu-responsive .navbar {
display: inline-block;
}
#rs-header.style1 .menu-area .menu-responsive .nav-link-container,
#rs-header.kids-header .menu-area .menu-responsive .nav-link-container {
position: absolute;
right: 15px;
top: 0;
height: 100%;
line-height: 93px;
}
#rs-header.style1 .menu-area .menu-responsive .nav-link-container a,
#rs-header.kids-header .menu-area .menu-responsive .nav-link-container a {
color: #505050;
}
#rs-header.style1 .sidebarmenu-area .sticky_search,
#rs-header.kids-header .sidebarmenu-area .sticky_search,
#rs-header.style1 .sidebarmenu-area .nav-link-container,
#rs-header.kids-header .sidebarmenu-area .nav-link-container {
color: #fff;
}
#rs-header.style1 .sidebarmenu-area .sticky_search:after,
#rs-header.kids-header .sidebarmenu-area .sticky_search:after {
background: #fff;
}
#rs-header.style1 .menu-area .navbar ul li.mega a::before,
#rs-header.kids-header .menu-area .navbar ul li.mega a::before {
right: 7px;
}
#rs-header.style1 .sticky .menu-area,
#rs-header.kids-header .sticky .menu-area {
padding-top: 0;
background: transparent;
}
#rs-header.style1 .sticky .menu-middle,
#rs-header.kids-header .sticky .menu-middle {
display: none;
}
#rs-header.style1 .sticky .menu_one,
#rs-header.kids-header .sticky .menu_one {
top: 0 !important;
}
#rs-header.style1 .has-quote-text,
#rs-header.kids-header .has-quote-text {
display: block;
text-align: right;
}
#rs-header.style1 .has-quote-text .navbar,
#rs-header.kids-header .has-quote-text .navbar {
display: inline-block;
}
#rs-header.style1 .has-quote-text .get-quote,
#rs-header.kids-header .has-quote-text .get-quote {
display: inline-block;
margin-left: 20px;
border-radius: 35px;
}
#rs-header.style1 .has-quote-text .get-quote .quote-button,
#rs-header.kids-header .has-quote-text .get-quote .quote-button {
line-height: 33px;
padding: 0 15px;
font-size: 13px;
}
#rs-header.style1 .has-quote-text .get-quote:hover,
#rs-header.kids-header .has-quote-text .get-quote:hover {
background-color: #e41f05;
} #rs-header.style1 .menu-area#single-menu .navbar ul li:hover a,
#rs-header.kids-header .menu-area#single-menu .navbar ul li:hover a,
#rs-header.style1 .menu-area#single-menu .navbar ul li.active a,
#rs-header.kids-header .menu-area#single-menu .navbar ul li.active a {
color: #ff3115 !important;
} .rs-services-style1 .services-item {
background-color: #212121;
padding: 25px 17px 17px;
position: relative;
box-shadow: 0 5px 2px -2px rgba(0, 0, 0, 0.3);
z-index: 111;
margin-top: -30px;
transition: all 0.3s ease 0s;
}
.rs-services-style1 .services-item:hover .services-icon,
.rs-services-style1 .services-item:hover .services-desc p {
color: #fff;
}
.rs-services-style1 .services-desc {
text-align: center;
margin-top: 6px;
}
.rs-services-style1 .services-desc p {
color: #cccccc;
margin-bottom: 0;
}
.rs-services-style1 .services-desc .services-title {
position: relative;
color: #ffffff;
font-size: 20px;
margin-bottom: 7px;
z-index: 10;
}
.rs-services-style1 .services-desc .services-title a {
color: #ffffff;
}
.rs-services-style1 .services-desc .services-title a:hover {
color: rgba(255, 255, 255, 0.8);
}
.rs-services-style1 .services-icon {
height: 130px;
width: 130px;
background-color: #212121;
line-height: 88px;
text-align: center;
position: absolute;
top: -50px;
z-index: -1;
font-size: 40px;
border-radius: 50%;
left: 50%;
transform: translateX(-50%);
color: #ff3115;
transition: all 0.3s ease 0s;
}
.rs-services-style1 .services-icon i {
display: inline-block;
}
.rs-services-style1.icon-left {
margin-bottom: 25px;
}
.rs-services-style1.icon-left .services-item {
background: transparent;
padding: 0;
box-shadow: none;
margin-top: 0;
display: flex;
}
.rs-services-style1.icon-left .services-icon {
position: relative;
top: 0;
z-index: -1;
font-size: 40px;
border-radius: 0;
left: 0;
transform: translateX(0);
height: 50px;
width: 50px;
background-color: transparent !important;
line-height: 50px;
margin-right: 20px;
}
.rs-services-style1.icon-left .services-icon i {
color: #ff3115;
font-size: 40px;
margin-top: 6px;
webkit-animation-name: none !important;
animation-name: none !important;
}
.rs-services-style1.icon-left .services-desc {
text-align: left;
}
.rs-services-style1.icon-left .services-desc .services-title {
text-align: left;
}
.rs-services-style1.icon-left .services-desc .services-title a {
color: #212121;
}
.rs-services-style1.icon-left .services-desc .services-title a:hover {
color: #e41f05;
}
.rs-services-style1.icon-left .services-desc p {
color: #505050 !important;
}
.services-style-2 {
margin-bottom: 30px;
}
.services-style-2 .services-title {
margin: 20px 0 12px;
}
.services-style-2 .services-title a {
color: #212121;
}
.services-style-2.center {
text-align: center;
background: #f2f2f2;
border: 1px solid #ddd;
padding: 40px 15px 30px;
}
.rs-services-style3 .services-item {
text-align: center;
margin-bottom: 30px;
}
.rs-services-style3 .services-item .services-title {
font-size: 15px;
margin-bottom: 0;
margin-top: 25px;
font-weight: 600;
color: #212121;
text-transform: uppercase;
}
.rs-services-style3 .services-item .services-title a {
color: #212121;
}
.rs-services-style3 .services-item .services-title a:hover {
color: #ff3115;
}
.rs-services-style3 .services-item i {
display: inline-block;
width: 80px;
height: 80px;
line-height: 80px;
text-align: center;
background-color: #ff3115;
color: #ffffff;
border-radius: 50%;
font-size: 36px;
}
.rs-services-style3 .services-item .services-desc p {
margin-top: 10px;
margin-bottom: 0;
}
.rs-services-style3 .services-item .services-desc p:empty {
display: none;
}
.rs-services4 .service-item {
position: relative;
margin-bottom: 30px;
}
.rs-services4 .service-item .service-img {
position: relative;
overflow: hidden;
}
.rs-services4 .service-item .service-img img {
border-radius: 0;
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
-ms-transition: all 0.2s linear;
transition: all 0.4s linear;
}
.rs-services4 .service-item .service-img:before {
content: "";
position: absolute;
background: #ff3115;
left: -73px;
right: 0;
bottom: -28px;
display: block;
height: 155px;
opacity: .8;
z-index: 1;
transform: rotate(-8deg);
width: 150%;
transition: all 0.4s ease-in-out;
}
.rs-services4 .service-item .service-img:after {
content: "";
position: absolute;
background: #ff3115;
left: -73px;
right: 0;
bottom: -28px;
display: block;
height: 136px;
opacity: .8;
z-index: 1;
transform: rotate(-8deg);
width: 150%;
transition: all 0.4s ease-in-out;
}
.rs-services4 .service-item .service-img .services-title {
font-size: 20px;
position: absolute;
bottom: 0;
left: 0;
right: 0;
text-align: center;
padding: 28px 0;
font-weight: 500;
margin: 0;
z-index: 9;
}
.rs-services4 .service-item .service-img .services-title a {
color: #fff;
opacity: 1;
}
.rs-services4 .service-item .service-content {
display: block;
}
.rs-services4 .service-item .service-content .service-excerpt {
padding-top: 0;
}
.rs-services4 .service-item .service-content .service-excerpt p {
-webkit-transform: translateY(-100px);
-moz-transform: translateY(-100px);
-o-transform: translateY(-100px);
-ms-transform: translateY(-100px);
transform: translateY(-100px);
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.4s ease-in-out;
padding: 0 25px;
}
.rs-services4 .service-item .service-content {
position: absolute;
opacity: 0;
padding: 20px;
color: #fff;
top: 0;
left: 0;
width: 100%;
height: 100%;
text-align: center;
overflow: hidden;
transition: all 0.4s ease-in-out;
z-index: 9;
}
.rs-services4 .service-item .service-content:before {
content: "";
position: absolute;
background: #ff3115;
left: 0;
right: 0;
bottom: 0;
display: block;
top: 0;
opacity: 0;
z-index: 0;
}
.rs-services4 .service-item .service-button {
margin-top: 20px;
}
.rs-services4 .service-item .service-button a {
background: #ff3115 !important;
border: none;
}
.rs-services4 .service-item .service-button a:hover {
background: #e41f05 !important;
}
.rs-services4 .service-item:hover .service-content {
opacity: 1;
}
.rs-services4 .service-item:hover .service-content:before {
opacity: .8;
}
.rs-services4 .service-item:hover .service-button {
-webkit-transform: translateY(0px);
-moz-transform: translateY(0px);
-o-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
opacity: 1;
}
.rs-services4 .service-item:hover .service-img .services-title {
display: none;
}
.rs-services4 .service-item:hover .service-img:before,
.rs-services4 .service-item:hover .service-img:after {
opacity: 0;
height: 0;
}
.rs-services4 .service-item:hover .service-img img {
-webkit-transform: scale(1.1, 1.1);
-moz-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.rs-services4 .service-item:hover .service-content .service-excerpt p {
-webkit-transform: translateY(0px);
-moz-transform: translateY(0px);
-o-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
opacity: 1;
}
.rs-services4 .service-item .service-img:before,
.rs-services4 .service-item .service-img:after {
height: 90px;
transform: rotate(0deg);
bottom: 0;
z-index: 0;
}
.rs-services4 .service-item .service-img h3.p-title {
padding: 20px 0 14px;
}
.rs-services4 .service-item .service-content .service-excerpt {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 100%;
left: 0;
right: 0;
z-index: 99;
}
.rs-branches .services-style-2 {
text-align: center;
}
.rs-branches .services-style-2 .services-icon {
margin-bottom: 15px;
}
.rs-branches .services-style-2 .services-title {
font-size: 20px;
line-height: 32px;
margin-bottom: 7px;
}
.rs-branches .services-style-2 .services-title a {
color: #212121;
}
.rs-branches .wpb_column .rs-services {
position: relative;
}
.rs-branches .wpb_column .rs-services:before {
display: block !important;
position: absolute;
content: '';
width: 64%;
height: 2px;
background-color: #ff3115;
left: -38%;
top: 37px;
}
.rs-branches .no-border .rs-services:before {
display: none !important;
}
.about-choose .rs-services-style3 .services-item {
text-align: center;
background-color: #f0f0f0;
padding: 30px 25px;
}
.about-choose .rs-services-style3 .services-item .services-title {
font-size: 17px;
line-height: 27px;
}
.rs-team-style2 .team-item {
margin-bottom: 50px;
}
.rs-team-style2 .team-item .team-img {
position: relative;
}
.rs-team-style2 .team-item .team-img .team-social {
position: absolute;
bottom: 0;
opacity: 0;
left: 50%;
transform: translateX(-50%);
transition: 0.43s all ease;
}
.rs-team-style2 .team-item .team-img .team-social a {
margin: 4px;
color: #fff;
}
.rs-team-style2 .team-item .team-img .team-social a:hover {
color: rgba(255, 255, 255, 0.6);
}
.rs-team-style2 .team-item .team-img:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
transition: 0.3s all ease;
opacity: 0;
}
.rs-team-style2 .team-item .team-content {
padding: 15px;
background: #fff;
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.06);
text-align: center;
}
.rs-team-style2 .team-item .team-content h3 {
margin-bottom: 0;
font-size: 18px;
line-height: normal !important;
}
.rs-team-style2 .team-item .team-content h3 a {
color: #212121;
}
.rs-team-style2 .team-item .team-content h3 a:hover {
color: #ff3115;
}
.rs-team-style2 .team-item .team-content .team-title {
font-size: 14px;
line-height: normal;
}
.rs-team-style2 .team-item:hover .team-img .team-social {
bottom: 25px;
opacity: 1;
}
.rs-team-style2 .team-item:hover .team-img:before {
opacity: 1;
}
.rs-team-style3 .team-item {
margin-bottom: 50px;
}
.rs-team-style3 .team-item .team-img {
position: relative;
}
.rs-team-style3 .team-item .team-img .team-social {
position: absolute;
bottom: 0;
opacity: 0;
left: 50%;
transform: translateX(-50%);
transition: 0.43s all ease;
}
.rs-team-style3 .team-item .team-img .team-social a {
margin: 4px;
color: #fff;
}
.rs-team-style3 .team-item .team-img .team-social a:hover {
color: rgba(255, 255, 255, 0.6);
}
.rs-team-style3 .team-item .team-img:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
transition: 0.3s all ease;
opacity: 0;
}
.rs-team-style3 .team-item .team-content {
text-align: center;
border-radius: 30px;
width: 220px;
padding: 12px 20px;
margin: 0 auto;
margin-top: -43px;
position: relative;
background: #212121;
}
.rs-team-style3 .team-item .team-content h3 {
margin-bottom: 0;
font-size: 18px;
line-height: normal !important;
}
.rs-team-style3 .team-item .team-content h3 a {
color: #fff;
}
.rs-team-style3 .team-item .team-content h3 a:hover {
color: #f1f1f1;
}
.rs-team-style3 .team-item .team-content .team-title {
font-size: 14px;
line-height: normal;
}
.rs-team-style3 .team-item:hover .team-img .team-social {
top: 50% !important;
opacity: 1;
}
.rs-team-style3 .team-item:hover .team-img:before {
opacity: 1;
} .rs-heading {
margin-bottom: 40px;
}
.rs-heading .sub-text {
display: block;
font-size: 30px;
line-height: 34px !important;
font-family: 'poppins', sans-serif;
color: #ff3115;
padding-bottom: 6px;
}
.rs-heading h2 {
position: relative;
display: inline-block;
text-transform: uppercase;
z-index: 10;
margin-bottom: 10px;
}
.rs-heading h2 span.watermark {
position: absolute;
font-size: 70px;
text-transform: uppercase;
font-weight: 800;
z-index: -1;
opacity: 0.07;
width: 100%;
left: 0;
color: inherit;
top: 50%;
transform: translateY(-50%);
}
.rs-heading.style3 h2 {
background-size: 100% !important;
padding-left: 20px;
padding-right: 20px;
margin-bottom: 20px;
background-repeat: no-repeat !important;
background-position: center !important;
}
.rs-heading p {
margin-bottom: 0;
}
.rs-heading.center {
text-align: center;
}
.rs-heading.center .description {
max-width: 780px;
margin-left: auto;
margin-right: auto;
}
.rs-heading.right {
text-align: right;
}
.rs-heading.right .description {
margin-left: auto;
}
.rs-heading.border-style h2:after {
content: '';
position: absolute;
bottom: 9px;
left: 0;
height: 7px;
width: 100%;
background: #ff3115;
opacity: 0.35;
z-index: -1;
}
.rs-heading.style4 .title-inner h2 span.red-color,
.rs-heading.style5 .title-inner h2 span.red-color,
.rs-heading.style4 .title-inner h2 span.red-color-last,
.rs-heading.style5 .title-inner h2 span.red-color-last {
color: #ff3115;
}
.rs-heading.style4 .view-more,
.rs-heading.style5 .view-more {
text-align: right;
font-weight: 600;
margin-top: -26px;
}
.rs-heading.style5 .view-more {
text-align: left;
}
.border-style2 {
position: relative;
display: inline-block;
z-index: 10;
}
.border-style2:after {
content: '';
position: absolute;
bottom: 9px;
left: 0;
height: 7px;
width: 100%;
background: #ff3115;
opacity: 0.35;
z-index: -1;
}
h2.upper {
text-transform: uppercase;
}
.rs-heading.vertical-style {
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
margin-top: 50%;
}
.rs-heading.vertical-style .title-inner h2 {
font-size: 52px !important;
line-height: 62px !important;
}
.sec-title h4 {
font-size: 15px;
margin-bottom: 8px;
color: #ff3115;
text-transform: uppercase;
}
.sec-title h3 {
font-size: 36px;
line-height: 45px;
color: #212121;
margin-bottom: 0;
}
.rs-heading.style1 {
position: relative;
margin-bottom: 50px;
padding-bottom: 20px;
}
.rs-heading.style1 h2 {
margin-bottom: 6px;
text-transform: uppercase;
}
.rs-heading.style1:after {
content: "";
position: absolute;
left: 0;
bottom: 0;
height: 3px;
width: 100px;
background: #ff3115;
}
.rs-heading.style1.center:after {
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
.rs-heading.style1.right:after {
left: auto;
right: 0;
}
.rs-heading.style1.right .view-more {
right: auto;
left: 0;
}
.rs-heading.style1 p {
margin-bottom: 0;
font-size: 16px;
}
.rs-heading.style1 .view-more {
position: absolute;
right: 0;
}
.rs-heading.style1 .view-more a {
font-weight: 600;
font-size: 15px;
}
.rs-heading.style1.white-text h2 {
color: #ffffff;
}
.rs-heading.style1.white-text p {
color: rgba(255, 255, 255, 0.6);
}
.rs-heading.style2 {
position: relative;
margin-bottom: 50px;
}
.rs-heading.style2 h2 {
margin-bottom: 25px;
padding-bottom: 26px;
text-transform: uppercase;
position: relative;
}
.rs-heading.style2 h2:after {
content: "";
position: absolute;
left: 0;
bottom: 0;
height: 3px;
width: 100px;
background: #ff3115;
}
.rs-heading.style2.center h2:after {
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
.rs-heading.style2.right h2:after {
left: auto;
right: 0;
}
.rs-heading.style2.right .view-more {
right: auto;
left: 0;
}
.rs-heading.style2 p {
margin-bottom: 0;
font-size: 16px;
}
.rs-heading.style2 .view-more {
position: absolute;
right: 0;
bottom: 0;
}
.rs-heading.style2 .view-more a {
font-weight: 600;
font-size: 15px;
}
.rs-heading.style2.white-text h2 {
color: #ffffff;
}
.rs-heading.style2.white-text p {
color: rgba(255, 255, 255, 0.6);
}
.rs-heading.style5 p {
margin-bottom: 0;
font-size: 16px;
}
.list-arrow {
list-style-type: none;
margin-left: 5px;
padding-left: 25px;
}
.list-arrow li:before {
content: "\f105";
font-family: FontAwesome;
margin-right: 10px;
color: #ff3115;
font-weight: bold;
}
.list-arrow li + li {
margin-top: 10px;
} .rs-accordion .vc_tta-panel .vc_tta-panel-body {
border: 0 !important;
background: transparent !important;
padding-bottom: 0 !important;
}
.rs-accordion .vc_tta-panel-heading {
border-radius: 0 !important;
border: 0 !important;
background: rgba(240, 240, 240, 0.8) !important;
-webkit-transition: 0.3s ease all !important;
transition: 0.3s ease all !important;
}
.rs-accordion .vc_tta-panel-heading h4 {
font-weight: 400 !important;
}
.rs-accordion .vc_tta-panel-title > a {
padding: 12px 20px !important;
-webkit-transition: 0.3s ease all !important;
transition: 0.3s ease all !important;
}
.rs-accordion .vc_tta-panel-heading a {
color: #212121 !important;
}
.rs-accordion .vc_tta-panel-heading a i {
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 0;
width: 52px;
text-align: center;
color: #212121;
-webkit-transition: 0.3s ease all !important;
transition: 0.3s ease all !important;
}
.rs-accordion .vc_tta-panel {
margin-bottom: 17px;
}
.rs-accordion .vc_tta-panel .vc_tta-panel-heading {
border-radius: 5px !important;
}
.rs-accordion .vc_tta-panel:last-child {
margin-bottom: 0;
}
.rs-accordion .vc_tta-panel.vc_active .vc_tta-panel-heading {
background: #ff3115 !important;
}
.rs-accordion .vc_tta-panel.vc_active .vc_tta-panel-heading a {
color: #ffffff !important;
}
.rs-accordion .vc_tta-panel.vc_active .vc_tta-panel-heading a i {
background: #ff3115;
color: #ffffff;
}
.rs-accordion .vc_tta-panel.vc_active .vc_tta-panel-heading a i:before {
content: "\f0d7";
}
.rs-accordion .vc_tta-panel-heading:hover {
background: #ff3115 !important;
}
.rs-accordion .vc_tta-panel-heading:hover a,
.rs-accordion .vc_tta-panel-heading:hover i {
color: #fff !important;
} .counter-top-area {
border: 1px solid rgba(0, 0, 0, 0.2);
margin-bottom: 30px;
text-align: center;
padding: 30px 20px;
transition: .3s all ease;
}
.counter-top-area .rs-counter {
font-size: 60px !important;
line-height: 60px !important;
margin-bottom: 6px;
}
.counter-top-area h4 {
font-weight: 500 !important;
margin-bottom: 0;
font-size: 20px;
text-transform: uppercase;
}
.counter-top-area.left {
overflow: hidden;
text-align: left;
padding: 40px 20px 40px 20px;
}
.counter-top-area.left h2 {
margin-bottom: 0;
}
.counter-top-area.left h3 {
font-size: 13px;
}
.counter-top-area.left .count-icon {
float: left;
padding-right: 20px;
}
.counter-top-area.left .count-text {
float: left;
text-align: left;
}
.counter-top-area.left i {
font-size: 40px;
}
.counter-top-area.border-style {
border: none;
border-radius: 30px;
}
.counter-top-area.border-style .rs-counter-list .count-icon {
font-size: 55px;
margin-bottom: 10px;
}
.counter-top-area.style-light {
border-color: rgba(255, 255, 255, 0.2);
}
.counter-top-area.style-light .rs-counter {
color: #ffffff;
}
.counter-top-area.style-light h4 {
color: rgba(255, 255, 255, 0.7);
}
.counter-top-area:hover {
border-color: #ff3115;
}
.border-style-counter .vc_column-inner {
padding: 0 !important;
}
.border-style-counter .counter .counter-top-area {
position: relative;
margin-bottom: 0 !important;
padding: 30px 45px !important;
}
.border-style-counter .counter.counter2 .counter-top-area,
.border-style-counter .counter.counter4 .counter-top-area {
text-align: left;
}
.border-style-counter .counter.counter2 .counter-top-area:after,
.border-style-counter .counter.counter4 .counter-top-area:after {
position: absolute;
width: 1px;
height: 100%;
top: 0;
left: 0;
text-align: center;
content: "";
display: block;
background: rgba(255, 255, 255, 0.8);
z-index: 11;
}
.border-style-counter .counter.counter4 .counter-top-area:before,
.border-style-counter .counter.counter3 .counter-top-area:before {
position: absolute;
width: 220px;
height: 1px;
top: 0;
left: 0;
text-align: center;
content: "";
display: block;
background: rgba(255, 255, 255, 0.8);
z-index: 11;
}
.border-style-counter .counter.counter1 .counter-top-area,
.border-style-counter .counter.counter3 .counter-top-area {
text-align: right;
}
.border-style-counter .counter.counter3 .counter-top-area:before {
right: 0;
left: auto;
}
.rs-acheivements .counter-top-area {
background: url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/images/counter_bg.png) no-repeat center;
border: none !important;
border-radius: 5px;
background-size: 100%;
}
.rs-acheivements .counter-top-area .rs-counter {
color: #212121;
font-size: 45px !important;
line-height: 50px !important;
margin-bottom: 2px;
font-weight: 900;
}
.rs-acheivements .counter-top-area h4 {
color: #505050;
text-transform: capitalize;
}
.rs-acheivements .colored-counter2 .counter-top-area {
background: url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/images/sape1.png) no-repeat center;
background-size: 100%;
}
.rs-acheivements .colored-counter3 .counter-top-area {
background: url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/images/sape2.png) no-repeat center;
background-size: 100%;
}
.rs-acheivements .colored-counter4 .counter-top-area {
background: url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/images/sape3.png) no-repeat center;
background-size: 100%;
}
.rs-acheivements.rs-acheivements2 .counter-top-area {
background: transparent;
border: 1px solid #ff3115 !important;
}
.rs-acheivements.rs-acheivements3 .counter-top-area {
background: #fff;
border: 1px solid #fff !important;
}
.rs-acheivements.rs-acheivements3.black-overlay:after {
background: rgba(0, 0, 0, 0.4);
}
.rs-acheivements .counter-img {
overflow: hidden;
position: relative;
}
.rs-acheivements .counter-img img {
border-radius: 8px;
}
.rs-acheivements .counter-img:before {
position: absolute;
top: 0;
left: -75%;
z-index: 2;
display: block;
content: '';
width: 50%;
height: 100%;
background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
-webkit-transform: skewX(-25deg);
transform: skewX(-25deg);
}
.rs-acheivements .counter-img:hover:before {
-webkit-animation: img-shine 1s;
animation: img-shine 1s;
}
.rs-acheivements.black-overlay {
background-attachment: fixed;
}
.rs-acheivements.black-overlay:after {
background: rgba(0, 0, 0, 0.35);
}
@-webkit-keyframes img-shine {
100% {
left: 125%;
}
}
@keyframes img-shine {
100% {
left: 125%;
}
} .rs-map .wpb_wrapper {
padding: 0 !important;
} .rs-courses-categories .courses-item {
text-align: center;
background-color: #f0f0f0;
padding: 30px 30px 22px;
margin-bottom: 30px;
}
.rs-courses-categories .courses-item .courses-title {
font-size: 20px;
margin-bottom: 5px;
margin-top: 18px;
}
.rs-courses-categories .courses-item .courses-title a {
color: #212121;
}
.rs-courses-categories .courses-item .courses-title a:hover {
color: #ff3115;
}
.rs-courses-categories .courses-item .courses-amount {
font-size: 13px;
font-weight: 600;
color: #505050;
}
.rs-courses-categories .courses-item i {
display: inline-block;
width: 80px;
height: 80px;
line-height: 80px;
text-align: center;
background-color: #ff3115;
color: #ffffff;
border-radius: 50%;
font-size: 36px;
transition: 0.5s;
-webkit-transition: 0.5s;
-ms-transition: 0.5s;
}
.rs-courses-categories .courses-item:hover {
background-color: #d0d0d0;
}
.rs-courses-categories .courses-item:hover i {
background-color: #212121 !important;
color: #ff3115;
transform: rotate(360deg);
}
.rs-course .cource-item {
background: #fff;
}
.rs-course .cource-item:hover .course-img .image-link i {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.rs-course .cource-item .cource-img {
position: relative;
margin-bottom: 22px;
}
.rs-course .cource-item .cource-img .course_author_img {
position: absolute;
background: #fff;
padding: 5px;
border-radius: 50%;
left: 25px;
border: 2px solid #ff3115;
bottom: -23px;
z-index: 10;
}
.rs-course .cource-item .cource-img .course_author_img img {
width: auto !important;
border-radius: 50%;
}
.rs-course .cource-item .cource-img img {
width: 100%;
transition: all 0.3s ease 0s;
}
.rs-course .cource-item .cource-img .image-link {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) !important;
-webkit-transform: translate(-50%, -50%) !important;
-ms-transform: translate(-50%, -50%) !important;
color: #ff3115;
z-index: 11;
}
.rs-course .cource-item .cource-img .image-link i {
font-size: 22px;
font-weight: 400;
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
transition: all 0.3s ease 0s;
}
.rs-course .cource-item .cource-img .course-price {
position: absolute;
bottom: -25px;
right: 25px;
height: 50px;
width: 50px;
line-height: 50px;
text-align: center;
background-color: #ff3115;
color: #ffffff;
font-size: 13px;
font-weight: 500;
border-radius: 50%;
z-index: 1;
}
.rs-course .cource-item .course-body {
text-align: center;
padding: 0 20px;
}
.rs-course .cource-item .course-body .course-category {
display: inline-block;
}
.rs-course .cource-item .course-body span a {
color: #999;
}
.rs-course .cource-item .course-body span a:hover {
color: #ff3115;
}
.rs-course .cource-item .course-body .course-title {
font-size: 20px;
margin-bottom: 17px;
padding-bottom: 13px;
border-bottom: 1px solid #e8e8e8;
}
.rs-course .cource-item .course-body .course-title a {
color: #212121;
}
.rs-course .cource-item .course-body .course-title a:hover {
color: #ff3115;
}
.rs-course .cource-item .course-body .review-wrap .rating {
display: inline-block;
color: #ff3115;
margin-right: 10px;
padding-right: 10px;
border-right: 1px solid #ddd;
line-height: 10px;
}
.rs-course .cource-item .course-body .review-wrap .review {
line-height: 10px;
display: inline-block;
}
.rs-course .cource-item .course-body .course-desc {
margin-top: 10px;
}
.rs-course .cource-item .course-body .course-desc p {
margin: 0 0 22px;
}
.rs-course .cource-item .course-footer {
padding: 15px 20px;
background-color: #f0f0f0;
text-align: center;
}
.rs-course .cource-item .course-footer > div {
display: inline-block;
text-align: center;
position: relative;
line-height: 19px;
}
.rs-course .cource-item .course-footer > div span {
display: block;
font-size: 14px;
color: #212121;
font-weight: 500;
}
.rs-course .cource-item .course-footer > div span.label {
font-weight: 700;
}
.rs-course .cource-item .course-footer > div + div {
padding-left: 8px;
margin-left: 8px;
border-left: 1px solid #ccc;
}
.rs-course .cource-item.blue-color .course-footer {
background: #00bcd4;
}
.rs-course .cource-item.orange-color .course-footer {
background: #fc7f0c;
}
.rs-course .cource-item.purple-color .course-footer {
background: #92278f;
}
.rs-course .cource-item.red-color .course-footer {
background: #e84b3a;
}
.rs-course.rs-course-style2 .cource-item {
border-radius: 42px;
}
.rs-course.rs-course-style2 .cource-item .course-footer {
border-radius: 40px;
}
.rs-course.rs-course-style2 .cource-item .course-footer div span {
color: #fff;
}
.rs-course.rs-course-style2 .cource-item .course-body .course-title a:hover {
color: #ff3115 !important;
}
.rs-course .course-rating-total {
border-left: 1px solid #ddd;
line-height: 10px;
padding-left: 10px;
margin-left: 10px;
}
.rs-course.rs-course-style2 .cource-item .course-body span a {
color: #ff3115;
}
.event-item .event-img,
.cource-item .event-img,
.event-item .cource-img,
.cource-item .cource-img {
position: relative;
}
.event-item .event-img:after,
.cource-item .event-img:after,
.event-item .cource-img:after,
.cource-item .cource-img:after {
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.6);
-webkit-transform: scaleY(0);
-ms-transform: scaleY(0);
transform: scaleY(0);
-webkit-transition: 0.4s;
-ms-transition: 0.4s;
transition: 0.4s;
}
.event-item .event-img .image-link,
.cource-item .event-img .image-link,
.event-item .cource-img .image-link,
.cource-item .cource-img .image-link {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) !important;
-webkit-transform: translate(-50%, -50%) !important;
-ms-transform: translate(-50%, -50%) !important;
color: #ff3115;
z-index: 11;
}
.event-item .event-img .image-link:hover,
.cource-item .event-img .image-link:hover,
.event-item .cource-img .image-link:hover,
.cource-item .cource-img .image-link:hover {
color: #fff;
}
.event-item .event-img .image-link i,
.cource-item .event-img .image-link i,
.event-item .cource-img .image-link i,
.cource-item .cource-img .image-link i {
font-size: 22px;
font-weight: 400;
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
transition: all 0.3s ease 0s;
}
.event-item:hover .event-img:after,
.cource-item:hover .event-img:after,
.event-item:hover .cource-img:after,
.cource-item:hover .cource-img:after {
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
}
.event-item:hover .event-img .image-link i,
.cource-item:hover .event-img .image-link i,
.event-item:hover .cource-img .image-link i,
.cource-item:hover .cource-img .image-link i {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.course-review-wrapper {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 99999;
text-align: center;
}
.review-overlay {
background: #000;
bottom: 0;
left: 0;
position: fixed;
top: 0;
width: 100%;
opacity: 0.6;
}
.review-form {
background-color: #ffffff;
padding: 20px;
position: relative;
width: 80%;
max-width: 600px;
margin-top: 50px;
display: inline-block;
text-align: left;
}
.review-form .close {
margin-top: 10px;
}
.review-form h3 {
font-size: 16px;
margin: 0 0 20px;
}
.review-form h3 .close {
float: right;
border: none;
text-decoration: none;
width: auto;
height: auto;
margin-right: -9px;
margin-top: -7px;
}
.review-form h3 .close:before {
font-size: 32px;
}
.review-form .review-fields {
margin: 0 0 -20px;
list-style: none;
}
.review-form .review-fields > li {
margin: 0 0 20px 0;
}
.review-form .review-fields > li > label {
display: block;
margin: 0 0 7px;
font-size: 15px;
}
.review-form .review-fields > li > label .required {
margin-left: 5px;
display: inline-block;
vertical-align: middle;
font-size: 24px;
line-height: 1;
height: 15px;
margin-top: -3px;
}
.review-form .review-fields > li input[type="text"],
.review-form .review-fields > li textarea {
width: 100%;
}
.review-stars {
margin: 0 0;
list-style: none;
overflow: hidden;
}
.review-stars:after {
clear: both;
content: '';
display: block;
}
.review-stars > li {
width: 24px;
height: 24px;
float: left;
}
.review-stars > li span {
text-decoration: none;
font-size: 24px;
border-bottom: none;
width: auto;
height: auto;
}
.review-stars > li a:visited,
.review-stars > li a:focus {
border: none;
}
.review-stars > li span:before {
width: 22px;
height: 24px;
}
.review-stars > li span.hover:before {
content: "\f155";
color: #F05A19;
cursor: pointer;
}
.review-form .ajaxload,
.review-form .message {
display: none;
}
.course-review-wrapper.submitting .ajaxload,
.course-review-wrapper.error .message {
display: inline-block;
}
.course-review-wrapper.submitting .ajaxload {
position: absolute;
top: 48%;
left: 48%;
}
.course-review-wrapper.submitting .review-form {
position: relative;
}
.course-review-wrapper.submitting .review-form .form-overlay-review {
background: #000;
bottom: 0;
left: 0;
position: absolute;
top: 0;
width: 100%;
opacity: 0.3;
}
.review-stars-rated {
width: 90px;
position: relative;
display: inline-block;
}
.review-stars-rated .review-stars.empty,
.review-stars-rated .review-stars.filled {
width: 90px;
height: 24px;
font-family: dashicons;
font-size: 18px;
color: #ff3115;
}
.review-stars-rated .review-stars.empty:before {
content: '\f154\f154\f154\f154\f154';
line-height: 1;
vertical-align: top;
white-space: nowrap;
}
.review-stars-rated .review-stars.filled:before {
content: '\f155\f155\f155\f155\f155';
line-height: 1;
vertical-align: top;
white-space: nowrap;
}
.review-stars-rated .review-stars.filled {
position: absolute;
top: 0;
left: 0;
}
.course-rate {
overflow: hidden;
margin: 10px 0;
}
.course-rate .review-bar {
width: calc(-25%);
margin-right: 5px;
height: 15px;
background: #DDD;
display: inline-block;
}
.course-rate .review-bar .rating {
background: #95e6f9;
height: 15px;
}
.course-rate .review-number {
margin-bottom: 0;
}
.course-reviews-list,
.course-reviews-list-shortcode {
list-style: none;
margin: 0;
}
.course-reviews-list li,
.course-reviews-list-shortcode li {
margin-bottom: 20px;
padding: 20px;
background-color: #fafafa;
border: 1px solid #ddd;
overflow: hidden;
}
.course-reviews-list li .review-author,
.course-reviews-list-shortcode li .review-author {
width: 80px;
float: left;
margin-right: 20px;
}
.course-reviews-list li .review-author-info .course-reviews-list-shortcode li .review-author-info {
float: left;
}
.course-reviews-list li .review-text,
.course-reviews-list-shortcode li .review-text {
width: -webkit-calc(0%);
float: right;
}
.course-reviews-list li .user-name,
.course-reviews-list-shortcode li .user-name {
margin: 5px;
}
.course-reviews-list li .review-title,
.course-reviews-list-shortcode li .review-title {
clear: both;
font-size: 14px;
font-style: italic;
font-weight: 700;
line-height: 25px;
margin: 9px 0 15px;
}
@media (max-width: 600px) {
.course-reviews-list li .review-text,
.course-reviews-list-shortcode li .review-text {
width: 100%;
float: left;
}
}
.loading {
display: none;
}
.course-rating-total {
position: relative;
bottom: 8px;
}
.rs-courses-2 .cource-item {
margin-bottom: 30px;
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.06);
}
.rs-courses-2 .cource-item .cource-img {
position: relative;
overflow: hidden;
}
.rs-courses-2 .cource-item .cource-img img {
-webkit-transition: all .3s ease;
transition: all .3s ease;
width: 100%;
}
.rs-courses-2 .cource-item .cource-img .course-value {
position: absolute;
bottom: -25px;
right: 25px;
height: 50px;
width: 50px;
line-height: 50px;
text-align: center;
background-color: #ff3115;
color: #ffffff;
font-size: 13px;
font-weight: 500;
border-radius: 50%;
}
.rs-courses-2 .cource-item .course-body {
padding: 20px 25px 25px;
transition: all 0.5s ease 0s;
background: #fff;
}
.rs-courses-2 .cource-item .course-body span a {
color: #999;
}
.rs-courses-2 .cource-item .course-body span a:hover {
color: #ff3115;
}
.rs-courses-2 .cource-item .course-body .course-category {
display: inline-block;
}
.rs-courses-2 .cource-item .course-body .course-title {
font-size: 20px;
margin-bottom: 7px;
}
.rs-courses-2 .cource-item .course-body .course-title a {
color: #212121;
transition: all 0.35s ease 0s;
}
.rs-courses-2 .cource-item .course-body .course-title a:hover {
color: #ff3115;
}
.rs-courses-2 .cource-item .course-body .course-desc {
margin-top: 12px;
}
.rs-courses-2 .cource-item .course-body .course-desc p {
margin-bottom: 0;
transition: all 0.35s ease 0s;
}
.rs-courses-2 .cource-item .cource-btn {
background-color: #ff3115;
border: 2px solid #ff3115;
display: inline-block;
margin-top: 0;
padding: 10px 22px;
font-size: 13px;
text-transform: uppercase;
color: #ffffff;
font-weight: 700;
line-height: normal;
transition: all 0.3s ease 0s;
border-radius: 35px;
}
.rs-courses-2 .cource-item .cource-btn:hover {
background-color: #e41f05;
border-color: #e41f05;
}
.rs-courses-2 .cource-item .course-value {
margin-top: 25px;
display: flex;
justify-content: space-between;
align-items: flex-end;
}
.rs-courses-2 .cource-item .course-value .course-price {
margin-left: auto;
font-weight: 700;
color: #ff3115;
}
.rs-courses-2 .cource-item:hover .cource-img img {
-webkit-transform: scale(1.1);
transform: scale(1.1);
opacity: 0.8;
}
.rs-courses-2 .view-more {
bottom: auto;
} .rs-team-style1 .team-item {
position: relative;
overflow: hidden;
margin-bottom: 30px;
}
.rs-team-style1 .team-item .team-img {
position: relative;
}
.rs-team-style1 .team-item .team-img .normal-text {
position: absolute;
bottom: 0;
padding: 10px 20px;
min-width: 175px;
background-color: rgba(34, 34, 34, 0.8);
transition: .3s ease all;
}
.rs-team-style1 .team-item .team-img .normal-text .team-name {
color: #fff;
font-size: 18px;
font-weight: 700;
margin: 0;
display: block;
line-height: normal !important;
}
.rs-team-style1 .team-item .team-img .normal-text .subtitle {
color: #fff;
font-size: 14px;
font-weight: 400;
margin: 0;
display: block;
}
.rs-team-style1 .team-item .team-img img {
width: 100%;
}
.rs-team-style1 .team-item .team-content {
position: absolute;
width: 100%;
height: 100%;
top: 10%;
left: 0;
text-align: center;
z-index: 11;
padding: 30px;
opacity: 0;
-webkit-transition: 0.3s all ease-out;
transition: 0.3s all ease-out;
}
.rs-team-style1 .team-item .team-content:before {
content: '';
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
background: rgba(0, 0, 0, 0.8);
z-index: -1;
-webkit-transition: .25s opacity ease;
transition: .25s opacity ease;
}
.rs-team-style1 .team-item .team-name {
margin-bottom: 2px;
}
.rs-team-style1 .team-item .team-name a {
margin-bottom: 6px;
font-size: 20px;
color: #fff;
text-transform: capitalize;
font-weight: 700;
position: relative;
z-index: 111;
}
.rs-team-style1 .team-item .team-name a:hover {
color: #fff;
}
.rs-team-style1 .team-item .team-title {
position: relative;
z-index: 111;
font-size: 14px;
color: #fff;
padding-bottom: 12px;
}
.rs-team-style1 .team-item .team-title:after {
position: absolute;
left: 50%;
bottom: 0;
width: 50px;
height: 2px;
background: #ff3115;
content: "";
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
.rs-team-style1 .team-item .team-desc {
color: #fff;
margin-bottom: 0;
padding-top: 12px;
margin-top: 15px;
}
.rs-team-style1 .team-item .team-social {
position: relative;
width: 100%;
text-align: center;
z-index: 111;
opacity: 0;
margin-top: 25px;
-webkit-transition: .4s all ease;
transition: .4s all ease;
}
.rs-team-style1 .team-item .team-social .social-icon {
display: inline-block;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
background-color: #ff3115;
margin-right: 6px;
border-radius: 50%;
}
.rs-team-style1 .team-item .team-social .social-icon i {
font-size: 14px;
color: #fff;
}
.rs-team-style1 .team-item .team-social .social-icon:hover {
background-color: #e41f05;
}
.rs-team-style1 .team-item:hover .team-content {
opacity: 1;
top: 0;
}
.rs-team-style1 .team-item:hover .team-social {
opacity: 1;
}
.rs-team-style1 .team-item:hover .normal-text {
opacity: 0;
visibility: hidden;
} .rs-team-style3 .team-item {
position: relative;
overflow: hidden;
margin-bottom: 50px;
}
.rs-team-style3 .team-item .team-img {
position: relative;
}
.rs-team-style3 .team-item .team-img .normal-text {
position: absolute;
bottom: 0;
padding: 10px 20px;
min-width: 175px;
background-color: rgba(34, 34, 34, 0.8);
transition: .3s ease all;
}
.rs-team-style3 .team-item .team-img .normal-text .team-name {
color: #fff;
font-size: 18px;
font-weight: 700;
margin: 0;
display: block;
line-height: normal !important;
}
.rs-team-style3 .team-item .team-img .normal-text .subtitle {
color: #fff;
font-size: 14px;
font-weight: 400;
margin: 0;
display: block;
}
.rs-team-style3 .team-item .team-img img {
width: 100%;
}
.rs-team-style3 .team-item .team-name {
margin-bottom: 2px;
}
.rs-team-style3 .team-item .team-name a {
margin-bottom: 6px;
font-size: 20px;
color: #fff;
text-transform: capitalize;
font-weight: 700;
position: relative;
z-index: 111;
}
.rs-team-style3 .team-item .team-name a:hover {
color: #ff3115;
}
.rs-team-style3 .team-item .team-title {
position: relative;
z-index: 111;
font-size: 14px;
color: #fff;
padding-bottom: 12px;
}
.rs-team-style3 .team-item .team-desc {
color: #fff;
margin-bottom: 0;
padding-top: 12px;
margin-top: 15px;
}
.rs-team-style3 .team-item .team-social {
position: absolute;
width: 100%;
text-align: center;
top: 40%;
transform: translate(-50% -50%);
z-index: 111;
opacity: 0;
margin-top: 0;
-webkit-transition: .4s all ease;
transition: .4s all ease;
}
.rs-team-style3 .team-item .team-social .social-icon {
display: inline-block;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
margin-right: 6px;
border-radius: 50%;
}
.rs-team-style3 .team-item .team-social .social-icon:hover {
background-color: #ff3115 !important;
}
.rs-team-style3 .team-item .team-social .social-icon i {
font-size: 14px;
color: #fff;
}
.rs-team-style3 .team-item .team-social .social-icon:hover {
background-color: #e41f05;
}
.single-teams .ps-informations {
width: 100%;
padding-top: 50px;
}
.single-teams .ps-informations ul li.social-icon {
float: left;
border: 0;
text-align: center;
margin-right: 10px;
margin-top: 20px;
margin-bottom: 20px;
}
.single-teams .ps-informations ul li.social-icon i {
line-height: 40px;
width: 40px;
height: 40px;
border: 1px solid #ff3115;
font-size: 15px;
color: #ff3115;
}
.single-teams .ps-informations ul li.social-icon i:hover {
color: #e41f05 !important;
}
.single-teams .project-desc {
margin-top: 30px;
}
.single-portfolios .project-img {
margin-bottom: 50px;
margin-top: 10px;
}
.single-teams .ps-navigation {
width: 100%;
margin-bottom: 0;
margin-top: 60px;
} #cl-testimonial .testimonial-slide2.slider2 {
padding-bottom: 60px !important;
margin-left: 3px;
}
#cl-testimonial .testimonial-slide2.slider2 .image-testimonial {
padding-top: 60px;
padding-bottom: 10px;
}
#cl-testimonial .testimonial-slide2.slider2 .image-testimonial .testimonial-content {
padding: 68px 35px 50px;
position: relative;
overflow: visible;
margin: 0 15px;
border-radius: 0;
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}
#cl-testimonial .testimonial-slide2.slider2 .image-testimonial .testimonial-content:before,
#cl-testimonial .testimonial-slide2.slider2 .image-testimonial .testimonial-content:after {
position: absolute;
font-family: FontAwesome;
font-size: 26px;
color: #ff3115;
}
#cl-testimonial .testimonial-slide2.slider2 .image-testimonial .testimonial-content:before {
content: "\f10d";
top: 30px;
left: 35px;
}
#cl-testimonial .testimonial-slide2.slider2 .image-testimonial .testimonial-content:after {
content: "\f10e";
bottom: 29px;
right: 30px;
}
#cl-testimonial .testimonial-slide2.slider2 .image-testimonial .testimonial-content h4 {
text-align: left !important;
margin-bottom: 0;
}
#cl-testimonial .testimonial-slide2.slider2 .image-testimonial .testimonial-content p {
font-style: normal;
}
#cl-testimonial .testimonial-slide2.slider2 .image-testimonial img {
width: 100px;
padding: 5px;
background: #fff;
border-radius: 50%;
position: absolute;
top: -50px;
left: 50%;
transform: translateX(-50%);
}
#cl-testimonial .testimonial-slide2.slider2 .slick-dots {
bottom: 0px !important;
left: 50%;
transform: translateX(-50%);
}
#cl-testimonial .testimonial-slide2.slider2 .slick-dots li button {
background: #fff;
margin: 3px;
}
#cl-testimonial .testimonial-slide2.slider2 .slick-dots li:first-child button {
border-radius: 4px 0 0 4px;
}
#cl-testimonial .testimonial-slide2.slider2 .slick-dots li:last-child button {
border-radius: 0 4px 4px 0;
}
#cl-testimonial .testimonial-slide2.slider2 .slick-dots li.slick-active button {
background-color: #ff3115;
}
#cl-testimonial .testimonial-slide7.slider7 .testi-img {
max-width: 111px;
margin: 0 auto;
margin-bottom: 15px;
}
#cl-testimonial .testimonial-slide7.slider7 .testi-img img {
width: 100%;
height: auto;
border-radius: 50%;
border: 5px solid #fff;
}
#cl-testimonial .testimonial-slide7.slider7 .single-testimonial {
border-radius: 30px;
text-align: center;
max-width: 815px;
margin: 0 auto;
padding: 20px 30px 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
#cl-testimonial .testimonial-slide7.slider7 .single-testimonial .testimonial-left {
width: 100%;
float: none;
}
#cl-testimonial .testimonial-slide7.slider7 .single-testimonial .testimonial-left .cl-author-info .name {
font-size: 20px;
}
#cl-testimonial .testimonial-slide7.slider7 .single-testimonial .testimonial-left .cl-author-info .designation {
font-size: 14px;
font-style: italic;
}
#cl-testimonial .testimonial-slide7.slider7 .single-testimonial .right-content {
width: 100%;
float: none;
}
#cl-testimonial .testimonial-slide7.slider7 .single-testimonial .right-content p {
padding-left: 0;
text-align: center;
padding-top: 10px;
}
#cl-testimonial .hide_bullet .testimonial-slide2.slider2 {
padding-bottom: 0 !important;
}
#cl-testimonial .hide_bullet .testimonial-slide2.slider2 .slick-arrow {
background: #212121;
height: 42px;
width: 42px;
line-height: 41px;
border-radius: 50%;
color: #fff;
text-indent: 1px;
transition: 0.3s ease;
opacity: 0;
}
#cl-testimonial .hide_bullet .testimonial-slide2.slider2 .slick-arrow:hover {
opacity: 1;
background: #ff3115;
}
#cl-testimonial .hide_bullet .testimonial-slide2.slider2:hover .slick-arrow {
opacity: 1;
}
#cl-testimonial.gray-style .testimonial-slide2.slider2 .image-testimonial img {
padding: 0;
box-shadow: 0 3px 14px rgba(0, 0, 0, 0.2);
}
#cl-testimonial.gray-style .testimonial-slide2.slider2 .image-testimonial .testimonial-content:hover {
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.19) !important;
}
#cl-testimonial .testimonial-slide4.slider4 {
padding-bottom: 60px !important;
margin-left: 3px;
}
#cl-testimonial .testimonial-slide4.slider4 .image-testimonial {
padding-top: 53px;
padding-bottom: 10px;
}
#cl-testimonial .testimonial-slide4.slider4 .image-testimonial .testimonial-content {
padding: 80px 35px 35px;
position: relative;
overflow: visible;
margin: 0 15px;
border-radius: 0;
background: #fff !important;
}
#cl-testimonial .testimonial-slide4.slider4 .image-testimonial .testimonial-content:before {
content: "\f10d";
font-family: FontAwesome;
position: absolute;
font-size: 100px;
color: #ff3115;
top: 48%;
transform: translateX(-50%) translateY(-50%);
left: 50%;
opacity: 0.08;
}
#cl-testimonial .testimonial-slide4.slider4 .image-testimonial .testimonial-content h4 {
text-align: left !important;
margin-bottom: 0;
}
#cl-testimonial .testimonial-slide4.slider4 .image-testimonial .testimonial-content p {
font-style: normal;
margin-bottom: 0;
}
#cl-testimonial .testimonial-slide4.slider4 .image-testimonial .testimonial-content .cl-author-info {
background: transparent !important;
}
#cl-testimonial .testimonial-slide4.slider4 .image-testimonial .testimonial-content .cl-author-info li:last-child {
font-size: 15px;
}
#cl-testimonial .testimonial-slide4.slider4 .image-testimonial img {
width: 100px;
padding: 5px;
background: #fff;
border: 1px solid #eee;
border-radius: 50%;
position: absolute;
top: -50px;
left: 50%;
transform: translateX(-50%);
}
#cl-testimonial .testimonial-slide4.slider4 .slick-dots {
bottom: 0px !important;
left: 50%;
transform: translateX(-50%);
}
#cl-testimonial .testimonial-slide4.slider4 .slick-dots li button {
background: #fff;
margin: 3px;
}
#cl-testimonial .testimonial-slide4.slider4 .slick-dots li:first-child button {
border-radius: 4px 0 0 4px;
}
#cl-testimonial .testimonial-slide4.slider4 .slick-dots li:last-child button {
border-radius: 0 4px 4px 0;
}
#cl-testimonial .testimonial-slide4.slider4 .slick-dots li.slick-active button {
background-color: #ff3115;
}
#cl-testimonial .hide_bullet .testimonial-slide4.slider4 {
padding-bottom: 0 !important;
}
#cl-testimonial .hide_bullet .testimonial-slide4.slider4 .slick-arrow {
background: #212121;
height: 42px;
width: 42px;
line-height: 41px;
border-radius: 50%;
color: #fff;
text-indent: 1px;
transition: 0.3s ease;
opacity: 0;
}
#cl-testimonial .hide_bullet .testimonial-slide4.slider4 .slick-arrow:hover {
opacity: 1;
background: #ff3115;
}
#cl-testimonial .hide_bullet .testimonial-slide4.slider4:hover .slick-arrow {
opacity: 1;
}
#cl-testimonial.gray-style .testimonial-slide4.slider4 .image-testimonial img {
padding: 0;
box-shadow: 0 3px 14px rgba(0, 0, 0, 0.2);
}
#cl-testimonial.gray-style .testimonial-slide4.slider4 .image-testimonial .testimonial-content:hover {
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.19) !important;
} .rs-latest-news .news-normal-block {
padding: 0px;
border: 1px solid rgba(34, 34, 34, 0.1);
background: #fff;
transition: all 0.3s ease 0s;
}
.rs-latest-news .news-normal-block:hover {
-webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.rs-latest-news .news-normal-block .news-img {
margin-bottom: 0px;
padding: 13px 13px 8px;
}
.rs-latest-news .news-normal-block .news-img img {
width: 100%;
}
.rs-latest-news .news-normal-block .news-info {
padding: 18px 30px 30px;
}
.rs-latest-news .news-normal-block .news-date {
font-size: 14px;
font-weight: 500;
margin-bottom: 5px;
}
.rs-latest-news .news-normal-block .news-date i {
font-size: 15px;
font-weight: 500;
display: inline-block;
margin-right: 4px;
color: #ff3115;
}
.rs-latest-news .news-normal-block .news-date span {
color: #505050;
}
.rs-latest-news .news-normal-block .news-title {
font-size: 20px;
margin-bottom: 12px;
}
.rs-latest-news .news-normal-block .news-title a {
color: #212121;
}
.rs-latest-news .news-normal-block .news-title a:hover,
.rs-latest-news .news-normal-block .news-title a:focus {
color: #ff3115;
}
.rs-latest-news .news-normal-block .news-desc p {
margin-bottom: 20px;
}
.rs-latest-news .news-normal-block .news-btn a {
display: inline-block;
margin-left: auto;
padding: 4px 20px;
font-size: 13px;
font-weight: 500;
text-decoration: none;
background-color: #ff3115;
color: #fff;
border-radius: 35px;
text-transform: uppercase;
}
.rs-latest-news .news-normal-block .news-btn a:hover {
background-color: #e41f05;
}
.rs-latest-news .news-list-block .news-list-item {
padding: 9px;
border: 1px solid rgba(34, 34, 34, 0.1);
transition: all 0.3s ease 0s;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
background: #fff;
}
.rs-latest-news .news-list-block .news-list-item:hover {
-webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.rs-latest-news .news-list-block .news-list-item + .news-list-item {
margin-top: 23px;
}
.rs-latest-news .news-list-block .news-list-item .news-img {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
padding-right: 15px;
}
.rs-latest-news .news-list-block .news-list-item .news-content {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.rs-latest-news .news-list-block .news-list-item .news-date {
font-size: 14px;
font-weight: 500;
margin-bottom: 10px;
}
.rs-latest-news .news-list-block .news-list-item .news-date i {
font-size: 15px;
font-weight: 500;
display: inline-block;
margin-right: 4px;
color: #ff3115;
}
.rs-latest-news .news-list-block .news-list-item .news-date span {
color: #505050;
}
.rs-latest-news .news-list-block .news-list-item .news-title {
font-size: 16px;
margin-bottom: 3px;
}
.rs-latest-news .news-list-block .news-list-item .news-title a {
color: #212121;
}
.rs-latest-news .news-list-block .news-list-item .news-title a:hover,
.rs-latest-news .news-list-block .news-list-item .news-title a:focus {
color: #ff3115;
}
.rs-latest-news .news-list-block .news-list-item .news-btn a {
display: inline-block;
margin-left: auto;
padding: 8px 20px;
font-size: 15px;
font-weight: 500;
text-decoration: none;
background-color: #ff3115;
color: #fff;
}
.rs-latest-news .news-list-block .news-list-item .news-btn a:hover {
background-color: #e41f05;
}
.rs-latest-news .news-list-block .news-list-item .news-desc p {
margin-bottom: 0;
}
.latest-news-slider .news-normal-block {
box-shadow: none !important;
}
.latest-news-slider .slick-arrow {
position: absolute;
z-index: 11;
bottom: 0;
right: -104px;
height: 42px;
width: 42px;
font-size: 0;
border: 0;
background-color: rgba(0, 0, 0, 0.1) !important;
color: #ff3115;
cursor: pointer;
outline: 0;
border-radius: 50%;
transition: all 0.3s ease 0s;
top: auto;
}
.latest-news-slider .slick-arrow:after {
font-family: FontAwesome;
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
font-size: 22px;
color: inherit;
text-indent: 2px;
}
.latest-news-slider .slick-arrow.slick-prev {
left: auto;
}
.latest-news-slider .slick-arrow.slick-prev:after {
content: "\f104";
}
.latest-news-slider .slick-arrow.slick-next {
right: -160px;
}
.latest-news-slider .slick-arrow.slick-next:after {
content: "\f105";
}
.latest-news-slider .slick-arrow:hover {
background-color: #ff3115;
color: #fff !important;
}
.latest-news-nav .slick-track {
width: 100% !important;
}
.latest-news-nav .slick-slide {
width: calc(100% - 2px) !important;
margin-bottom: 12px;
cursor: pointer;
background-color: #fff;
border: 1px solid rgba(34, 34, 34, 0.1);
padding: 13px;
transition: all 0.3s ease 0s;
}
.latest-news-nav .slick-slide.slick-current,
.latest-news-nav .slick-slide:hover {
background-color: #ff3115;
-webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.latest-news-nav .slick-slide.slick-current img,
.latest-news-nav .slick-slide:hover img {
opacity: 0.8;
}
.rs-latest-news.style2 .latest-news-nav .slick-track {
width: 100% !important;
}
.rs-latest-news.style2 .latest-news-nav .slick-slide {
width: calc(100% - 2px) !important;
margin-bottom: 12px;
cursor: pointer;
background-color: #fff;
border: 1px solid rgba(34, 34, 34, 0.1);
padding: 13px;
transition: all 0.3s ease 0s;
}
.rs-latest-news.style2 .latest-news-nav .slick-slide.slick-current,
.rs-latest-news.style2 .latest-news-nav .slick-slide:hover {
background: #fff !important;
border-color: #ccc !important;
-webkit-box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
}
.rs-latest-news.style2 .latest-news-nav .slick-slide.slick-current img,
.rs-latest-news.style2 .latest-news-nav .slick-slide:hover img {
opacity: 0.8;
}
.rs-latest-news.style2 .news-normal-block {
background: #fff;
}
.rs-latest-news.style2 .news-list-block .news-list-item + .news-list-item {
margin-top: 15px;
}
.rs-latest-news.style2 .slick-arrow {
bottom: -95px;
right: -10px;
}
.rs-latest-news.style2 .slick-arrow.slick-next {
right: -65px;
} .rs-calltoaction {
text-align: center;
}
.rs-calltoaction .cta-button {
display: inline-block;
text-decoration: none;
background-color: #ff3115;
color: #ffffff;
font-weight: 500;
min-width: 170px;
line-height: 45px;
height: 45px;
text-align: center;
border-radius: 35px;
text-transform: uppercase;
}
.rs-calltoaction .cta-button:hover,
.rs-calltoaction .cta-button:focus,
.rs-calltoaction .cta-button:active {
background-color: #e41f05;
color: rgba(255, 255, 255, 0.7);
box-shadow: 0 10px 20px rgba(255, 255, 255, 0.04);
}
.rs-calltoaction .rs-heading {
margin-bottom: 10px;
}
.rs-calltoaction .rs-heading h2 {
margin-bottom: 12px !important;
}
.rs-calltoaction .rs-heading:after {
display: none;
} #rs-pricing .price-table.style1 .cl-pricetable-wrap {
background: #fff;
border: 1px solid #f0f0f0;
border-radius: 5px;
}
#rs-pricing .price-table.style1 .cl-pricetable-wrap:before {
display: none;
}
#rs-pricing .price-table.style1 .cl-pricetable-wrap .top h5 {
font-weight: 400 !important;
}
#rs-pricing .price-table.style1 .cl-pricetable-wrap .top .cl-header h4 {
font-size: 18px;
line-height: normal;
margin-bottom: 15px;
font-weight: 600;
color: #212121;
text-transform: uppercase;
}
#rs-pricing .price-table.style1 .cl-pricetable-wrap .bottom ul li {
font-size: inherit;
font-weight: 400;
text-transform: inherit;
padding: 10px;
}
#rs-pricing .price-table.style1 .cl-pricetable-wrap .bottom .btn-table {
margin-top: 30px;
position: relative;
z-index: 10;
height: 46px;
line-height: 46px;
border-radius: 0;
max-width: 170px;
transition: 0.3s ease all;
background: #ff3115 !important;
border-radius: 23px;
}
#rs-pricing .price-table.style1 .cl-pricetable-wrap .bottom .btn-table:hover {
background: #212121 !important;
}
#rs-pricing .price-table.style1 .cl-pricetable-wrap.featured {
background: #212121;
}
#rs-pricing .price-table.style1 .cl-pricetable-wrap.featured * {
color: #fff !important;
}
#rs-pricing .price-table.style1 .cl-pricetable-wrap.featured .bottom .btn-table {
background: #ff3115 !important;
color: #ffffff !important;
}
#rs-pricing .price-table.style1 .cl-pricetable-wrap.featured .bottom .btn-table:hover {
opacity: 0.8;
}
#rs-pricing .price-table.style1 .cl-pricetable-wrap .cl-header h4 {
margin-bottom: 25px;
} .rs-gallery {
position: relative;
}
.rs-gallery .gallery-desc {
max-width: 630px;
background: #ff3115;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
width: 100%;
padding: 70px 0;
z-index: 10;
text-align: center;
}
.rs-gallery .gallery-desc .title {
font-size: 30px;
color: #ffffff;
margin-bottom: 10px;
}
.rs-gallery .gallery-desc .sub-title {
font-size: 30px;
color: #212121;
margin-bottom: 0;
}
.rs-gallery .no-gutters .mb-30 {
margin-bottom: 0 !important;
}
.rs-gallery .gallery-item .img-wrap {
display: block;
position: relative;
}
.rs-gallery .gallery-item .img-wrap:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(17, 17, 17, 0.5);
opacity: 1;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.rs-gallery .gallery-item:hover a:after {
opacity: 0;
}
.rs-gallery .gallery-item.show-zoom-yes {
position: relative;
}
.rs-gallery .gallery-item.show-zoom-yes .img-wrap {
pointer-events: none;
}
.rs-gallery .gallery-item.show-zoom-yes .zoom-icon {
position: absolute;
left: 50%;
top: 60%;
display: inline-block;
width: 50px;
line-height: 50px;
height: 50px;
border-radius: 50%;
text-align: center;
background-color: #ff3115;
color: #ffffff;
font-size: 18px;
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
transition: all 0.3s ease 0s;
opacity: 0;
z-index: 10;
}
.rs-gallery .gallery-item.show-zoom-yes:hover .zoom-icon {
top: 50%;
opacity: 1;
} body .about-tabs .vc_tta-container .vc_tta-tabs-container {
margin: 0 0 40px !important;
}
body .about-tabs .vc_tta-container .vc_tta-tabs .vc_tta-panel-body {
background-color: transparent !important;
padding: 0;
border: 0 !important;
border-radius: 0 !important;
}
body .about-tabs .vc_tta-panels-container .vc_tta-panels {
border: 0 !important;
}
body .about-tabs .vc_tta-tab a {
padding: 0px !important;
border: 0 !important;
border-radius: 0 !important;
margin: 0 43px 15px 0 !important;
-webkit-transition: 0.9s ease all;
transition: 0.9s ease all;
color: #212121 !important;
background: transparent !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
font-size: 28px;
line-height: normal;
}
body .about-tabs .vc_tta-tab:last-child a {
margin-right: 0 !important;
}
body .about-tabs li.vc_tta-tab:hover a,
body .about-tabs li.vc_tta-tab.vc_active a {
color: #ff3115 !important;
} .rs-products-slider .owl-stage-outer {
padding-bottom: 30px;
}
.rs-products-slider .product-item {
text-align: center;
transition: all 0.3s ease 0s;
background-color: #ffffff;
padding-bottom: 40px;
}
.rs-products-slider .product-item:hover {
-webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.rs-products-slider .product-item .product-img {
margin-bottom: 32px;
overflow: hidden;
}
.rs-products-slider .product-item .product-img img {
width: 100%;
transition: all 0.3s ease 0s;
}
.rs-products-slider .product-item .product-img:hover img {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
.rs-products-slider .product-item .product-title {
font-size: 20px;
margin-bottom: 3px;
}
.rs-products-slider .product-item .product-title a {
color: #212121;
}
.rs-products-slider .product-item .product-title a:hover,
.rs-products-slider .product-item .product-title a:focus,
.rs-products-slider .product-item .product-title a:active {
color: #ff3115;
}
.rs-products-slider .product-item .product-price {
font-size: 16px;
color: #444;
display: block;
}
.rs-products-slider .product-item .product-btn {
margin-top: 20px;
}
.rs-products-slider .view-btn {
text-align: center;
margin-top: 20px;
}
.rs-products-slider .view-btn a {
display: inline-block;
margin-left: auto;
min-width: 170px;
padding: 8px 20px;
font-size: 15px;
font-weight: 500;
text-decoration: none;
background-color: #ff3115;
color: #fff;
}
.rs-products-slider .view-btn a:hover {
background-color: #e41f05;
}
.rs-products-slider .owl-carousel .owl-nav [class*="owl-"] {
top: calc(50% - 15px);
}
.lp-single-course .course-author .author-name {
float: left;
padding-right: 15px;
}
.lp-single-course .course-author .author-name img {
width: auto !important;
height: auto !important;
border-radius: 0 !important;
}
.lp-single-course .author-info {
float: left;
}
.lp-single-course .author-info h4 {
margin-bottom: 10px;
}
.lp-single-course .author-info h4 a {
color: #212121;
}
.lp-single-course .author-info h4 a:hover {
color: #ff3115;
}
.lp-single-course .author-info h4 span {
font-size: 14px;
display: block;
font-weight: 400;
}
.lp-single-course .author-info ul {
margin: 0;
}
.lp-single-course .author-info ul li {
display: inline-block;
list-style: none;
}
.lp-single-course .author-info ul li a {
display: block;
background: #ff3115;
color: #fff;
padding: 3px 0;
width: 40px;
text-align: center;
}
.lp-single-course .author-bio {
font-size: 14px !important;
font-style: normal !important;
padding-top: 20px;
}
.event-style2 {
text-align: center;
}
.event-style2 .events-details {
margin-top: -5px;
}
.event-style2 .event-date {
background-color: #ff3115;
max-width: 170px;
margin: 0 auto;
height: 30px;
margin-top: -32px;
position: relative;
top: -13px;
border-radius: 15px 15px 0 0;
padding-top: 2px;
text-align: center;
}
.event-style2 .event-date span,
.event-style2 .event-date i {
color: #fff !important;
}  [class*='rs-animation-'] {
-webkit-animation-duration: 0.5s;
animation-duration: 0.5s;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.rs-animation-fade {
-webkit-animation-name: rs-fade;
animation-name: rs-fade;
-webkit-animation-duration: 0.8s;
animation-duration: 0.8s;
-webkit-animation-timing-function: linear !important;
animation-timing-function: linear !important;
}
.rs-animation-slide-top {
-webkit-animation-name: rs-fade-top;
animation-name: rs-fade-top;
}
.rs-animation-slide-bottom {
-webkit-animation-name: rs-fade-bottom;
animation-name: rs-fade-bottom;
}
.rs-animation-slide-left {
-webkit-animation-name: rs-fade-left;
animation-name: rs-fade-left;
}
.rs-animation-slide-right {
-webkit-animation-name: rs-fade-right;
animation-name: rs-fade-right;
}
.rs-animation-scale-up {
-webkit-animation-name: rs-animation-scale-up;
animation-name: rs-animation-scale-up;
}
.rs-animation-scale-down {
-webkit-animation-name: rs-animation-scale-down;
animation-name: rs-animation-scale-down;
}
.rs-animation-shake {
-webkit-animation-name: rs-shake;
animation-name: rs-shake;
}
.rs-animation-rotate {
-webkit-animation-name: rs-rotate;
animation-name: rs-rotate;
}
.rs-animation-scale {
-webkit-animation-name: rs-scale;
animation-name: rs-scale;
}
.rs-animation-hover:not(:hover),
.rs-animation-hover:not(:hover) [class*='rs-animation-'] {
-webkit-animation-name: none;
animation-name: none;
}
.rs-animation-reverse {
-webkit-animation-direction: reverse;
animation-direction: reverse;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
.rs-image-effect-shine {
position: relative;
overflow: hidden;
}
.rs-image-effect-shine::before {
position: absolute;
top: 0;
left: -75%;
z-index: 2;
display: block;
content: '';
width: 50%;
height: 100%;
background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
-webkit-transform: skewX(-25deg);
transform: skewX(-25deg);
}
.rs-image-effect-shine:hover::before {
-webkit-animation: img-shine 1s;
animation: img-shine 1s;
}
@-webkit-keyframes img-shine {
100% {
left: 125%;
}
}
@keyframes img-shine {
100% {
left: 125%;
}
} @-webkit-keyframes rs-fade {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes rs-fade {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
} @-webkit-keyframes rs-fade-top {
0% {
opacity: 0;
-webkit-transform: translateY(-60%);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
}
}
@keyframes rs-fade-top {
0% {
opacity: 0;
transform: translateY(-60%);
}
100% {
opacity: 1;
transform: translateY(0);
}
} @-webkit-keyframes rs-fade-bottom {
0% {
opacity: 0;
-webkit-transform: translateY(60%);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
}
}
@keyframes rs-fade-bottom {
0% {
opacity: 0;
transform: translateY(60%);
}
100% {
opacity: 1;
transform: translateY(0);
}
} @-webkit-keyframes rs-fade-left {
0% {
opacity: 0;
-webkit-transform: translateX(-60%);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
}
}
@keyframes rs-fade-left {
0% {
opacity: 0;
transform: translateX(-60%);
}
100% {
opacity: 1;
transform: translateX(0);
}
} @-webkit-keyframes rs-fade-right {
0% {
opacity: 0;
-webkit-transform: translateX(60%);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
}
}
@keyframes rs-fade-right {
0% {
opacity: 0;
transform: translateX(60%);
}
100% {
opacity: 1;
transform: translateX(0);
}
} @-webkit-keyframes rs-animation-scale-up {
0% {
opacity: 0;
-webkit-transform: scale(0.2);
}
100% {
opacity: 1;
-webkit-transform: scale(1);
}
}
@keyframes rs-animation-scale-up {
0% {
opacity: 0;
transform: scale(0.2);
}
100% {
opacity: 1;
transform: scale(1);
}
} @-webkit-keyframes rs-animation-scale-down {
0% {
opacity: 0;
-webkit-transform: scale(1.6);
}
100% {
opacity: 1;
-webkit-transform: scale(1);
}
}
@keyframes rs-animation-scale-down {
0% {
opacity: 0;
transform: scale(1.6);
}
100% {
opacity: 1;
transform: scale(1);
}
} @-webkit-keyframes rs-rotate {
0% {
-webkit-transform: rotate(280deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes rs-rotate {
0% {
transform: rotate(280deg);
}
100% {
transform: rotate(360deg);
}
} @-webkit-keyframes rs-shake {
0%,
100% {
-webkit-transform: translateX(0);
}
10% {
-webkit-transform: translateX(-9px);
}
20% {
-webkit-transform: translateX(8px);
}
30% {
-webkit-transform: translateX(-7px);
}
40% {
-webkit-transform: translateX(6px);
}
50% {
-webkit-transform: translateX(-5px);
}
60% {
-webkit-transform: translateX(4px);
}
70% {
-webkit-transform: translateX(-3px);
}
80% {
-webkit-transform: translateX(2px);
}
90% {
-webkit-transform: translateX(-1px);
}
}
@keyframes rs-shake {
0%,
100% {
transform: translateX(0);
}
10% {
transform: translateX(-9px);
}
20% {
transform: translateX(8px);
}
30% {
transform: translateX(-7px);
}
40% {
transform: translateX(6px);
}
50% {
transform: translateX(-5px);
}
60% {
transform: translateX(4px);
}
70% {
transform: translateX(-3px);
}
80% {
transform: translateX(2px);
}
90% {
transform: translateX(-1px);
}
} @-webkit-keyframes rs-scale {
0% {
-webkit-transform: scale(1.2);
}
100% {
-webkit-transform: scale(1);
}
}
@keyframes rs-scale {
0% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce .wc-forward,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
border: 1px solid #ff3115;
padding: 11px 22px !important;
line-height: normal;
font-size: 14px;
text-transform: uppercase;
font-weight: 500 !important;
background: #ff3115 !important;
color: #fff;
border-radius: 30px !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce .wc-forward:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
background: transparent !important;
color: #212121;
}
.woocommerce #review_form #respond textarea {
border: 1px solid rgba(54, 54, 54, 0.1);
}
.wc-forward:hover {
background: transparent !important;
color: #212121;
}
.woocommerce .woocommerce-ordering select {
vertical-align: top;
padding: 10px;
border: 1px solid #ced4da;
border-radius: 5px;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
text-align: center;
}
ul.products .star-rating {
width: 66px;
margin: 2px auto 5px !important;
}
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before {
color: #ff3115 !important;
}
.woocommerce ul.products li {
padding: 0 0 25px !important;
position: relative !important;
overflow: hidden;
text-align: center;
transition: all 0.3s ease 0s;
margin-bottom: 15px !important;
}
.woocommerce ul.products li img {
margin-bottom: 0 !important;
position: relative;
width: 100%;
}
.woocommerce ul.products li .woocommerce-loop-product__title {
font-size: 20px !important;
padding-bottom: 0px !important;
}
.woocommerce ul.products li .woocommerce-loop-product__title a {
color: #212121;
}
.woocommerce ul.products li .button {
margin-top: 5px !important;
}
.woocommerce ul.products li:hover {
background: #f5f5f5;
}
.woocommerce ul.products li:hover a {
background: transparent !important;
color: #212121;
}
.woocommerce ul.products li:hover .wc-forward {
background: transparent !important;
color: #212121;
}
.related .star-rating::beforee {
top: 50% !important;
right: 50% !important;
transform: translate(50%, -50%);
}
.woocommerce .star-rating span::before {
color: #ff3115;
} .woocommerce ul.products.single-product-page {
padding: 100px 0 0;
}
.woocommerce ul.products li.product {
padding: 0;
position: relative;
overflow: hidden;
text-align: center;
transition: all 0.3s ease 0s;
margin-bottom: 0;
}
.woocommerce ul.products li.product .triangle_left {
width: 0;
height: 0;
border-top: 70px solid transparent;
border-right: 140px solid #ff3115;
border-bottom: 70px solid transparent;
position: absolute;
top: -75px;
left: -117px;
transform: rotate(48deg);
opacity: 0;
}
.woocommerce ul.products li.product:hover {
background: #f5f5f5;
}
.woocommerce ul.products li.product:hover .triangle_left {
opacity: 1;
}
.woocommerce ul.products li.product:hover h3 a {
color: #ff3115;
}
.woocommerce ul.products li.product:hover .add-to-cart {
background: #ff3115;
color: #fff !important;
}
.woocommerce ul.products li.product:hover .images-product .overley {
opacity: 1;
transform: scaleY(1);
}
.woocommerce ul.products li.product .images-product {
position: relative;
overflow: hidden;
margin-bottom: 15px;
}
.woocommerce ul.products li.product .images-product a {
display: block;
}
.woocommerce ul.products li.product .images-product a img {
transition: all 0.3s ease-out;
width: 100%;
}
.woocommerce ul.products li.product .images-product .overley {
position: absolute;
left: 0;
right: 0;
text-align: center;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
top: 0;
transform: scaleY(0);
transform-origin: 0 1 0;
opacity: 0;
transition: all 0.3s ease 0s;
padding: 30px;
}
.woocommerce ul.products li.product .images-product .overley .winners-details {
padding: 0;
}
.woocommerce ul.products li.product .images-product .overley .winners-details h4 {
margin-bottom: 10px;
padding-bottom: 10px;
color: #ffffff;
font-size: 18px;
position: relative;
}
.woocommerce ul.products li.product .images-product .overley .winners-details h4:after {
display: none;
}
.woocommerce ul.products li.product .images-product .overley .winners-details .product-info {
margin: 0;
padding: 0px;
list-style: none;
top: 55%;
position: absolute;
transform: translateY(-55%);
transition: all .9s;
text-align: center;
left: 0;
right: 0;
}
.woocommerce ul.products li.product .images-product .overley .winners-details .product-info ul {
padding: 0;
margin: 0;
}
.woocommerce ul.products li.product .images-product .overley .winners-details .product-info ul li {
display: inline-block;
margin: 0 !important;
padding: 0 !important;
vertical-align: top;
}
.woocommerce ul.products li.product .images-product .overley .winners-details .product-info ul li a {
color: #ffffff;
text-transform: capitalize;
text-decoration: none;
width: 30px;
height: 30px;
line-height: 30px;
border: 1px solid #ffffff;
text-align: center;
transition: all 0.3s ease 0s;
border-radius: 0;
}
.woocommerce ul.products li.product .images-product .overley .winners-details .product-info ul li a:hover {
color: #ff3115;
border: 1px solid #ff3115;
}
.woocommerce ul.products li.product .images-product .overley .winners-details .product-info ul li a i {
font-size: 16px;
margin: 0;
transition: all 0.3s ease 0s;
}
.woocommerce ul.products li.product .images-product .overley .winners-details .product-info ul li a i:hover {
color: #ff3115;
}
.woocommerce ul.products li.product .images-product .overley .winners-details .product-info ul li .yith-wcwl-add-to-wishlist {
margin-top: 0;
}
.woocommerce ul.products li.product .images-product .overley .winners-details .product-info ul li:hover {
background: none;
}
.woocommerce ul.products li.product .images-product .overley .winners-details p {
margin-bottom: 5px;
color: #ffffff;
font-size: 13px;
}
.woocommerce ul.products li.product .images-product .overley .winners-details p i {
color: #ffffff;
margin-right: 8px;
}
.woocommerce ul.products li.product h4 {
margin-bottom: 10px !important;
margin-left: 0;
font-weight: 700;
}
.woocommerce ul.products li.product h4 a {
color: #212121;
transition: all 0.3s ease 0s;
font-size: 20px;
margin: 0;
}
.woocommerce ul.products li.product h4 a:hover {
color: #ff3115;
}
.woocommerce ul.products li.product .price-details ul {
margin: 0;
padding: 0;
text-align: center;
}
.woocommerce ul.products li.product .price-details ul li {
display: block;
}
.woocommerce ul.products li.product .price-details ul li:first-child {
font-weight: 600;
font-size: 15px;
}
.woocommerce ul.products li.product .price-details ul li:first-child del {
margin-right: 5px;
font-weight: 400;
font-size: 15px;
}
.woocommerce ul.products li.product .price-details ul li .add-to-cart {
border: 1px solid #ff3115;
padding: 8px 18px;
color: #212121;
font-size: 15px;
font-weight: 600;
display: inline-block;
margin-top: 15px;
}
.woocommerce ul.products .topbar-area {
overflow: hidden;
padding-bottom: 54px;
}
.woocommerce ul.products .topbar-area .showing-Short .seclec-box {
float: right;
}
.woocommerce ul.products .topbar-area .showing-result ul {
margin: 0;
padding: 0;
list-style: none;
text-align: left;
}
.woocommerce ul.products .topbar-area .showing-result ul li {
display: inline-block;
font-weight: 400;
color: #505050;
margin-right: 0;
font-size: 14px;
height: 25px;
}
.woocommerce ul.products .topbar-area .showing-result ul li .form-group {
margin: 0;
}
.woocommerce ul.products .topbar-area .showing-result ul li .form-group.seclect-box select.form-control {
display: inline-block;
border: 0;
background: transparent;
border-radius: 0px;
}
.woocommerce ul.products .pagination {
margin-top: 0;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
color: #ff3115 !important;
font-size: 15px !important;
font-weight: 600;
}
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins,
.woocommerce ul.products li.product .price ins {
color: #ff3115 !important;
}
.woocommerce .quantity .qty {
height: 40px !important;
width: 70px;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
font-size: 16px;
}
.woocommerce-form-login .woocommerce-Button {
margin-right: 12px !important;
}
.woocommerce .woocommerce-ordering {
margin: -10px 0 2em;
}
.woocommerce a.remove {
margin: 0 auto;
}
.coupon input#coupon_code {
width: 140px !important;
border-radius: 30px;
}
.coupon ::-webkit-input-placeholder { color: #212121 !important;
font-size: 14px !important;
font-weight: 500 !important;
}
.coupon ::-moz-placeholder { color: #212121 !important;
font-size: 14px !important;
font-weight: 500 !important;
}
.coupon :-ms-input-placeholder { color: #212121 !important;
font-size: 14px !important;
font-weight: 500 !important;
}
.coupon :-moz-placeholder { color: #212121 !important;
font-size: 14px !important;
font-weight: 500 !important;
}
.single-product .bs-info {
display: none;
}
.single-product .bs-img {
display: none;
}
.single-product .bs-desc {
margin-top: 0px !important;
}
.woocommerce-message,
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
border-top-color: #e41f05;
}
.woocommerce-message::before,
.woocommerce-info::before {
color: #e41f05;
}
.woocommerce #content table.cart td.actions .input-text,
.woocommerce table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text {
width: 110px;
height: 40px;
text-align: center;
}
.select2-container--default .select2-selection--single {
border: 1px solid #ccc;
border-radius: 0;
height: 40px;
line-height: 40px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
top: 8px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
line-height: 37px;
}
input[type="tel"] {
padding: 10px 14px;
border: none;
outline: none;
width: 100%;
height: 50px;
border: 1px solid rgba(54, 54, 54, 0.1);
}
.woocommerce-form__label span {
padding-left: 5px;
}
.woocommerce-form__label .input-checkbox {
margin: 7px 0 0 !important;
}
body.woocommerce-page input[type="text"],
body.woocommerce-page input[type="number"],
body.woocommerce-page input[type="password"],
body.woocommerce-page input[type="email"],
body.woocommerce-page .select2-container--default .select2-selection--single,
body.woocommerce-page .woocommerce form .form-row.woocommerce-validated .select2-container,
body.woocommerce-page .woocommerce form .form-row.woocommerce-validated input.input-text,
body.woocommerce-page .woocommerce form .form-row.woocommerce-validated select {
border: 1px solid rgba(54, 54, 54, 0.1);
height: 45px;
}
body.woocommerce-page .select2-container--default .select2-selection--single .select2-selection__rendered {
color: #505050;
opacity: .5;
}
.woocommerce-cart-form table.shop_table {
border: none !important;
border-collapse: collapse;
}
.woocommerce-cart-form table.shop_table td,
.woocommerce-cart-form table.shop_table th {
padding: 25px;
text-align: center;
}
.woocommerce table.shop_table {
border-collapse: collapse !important;
}
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
padding-top: 40px;
}
.cart_totals h2 {
text-transform: capitalize;
}
.cart_totals table.shop_table th,
.cart_totals table.shop_table td {
padding: 20px;
}
.woocommerce-tabs h2 {
font-size: 20px;
}
.related.products h2 {
font-size: 20px;
}
.single-product .summary.entry-summary h1.product_title.entry-title {
font-size: 25px !important;
line-height: 25px !important;
}
#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
width: 50px !important;
}
.cart-collaterals th,
.cart-collaterals td {
border: none !important;
border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.cart-collaterals tr:last-child td,
.cart-collaterals tr:last-child th {
border-bottom: none !important;
}
.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
max-width: 100%;
}
.woocommerce .form-row {
display: block;
}
.woocommerce .add_to_cart_button {
transition: 0.3s ease all;
}
.woocommerce .add_to_cart_button:after {
font-size: inherit !important;
vertical-align: initial !important;
}
.woocommerce .add_to_cart_button.added {
display: none !important;
opacity: 0;
}
.woocommerce .add_to_cart_button.loading {
padding-right: 40px !important;
}
.woocommerce .add_to_cart_button.loading:after {
top: 12px !important;
right: 15px !important;
font-size: inherit !important;
}
h3#order_review_heading {
margin-top: 60px;
padding: 0 15px;
}
#order_review {
padding: 0 15px;
}
textarea.input-text {
border: 1px solid #ccc;
}
.button.yith-wcqv-button {
display: none !important;
}
.post-type-archive .learn-press-courses .course .course-title {
display: none !important;
}
.related-courses.rs-courses-3 .course-item {
margin-bottom: 30px;
border: 1px solid #dddddd;
transition: all 0.35s ease 0s;
}
.related-courses.rs-courses-3 .course-item .course-img {
position: relative;
margin: -1px -1px 0 -1px;
}
.related-courses.rs-courses-3 .course-item .course-img:before {
background: rgba(0, 0, 0, 0.5);
background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
background: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
background: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
position: absolute;
content: "";
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transition: all 1s ease;
transition: all 1s ease;
}
.related-courses.rs-courses-3 .course-item .course-img img {
width: 100%;
}
.related-courses.rs-courses-3 .course-item .course-img .course-value {
position: absolute;
bottom: -30px;
right: 22px;
height: 60px;
width: 60px;
line-height: 60px;
text-align: center;
background-color: #ff3115;
color: #ffffff;
font-size: 14px;
font-weight: 600;
border-radius: 50%;
}
.related-courses.rs-courses-3 .course-item .course-toolbar {
position: absolute;
width: 100%;
bottom: 15px;
padding: 0 20px;
}
.related-courses.rs-courses-3 .course-item .course-toolbar .course-category {
margin-bottom: 3px;
}
.related-courses.rs-courses-3 .course-item .course-toolbar .course-category a {
font-size: 24px;
color: #ffffff;
}
.related-courses.rs-courses-3 .course-item .course-toolbar .course-category a:hover {
color: #ff3115;
}
.related-courses.rs-courses-3 .course-item .course-toolbar .course-date,
.related-courses.rs-courses-3 .course-item .course-toolbar .course-duration {
display: inline-block;
font-size: 14px;
text-transform: uppercase;
color: #ffffff;
font-weight: 600;
}
.related-courses.rs-courses-3 .course-item .course-toolbar .course-date i,
.related-courses.rs-courses-3 .course-item .course-toolbar .course-duration i {
margin-right: 3px;
}
.related-courses.rs-courses-3 .course-item .course-toolbar .course-duration {
margin-left: 12px;
}
.related-courses.rs-courses-3 .course-item .course-body .course-author {
margin-top: -28px;
position: relative;
overflow: hidden;
padding: 0 15px;
margin-bottom: 0;
}
.related-courses.rs-courses-3 .course-item .course-body .course-author .course_author_img {
background: #fff;
padding: 5px;
border-radius: 50%;
border: 2px solid #ff3115;
z-index: 10;
width: 50px;
height: 50px;
line-height: 50px;
margin: 0 auto;
}
.related-courses.rs-courses-3 .course-item .course-body .course-author .course_author_img img {
width: auto;
border-radius: 50%;
}
.related-courses.rs-courses-3 .course-item .course-body .course-author .author-contain {
text-align: center;
}
.related-courses.rs-courses-3 .course-item .course-body .course-author .author-contain .course-price {
text-align: center;
color: #ff3115;
font-weight: 500;
z-index: 1;
margin: 11px 0 0;
}
.related-courses.rs-courses-3 .course-item .course-body .course-title {
font-size: 18px;
margin-bottom: 7px;
padding: 0 15px 10px;
text-align: center;
line-height: 25px;
min-height: 70px;
}
.related-courses.rs-courses-3 .course-item .course-body .course-title a {
color: #212121;
}
.related-courses.rs-courses-3 .course-item .course-body .course-title a:hover {
color: #ff3115;
}
.related-courses.rs-courses-3 .course-item .course-body .course-desc {
padding: 20px;
}
.related-courses.rs-courses-3 .course-item .course-body .course-desc p {
margin-bottom: 0;
transition: all 0.35s ease 0s;
}
.related-courses.rs-courses-3 .course-item:hover {
box-shadow: 0 6px 40px rgba(0, 0, 0, 0.1);
}
.related-courses.rs-courses-3 .course-item:hover .course-img:before {
background: rgba(0, 0, 0, 0.5);
background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
background: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
background: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}
.related-courses.rs-courses-3 .course-meta {
padding: 15px 20px;
background-color: #f0f0f0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-justify-content: space-between;
justify-content: space-between;
font-weight: 600;
font-size: 15px;
margin: 0;
}
.related-courses.rs-courses-3 .course-meta .course-students,
.related-courses.rs-courses-3 .course-meta .course-comments-count {
margin: 0;
padding: 0;
}
.related-courses.rs-courses-3 .course-meta .course-comments-count i {
padding: 0 7px;
color: #ff3115;
}
.related-courses.rs-courses-3 .course-meta .course-students i {
padding: 0 4px 0 0;
color: #ff3115;
}
.related-courses.rs-courses-3 .course-meta .course-button a {
color: #505050;
display: inline-block;
position: relative;
padding-right: 12px;
}
.related-courses.rs-courses-3 .course-meta .course-button a:hover {
color: #ff3115;
}
.related-courses.rs-courses-3 .course-meta .course-button a:after {
font-family: fontAwesome;
content: "\f101";
position: absolute;
right: 0;
}
.related-courses.rs-courses-3 .view-more {
bottom: auto;
}
.related-courses.rs-courses-3 .owl-carousel .owl-item img {
width: auto;
}
body.learnpress .user-tab {
float: left;
width: 20%;
}
body.learnpress .user-tab .user-information .author-name {
text-align: center;
margin: 15px 0 0;
text-transform: capitalize;
}
body.learnpress .user-tab .user-information .author-name span {
display: block;
font-size: 15px;
line-height: 20px;
color: #555;
}
body.learnpress .user-tab .user-information ul {
padding: 20px 10px;
text-align: center;
margin: 0;
}
body.learnpress .user-tab .user-information ul li {
display: inline-block;
height: 30px;
width: 30px;
line-height: 30px;
text-align: center;
background-color: #f0f0f0;
margin-right: 2px;
margin-bottom: 4px;
border-radius: 2px;
transition: all 0.3s ease 0s;
}
body.learnpress .user-tab .user-information ul li:hover {
background: #ff3115;
}
body.learnpress .user-tab .user-information ul li:hover a {
color: #fff;
}
body.learnpress .profile-tabs {
float: left;
width: 80%;
padding-left: 50px;
}
body.learnpress .profile-tabs #profile-content-wishlist .course-title {
font-size: 20px;
margin: 20px 0;
}
body.learnpress .profile-tabs #profile-content-wishlist .course-title h3 {
margin: 20px 0;
font-size: 20px;
}
body.learnpress .profile-tabs #profile-content-wishlist .course-wishlist {
color: #fff;
}
body.learnpress .profile-tabs .profile-orders table tr th {
background: #ff3115;
}
body.learnpress .profile-tabs .profile-orders table tr td a {
color: #212121;
}
body.learnpress .profile-tabs .profile-orders table tr td a:hover {
color: #ff3115;
}
body.learnpress .profile-tabs .profile-orders table tr td span.lp-label {
background: #ff3115;
}
body.learnpress .profile-tabs button {
color: #fff;
border-radius: 30px;
}
body.learnpress .profile-tabs select {
height: 40px;
width: 100%;
}
body.learnpress .profile-tabs input,
body.learnpress .profile-tabs textarea {
border: 1px solid rgba(54, 54, 54, 0.1);
}
body.learnpress .profile-tabs ul.nav-tabs {
margin: -8px 0 30px;
padding: 0;
}
body.learnpress .profile-tabs ul.nav-tabs li {
margin: 0 30px 0 0;
padding-bottom: 6px;
position: relative;
}
body.learnpress .profile-tabs ul.nav-tabs li a {
color: #212121;
}
body.learnpress .profile-tabs ul.nav-tabs li.active {
position: relative;
}
body.learnpress .profile-tabs ul.nav-tabs li.active:before {
content: "";
position: absolute;
bottom: -2px;
width: 100%;
height: 4px;
background: #ff3115;
left: 0;
display: block;
}
body.learnpress .profile-tabs ul.nav-tabs li.active a {
color: #ff3115;
}
body.learnpress .profile-tabs ul.nav-tabs li:hover a {
color: #ff3115;
}
body.learnpress .profile-tabs ul.nav-tabs li:hover:before {
content: "";
position: absolute;
bottom: -2px;
width: 100%;
height: 4px;
background: #ff3115;
left: 0;
display: block;
}
body.learnpress .profile-tabs ul.lp-tab-sections {
margin: -8px 0 30px;
padding: 0;
}
body.learnpress .profile-tabs ul.lp-tab-sections li {
margin: 15px 0 8px;
padding-bottom: 0;
position: relative;
border: none;
}
body.learnpress .profile-tabs ul.lp-tab-sections li a {
color: #212121;
}
body.learnpress .profile-tabs ul.lp-tab-sections li span {
border: none !important;
padding-bottom: 8px;
}
body.learnpress .profile-tabs ul.lp-tab-sections li.active {
position: relative;
}
body.learnpress .profile-tabs ul.lp-tab-sections li.active:before {
content: "";
position: absolute;
bottom: -8px;
width: 100%;
height: 4px;
background: #ff3115;
left: 0;
display: block;
}
body.learnpress .profile-tabs ul.lp-tab-sections li.active span {
color: #ff3115;
}
body.learnpress .profile-tabs ul.lp-tab-sections li:hover a {
color: #ff3115;
}
body.learnpress .profile-tabs ul.lp-tab-sections li:hover:before {
content: "";
position: absolute;
bottom: -8px;
width: 100%;
height: 4px;
background: #ff3115;
left: 0;
display: block;
}
body.learnpress #learn-press-profile-content {
float: none;
width: 100%;
margin-top: 0;
overflow: hidden;
}
body.learnpress .learn-press-subtab-content .profile-heading {
margin: 0 0 15px;
}
body.learnpress .learn-press-subtab-content ul.lp-sub-menu {
margin: -8px 0 20px;
padding: 0;
}
body.learnpress .learn-press-subtab-content ul.lp-sub-menu li {
margin: 10px 10px 8px 0;
padding-bottom: 0;
position: relative;
border: none;
}
body.learnpress .learn-press-subtab-content ul.lp-sub-menu li a {
color: #212121;
}
body.learnpress .learn-press-subtab-content ul.lp-sub-menu li span {
position: relative;
}
body.learnpress .learn-press-subtab-content ul.lp-sub-menu li span:before {
content: "";
position: absolute;
bottom: -8px;
width: 100%;
height: 4px;
background: #ff3115;
left: 0;
display: block;
}
body.learnpress .learn-press-subtab-content ul.lp-sub-menu li:hover a {
color: #ff3115;
}
body.learnpress .learn-press-subtab-content ul.lp-sub-menu li:hover:before {
content: "";
position: absolute;
bottom: -8px;
width: 100%;
height: 4px;
background: #ff3115;
left: 0;
display: block;
}
body.learnpress .learn-press-subtab-content .learn-press-courses li:hover .course-thumbnail img {
opacity: .9;
}
body.learnpress .learn-press-subtab-content .learn-press-courses li:hover .course-title {
color: #ff3115;
}
body.learnpress .learn-press-subtab-content tr th {
background: #ff3115;
}
body.learnpress .learn-press-subtab-content tr td a {
color: #212121;
}
body.learnpress .learn-press-subtab-content tr td a:hover {
color: #ff3115;
}
body.learnpress .learn-press-subtab-content tr td span.lp-label {
background: #ff3115;
}
body.login-form-body .learn-press-user-profile .profile-tabs {
padding: 0;
width: 100%;
}
body.login-form-body .learn-press-user-profile .profile-tabs .learn-press-form {
width: 50%;
float: left;
padding: 0 !important;
border: none !important;
}
body.login-form-body .learn-press-user-profile .profile-tabs .learn-press-form-login {
padding-right: 40px !important;
border-right: 1px solid #eee !important;
padding-bottom: 20px !important;
}
body.login-form-body .learn-press-user-profile .profile-tabs .learn-press-form-register {
padding-left: 40px !important;
}
#course-reviews .course-reviews-list li {
background: none !important;
border: none !important;
padding: 0 0 24px !important;
margin-bottom: 30px !important;
border-bottom: 1px solid #ddd !important;
}
#course-reviews .course-reviews-list li .review-author-info {
float: left;
}
#course-reviews .course-reviews-list li .review-author-info h4 {
margin: 0;
text-transform: capitalize;
}
#course-reviews .course-reviews-list li .review-author-info .review-title {
margin-top: 0;
}
#course-reviews .course-reviews-list li:last-child {
margin-bottom: 0 !important;
padding-bottom: 0 !important;
border-bottom: none !important;
} .rs-events .event-item .event-img {
margin-bottom: 0;
}
.rs-events .event-item .events-details {
padding: 20px 27px 27px;
}
.rs-events .event-item .event-date {
font-size: 14px;
font-weight: 500;
}
.rs-events .event-item .event-date i {
font-size: 13px;
display: inline-block;
margin-right: 5px;
color: #ff3115;
}
.rs-events .event-item .event-date span {
color: #505050;
}
.rs-events .event-item .event-title {
font-size: 20px;
margin-bottom: 5px;
margin-top: 4px;
text-transform: capitalize;
}
.rs-events .event-item .event-title a {
color: #212121;
}
.rs-events .event-item .event-title a:hover {
color: #ff3115;
}
.rs-events .event-item .event-meta {
font-size: 14px;
}
.rs-events .event-item .event-meta > div {
display: inline-block;
}
.rs-events .event-item .event-meta > div i {
font-size: 14px;
display: inline-block;
margin-right: 3px;
color: #ff3115;
}
.rs-events .event-item .event-meta .event-time {
margin-right: 10px;
}
.rs-events .event-item .event-btn {
margin-top: 18px;
}
.rs-events .event-item .event-btn a {
display: inline-block;
margin-left: auto;
padding: 4px 20px;
font-size: 13px;
font-weight: 500;
text-decoration: none;
background-color: #ff3115;
color: #fff;
border-radius: 35px;
text-transform: uppercase;
}
.rs-events .event-item .event-btn a:hover {
background: #e41f05;
}
.rs-events-2 .event-item {
margin-bottom: 30px;
background: #f9f9f9;
border: none;
}
.rs-events-2 .event-item .row {
margin: 0;
}
.rs-events-2 .event-item [class*="col-"] {
padding: 0;
}
.rs-events-2 .event-item .event-content {
padding: 15px 20px 20px 0;
}
.rs-events-2 .event-item .event-img {
margin: -1px 0 -1px -1px;
margin-right: 20px;
transition: all 0.3s ease 0s;
}
.rs-events-2 .event-item .event-img:hover {
opacity: 0.8;
}
.rs-events-2 .event-item .event-location {
font-size: 13px;
}
.rs-events-2 .event-item .event-location i {
font-size: 14px;
display: inline-block;
margin-right: 5px;
color: #ff3115;
}
.rs-events-2 .event-item .event-location span {
color: #505050;
}
.rs-events-2 .event-item .event-title {
font-size: 18px;
margin-bottom: 4px;
margin-top: 1px;
line-height: 25px;
font-weight: 600;
line-height: 25px !important;
text-transform: capitalize;
}
.rs-events-2 .event-item .event-title a {
color: #212121;
}
.rs-events-2 .event-item .event-meta {
font-size: 13px;
}
.rs-events-2 .event-item .event-meta > div {
display: inline-block;
}
.rs-events-2 .event-item .event-meta > div i {
font-size: 15px;
display: inline-block;
margin-right: 3px;
color: #ff3115;
}
.rs-events-2 .event-item .event-meta .event-time {
margin-left: 10px;
}
.rs-events-2 .event-item .event-desc {
margin-top: 7px;
line-height: 22px;
height: 65px;
overflow: hidden;
}
.rs-events-2 .event-item .event-desc p {
margin-bottom: 15px;
}
.rs-events-2 .event-item .event-btn {
margin-top: 20px;
}
.rs-events-2 .event-item .event-btn a {
display: inline-block;
height: 40px;
line-height: 40px;
text-align: center;
min-width: 130px;
border-radius: 30px;
padding: 0 15px;
background: #ff3115;
color: #fff;
transition: all 0.3s ease 0s;
font-weight: 600;
}
.rs-events-2 .event-item .event-btn a:hover {
background-color: #e41f05;
color: #fff;
}
.page-template-events .rs-events-2 .rs-vertical-middle {
display: table;
width: 100%;
}
.page-template-events .rs-events-2 .rs-vertical-middle .col-md-6 {
display: table-cell;
vertical-align: middle;
flex: auto;
width: 50%;
}
body.single-events .event-desc h3 {
margin: 10px 0 16px;
}
body.single-events .course-features-info ul li {
padding: 12px 0;
}
body.single-events .course-features-info .book-btn {
text-align: center;
margin-top: 25px;
}
body.single-events .course-features-info .book-btn a {
background: #ff3115;
color: #fff;
padding: 12px 30px;
border-radius: 5px;
}
body.single-events .course-features-info .book-btn a:hover {
opacity: .9;
}
body.single-events .event_map {
margin-top: 50px;
}
.rs-search-courses {
background: #212121;
border-radius: 5px;
}
.rs-search-courses .rs-search {
padding: 70px 100px;
}
.rs-search-courses .rs-search form {
width: 100%;
}
.rs-search-courses .rs-search form .form-control {
width: 79%;
float: left;
height: 60px;
padding: 0 15px;
border-radius: 0;
margin-right: 30px;
}
.rs-search-courses .rs-search form button {
height: 60px;
color: #fff;
}
.search-top {
margin-top: -200px;
}
#course-search-top {
overflow: visible;
padding-bottom: 0 !important;
}
.woocommerce span.onsale {
background: #ff3115 !important;
width: 40px !important;
height: 40px !important;
line-height: 40px !important;
padding: 0 !important;
right: 10px !important;
margin: 0 !important;
top: 10px !important;
}
.woocommerce table.shop_attributes td,
.woocommerce table.shop_attributes th {
padding: 3px 15px !important;
border: 1px solid rgba(0, 0, 0, 0.1) !important;
} html,
body {
font-size: 14px;
color: #505050;
font-family: 'Roboto', sans-serif;
vertical-align: baseline;
line-height: 26px;
font-weight: 400;
overflow-x: hidden;
}
img {
max-width: 100%;
height: auto;
}
p {
margin: 0 0 26px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'poppins', sans-serif;
color: #212121;
margin: 0 0 26px;
font-weight: 700;
}
h1 {
font-size: 36px;
line-height: 46px;
}
h2 {
font-size: 30px;
line-height: 40px;
}
h3 {
font-size: 24px;
line-height: 34px;
}
h4 {
font-size: 20px;
line-height: 30px;
}
h5 {
font-size: 16px;
line-height: 26px;
}
h6 {
font-size: 14px;
line-height: 24px;
}
a {
color: #ff3115;
transition: all 0.3s ease 0s;
text-decoration: none !important;
outline: none !important;
}
caption {
color: #afb0b2;
}
a:active,
a:hover {
text-decoration: none;
outline: 0 none;
color: #e41f05;
}
ul {
list-style: outside none none;
margin: 0;
padding: 0;
}
.clear {
clear: both;
}
::-moz-selection {
background: #ff3115;
text-shadow: none;
color: #ffffff;
}
::selection {
background: #ff3115;
text-shadow: none;
color: #ffffff;
}
.sec-spacer {
padding: 100px 0;
}
.sec-color {
background-color: #f9f9f9;
}
.p-spacer {
display: block;
margin-bottom: 20px;
}
.white-color {
color: #ffffff;
}
.color-pri {
color: #ff3115;
}
.primary-bg {
background: #ff3115;
}
.bg-fixed {
background-attachment: fixed;
background-repeat: no-repeat !important;
}
.bg1 {
background-image: url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/css/images/bg/bg1.jpg);
background-size: cover;
background-attachment: fixed;
}
.wrong_word {
writing-mode: vertical-rl;
transform: rotate(90deg);
color: #ff3115;
}
.home .entry-header {
display: none;
}
.pt-45 {
padding-top: 45px;
}
.pt-70 {
padding-top: 70px;
}
.pt-100 {
padding-top: 100px;
}
.pb-40 {
padding-bottom: 40px;
}
.pb-45 {
padding-bottom: 45px;
}
.pb-70 {
padding-bottom: 70px;
}
.pb-80 {
padding-bottom: 80px;
}
.mt-5 {
margin-top: 5px;
}
.mt-20 {
margin-top: 20px;
}
.mt-30 {
margin-top: 30px;
}
.mt-40 {
margin-top: 40px;
}
.mt-45 {
margin-top: 45px;
}
.mt-50 {
margin-top: 50px;
}
.mt-60 {
margin-top: 60px;
}
.mt-70 {
margin-top: 70px;
}
.mt-100 {
margin-top: 100px;
}
.mt-80 {
margin-top: 80px;
}
.mb-0 {
margin-bottom: 0 !important;
}
.mb-15 {
margin-bottom: 15px !important;
}
.mb-30 {
margin-bottom: 30px;
}
.mb-45 {
margin-bottom: 45px;
}
.mb-50 {
margin-bottom: 50px !important;
}
.mb-70 {
margin-bottom: 70px;
}
.mr-25 {
margin-right: 25px;
}
.mr-30 {
margin-right: 30px;
}
.width80 {
width: 80%;
margin-right: auto;
margin-left: auto;
}
.margin-remove {
margin: 0 !important;
}
.fw-normal {
font-weight: 300 !important;
}
p.no-menu {
padding-top: 15px;
color: #fff;
}
.main-contain #content {
padding: 100px 0;
}
#loading {
background: #fff;
}
#loading .object {
background: #ff3115;
}
#content .fixed-bg {
background-attachment: fixed !important;
} .overly-border::before,
.overly-border::after {
position: absolute;
top: 20px;
right: 20px;
bottom: 20px;
left: 20px;
content: '';
opacity: 0;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
z-index: 1;
}
.blue-bg {
position: relative;
}
.blue-bg .blue-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 188, 212, 0.9);
}
.about-img .overly-border::before,
.about-img .overly-border::after {
top: 50px;
right: 50px;
bottom: 50px;
left: 50px;
}
.overly-border::before {
border-top: 5px solid #ff3115;
border-bottom: 5px solid #ff3115;
-webkit-transform: scale(0, 1);
transform: scale(0, 1);
}
.rs-blog .blog-item.slick-current .team-content {
opacity: 1;
top: 0;
}
.blog .rs-blog .col-md-8 article:first-child .blog-item,
.archive .rs-blog .col-md-8 article:first-child .blog-item {
border-top: 0 !important;
padding-top: 0 !important;
}
.blog .rs-blog .col-md-8 article:first-child .blog-item .blog-img,
.archive .rs-blog .col-md-8 article:first-child .blog-item .blog-img {
margin-top: 0;
}
.blog .rs-blog .col-md-8 article .blog-item,
.archive .rs-blog .col-md-8 article .blog-item {
margin-bottom: 50px;
padding-top: 49px;
border-top: 1px solid #ededed !important;
background: #fff;
}
.blog .rs-blog .col-md-8 article .blog-item .blog-img,
.archive .rs-blog .col-md-8 article .blog-item .blog-img {
margin-top: 0px;
margin-bottom: 30px !important;
}
.skew_bg {
position: relative;
}
.skew_bg:before {
background: #ff3115;
transform: skewX(-18deg);
content: "";
height: 132%;
position: absolute;
bottom: 0;
width: 51%;
z-index: 1;
left: -128px;
opacity: 0.65;
}
#skew-style .slotholder {
position: relative;
}
#skew-style .slotholder:before {
background: #ff3115;
transform: skewX(-18deg);
content: "";
height: 132%;
position: absolute;
bottom: 0;
width: 58%;
z-index: 1;
left: -128px;
opacity: 0.65;
}
.overly-border::after {
border-right: 5px solid #ff3115;
border-left: 5px solid #ff3115;
-webkit-transform: scale(1, 0);
transform: scale(1, 0);
}
.single-member-area figure .overly-border:before,
.single-member-area figure .overly-border:after,
.rs-blog .blog-item.slick-current .overly-border:before,
.rs-blog .blog-item.slick-current .overly-border:after,
.single-member-area:hover .overly-border:before,
.single-member-area:hover .overly-border:after,
.team-content:hover .overly-border:before,
.team-content:hover .overly-border:after,
.blog-content:hover .overly-border:before,
.blog-content:hover .overly-border:after,
.project-content:hover .overly-border:before,
.project-content:hover .overly-border:after,
.about-img:hover .overly-border:before,
.about-img:hover .overly-border:after {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
.service-overlay,
.black-overlay {
position: relative;
}
.service-overlay:after {
width: 100%;
height: 100%;
content: "";
position: absolute;
left: 0;
top: 0;
pointer-events: none;
background: rgba(0, 0, 0, 0.65);
}
.black-overlay:after {
width: 100%;
height: 100%;
content: "";
position: absolute;
left: 0;
top: 0;
pointer-events: none;
background: rgba(0, 0, 0, 0.65);
display: block !important;
}
.black-overlay .vc_column_container {
position: relative;
z-index: 9;
}
.service-overlay .services-item {
position: relative;
z-index: 99;
} .display-table {
display: table;
height: 100%;
width: 100%;
}
.display-table-cell {
display: table-cell;
vertical-align: middle;
}
.readon {
font-family: 'Roboto', sans-serif !important;
font-size: 14px;
border: 1px solid #ff3115;
background: #ff3115;
display: inline-block;
padding: 0 20px;
height: 40px;
line-height: 37px;
position: relative;
color: #ffffff !important;
-webkit-transition: 0.4s;
transition: 0.4s;
text-transform: uppercase;
font-weight: 400;
text-align: center;
border-radius: 35px;
}
.readon i {
-webkit-transition: 0.3s all ease !important;
transition: 0.3s all ease !important;
font-weight: 400;
}
.readon:hover,
.readon:focus {
background: #505050 !important;
border-color: #505050 !important;
color: #fff !important;
}
.readon:hover i,
.readon:focus i {
-webkit-transform: translateX(3px);
transform: translateX(3px);
}
.readon.white {
border-color: #fff !important;
color: #212121 !important;
background: #fff !important;
}
.readon.white:hover {
background: #ff3115 !important;
border-color: #ff3115 !important;
color: #fff !important;
}
.readon.black {
border-color: #212121 !important;
color: #fff !important;
background: #212121 !important;
}
.readon.black:hover {
border-color: #ff3115 !important;
background: #ff3115 !important;
color: #fff !important;
}
.readon.border {
background: transparent !important;
border: 1px solid #ff3115;
color: #ff3115;
}
.readon.border:hover {
background: #ff3115 !important;
color: #fff !important;
}
.readon.border.white {
border-color: #fff !important;
color: #fff !important;
}
.readon.border.white:hover {
color: #ff3115 !important;
background: #fff !important;
}
.readon.large {
height: 54px;
line-height: 52px;
padding: 0 25px;
font-size: 16px;
}
.menu-item .sup-text {
position: relative;
background: #ff3115;
bottom: 0;
padding: 2px 10px;
color: #fff;
font-size: 13px;
border-radius: 8px;
left: 5px;
}
.blue-overlay {
position: relative;
}
.blue-overlay::after {
width: 100%;
height: 100%;
content: "";
position: absolute;
left: 0;
top: 0;
pointer-events: none;
display: block !important;
background: rgba(0, 188, 212, 0.9);
} a {
color: #ff3115;
}
a:hover,
a:focus,
a:active {
color: #ff3115;
}
a:focus {
outline: thin dotted;
}
a:hover,
a:active {
outline: 0;
}
#footer-menu ul {
display: none;
} .primary-color {
color: #ff3115;
}
.sl-subtitle span {
font-weight: 300 !important;
}
.tp-caption.Newspaper-Title,
.Newspaper-Title {
font-family: 'poppins', sans-serif;
}
.rev_slider .red-color {
color: #ff3115;
}
.rev_slider .orange-color {
color: #fc7f0c;
}
.rs-banner {
width: 100%;
height: 100vh;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
position: relative;
background-repeat: no-repeat;
background-position: bottom center;
}
.rs-banner #particles-js {
background-size: cover;
height: 100%;
position: absolute;
width: 100%;
z-index: 0;
}
.rs-banner .banner-content {
position: absolute;
top: 50%;
transform: translateY(-50%);
}
.rs-banner .banner-content .banner_title {
display: inline-block;
margin-bottom: 25px;
font-size: 65px;
font-weight: 700;
position: relative;
z-index: 9;
color: #444;
}
.rs-banner .banner-content .banner-button {
margin-top: 20px;
}
.rs-banner .banner-content .work-position h3 {
font-weight: 400;
font-size: 40px;
color: #bbb;
display: inline-block;
}
.rs-banner .banner-content .work-position .cd-headline {
display: inline-block;
color: #bbb;
font-size: 40px;
font-weight: 700;
line-height: 52px;
}
.rs-banner .cd-words-wrapper:after {
background-color: #ff3115;
height: 90%;
top: 10px;
width: 0;
}
.rs-banner ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.rs-banner ul li {
display: inline-block;
margin: 0 25px 25px 0;
}
.rs-banner .arrow-btn {
width: 26px;
height: 55px;
bottom: 12%;
left: 50%;
z-index: 99;
text-align: center;
position: absolute;
border: 1px solid #999;
border-radius: 20px;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.rs-banner .arrow-btn i {
color: #999;
font-size: 22px;
line-height: 80px;
-webkit-animation: bounce 2s infinite;
-moz-animation: bounce 2s infinite;
-ms-animation: bounce 2s infinite;
-o-animation: bounce 2s infinite;
animation: bounce 2s infinite;
transition: 0.4s;
-webkit-transition: 0.4s;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
}
.rs-banner .arrow-btn i:hover {
-webkit-animation: none;
-moz-animation: none;
-ms-animation: none;
-o-animation: none;
animation: none;
}
@-webkit-keyframes bounce {
from,
20%,
53%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40%,
43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0);
}
}
@keyframes pulse-border {
0% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
}
@keyframes bounce {
from,
20%,
53%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40%,
43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0);
}
}
.hebe .tp-tab-title {
color: #ffffff;
font-family: 'Roboto', sans-serif;
}
.hebe .tp-tab-desc {
font-family: 'poppins', sans-serif;
}
.rs-video-slider .wpb_content_element,
#slider-btn .wpb_content_element {
margin-bottom: 0;
}
.kids-carousel .vc_images_carousel .vc_carousel-indicators li {
border: 1px solid #fff;
background-color: #fff;
}
.kids-carousel .vc_images_carousel .vc_carousel-indicators li.vc_active {
border: 1px solid #fff;
background-color: transparent;
}
#rs-home-video .counter-top-area {
background: none !important;
margin-bottom: 30px;
padding: 0;
}
#rs-home-video .counter-top-area .rs-counter {
color: #ff3115;
}
#rs-home-video .counter-top-area h4 {
color: #fff;
}
#rs-home-video.rs-acheivements .overly-border {
display: none;
}
#rs-home-video.rs-acheivements:after {
background: rgba(0, 0, 0, 0.75);
}
#rs-home-video.rs-acheivements:after {
background: #ff3115;
transform: skewX(-18deg);
content: "";
height: 132%;
position: absolute;
bottom: 0;
width: 51%;
z-index: 1;
left: -128px;
opacity: 0.65;
}
#rs-home-video.rs-acheivements .wpb_wrapper {
position: relative;
z-index: 99;
}
.rs-video-2 {
background: #000;
position: relative;
}
.rs-video-2#rs-home-video .overly-border:after,
.rs-video-2#rs-home-video .overly-border:before {
display: none !important;
}
.rs-video-2 .video-content {
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
z-index: 10;
}
.rs-video-2 .video-content h4 {
margin-top: 40px;
margin-bottom: 0;
font-size: 30px;
color: #fff;
text-transform: uppercase;
}
.rs-video-2:hover .popup-videos {
animation-duration: 0.8s;
}
.rs-video-2 .popup-videos {
transform: translateX(-50%) translateY(-50%);
box-sizing: content-box;
display: block;
width: 32px;
height: 44px;
border-radius: 50%;
padding: 18px 20px 6px 33px;
margin: 0 auto;
}
.rs-video-2 .popup-videos i {
display: none;
}
.rs-video-2 .popup-videos:after {
content: "";
position: absolute;
z-index: 1;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 80px;
height: 80px;
background: #ff3115;
border-radius: 50%;
transition: all 200ms;
}
.rs-video-2 .popup-videos:before {
content: "";
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 80px;
height: 80px;
background: #ff3115;
border-radius: 50%;
animation: pulse-border 1500ms ease-out infinite;
}
.rs-video-2 .popup-videos i {
text-indent: 5px;
-webkit-transition: 0.3s ease all;
transition: 0.3s ease all;
}
.rs-video-2 .popup-videos:hover {
border-color: rgba(255, 255, 255, 0.7);
}
.rs-video-2 .popup-videos span {
display: block;
position: relative;
z-index: 3;
width: 0;
height: 0;
border-left: 27px solid #fff;
border-top: 17px solid transparent;
border-bottom: 17px solid transparent;
}
.rs-video-2 .overly-border:before,
.rs-video-2 .overly-border:after {
position: absolute;
top: 50px;
right: 50px;
bottom: 50px;
left: 50px;
content: '';
opacity: 0;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
z-index: 1;
}
.rs-video-2 .overly-border:before {
border-top: 5px solid #ff3115;
border-bottom: 5px solid #ff3115;
-webkit-transform: scale(0, 1);
transform: scale(0, 1);
}
.rs-video-2 .overly-border:after {
border-right: 5px solid #ff3115;
border-left: 5px solid #ff3115;
-webkit-transform: scale(1, 0);
transform: scale(1, 0);
}
.rs-video-2:hover .overly-border:before,
.rs-video-2:hover .overly-border:after {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
.sl-title span {
font-size: inherit !important;
}
#rscontact-pages.rscontact-pages4 .contact-details .vc_column-inner > .wpb_wrapper {
background: url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/images/counter_bg.png) no-repeat center;
background-size: auto auto;
border: none !important;
border-radius: 5px;
background-size: 100%;
padding-bottom: 70px;
}
#rscontact-pages.rscontact-pages4 .contact-details .vc_icon_element {
margin-bottom: 0;
}
#rscontact-pages.rscontact-pages4 .contact-details .vc_icon_element .vc_icon_element-inner .vc_icon_element-icon {
color: #505050;
}
#rscontact-pages.rscontact-pages4 .contact-details .wpb_text_column {
margin: 0;
}
#rscontact-pages.rscontact-pages4 .contact-details .wpb_text_column h4 {
margin-bottom: 10px;
text-transform: uppercase;
}
#rscontact-pages.rscontact-pages4 .contact-details .wpb_text_column p,
#rscontact-pages.rscontact-pages4 .contact-details .wpb_text_column a {
color: #505050;
}
#rscontact-pages.rscontact-pages4 .contact-details .wpb_text_column a:hover {
color: #ff3115;
}
#rscontact-pages.rscontact-pages4 .contact-details.colored-details1 .vc_column-inner > .wpb_wrapper {
background: url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/images/sape1.png) no-repeat center;
background-size: 100%;
}
#rscontact-pages.rscontact-pages4 .contact-details.colored-details2 .vc_column-inner > .wpb_wrapper {
background: url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/images/sape2.png) no-repeat center;
background-size: 100%;
}
#rscontact-pages.rscontact-pages4 .contact-details.colored-details3 .vc_column-inner > .wpb_wrapper {
background: url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/images/sape3.png) no-repeat center;
background-size: 100%;
}
.rs-video-2 img {
opacity: 0.72;
-webkit-transition: opacity 0.35s;
transition: opacity 0.35s;
z-index: 1;
}
.video-full-width .rs-video-2 .overly-border:before,
.video-full-width .rs-video-2 .overly-border:after {
display: none;
}
.video-full-width .rs-video-2 .video-content h4 {
display: block;
font-size: 26px;
line-height: 34px;
color: #fff;
margin-top: 25px;
} .particles-section {
z-index: 99;
background: #50d2c2;
padding: 0;
position: relative;
}
.particles-section h4 {
text-align: center;
margin: 0;
font-size: 28px;
line-height: 40px;
font-weight: 400 !important;
letter-spacing: 2px;
}
.particles-section h3 {
text-align: center;
margin: 23px 0 28px;
font-size: 65px;
letter-spacing: 4px;
font-weight: 400 !important;
line-height: 50px !important;
}
.particles-section p {
text-align: center;
margin: 25px 0 40px;
font-size: 18px;
color: #fff;
}
.particles-section .particle-btn {
padding: 0;
margin: 0;
text-align: center;
}
.particles-section .particle-btn li {
display: inline-block;
list-style: none;
}
.particles-section .particle-btn li a {
padding: 15px 25px 15px 55px;
border: 2px solid #fff;
display: inline-block;
border-radius: 30px;
letter-spacing: 2px;
transition: all 0.3s ease 0s;
margin: 0 10px;
}
.particles-section .particle-btn li a:hover {
color: #212121 !important;
}
.particles-section .particle-btn li a:hover:after {
color: #212121 !important;
}
.particles-section .inner {
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);
}
.particles-section .particle-btn li:first-child a {
position: relative;
background: #ff3115;
color: #fff;
border: 2px solid #ff3115;
}
.particles-section .particle-btn li:first-child a:after {
content: "\f179";
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
color: #fff;
font-size: 20px;
position: absolute;
top: 14px;
left: 23px;
}
.particles-section .particle-btn li:last-child a {
position: relative;
}
.particles-section .particle-btn li:last-child a:hover {
background: #fff;
}
.particles-section .particle-btn li:last-child a:after {
content: "\f17b";
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
color: #fff;
font-size: 20px;
position: absolute;
top: 14px;
left: 23px;
}
.archive.search.search-results article {
background: none;
padding-top: 0;
}
.university-event .rs-events .event-item .events-details {
margin-bottom: 20px;
}
#university-acheivements .services-item {
border-right: 1px solid #e41f05;
}
#university-acheivements .services-item .services-title {
margin-top: 0;
}
#university-acheivements .services-item .services-title a {
color: #fff;
}
#university-acheivements .services-item .services-title a:hover {
color: #fff;
}
#university-acheivements .services-item i {
width: auto;
height: auto;
line-height: normal;
background: none;
color: #ff3115;
}
#university-acheivements .wpb_column:last-child .services-item {
border-right: 0;
} .portfolio-filter {
margin-bottom: 25px;
position: relative;
}
.portfolio-filter .view-more {
position: absolute;
right: 0;
top: 46%;
transform: translateY(-50%);
}
.portfolio-filter.filter-center {
text-align: center;
}
.portfolio-filter.filter-right {
text-align: right;
}
.portfolio-filter.filter-right .view-more {
right: auto;
}
.portfolio-filter.filter-left {
text-align: left;
}
.portfolio-filter button {
font-size: 15px;
line-height: normal;
font-weight: 600;
text-transform: uppercase;
background-color: transparent !important;
color: #505050;
margin: 0 30px 10px 0;
overflow: hidden;
display: inline-block;
padding: 0;
transition: 0.4s;
outline: none;
-webkit-transition: 0.4s;
-ms-transition: 0.4s;
position: relative;
}
.portfolio-filter button:hover,
.portfolio-filter button.active {
color: #ff3115;
}
.testimonial-slide7 button {
background: transparent !important;
}
.gutter-no-gap .row {
margin: 0 !important;
}
.gutter-no-gap .row [class*="col-"] {
padding: 0 !important;
margin: 0 !important;
}
.rs-portfolio-style1 .portfolio-item {
position: relative;
overflow: hidden;
}
.rs-portfolio-style1 .portfolio-item .portfolio-content {
position: absolute;
width: 100%;
height: 100%;
top: 30%;
left: 0;
text-align: center;
z-index: 10;
padding: 25px;
opacity: 0;
-webkit-transition: 0.3s all ease-out;
transition: 0.3s all ease-out;
}
.rs-portfolio-style1 .portfolio-item .portfolio-content:before {
content: '';
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
background: #e41f05;
opacity: 0.8;
z-index: -1;
-webkit-transition: .25s opacity ease;
transition: .25s opacity ease;
}
.rs-portfolio-style1 .portfolio-item .portfolio-content .p-category {
color: #fff;
}
.rs-portfolio-style1 .portfolio-item .portfolio-content .p-category a {
color: #fff;
}
.rs-portfolio-style1 .portfolio-item .portfolio-content .p-category a:hover {
color: rgba(255, 255, 255, 0.7);
}
.rs-portfolio-style1 .portfolio-item .portfolio-content .vertical-middle {
display: table;
height: 100%;
width: 100%;
}
.rs-portfolio-style1 .portfolio-item .portfolio-content .vertical-middle-cell {
display: table-cell;
vertical-align: middle;
}
.rs-portfolio-style1 .portfolio-item .portfolio-img img {
width: 100%;
}
.rs-portfolio-style1 .portfolio-item .p-link {
display: inline-block;
font-size: 14px;
color: #ffffff;
transition: all 0.3s ease 0s;
height: 46px;
line-height: 44px;
width: 46px;
border: 1px solid #fff;
border-radius: 50%;
text-align: center;
}
.rs-portfolio-style1 .portfolio-item .p-link i {
margin-left: 2px;
}
.rs-portfolio-style1 .portfolio-item .p-link:hover {
background-color: #fff;
color: #e41f05;
}
.rs-portfolio-style1 .portfolio-item .p-title {
font-size: 20px;
line-height: normal;
margin-top: 25px;
color: #fff;
margin-bottom: 0;
}
.rs-portfolio-style1 .portfolio-item .p-title a {
color: #fff;
}
.rs-portfolio-style1 .portfolio-item .p-title a:hover {
color: rgba(255, 255, 255, 0.7);
}
.rs-portfolio-style1 .portfolio-item .p-desc {
font-size: 15px;
color: rgba(255, 255, 255, 0.7);
margin-bottom: 0;
margin-top: 10px;
}
.rs-portfolio-style1 .portfolio-item:hover .portfolio-content {
opacity: 1;
top: 0;
}
.rs-portfolio-style2 .portfolio-item {
position: relative;
overflow: hidden;
}
.rs-portfolio-style2 .portfolio-item .portfolio-img {
position: relative;
z-index: 10;
}
.rs-portfolio-style2 .portfolio-item .portfolio-img:before {
content: '';
position: absolute;
top: 0;
left: 0;
opacity: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
transition: all 0.3s ease 0s;
}
.rs-portfolio-style2 .portfolio-item .portfolio-img img {
width: 100%;
}
.rs-portfolio-style2 .portfolio-item .portfolio-img .p-link {
position: absolute;
top: 42%;
left: 50%;
-webkit-transform: translateX(-50%) translateY(-50%) scale(0.8);
transform: translateX(-50%) translateY(-50%) scale(0.8);
display: inline-block;
font-size: 14px;
color: #ffffff;
transition: all 0.3s ease;
height: 46px;
line-height: 44px;
width: 46px;
border: 1px solid #fff;
border-radius: 50%;
text-align: center;
opacity: 0;
}
.rs-portfolio-style2 .portfolio-item .portfolio-img .p-link i {
margin-left: 2px;
}
.rs-portfolio-style2 .portfolio-item .portfolio-img .p-link:hover {
background-color: #fff;
color: #e41f05;
}
.rs-portfolio-style2 .portfolio-item .portfolio-content {
position: absolute;
bottom: -50px;
width: 100%;
padding: 15px 20px;
z-index: 10;
transition: all 0.3s ease;
opacity: 0;
}
.rs-portfolio-style2 .portfolio-item .portfolio-content:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #e41f05;
z-index: -1;
transition: all 0.3s ease 0s;
}
.rs-portfolio-style2 .portfolio-item .portfolio-content a {
color: #fff;
}
.rs-portfolio-style2 .portfolio-item .portfolio-content h3 {
margin-bottom: 5px;
font-size: 20px;
}
.rs-portfolio-style2 .portfolio-item .portfolio-content p {
margin-bottom: 0;
color: #ffffff;
}
.rs-portfolio-style2 .portfolio-item:hover .portfolio-content {
bottom: 0;
opacity: 1;
}
.rs-portfolio-style2 .portfolio-item:hover .portfolio-img:before {
opacity: 1;
}
.rs-portfolio-style2 .portfolio-item:hover .p-link {
-webkit-transform: translateX(-50%) translateY(-50%) scale(1);
transform: translateX(-50%) translateY(-50%) scale(1);
opacity: 1;
}
.rs-portfolio-style3 .portfolio-item {
position: relative;
overflow: hidden;
}
.rs-portfolio-style3 .portfolio-item .portfolio-img {
position: relative;
z-index: 10;
}
.rs-portfolio-style3 .portfolio-item .portfolio-img:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #e41f05;
transition: all 0.3s ease 0s;
opacity: 0;
}
.rs-portfolio-style3 .portfolio-item .portfolio-img img {
width: 100%;
}
.rs-portfolio-style3 .portfolio-item .portfolio-img .p-link {
position: absolute;
bottom: 20px;
right: 20px;
display: inline-block;
font-size: 36px;
color: #ffffff;
transition: all 0.3s ease;
opacity: 0;
}
.rs-portfolio-style3 .portfolio-item .portfolio-img .p-link i {
margin-left: 2px;
}
.rs-portfolio-style3 .portfolio-item .portfolio-img .p-link:hover {
opacity: 0.7 !important;
}
.rs-portfolio-style3 .portfolio-item .portfolio-content {
position: absolute;
padding: 15px 20px;
opacity: 0;
z-index: 10;
top: 0;
width: 100%;
}
.rs-portfolio-style3 .portfolio-item .portfolio-content a {
color: #fff;
}
.rs-portfolio-style3 .portfolio-item .portfolio-content h3 {
margin-bottom: 5px;
font-size: 20px;
transition: 0.3s ease all;
}
.rs-portfolio-style3 .portfolio-item .portfolio-content p {
margin-bottom: 0;
color: #fff;
transition: 0.3s ease all;
}
.rs-portfolio-style3 .portfolio-item:hover .portfolio-content {
opacity: 1;
}
.rs-portfolio-style3 .portfolio-item:hover .portfolio-img:before {
opacity: 0.7;
}
.rs-portfolio-style3 .portfolio-item:hover .portfolio-img .p-link {
opacity: 1;
}
.rs-portfolio-style4 .portfolio-item {
position: relative;
overflow: hidden;
}
.rs-portfolio-style4 .portfolio-item .portfolio-img {
position: relative;
z-index: 10;
}
.rs-portfolio-style4 .portfolio-item .portfolio-img:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #e41f05;
transition: all 0.4s ease 0s;
opacity: 0;
z-index: 10;
}
.rs-portfolio-style4 .portfolio-item .portfolio-img img {
width: 100%;
-webkit-transition: 1.3s all ease;
transition: 1.3s all ease;
}
.rs-portfolio-style4 .portfolio-item .portfolio-img .p-link {
display: none;
}
.rs-portfolio-style4 .portfolio-item .portfolio-content {
position: absolute;
padding: 15px 20px;
opacity: 0;
z-index: 10;
top: 50%;
left: 50%;
-webkit-transform: translateY(-50%) translateX(-50%);
transform: translateY(-50%) translateX(-50%);
text-align: center;
width: 100%;
}
.rs-portfolio-style4 .portfolio-item .portfolio-content a {
color: #fff;
}
.rs-portfolio-style4 .portfolio-item .portfolio-content h3 {
margin-bottom: 5px;
font-size: 20px;
-webkit-transform: translateY(20px);
transform: translateY(20px);
-webkit-transition: 0.4s all ease;
transition: 0.4s all ease;
}
.rs-portfolio-style4 .portfolio-item .portfolio-content h3 a:hover {
color: rgba(255, 255, 255, 0.7);
}
.rs-portfolio-style4 .portfolio-item .portfolio-content p {
margin-bottom: 0;
color: #fff;
-webkit-transform: translateY(40px);
transform: translateY(40px);
-webkit-transition: 0.4s all ease;
transition: 0.4s all ease;
}
.rs-portfolio-style4 .portfolio-item .portfolio-content p a:hover {
color: rgba(255, 255, 255, 0.7);
}
.rs-portfolio-style4 .portfolio-item:hover .portfolio-content {
opacity: 1;
}
.rs-portfolio-style4 .portfolio-item:hover .portfolio-content h3 {
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
.rs-portfolio-style4 .portfolio-item:hover .portfolio-content p {
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
.rs-portfolio-style4 .portfolio-item:hover .portfolio-img:before {
opacity: 0.7;
}
.rs-portfolio-style4 .portfolio-item:hover .portfolio-img img {
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
.rs-portfolio-style5 .portfolio-item {
position: relative;
overflow: hidden;
}
.rs-portfolio-style5 .portfolio-item .portfolio-img {
position: relative;
z-index: 10;
}
.rs-portfolio-style5 .portfolio-item .portfolio-img:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #e41f05;
transition: all 0.4s ease 0s;
opacity: 0;
z-index: 10;
}
.rs-portfolio-style5 .portfolio-item .portfolio-img img {
width: 100%;
-webkit-transition: 1.3s all ease;
transition: 1.3s all ease;
}
.rs-portfolio-style5 .portfolio-item .portfolio-img .p-link {
position: absolute;
top: 20px;
right: 20px;
display: inline-block;
font-size: 32px;
color: #ffffff;
-webkit-transition: 0.6s all ease;
transition: 0.6s all ease;
opacity: 0;
z-index: 10;
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
.rs-portfolio-style5 .portfolio-item .portfolio-img .p-link i {
margin-left: 2px;
}
.rs-portfolio-style5 .portfolio-item .portfolio-img .p-link:hover {
opacity: 0.7 !important;
}
.rs-portfolio-style5 .portfolio-item .portfolio-content {
position: absolute;
padding: 15px 20px;
opacity: 0;
z-index: 10;
bottom: 0;
left: 0;
text-align: left;
width: 100%;
}
.rs-portfolio-style5 .portfolio-item .portfolio-content a {
color: #fff;
}
.rs-portfolio-style5 .portfolio-item .portfolio-content h3 {
margin-bottom: 5px;
font-size: 20px;
-webkit-transform: translateY(15px);
transform: translateY(15px);
-webkit-transition: 0.6s all ease;
transition: 0.6s all ease;
}
.rs-portfolio-style5 .portfolio-item .portfolio-content h3 a:hover {
color: rgba(255, 255, 255, 0.7);
}
.rs-portfolio-style5 .portfolio-item .portfolio-content p {
margin-bottom: 0;
color: #fff;
-webkit-transform: translateY(30px);
transform: translateY(30px);
-webkit-transition: 0.6s all ease;
transition: 0.6s all ease;
}
.rs-portfolio-style5 .portfolio-item .portfolio-content p a:hover {
color: rgba(255, 255, 255, 0.7);
}
.rs-portfolio-style5 .portfolio-item:hover .portfolio-content {
opacity: 1;
}
.rs-portfolio-style5 .portfolio-item:hover .portfolio-content h3 {
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
.rs-portfolio-style5 .portfolio-item:hover .portfolio-content p {
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
.rs-portfolio-style5 .portfolio-item:hover .portfolio-img:before {
opacity: 0.7;
}
.rs-portfolio-style5 .portfolio-item:hover .portfolio-img img {
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
.rs-portfolio-style5 .portfolio-item:hover .portfolio-img .p-link {
opacity: 1;
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
.team-home .owl-carousel .owl-nav {
display: none;
}
.owl-carousel {
padding-top: 0;
}
.owl-carousel .owl-nav {
right: 0;
}
.owl-carousel .owl-nav [class*="owl-"] {
font-size: 0;
width: 42px;
height: 42px;
line-height: 42px;
background: #212121;
color: #fff;
border-radius: 50%;
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
transition: 0.6s ease all;
opacity: 0;
visibility: hidden;
}
.owl-carousel .owl-nav [class*="owl-"]:before {
font-family: FontAwesome;
position: absolute;
font-size: 26px;
top: 50%;
left: 50%;
-webkit-transform: translateY(-50%) translateX(-50%);
transform: translateY(-50%) translateX(-50%);
}
.owl-carousel .owl-nav [class*="owl-"].owl-prev {
left: 0;
}
.owl-carousel .owl-nav [class*="owl-"].owl-prev:before {
content: "\f104";
}
.owl-carousel .owl-nav [class*="owl-"].owl-next {
right: 0;
}
.owl-carousel .owl-nav [class*="owl-"].owl-next:before {
content: "\f105";
margin-left: 2px;
}
.owl-carousel .owl-nav [class*="owl-"]:hover {
background: #ff3115;
}
.owl-carousel:hover .owl-nav [class*="owl-"] {
opacity: 1;
visibility: visible;
}
.owl-carousel:hover .owl-nav [class*="owl-"].owl-prev {
left: -60px;
}
.owl-carousel:hover .owl-nav [class*="owl-"].owl-next {
right: -60px;
} .mc4wp-form {
max-width: 710px;
margin-left: auto;
margin-right: auto;
position: relative;
padding-top: 15px;
}
.mc4wp-form input[type=submit] {
position: absolute;
top: 15px;
right: 0;
height: 60px;
min-width: 200px;
background-color: #4caf50;
border: 0;
color: #fff;
transition: all 0.3s ease 0s;
text-transform: uppercase;
}
.mc4wp-form input[type=text],
.mc4wp-form input[type=url],
.mc4wp-form input[type=tel],
.mc4wp-form input[type=number],
.mc4wp-form input[type=email] {
width: 100%;
height: 60px;
padding: 5px 20px;
background: #fff;
outline: none;
color: #000;
border: none;
}
.mc4wp-form ::-webkit-input-placeholder { color: #000;
opacity: 1;
}
.mc4wp-form ::-moz-placeholder { color: #000;
opacity: 1;
}
.mc4wp-form :-ms-input-placeholder { color: #000;
opacity: 1;
}
.mc4wp-form :-moz-placeholder { color: #000;
opacity: 1;
}
.rs-courses-3 .course-item {
margin-bottom: 30px;
border: 1px solid #dddddd;
transition: all 0.35s ease 0s;
}
.rs-courses-3 .course-item .course-img {
position: relative;
margin: -1px -1px 0 -1px;
}
.rs-courses-3 .course-item .course-img:before {
background: rgba(0, 0, 0, 0.5);
background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
background: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
background: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
position: absolute;
content: "";
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transition: all 1s ease;
transition: all 1s ease;
}
.rs-courses-3 .course-item .course-img .course-price {
position: absolute;
bottom: -25px;
right: 25px;
height: 50px;
width: 50px;
line-height: 50px;
text-align: center;
background-color: #ff3115;
color: #ffffff;
font-size: 13px;
font-weight: 500;
border-radius: 50%;
z-index: 1;
}
.rs-courses-3 .course-item .course-img .course_author_img {
position: absolute;
background: #fff;
padding: 5px;
border-radius: 50%;
left: 25px;
border: 2px solid #ff3115;
bottom: -23px;
z-index: 10;
}
.rs-courses-3 .course-item .course-img .course_author_img a img {
width: auto !important;
border-radius: 50%;
}
.rs-courses-3 .course-item .course-toolbar {
position: absolute;
width: 100%;
bottom: 50px;
padding: 0 20px;
}
.rs-courses-3 .course-item .course-toolbar .course-category {
margin-bottom: 3px;
}
.rs-courses-3 .course-item .course-toolbar .course-category a {
font-size: 15px;
color: #fff;
}
.rs-courses-3 .course-item .course-toolbar .course-category a:hover {
color: #ff3115;
}
.rs-courses-3 .course-item .course-toolbar .course-date,
.rs-courses-3 .course-item .course-toolbar .course-duration {
display: inline-block;
font-size: 14px;
text-transform: uppercase;
color: #ffffff;
font-weight: 600;
}
.rs-courses-3 .course-item .course-toolbar .course-date i,
.rs-courses-3 .course-item .course-toolbar .course-duration i {
margin-right: 3px;
}
.rs-courses-3 .course-item .course-toolbar .course-duration {
margin-left: 12px;
}
.rs-courses-3 .course-item .course-body .course-title-archive {
font-size: 20px;
margin-bottom: 7px;
margin-top: 25px;
}
.rs-courses-3 .course-item .course-body .course-title-archive a {
color: #212121;
}
.rs-courses-3 .course-item .course-body .course-title-archive a:hover {
color: #ff3115;
}
.rs-courses-3 .course-item .course-body .course-desc {
padding: 20px;
}
.rs-courses-3 .course-item .course-body .course-desc p {
margin-bottom: 0;
transition: all 0.35s ease 0s;
}
.rs-courses-3 .course-item:hover {
box-shadow: 0 6px 40px rgba(0, 0, 0, 0.1);
}
.rs-courses-3 .course-item:hover .course-img:before {
background: rgba(0, 0, 0, 0.5);
background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
background: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
background: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}
.rs-courses-3 .course-footer {
padding: 15px 20px 0;
background-color: #f0f0f0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-justify-content: space-between;
justify-content: space-between;
font-weight: 600;
font-size: 15px;
}
.rs-courses-3 .course-footer .course-seats {
margin-top: -3px;
}
.rs-courses-3 .course-footer .course-button a {
color: #505050;
display: inline-block;
position: relative;
padding-right: 12px;
}
.rs-courses-3 .course-footer .course-button a:hover {
color: #ff3115;
}
.rs-courses-3 .course-footer .course-button a:after {
font-family: fontAwesome;
content: "\f101";
position: absolute;
right: 0;
}
.rs-courses-3 .view-more {
bottom: auto;
}
.learnpress-page .lp-button,
.learnpress-page .learn-press-course-wishlist,
.write-a-review,
.submit-review {
line-height: 22px !important;
height: 40px !important;
color: #fff;
border-radius: 30px;
padding: 6px 22px !important;
}
.lp-label.label-enrolled,
.lp-label.label-started,
.course-rate .course-rate .review-bar .rating {
background: #ff3115 !important;
}
.review-form h3 {
font-size: 20px !important;
}
ul.review-fields {
margin: 0 !important;
}
ul.review-fields li {
margin: 0 0 10px !important;
}
ul.review-fields li input,
ul.review-fields li textarea {
border: 1px solid rgba(54, 54, 54, 0.1);
}
body.rs-list-view .lp-archive-courses ul.learn-press-courses li {
width: 100%;
padding: 0;
}
body.rs-list-view .lp-archive-courses ul.learn-press-courses li .course-item {
overflow: hidden;
border: none;
box-shadow: 0 6px 40px rgba(0, 0, 0, 0.1);
}
body.rs-list-view .lp-archive-courses ul.learn-press-courses li .course-item .course-img {
float: left;
width: 30%;
}
body.rs-list-view .lp-archive-courses ul.learn-press-courses li .course-item .course-img .course_author_img,
body.rs-list-view .lp-archive-courses ul.learn-press-courses li .course-item .course-img .course-price {
bottom: 15px;
}
body.rs-list-view .lp-archive-courses ul.learn-press-courses li .course-item .course-right {
float: left;
width: 70%;
padding: 40px;
}
body.rs-list-view .lp-archive-courses ul.learn-press-courses li .course-item .course-right .course-body .course-desc {
padding: 0;
}
body.rs-list-view .lp-archive-courses ul.learn-press-courses li .course-item .course-right .course-body .course-desc .list-course-title {
display: block;
}
body.rs-list-view .lp-archive-courses ul.learn-press-courses li .course-item .course-right .course-body .course-desc .course-title-archive {
margin: 0;
}
body.rs-list-view .lp-archive-courses ul.learn-press-courses li .course-item .course-right .course-body .course-desc .list-course-title {
margin: 0;
font-size: 15px;
}
body.rs-list-view .lp-archive-courses ul.learn-press-courses li .course-item .course-right .course-body .course-desc .list-course-title a {
color: #212121;
}
body.rs-list-view .lp-archive-courses ul.learn-press-courses li .course-item .course-right .course-body .course-desc .list-course-title a:hover {
color: #ff3115;
}
body.rs-list-view .lp-archive-courses ul.learn-press-courses li .course-item .course-right .course-footer {
background: none;
padding: 25px 0 0;
}
body.rs-list-view .lp-archive-courses ul.learn-press-courses li .course-item .course-right .course-footer .course-seats {
margin: 0;
}
body.rs-list-view .lp-archive-courses ul.learn-press-courses li .course-item .course-right .course-footer .course-button {
position: relative;
top: 7px;
}
body.rs-list-view .lp-archive-courses ul.learn-press-courses li .course-item .course-toolbar {
display: none;
}
body.rs-list-view .course-icons .active-list i {
color: #ff3115;
}
body.rs-list-view .course-icons .active-grid i {
color: #212121 !important;
}
.list-course-title {
display: none;
}
.single-lp_course .main-contain #content {
padding-bottom: 70px;
}
.lp-archive-courses .learn-press-pagination {
margin-bottom: 48px;
overflow: hidden;
}
.lp-archive-courses .page-numbers {
margin-top: 8px !important;
display: block !important;
}
.lp-archive-courses .page-numbers li {
float: left;
}
.lp-archive-courses .page-numbers li span {
text-align: center;
width: 60px;
height: 40px;
font-size: 18px !important;
padding: 0 !important;
color: #505050;
outline: none !important;
line-height: 40px !important;
margin: 0 !important;
}
.lp-archive-courses .page-numbers li a {
text-align: center;
width: 60px;
height: 40px;
font-size: 15px !important;
padding: 0 !important;
color: #505050;
outline: none !important;
line-height: 40px !important;
margin: 0 !important;
}
.lp-archive-courses .page-numbers li a:hover,
.lp-archive-courses .page-numbers li a.active {
color: #ff3115 !important;
background: #e9ecef;
}
.lp-archive-courses .page-numbers li a.dotted {
line-height: 40px;
}
.lp-archive-courses .rs-search {
padding-bottom: 50px;
}
.lp-archive-courses .rs-search form {
position: relative;
}
.lp-archive-courses .rs-search form .form-control {
border-radius: 0 5px 5px 0;
background: #f5f5f5;
}
.lp-archive-courses .rs-search form button {
position: absolute;
right: 0;
top: 0;
height: 50px;
color: #fff;
border-radius: 0 5px 5px 0;
}
.lp-archive-courses .course-left {
background: #f5f5f5;
padding-left: 20px;
overflow: hidden;
height: 50px;
line-height: 50px;
border-radius: 5px 0 0 5px;
}
.lp-archive-courses .course-left .course-icons {
float: left;
padding-right: 20px;
}
.lp-archive-courses .course-left .course-icons .rs-list i {
margin-left: 5px;
}
.lp-archive-courses .course-left .course-icons i {
font-size: 18px;
color: #212121;
}
.lp-archive-courses .course-left .course-icons a:hover {
color: #ff3115;
}
.lp-archive-courses .course-left .course-icons a:hover i {
color: #ff3115;
}
.lp-archive-courses .course-left .course-icons a.active-grid i {
color: #ff3115;
}
.lp-archive-courses .course-left .course-index {
float: left;
} .course-landing-summary .course-students {
display: none;
}
.rs-courses-details .detail-img {
position: relative;
margin-bottom: 40px;
}
.rs-courses-details .detail-img img {
transition: all 0.3s ease 0s;
}
.rs-courses-details .detail-img:hover img {
opacity: 0.9;
}
.rs-courses-details .detail-img .course-seats {
position: absolute;
bottom: 25px;
right: 25px;
font-size: 15px;
width: 78px;
height: 78px;
line-height: 21px;
border-radius: 50%;
text-align: center;
background-color: #ff3115;
color: #fff;
font-weight: 600;
padding-top: 18px;
}
.rs-courses-details .detail-img .course-seats span {
display: block;
}
.rs-courses-details .detail-img .course-seats.price {
right: auto;
left: 25px;
padding-top: 0;
line-height: 78px;
}
.rs-courses-details .course-rating-total {
bottom: 0;
}
.rs-courses-details .review-stars-rated {
display: block;
}
.rs-courses-details .course-payment {
float: right;
display: inline-block;
position: relative;
margin-bottom: 40px;
}
.rs-courses-details .course-payment button {
color: #fff;
padding-left: 15px;
padding-right: 15px;
border-radius: 30px;
}
.rs-courses-details .course-meta {
display: inline-block;
overflow: hidden;
position: relative;
padding: 0;
margin-bottom: 40px;
}
.rs-courses-details .course-meta > div {
display: inline-block;
line-height: 20px;
margin-right: 15px;
margin-bottom: 0;
padding-right: 15px;
border-right: 1px solid #eee;
float: left;
}
.rs-courses-details .course-title {
font-size: 24px;
margin-bottom: 30px;
}
.rs-courses-details .course-instructor {
padding: 20px 25px 16px;
background-color: #f9f9f9;
position: relative;
}
.rs-courses-details .course-instructor p {
margin-bottom: 0;
}
.rs-courses-details .course-instructor .instructor-title {
font-family: 'Roboto', sans-serif;
font-size: 16px;
margin-bottom: 20px;
}
.rs-courses-details .instructor-inner {
display: -webkit-flex;
display: flex;
}
.rs-courses-details .instructor-inner .instructor-img img {
height: 100px;
width: 100px;
transition: all 0.3s ease 0s;
}
.rs-courses-details .instructor-inner .instructor-img:hover img {
opacity: 0.8;
}
.rs-courses-details .instructor-inner .instructor-body {
padding-left: 18px;
}
.rs-courses-details .instructor-inner .instructor-body .name {
font-size: 16px;
font-family: 'Roboto', sans-serif;
margin-bottom: 0;
}
.rs-courses-details .instructor-inner .instructor-body .designation {
font-size: 14px;
font-weight: 600;
}
.rs-courses-details .instructor-inner .instructor-body .social-icon {
margin-top: 15px;
}
.rs-courses-details .instructor-inner .instructor-body .social-icon a i {
font-size: 17px;
margin-right: 6px;
}
.rs-courses-details .short-desc {
margin-top: 15px;
}
.rs-courses-details .info-list {
font-weight: 600;
font-size: 15px;
}
.rs-courses-details .info-list ul li {
color: #777777;
margin-bottom: 6px;
}
.rs-courses-details .info-list ul li span {
color: #212121;
}
.rs-courses-details .apply-btn {
position: absolute;
right: 16px;
bottom: 10px;
}
.rs-courses-details .apply-btn a {
display: inline-block;
height: 42px;
line-height: 42px;
text-align: center;
min-width: 147px;
padding: 0 20px;
background-color: #ff3115;
color: #fff;
transition: all 0.3s ease 0s;
font-weight: 600;
}
.rs-courses-details .apply-btn a:hover {
background-color: #e41f05;
}
.rs-courses-details .course-desc {
margin-top: 30px;
}
.rs-courses-details .course-desc .desc-title {
font-size: 19px;
margin-bottom: 12px;
}
.rs-courses-details .course-desc .desc-text p {
margin-bottom: 18px;
}
.rs-courses-details .course-desc .share-area {
padding: 15px;
border: 1px solid #ccc;
}
.rs-courses-details .course-desc .share-area h3 {
margin-bottom: 0;
font-family: 'Roboto', sans-serif;
font-size: 15px;
}
.rs-courses-details .course-desc .share-area .share-inner {
text-align: right;
}
.rs-courses-details .course-desc .share-area .share-inner a {
display: inline-block;
min-width: 88px;
height: 30px;
line-height: 30px;
text-align: center;
border: 1px solid #ccc;
border-radius: 3px;
font-size: 13px;
color: #505050;
padding: 0 12px;
font-weight: 600;
}
.rs-courses-details .course-desc .share-area .share-inner a + a {
margin-left: 8px;
}
.rs-courses-details .course-desc .share-area .share-inner a:hover {
border-color: #ff3115;
color: #ff3115;
}
.rs-courses-details .course-desc .course-syllabus {
padding: 15px 0 35px;
}
.rs-courses-details .course-desc .course-syllabus h3.desc-title {
padding-bottom: 10px;
}
.rs-courses-details .course-desc .course-syllabus ul.syllabus {
padding-left: 15px;
}
.rs-courses-details .course-desc .course-syllabus ul.syllabus li {
display: block;
padding-top: 6px;
}
.rs-courses-details .course-desc .course-syllabus ul.syllabus li strong {
padding-right: 5px;
display: block;
}
.rs-courses-details .course-desc .course-syllabus ul.syllabus li span {
padding-left: 20px;
position: relative;
}
.rs-courses-details .course-desc .course-syllabus ul.syllabus li span:before {
content: "\f054";
font-family: "FontAwesome";
font-size: 10px;
left: 0;
position: absolute;
color: #505050;
top: 0;
}
.rs-courses-details .rs-testimonial .testimonial-item {
text-align: center;
}
.rs-courses-details .rs-testimonial .testimonial-item .testi-desc:after,
.rs-courses-details .rs-testimonial .testimonial-item .testi-desc:before {
display: none;
}
.rs-courses-details .rs-testimonial .testimonial-item .cl-client-rating i {
color: #ffaa30;
}
.rs-courses-details .course-meta .author {
overflow: hidden;
}
.rs-courses-details .course-meta .author .author-name,
.rs-courses-details .course-meta .author .image {
float: left;
}
.rs-courses-details .course-meta .author .author-name p,
.rs-courses-details .course-meta .author .image p {
margin: 0;
}
.rs-courses-details .course-meta .author .author-name {
padding-left: 15px;
}
.rs-courses-details .course-meta .author-name,
.rs-courses-details .course-meta .categories,
.rs-courses-details .course-meta .client-rating {
padding-bottom: 20px;
}
.rs-courses-details .course-meta .author-name p,
.rs-courses-details .course-meta .categories p,
.rs-courses-details .course-meta .client-rating p {
margin: 0;
}
.rs-courses-details .course-meta a {
color: #212121;
font-weight: 600;
}
.rs-courses-details .course-meta i {
color: #ffaa30;
}
.rs-courses-details .btn-area {
text-align: right;
}
.rs-courses-details .btn-area a {
background: #ff3115;
color: #fff;
display: inline-block;
text-transform: uppercase;
padding: 10px 20px;
}
.rs-courses-details .btn-area a:hover {
background: #e41f05;
}
.course-summary {
margin-top: 15px;
}
.course-summary .course-tabs .learn-press-nav-tabs {
margin: 0;
border: 0;
}
.course-summary .course-tabs .learn-press-nav-tabs .course-nav {
width: 25%;
border: 1px solid #eee;
background: #f9f9f9;
border-right: 0;
color: #212121;
font-weight: 600;
text-align: center;
}
.course-summary .course-tabs .learn-press-nav-tabs .course-nav a {
display: block;
color: #212121;
}
.course-summary .course-tabs .learn-press-nav-tabs .course-nav.active {
position: relative;
background: #fff;
border-bottom: none;
color: #ff3115;
}
.course-summary .course-tabs .learn-press-nav-tabs .course-nav.active a {
display: block;
color: #ff3115;
}
.course-summary .course-tabs .learn-press-nav-tabs .course-nav.active:before {
content: '';
position: absolute;
left: 0;
right: 3px;
top: 0;
height: 2px;
z-index: 10;
width: 100%;
background: #ff3115;
}
.course-summary .course-tabs .learn-press-nav-tabs .course-nav:last-child a {
border-right: 1px solid #eee;
}
.course-summary .course-tabs .learn-press-nav-tabs .course-nav:after {
display: none;
}
.course-summary .course-tab-panel-overview,
.course-summary .course-tab-panel-curriculum,
.course-summary .course-tab-panel-instructor,
.course-summary .course-tab-panel-reviews {
border-radius: 0;
border: 1px solid #eee;
border-top: 0;
padding: 60px 30px;
}
.course-summary .course-tab-panel-overview .course-description h4.desc-title,
.course-summary .course-tab-panel-curriculum .course-description h4.desc-title,
.course-summary .course-tab-panel-instructor .course-description h4.desc-title,
.course-summary .course-tab-panel-reviews .course-description h4.desc-title {
padding-bottom: 15px;
position: relative;
}
.course-summary .course-tab-panel-overview .course-description h4.desc-title:before,
.course-summary .course-tab-panel-curriculum .course-description h4.desc-title:before,
.course-summary .course-tab-panel-instructor .course-description h4.desc-title:before,
.course-summary .course-tab-panel-reviews .course-description h4.desc-title:before {
content: "";
position: absolute;
left: 0;
bottom: 0;
height: 3px;
width: 50px;
background: #ff3115;
}
.course-summary .course-tab-panel-overview .course-description ul.requirements-list,
.course-summary .course-tab-panel-curriculum .course-description ul.requirements-list,
.course-summary .course-tab-panel-instructor .course-description ul.requirements-list,
.course-summary .course-tab-panel-reviews .course-description ul.requirements-list {
list-style: none;
padding: 0;
margin: 0;
}
.course-summary .course-tab-panel-overview .course-description ul.requirements-list li,
.course-summary .course-tab-panel-curriculum .course-description ul.requirements-list li,
.course-summary .course-tab-panel-instructor .course-description ul.requirements-list li,
.course-summary .course-tab-panel-reviews .course-description ul.requirements-list li {
position: relative;
padding-left: 20px;
}
.course-summary .course-tab-panel-overview .course-description ul.requirements-list li:before,
.course-summary .course-tab-panel-curriculum .course-description ul.requirements-list li:before,
.course-summary .course-tab-panel-instructor .course-description ul.requirements-list li:before,
.course-summary .course-tab-panel-reviews .course-description ul.requirements-list li:before {
border: none;
color: #ff3115;
content: "\f101";
font-family: fontawesome;
font-size: 14px !important;
font-size: 9px;
margin-right: 10px;
padding: 0;
left: 0;
position: absolute;
top: 1px;
}
.course-summary .course-tab-panel-overview .instructor-list,
.course-summary .course-tab-panel-curriculum .instructor-list,
.course-summary .course-tab-panel-instructor .instructor-list,
.course-summary .course-tab-panel-reviews .instructor-list {
overflow: hidden;
}
.course-summary .course-tab-panel-overview .instructor-list .image,
.course-summary .course-tab-panel-curriculum .instructor-list .image,
.course-summary .course-tab-panel-instructor .instructor-list .image,
.course-summary .course-tab-panel-reviews .instructor-list .image {
float: left;
padding-right: 20px;
}
.course-summary .course-tab-panel-overview .instructor-list .author-name,
.course-summary .course-tab-panel-curriculum .instructor-list .author-name,
.course-summary .course-tab-panel-instructor .instructor-list .author-name,
.course-summary .course-tab-panel-reviews .instructor-list .author-name {
overflow: hidden;
}
.course-summary .course-tab-panel-overview .instructor-list .author-name h4,
.course-summary .course-tab-panel-curriculum .instructor-list .author-name h4,
.course-summary .course-tab-panel-instructor .instructor-list .author-name h4,
.course-summary .course-tab-panel-reviews .instructor-list .author-name h4 {
margin: 0 0 5px;
}
.course-summary .course-tab-panel-overview .instructor-list .author-name span,
.course-summary .course-tab-panel-curriculum .instructor-list .author-name span,
.course-summary .course-tab-panel-instructor .instructor-list .author-name span,
.course-summary .course-tab-panel-reviews .instructor-list .author-name span {
margin: 0 0 10px;
display: block;
}
.course-summary .course-tab-panel-overview .instructor-list .author-name i,
.course-summary .course-tab-panel-curriculum .instructor-list .author-name i,
.course-summary .course-tab-panel-instructor .instructor-list .author-name i,
.course-summary .course-tab-panel-reviews .instructor-list .author-name i {
color: #ffaa30;
}
.course-summary .course-tab-panel-overview .instructor-list p.dsc,
.course-summary .course-tab-panel-curriculum .instructor-list p.dsc,
.course-summary .course-tab-panel-instructor .instructor-list p.dsc,
.course-summary .course-tab-panel-reviews .instructor-list p.dsc {
display: block;
clear: both;
padding-top: 15px;
margin-bottom: 0;
}
.course-summary .course-tab-panel-overview .instructor-list .social-icon li,
.course-summary .course-tab-panel-curriculum .instructor-list .social-icon li,
.course-summary .course-tab-panel-instructor .instructor-list .social-icon li,
.course-summary .course-tab-panel-reviews .instructor-list .social-icon li {
display: inline-block;
}
.course-summary .course-tab-panel-overview .instructor-list .social-icon li a,
.course-summary .course-tab-panel-curriculum .instructor-list .social-icon li a,
.course-summary .course-tab-panel-instructor .instructor-list .social-icon li a,
.course-summary .course-tab-panel-reviews .instructor-list .social-icon li a {
display: block;
background: #ff3115;
padding: 3px 0;
width: 40px;
text-align: center;
}
.course-summary .course-tab-panel-overview .instructor-list .social-icon li a i,
.course-summary .course-tab-panel-curriculum .instructor-list .social-icon li a i,
.course-summary .course-tab-panel-instructor .instructor-list .social-icon li a i,
.course-summary .course-tab-panel-reviews .instructor-list .social-icon li a i {
color: #fff;
}
.course-summary .course-tab-panel-overview .instructor-list .social-icon li a:hover,
.course-summary .course-tab-panel-curriculum .instructor-list .social-icon li a:hover,
.course-summary .course-tab-panel-instructor .instructor-list .social-icon li a:hover,
.course-summary .course-tab-panel-reviews .instructor-list .social-icon li a:hover {
background: #ff3115;
}
.course-summary ul.section-content {
display: none;
}
.course-summary ul.curriculum-sections li {
background: #fff;
color: #212121;
padding: 8px 18px !important;
margin: 10px 0 !important;
border-radius: 5px;
}
.course-summary ul.curriculum-sections li .section-header {
border: none;
background: #f9f9f9;
padding: 6px 20px;
}
.course-summary ul.curriculum-sections li .section-header .section-title {
position: relative;
}
.course-summary ul.curriculum-sections li .section-header .section-title:before {
font-family: fontAwesome;
content: "\f078";
position: absolute;
right: 0;
top: 50%;
font-weight: 300;
font-size: 14px;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
}
.course-summary .section-content li a {
color: #212121;
}
.course-curriculum ul.curriculum-sections .section-content .course-item .course-item-meta .duration,
.course-curriculum ul.curriculum-sections .section-content .course-item.item-preview .course-item-status {
background: #ff3115 !important;
}
.learn-press-pagination .page-numbers > li span.page-numbers.current {
color: #ff3115 !important;
}
.learn-press-pagination .page-numbers > li:last-child a,
.learn-press-pagination .page-numbers > li:last-child span {
border-radius: 0 20px 20px 0;
}
.learn-press-pagination .page-numbers > li:first-child a,
.learn-press-pagination .page-numbers > li:first-child span {
border-radius: 20px 0 0 20px;
} #rs-testimonial .slider2 * {
outline: none;
}
#rs-testimonial .slider2 .cl-author-info {
padding: 15px 20px 18px;
margin: -15px -18px -18px;
-webkit-transition: 0.3s ease all;
transition: 0.3s ease all;
}
#rs-testimonial .slider2 .cl-author-info li {
line-height: 22px;
}
#rs-testimonial .slider2 .cl-author-info li:first-child {
font-size: 17px;
text-transform: uppercase;
position: relative;
padding-bottom: 7px !important;
}
#rs-testimonial .slider2 .cl-author-info li:last-child {
font-size: 14px;
}
#rs-testimonial .slider2 .slick-arrow {
top: 60%;
width: 42px;
height: 42px;
line-height: 42px;
text-align: center;
background-color: #ff3115;
color: #fff;
transform: translateY(-50%);
font-size: 0;
border-radius: 50%;
opacity: 0;
-webkit-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
#rs-testimonial .slider2 .slick-arrow:hover {
background: #e41f05;
}
#rs-testimonial .slider2 .testimonial-content {
margin: 52px 10px 0;
position: relative;
padding: 35px;
z-index: 11;
overflow: initial;
border-radius: 0;
-webkit-box-shadow: 0px 10px 5px rgba(0, 0, 0, 0.03), 0px -px 10px rgba(0, 0, 0, 0.03);
-moz-box-shadow: 0px 10px 5px rgba(0, 0, 0, 0.03), 0px -6px 10px rgba(0, 0, 0, 0.03);
box-shadow: 0px 8px 5px rgba(0, 0, 0, 0.03), 0px -3px 5px rgba(0, 0, 0, 0.03);
-webkit-transition: 0.3s all ease;
transition: 0.3s all ease;
}
#rs-testimonial .slider2 .testimonial-content img {
margin-bottom: 12px;
position: absolute;
height: 105px;
width: 105px;
top: -50px;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
background: #ffffff;
padding: 5px;
-webkit-transition: 0.3s ease all;
transition: 0.3s ease all;
}
#rs-testimonial .slider2 .testimonial-content h4 {
margin-bottom: 0;
margin-top: 20px;
text-align: left;
}
#rs-testimonial .slider2 .testimonial-content p {
margin-bottom: 25px;
font-style: normal;
font-size: 16px;
padding-top: 12px;
}
#rs-testimonial .slider2 .testimonial-content i {
position: absolute;
font-size: 120px;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
z-index: -1;
opacity: 0.12;
color: #ff3115 !important;
}
#rs-testimonial .slider3 * {
outline: none;
}
#rs-testimonial #cl-testimonial .slider3 p {
font-size: 16px;
line-height: 30px;
font-style: normal;
max-width: 800px;
margin-bottom: 15px;
}
#rs-testimonial #cl-testimonial .slider3 img {
margin-left: 0;
margin-bottom: 40px;
}
#rs-testimonial #cl-testimonial .slider3 .cl-author-info li:first-child {
font-size: 18px;
color: #212121 !important;
}
#rs-testimonial #cl-testimonial .slider3 .cl-author-info li:last-child {
font-size: 15px;
}
#rs-testimonial .slick-dots {
bottom: -15px !important;
right: 50%;
transform: translateX(50%);
}
#rs-testimonial .slick-dots button {
height: 6px;
width: 22px;
background: #ff3115;
}
#rs-testimonial .slick-dots li {
vertical-align: bottom;
}
#rs-testimonial .slick-dots li:first-child button {
border-radius: 3px 0 0 3px;
}
#rs-testimonial .slick-dots li:last-child button {
border-radius: 0 3px 3px 0;
}
#rs-testimonial .slick-dots .slick-active button {
background: #e41f05 !important;
}
#rs-testimonial .hide_bullet .slick-dotted {
padding-bottom: 0 !important;
}
#rs-testimonial .hide_arrow {
padding-bottom: 22px;
}
#rs-testimonial:hover .slick-arrow {
opacity: 1;
}
#rs-testimonial2.black-overlay:after {
background: rgba(0, 0, 0, 0.8);
}
.rs-testimonial-home .testimonial-content {
margin-left: 0;
}
.rs-testimonial-home .testimonial-content p {
text-align: left !important;
}
.rs-testimonial-home .testimonial-content .cl-author-info li {
text-align: left !important;
}
.rs-testimonial-home .testimonial-slide3 {
padding: 15px 15px 28px !important;
background: #f8f8f8;
}
.rs-testimonial-home .cl-testimonial2 .image-testimonial .testimonial-content p {
text-align: left !important;
}
.testimonial-boxshadow .image img,
.testimonial-boxshadow .image-testimonial img,
.testimonial-boxshadow .cl-row .image-testimonial2 img {
box-shadow: 0 0 15px #ccc;
}
.testimonial-boxshadow.grid-style3 img,
.testimonial-boxshadow.listy-style img {
margin-top: 6px;
}
.slick-dotted {
padding-bottom: 42px !important;
}
.slider2 li.testimonial-item {
padding-bottom: 0 !important;
}
#cl-testimonial .testimonial-slide3.slider3 {
background: transparent;
padding-bottom: 0 !important;
}
#cl-testimonial .testimonial-slide3.slider3 .testimonial-item {
padding-bottom: 0 !important;
}
#cl-testimonial .testimonial-slide3.slider3 .testimonial-content {
display: flex;
padding-bottom: 0;
}
#cl-testimonial .testimonial-slide3.slider3 .testimonial-content .author-image {
margin-right: 40px;
background: url(//www.academicresearchexperts.net/wp-content/themes/eshkool/assets/images/red-brush.png) no-repeat center center;
width: 50%;
background-size: contain;
}
#cl-testimonial .testimonial-slide3.slider3 .testimonial-content .author-image img {
width: 100%;
max-width: 430px;
border-radius: 0;
}
#cl-testimonial .testimonial-slide3.slider3 .testimonial-content .contents {
width: 50%;
margin-top: 50px;
}
#cl-testimonial .testimonial-slide3.slider3 .testimonial-content .contents p {
font-size: 26px;
line-height: 34px;
}
#cl-testimonial .testimonial-slide3.slider3 .testimonial-content .contents p i {
font-size: 120px;
}
#cl-testimonial .testimonial-slide3.slider3 .testimonial-content .contents .cl-author-info {
font-size: 26px;
line-height: 30px;
}
#cl-testimonial .testimonial-slide3.slider3 .testimonial-content .contents .cl-author-info li:last-child {
font-size: 15px;
font-style: italic;
}
#cl-testimonial .testimonial-slide3.slider3 .slick-dots {
bottom: 110px;
text-align: right;
right: 12px;
}
#cl-testimonial .testimonial-slide3.slider3 .slick-dots li button {
position: relative;
width: 30px !important;
height: 23px !important;
border: none !important;
}
#cl-testimonial .testimonial-slide3.slider3 .slick-dots li button:before {
font-family: fontAwesome;
font-size: 25px;
font-style: normal;
content: "\f19d" !important;
position: absolute;
top: 0px;
left: 0px;
display: block !important;
color: #c7c7c7;
opacity: 1;
width: 100%;
}
#cl-testimonial .testimonial-slide3.slider3 .slick-dots li:slick-active button {
background: transparent !important;
}
#cl-testimonial .testimonial-slide3.slider3 .slick-dots li:slick-active button:before {
color: #ff3115 !important;
}
#cl-testimonial.image-bg-none .testimonial-slide3 .testimonial-content .author-image {
background: none;
}
.image-border img {
border-radius: 25px;
}
#cl-testimonial .testimonial-slide3 .slick-active button {
background: transparent !important;
}
#cl-testimonial .testimonial-slide3 .slick-active button:before,
#cl-testimonial .testimonial-slide3 .slick-active:hover button:before {
color: #ff3115 !important;
opacity: .7 !important;
}
.rs-testimonial.slider8#cl-testimonial ul {
margin-bottom: 25px;
}
.rs-testimonial.slider8#cl-testimonial ul li:first-child {
font-size: 20px;
color: #212121 !important;
}
.rs-testimonial.slider8#cl-testimonial * {
outline: none;
}
.rs-testimonial.slider8#cl-testimonial p {
font-style: normal;
font-size: 18px;
line-height: 34px;
}
.rs-testimonial.slider8#cl-testimonial .testimonials-nav {
margin-bottom: 0;
}
.rs-testimonial.slider8#cl-testimonial .testimonials-nav .slick-track {
padding-bottom: 0;
}
.rs-testimonial.slider8#cl-testimonial .slick-dots {
display: none !important;
}
#blog-home .cat_name {
display: none;
}
#blog-home .blog-meta .blog-title {
font-size: 17px;
margin: 12px 0 0;
}
#blog-home .blog-meta .blog-title a {
color: #444;
}
#blog-home .blog-meta .blog-title a:hover {
color: #ff3115;
}
.blog-title a {
color: #232323;
}
.blog-title a:hover {
color: #ff3115;
}
.full-layout-left {
float: right;
}
button.mfp-close,
button.mfp-arrow {
background: transparent !important;
}
.choose-sec .description {
color: #fff;
} .rs-blog .blog-item {
position: relative;
margin-bottom: 50px;
}
.rs-blog .blog-item .full-blog-content {
padding: 0;
overflow: hidden;
}
.rs-blog .blog-item .full-blog-content .blog-title {
margin: 0 0 10px;
font-size: 24px;
line-height: 24px;
font-weight: 700;
}
.rs-blog .blog-item .full-blog-content .blog-title a:hover {
color: #ff3115;
}
.rs-blog .blog-item .full-blog-content .blog-date {
margin-bottom: 5px;
font-size: 13px;
font-weight: normal;
color: #505050;
}
.rs-blog .blog-item .full-blog-content .blog-date a {
color: #505050;
}
.rs-blog .blog-item .full-blog-content .blog-date i {
margin-right: 6px;
}
.rs-blog .blog-item .full-blog-content .blog-button a {
display: inline-block;
margin-left: auto;
padding: 6px 22px;
font-size: 13px;
font-weight: 500;
text-decoration: none;
background-color: #ff3115;
color: #fff;
border-radius: 35px;
text-transform: uppercase;
}
.rs-blog .blog-item .full-blog-content .blog-button a:hover {
background: #e41f05;
color: #ffffff;
}
.rs-blog .blog-item .blog-content {
left: 0;
z-index: 999;
-webkit-transition: 0.3s all ease-out;
transition: 0.3s all ease-out;
}
.rs-blog .blog-item .blog-content .excerpt {
margin-bottom: 17px;
}
.rs-blog .blog-item .blog-content h3 {
font-size: 20px;
color: #fff;
margin-bottom: 4px;
}
.rs-blog .blog-item .blog-content h3 a:hover {
color: #ff3115;
}
.rs-blog .blog-item .blog-content h3 a,
.rs-blog .blog-item .blog-content p,
.rs-blog .blog-item .blog-content .blog-link a {
position: relative;
z-index: 999;
}
.rs-blog .blog-item .blog-content p {
font-size: 15px;
color: #505050;
}
.rs-blog .blog-item .blog-content .blog-link a {
font-size: 15px;
color: #505050;
font-weight: 500;
transition: 0.4s;
-webkit-transition: 0.4s;
-ms-transition: 0.4s;
}
.rs-blog .blog-item .blog-content .blog-link a:after {
font-family: FontAwesome;
content: "\f101";
position: absolute;
color: inherit;
top: 55%;
right: -10px;
font-size: 15px;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-transition: 0.3s all ease;
-ms-transition: 0.3s all ease;
opacity: 0;
line-height: 0;
}
.rs-blog .blog-item .blog-content .blog-link a:hover {
color: #ff3115;
}
.rs-blog .blog-item .blog-content .blog-link a:hover:after {
right: -15px;
opacity: 1;
}
.rs-blog .blog-item .blog-img {
position: relative;
overflow: hidden;
}
.rs-blog .blog-item .blog-img img {
transform: scale(1);
-webkit-transition: 0.5s;
transition: 0.5s;
}
.rs-blog .blog-item .blog-img:before {
content: "";
position: absolute;
height: 100%;
width: 100%;
left: 0;
top: 0;
right: 0;
z-index: 10;
background: rgba(0, 0, 0, 0.6);
transition: 0.5s;
-webkit-transition: 0.5s;
-ms-transition: 0.5s;
transform: scale(0);
-webkit-transform: scale(0);
-ms-transform: scale(0);
}
.rs-blog .blog-item .blog-img .blog-link {
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
z-index: 99;
width: 35px;
height: 35px;
line-height: 35px;
text-align: center;
border-radius: 100%;
border: 1px solid #ff3115;
color: #ff3115;
opacity: 0;
}
.rs-blog .blog-item:hover .blog-img img {
transform: scale(1.1);
}
.rs-blog .blog-item:hover .blog-img:before {
-ms-transform: scale(1);
-webkit-transform: scale(1);
transform: scale(1);
}
.rs-blog .blog-item:hover .blog-img .blog-link {
opacity: 1;
}
.rs-blog .blog-item .blog-full-area {
position: relative;
margin-left: auto;
margin-right: auto;
}
.rs-blog .blog-item .blog-full-area .blog-meta h3.blog-title {
color: #212121;
}
.rs-blog .blog-item .blog-full-area .blog-meta h3.blog-title a {
color: #212121;
}
.rs-blog .blog-item .blog-full-area .blog-meta h3.blog-title a:hover {
color: #ff3115;
}
.rs-blog .blog-item .blog-full-area .full-blog-content {
padding: 0;
}
.rs-blog .owl-dots {
bottom: -28px;
}
.rs-blog .owl-item.center .blog-item,
.rs-blog .owl-item:hover .blog-item {
transition: 0.4s;
-webkit-transition: 0.4s;
-ms-transition: 0.4s;
}
.rs-blog .owl-item.center .blog-item .blog-content,
.rs-blog .owl-item:hover .blog-item .blog-content {
opacity: 1;
top: 0;
}
.rs-blog ul.slick-dots {
text-align: center;
margin-top: 40px;
}
.rs-blog ul.slick-dots li {
display: inline-block;
}
.rs-blog ul.slick-dots li button {
border: 1px solid #ff3115;
color: #212121;
background: transparent;
border-radius: 0;
height: 40px;
width: 40px;
}
.rs-blog ul.slick-dots li button:hover button,
.rs-blog ul.slick-dots li.slick-active button {
background: #ff3115;
color: #212121;
outline: none !important;
}
.rs-blog ul.slick-dots li:first-child button {
border-radius: 3px 0 0 3px;
}
.rs-blog ul.slick-dots li:last-child button {
border-radius: 0 3px 3px 0;
}
.rs-blog.drak-color ul.slick-dots li button {
color: #ffffff;
}
.rs-blog .blog-item .full-blog-content .blog-date a:hover {
color: #ff3115;
}
.blog-carousel .blog-item {
margin-bottom: 30px;
}
.blog-carousel .blog-content {
position: relative;
padding: 20px;
width: calc(100% - 40px);
margin-top: -30px;
background: #f9f9f9;
margin-left: auto;
margin-right: auto;
}
.blog-carousel .blog-content .blog-link-icon a {
color: #999;
}
.blog-carousel .blog-content .blog-link-icon a:hover {
color: #ff3115;
}
.blog-carousel .blog-content .blog-meta {
margin: 0;
list-style-type: none;
font-size: 14px;
}
.blog-carousel .blog-content .blog-meta li:first-child {
float: left;
text-transform: capitalize;
color: #999;
}
.blog-carousel .blog-content .blog-meta li:last-child {
float: right;
}
.blog-carousel .blog-content .blog-meta li:last-child a {
color: #999;
}
.blog-carousel .blog-content .blog-meta li:last-child a:hover {
color: #ff3115;
}
.blog-carousel .blog-date {
background: #f9f9f9;
font-size: 13px;
color: #999;
} .overly-border::before,
.overly-border::after {
position: absolute;
top: 20px;
right: 20px;
bottom: 20px;
left: 20px;
content: '';
opacity: 0;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
z-index: 1;
}
.overly-border::before {
border-top: 5px solid #ff3115;
border-bottom: 5px solid #ff3115;
-webkit-transform: scale(0, 1);
transform: scale(0, 1);
}
.rs-blog .owl-item.active .team-content {
opacity: 1;
top: 0;
}
.overly-border::after {
border-right: 5px solid #ff3115;
border-left: 5px solid #ff3115;
-webkit-transform: scale(1, 0);
transform: scale(1, 0);
}
.rs-blog .owl-item.active .overly-border:after,
.rs-blog .owl-item.active .overly-border:before {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
.rs-blog-grid .blog-item {
display: block;
}
.rs-blog-grid .blog-item .full-blog-content {
position: relative;
margin-left: auto;
margin-right: auto;
}
.rs-blog-grid .blog-item .full-blog-content .blog-title {
font-size: 20px;
margin-bottom: 7px;
color: #505050;
}
.rs-blog-grid .blog-item .blog-button {
padding-bottom: 0;
}
.rs-blog-grid .blog-item .blog-img {
max-width: 100%;
}
.rs-blog-grid .blog-item .blog-img:hover img {
opacity: 0.93;
}
.rs-blog-grid .blog-item .cate_sec {
margin: 0;
list-style-type: none;
font-size: 13px;
text-transform: capitalize;
}
.rs-blog-grid .blog-item .cate_sec li {
display: inline-block;
font-size: 13px;
color: #505050;
}
.rs-blog-grid .blog-item .cate_sec li + li {
margin-left: 14px;
}
.rs-blog-grid .blog-item .cate_sec li i {
margin-right: 5px;
}
.rs-blog-grid .blog-item .cate_sec .cat-name a {
color: #505050;
}
.rs-blog-grid .blog-item .cate_sec .cat-name a:hover {
color: #ff3115;
}
.rs-blog-grid .blog-item .blog-button {
margin-top: 20px;
margin-bottom: 0;
}
.rs-blog-grid .blog-item .blog-button a {
margin-bottom: 0;
}
.owl-dots {
position: absolute;
bottom: 0;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
.owl-dots .owl-dot {
display: inline-block;
}
.owl-dots .owl-dot span {
width: 6px;
height: 8px;
background: #ff3115 !important;
display: inline-block;
margin: 5px;
}
.owl-dots .owl-dot.active span {
width: 8px;
height: 20px;
}
body.search article .blog-button a {
display: inline-block;
margin-left: auto;
padding: 6px 22px;
font-size: 13px;
font-weight: 500;
text-decoration: none;
background-color: #ff3115;
color: #fff !important;
border-radius: 35px;
text-transform: uppercase;
}
body.search article .blog-button a:hover {
background: #e41f05;
}
body.blog .main-contain #content,
body.archive .main-contain #content {
padding: 100px 0 50px;
}
body.blog .pagination-area,
body.archive .pagination-area {
margin-bottom: 48px;
}
body.archive.woocommerce-page .main-contain #content {
padding: 110px 0 90px;
}
.comment i {
color: #ff3115;
}
.single-blog-slide .overley i {
color: #fff;
margin-right: 10px;
font-size: 16px;
width: 45px;
height: 45px;
line-height: 45px;
border: 1px solid #ffffff;
border-radius: 50%;
transition: all 0.3s ease 0s;
}
.single-blog-slide .overley i:hover {
background: #fff;
color: #212121;
}
.single-product .main-contain #content {
padding-bottom: 70px;
} .page-error {
position: relative;
}
.page-error .content-area {
position: relative;
z-index: 101;
margin: 0 auto;
text-align: center;
padding: 100px 0;
}
.page-error .content-area h1.page-title {
color: #ff3115 !important;
font-size: 100px !important;
margin-bottom: 30px;
margin-top: 0px;
}
.page-error .content-area h3 {
color: #505050;
}
.page-error .bs-sidebar {
max-width: 400px;
margin: 0 auto;
padding-bottom: 20px;
}
.page-error .bs-sidebar {
padding: 0 0 20px !important;
}
.page-error .not-found {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
width: 100%;
}
.no-results input[type="search"] {
padding: 10px 20px !important;
height: 50px;
line-height: 50px;
border-radius: 35px;
}
.no-results .bs-search button {
padding: 12px 17px !important;
background: transparent !important;
width: auto;
}
.no-results .bs-search button:hover {
opacity: 0.8;
} #scrollUp {
text-align: center;
bottom: 76px;
cursor: pointer;
display: none;
position: fixed;
right: 30px;
z-index: 100;
}
#scrollUp i {
height: 40px;
font-size: 24px;
width: 40px;
color: #ffffff;
line-height: 36px;
transition: all 0.3s ease 0s;
background-color: #ff3115;
margin-left: 2px;
}
#scrollUp i:hover {
color: #ffffff;
background-color: #e41f05;
}
#scrollUp i:hover:before {
color: #fff;
}
#rs-acheivements.rs-acheivements4 .counter-top-area {
background: none !important;
border: none !important;
padding: 0;
}
#rs-acheivements.rs-acheivements4 .counter-top-area .count-icon {
margin-bottom: 10px;
}
#rs-acheivements.rs-acheivements4 .counter-top-area .count-icon i {
font-size: 60px;
}
#rs-acheivements.rs-acheivements4.black-overlay:after {
background: rgba(0, 0, 0, 0.75);
}
#rs-acheivements.rs-acheivements4.icon-left .rs-counter-list {
display: flex;
text-align: left;
}
#rs-acheivements.rs-acheivements4.icon-left .rs-counter-list .count-icon {
margin-bottom: 0;
margin-right: 25px;
margin-top: 10px;
} .slider-botton .white-color {
background: #ff3115;
}
.slider-botton .white-color:hover {
background: #e41f05;
}
#home3-video {
background-attachment: fixed;
}
#cl-testimonial i {
color: #666 !important;
position: absolute;
font-size: 72px;
left: 0;
z-index: -1;
opacity: 0.08;
} .rs-porfolio-details .ps-informations ul {
margin: 0;
list-style: none;
text-align: left;
}
.rs-porfolio-details .ps-informations ul li + li {
padding-top: 10px;
margin-top: 10px;
border-top: 1px solid rgba(54, 54, 54, 0.05);
}
.rs-porfolio-details .ps-informations ul li span {
width: 150px;
display: inline-block;
font-weight: 700;
}
.rs-porfolio-details .ps-image-wrap {
margin-bottom: 50px;
}
.rs-porfolio-details .ps-image {
text-align: center;
margin-bottom: 10px;
}
.rs-porfolio-details .ps-share {
margin-top: 40px;
}
.rs-porfolio-details .ps-share ul {
margin: 0;
}
.rs-porfolio-details .ps-share .share-title {
font-size: 20px;
font-weight: 500;
margin-bottom: 20px;
}
.rs-porfolio-details .ps-share ul li {
display: inline-block;
margin: 0 10px 14px 0;
}
.rs-porfolio-details .ps-share ul li a {
font-size: 20px;
display: block;
width: 50px;
height: 48px;
line-height: 48px;
border: 1px solid #ff3115;
text-align: center;
transition: all 0.3s ease 0s;
}
.rs-porfolio-details .ps-share ul li a:hover {
background-color: #ff3115;
color: #fff;
}
.rs-porfolio-details .project-desc {
line-height: 30px;
}
.rs-porfolio-details .project-desc p:last-child {
margin-bottom: 0;
}
.rs-porfolio-details .project-desc .ps-title {
margin-bottom: 20px;
}
.rs-porfolio-details .ps-related-project {
margin-top: 50px;
}
.rs-porfolio-details .ps-related-project .ps-related-title {
font-size: 20px;
font-weight: 500;
margin-bottom: 30px;
}
.rs-porfolio-details .ps-related-project .portfolio-item {
margin-bottom: 20px;
}
.rs-porfolio-details .portfolio-carousel .owl-dots {
display: none;
}
.rs-porfolio-details.project-gallery .ps-image-wrap {
margin-top: 28px;
}
.rs-porfolio-details.project-gallery .file-list-image {
margin-bottom: 30px;
position: relative;
background: #000000;
}
.rs-porfolio-details.project-gallery .file-list-image img {
-webkit-transition: 0.3s all ease;
transition: 0.3s all ease;
}
.rs-porfolio-details.project-gallery .file-list-image .p-zoom {
display: inline-block;
font-size: 14px;
color: #ff3115;
transition: all 0.3s ease 0s;
height: 46px;
line-height: 44px;
width: 46px;
border: 1px solid #ff3115;
border-radius: 50%;
text-align: center;
position: absolute;
left: 50%;
top: 60%;
opacity: 0;
-webkit-transform: translateY(-50%) translateX(-50%);
transform: translateY(-50%) translateX(-50%);
-webkit-transition: 0.3s all ease;
transition: 0.3s all ease;
}
.rs-porfolio-details.project-gallery .file-list-image:hover img {
opacity: 0.4;
}
.rs-porfolio-details.project-gallery .file-list-image:hover .p-zoom {
top: 50%;
opacity: 1;
}
.rs-porfolio-details.project-gallery .file-list-image:hover .p-zoom:hover {
background: #ff3115;
color: #ffffff;
}
.rs-porfolio-details .owl-carousel .owl-nav [class*="owl-"] {
top: 50% !important;
}
.single-portfolios .ps-informations {
padding: 40px 40px 45px;
background: rgba(16, 16, 16, 0.05);
margin-top: 10px;
}
.single-portfolios h3 {
text-transform: uppercase;
}
.ps-navigation {
margin-top: 50px;
}
.ps-navigation ul {
margin: 0 !important;
list-style: none;
}
.ps-navigation ul li {
width: 50%;
font-size: 15px;
}
.ps-navigation ul .prev {
display: inline-block;
text-align: left;
}
.ps-navigation ul .prev i {
margin-right: 5px;
}
.ps-navigation ul .next {
float: right;
text-align: right;
}
.ps-navigation ul .next i {
margin-left: 5px;
}
.ps-navigation ul a {
text-transform: uppercase;
color: #505050;
display: inline-block;
}
.ps-navigation ul a span {
display: block;
font-weight: normal;
text-transform: capitalize;
}
.ps-navigation ul a span:first-child {
margin-top: 2px;
}
.ps-navigation ul a span.pagi-date {
font-size: 13px;
color: #aaa;
line-height: normal;
margin-top: 5px;
}
.ps-navigation ul a:hover {
color: #ff3115 !important;
}
.single-portfolios .owl-carousel .owl-nav [class*="owl-"] {
top: calc(50%);
}
.single-portfolios .ps-navigation {
margin-bottom: 0;
margin-top: 55px;
margin-left: auto;
margin-right: auto;
width: 100%;
} .rs-blog-details .blog-details-inner {
background: #ffffff;
}
.rs-blog-details .type-post .bs-img {
margin-bottom: 25px;
margin-top: 0;
}
.rs-blog-details .type-post .bs-img img {
width: 100%;
}
.rs-blog-details .type-post .tag-line a {
font-weight: 400;
}
.rs-blog-details .bs-info {
margin-bottom: 15px;
color: #999;
}
.rs-blog-details .bs-info a {
color: #999;
}
.rs-blog-details .ps-navigation ul {
list-style: none;
margin: 0;
}
.rs-blog-details .bs-title {
margin-top: 0px;
font-size: 22px;
line-height: 1.2;
margin-bottom: 5px;
}
.rs-blog-details .bs-meta {
font-size: 15px;
margin: 0;
padding: 0;
text-transform: capitalize;
}
.rs-blog-details .bs-meta li {
display: inline-block;
line-height: 10px;
margin-right: 15px;
}
.rs-blog-details .bs-meta li i {
margin-right: 5px;
}
.rs-blog-details .bs-meta li.category-name ul {
margin: 0;
float: left;
padding-left: 8px;
}
.rs-blog-details .bs-desc {
margin-top: 0;
}
.rs-blog-details .bs-desc p:last-child {
margin-bottom: 5px;
}
.rs-blog-details .post-title h3 {
margin: 0 0 10px;
}
.rs-blog-details .meta-info-wrap {
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
padding: 20px 0;
margin-top: 35px;
display: flex;
justify-content: space-between;
}
.rs-blog-details .meta-info-wrap .bs-general-meta {
margin: 0;
padding: 0;
list-style: none;
text-transform: capitalize;
}
.rs-blog-details .meta-info-wrap .bs-general-meta li {
display: inline-block;
font-size: 13px;
}
.rs-blog-details .meta-info-wrap .bs-general-meta li i {
margin-right: 4px;
}
.rs-blog-details .meta-info-wrap .bs-general-meta li + li {
margin-left: 12px;
}
.rs-blog-details .meta-info-wrap .bs-general-meta li a {
color: #505050;
}
.rs-blog-details .meta-info-wrap .bs-general-meta li a:hover {
color: #ff3115;
}
.rs-blog-details .meta-info-wrap .tag-line a {
padding: 7px 8px;
border: 1px solid #ddd;
font-size: 13px;
font-weight: 400;
color: #505050;
margin-left: 8px;
margin-bottom: 4px;
margin-top: 4px;
display: inline-block;
text-transform: capitalize;
border-radius: 5px;
}
.rs-blog-details .meta-info-wrap .tag-line a:hover {
background: #ff3115;
color: #fff;
border-color: #ff3115;
}
.rs-blog-details .meta-info-wrap2 {
border: none;
padding: 0 0 18px;
margin-top: 0;
border-bottom: 1px solid #ededed;
margin-bottom: 15px;
}
.rs-blog-details .blockquote {
padding-left: 30px;
border-left: 5px solid #444;
display: block;
font-size: 18px;
line-height: 1.5;
margin: 25px 0;
}
.rs-blog-details .related-post {
margin-top: 40px;
padding: 0 15px;
}
.rs-blog-details .related-post .related-title {
font-size: 20px;
font-weight: 500;
margin-bottom: 30px;
}
.rs-blog-details .related-post .blog-title {
margin-bottom: 7px;
font-size: 16px;
font-weight: 700;
}
.rs-blog-details .related-post .blog-title a {
color: #444;
}
.rs-blog-details .related-post .blog-title a:hover {
color: #ff3115;
}
.rs-blog-details .author-block {
align-items: center;
margin-top: 100px;
border: 1px solid #eee;
padding: 0 35px 35px;
text-align: center;
}
.rs-blog-details .author-block .author-img {
text-align: center;
margin-top: -60px;
}
.rs-blog-details .author-block .author-img img {
border-radius: 50%;
width: 120px;
}
.rs-blog-details .author-block .author-title {
margin: 15px 0;
font-size: 20px;
position: relative;
text-transform: capitalize;
}
.rs-blog-details .author-block .author-title:after {
background: #ff3115;
content: "";
position: absolute;
left: 0;
bottom: -5px;
right: 0;
width: 120px;
height: 1px;
margin: 0 auto;
}
.rs-blog-details .author-block .author-title a {
color: #212121;
}
.rs-blog-details .author-block p {
margin-bottom: 15px;
}
.rs-blog-details .author-block .author-web:hover {
color: #ff3115 !important;
}
.rs-blog-details .comment-respond {
margin-top: 20px;
}
.rs-blog-details .comments-title {
font-size: 24px;
margin-bottom: 30px;
}
.rs-blog-details #reply-title {
margin-bottom: 18px;
margin-top: 0;
}
.rs-blog-details .comment-block {
margin-top: 50px;
}
.rs-blog-details .comment-block .comment {
padding: 25px;
background: #f7f7f7;
-webkit-box-shadow: 0 0px 1px rgba(16, 16, 16, 0.2);
box-shadow: 0 0px 1px rgba(16, 16, 16, 0.2);
margin-bottom: 35px;
}
.rs-blog-details .comment-block .comment .comment-header {
margin-bottom: 10px;
}
.rs-blog-details .comment-block .comment .comment-header:before,
.rs-blog-details .comment-block .comment .comment-header:after {
content: "";
display: table;
}
.rs-blog-details .comment-block .comment .comment-header:after {
clear: both;
}
.rs-blog-details .comment-block .comment img {
float: left;
margin-right: 15px;
}
.rs-blog-details .comment-block .comment h3 {
margin: 5px 0 0 0;
font-size: 16px;
line-height: 22px;
}
.rs-blog-details .comment-block .comment .comment-body p.desc {
margin-bottom: 10px;
}
.rs-blog-details .comment-block .comment .comment-reply {
margin-bottom: 0;
}
.meta-info-wrap {
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
padding: 20px 0;
margin-top: 35px;
display: flex;
justify-content: space-between;
}
.meta-info-wrap .bs-general-meta {
margin: 0;
padding: 0;
list-style: none;
text-transform: capitalize;
}
.meta-info-wrap .bs-general-meta li {
display: inline-block;
font-size: 13px;
}
.meta-info-wrap .bs-general-meta li i {
margin-right: 4px;
}
.meta-info-wrap .bs-general-meta li + li {
margin-left: 12px;
}
.meta-info-wrap .bs-general-meta li a {
color: #505050;
}
.meta-info-wrap .bs-general-meta li a:hover {
color: #ff3115;
}
.meta-info-wrap .tag-line a {
padding: 7px 8px;
border: 1px solid #ddd;
font-size: 13px;
font-weight: 400;
color: #505050;
margin-left: 8px;
margin-bottom: 4px;
margin-top: 4px;
display: inline-block;
text-transform: capitalize;
border-radius: 5px;
}
.meta-info-wrap .tag-line a:hover {
background: #ff3115;
color: #fff;
border-color: #ff3115;
}
.meta-info-wrap2 {
border: none;
padding: 0;
margin-top: 0;
text-align: center;
}
.meta-info-wrap2 .bs-general-meta {
width: 100%;
}
.meta-info-wrap2 .bs-general-meta li {
color: #ccc;
}
.meta-info-wrap2 .bs-general-meta li i {
font-size: 11px;
}
.breadcrumbs-inner .category-name {
position: relative;
margin-bottom: 20px;
color: #ccc;
}
.breadcrumbs-inner .category-name a {
color: #ccc;
text-transform: uppercase;
font-size: 15px;
}
.breadcrumbs-inner .category-name:after {
content: "";
position: absolute;
background: #ff3115;
height: 2px;
width: 50px;
left: 0;
bottom: -8px;
display: block;
z-index: 1;
right: 0;
margin: 0 auto;
}
.btm-cate {
overflow: hidden;
list-style: none;
margin: 0px;
font-size: 13px;
padding: 0 0 10px;
color: #505050;
}
.btm-cate li {
float: left;
margin-right: 25px;
}
.btm-cate li a {
color: #505050;
font-weight: 600;
}
.btm-cate li a:hover {
color: #ff3115;
}
.btm-cate .category-name i {
margin-right: 6px;
}
.btm-cate .category-name a {
font-weight: normal;
}
.btm-cate .tag-line {
position: relative;
padding-left: 22px;
}
.btm-cate .tag-line a {
font-weight: normal;
}
.floating-cat {
position: absolute;
bottom: 20px;
left: 20px;
z-index: 99;
font-size: 0;
}
.floating-cat a {
display: inline-block;
vertical-align: top;
margin-right: 8px;
margin-bottom: 10px;
padding: 8px 15px 7px 15px;
background-color: #ff3115;
border-radius: 30px;
text-transform: uppercase;
font-weight: 500;
font-size: 11px;
color: #fff;
line-height: 1.1;
transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
}
.floating-cat a:hover {
color: #fff;
background: #e41f05;
}
.floating-cat.category-name {
position: static;
}
.floating-cat.category-name a {
margin-bottom: 0;
}
blockquote {
background: #f0f0f0;
border: medium none;
margin: 25px 0 25px;
padding: 24px 25px 24px 75px;
font-size: 16px;
color: #212121;
font-style: italic;
position: relative;
font-weight: 400;
}
blockquote:before {
font-family: fontAwesome;
font-size: 25px;
font-style: normal;
content: "\f10d" !important;
position: absolute;
top: 27px;
left: 30px;
display: block !important;
}
blockquote p {
margin-bottom: 0 !important;
}
.btm-cate .tag-line::before {
font-family: FontAwesome;
content: "\f02b";
position: absolute;
left: 0;
top: 0px;
width: 14px;
font-weight: normal;
color: #555;
}
.comment-respond .form-field {
margin-bottom: 30px;
position: relative;
}
.comment-respond .form-field i {
position: absolute;
top: 50%;
left: 16px;
transform: translateY(-50%);
}
.comment-respond .form-field input {
width: 100%;
height: 50px;
padding: 5px 15px;
border: 1px solid rgba(54, 54, 54, 0.1);
}
.comment-respond .form-field #comment {
width: 100%;
padding: 10px 20px;
border: 1px solid rgba(54, 54, 54, 0.1);
}
.comment-respond .form-submit {
clear: both;
margin-bottom: 0;
}
.comment-respond .form-submit #submit {
position: relative;
display: inline-block;
padding: 12px 30px;
line-height: normal;
background: #ff3115;
color: #ffffff;
transition: all 0.3s ease 0s;
border: none;
text-transform: uppercase;
border-radius: 30px;
}
.comment-respond .form-submit #submit:hover {
background: #e41f05;
color: #ffffff;
}
.page-template-default .comments-area {
width: 100%;
margin-top: 100px;
}
.comments-area {
margin-top: 50px;
}
.comments-area ol.children {
padding: 0;
}
.comments-area .comment-list {
margin: 0;
padding: 0;
}
.comments-area .comment-list li.comment {
padding: 20px 35px;
background: #f7f7f7;
margin: 20px 0 45px;
list-style: none;
}
.comments-area .comment-list li.comment .comment {
margin-bottom: 0;
padding-bottom: 0;
}
.comments-area .comment-list li.comment .comment-author img {
margin-right: 15px;
}
.comments-area .comment-list li.comment #respond {
margin-left: 50px;
padding-bottom: 20px;
}
.comments-area .comment-list li.comment .comment-metadata {
margin-left: 50px;
margin-top: -10px;
}
.comments-area .comment-list li.comment .comment-metadata time {
color: #999;
}
.comments-area .comment-list li.comment .comment-metadata a {
color: #666666;
}
.comments-area .comment-list li.comment .comment-content {
margin-top: 20px;
margin-left: 50px;
background: #fff;
padding-top: 19px;
padding-left: 15px;
margin-bottom: 20px;
}
.comments-area .comment-list li.comment .reply {
margin-left: 25px;
line-height: 50px;
margin-bottom: 10px;
}
.comments-area .comment-list li.comment .reply a {
position: relative;
margin-left: 27px;
background: #ff3115;
border-radius: 30px;
color: #fff;
padding: 7px 22px;
text-transform: uppercase;
}
.comments-area .comment-list li.comment .reply a:hover {
background: #e41f05;
}
.comments-area p.comment-form-author {
float: left;
width: 50%;
padding-right: 15px;
}
.comments-area p.comment-form-author label {
display: block;
}
.comments-area p.comment-form-author input {
width: 100%;
height: 42px;
padding: 5px 10px;
border: 1px solid rgba(54, 54, 54, 0.1);
}
.comments-area #commentform input,
.comments-area #commentform textarea {
outline: none;
}
.comments-area p.comment-form-email {
float: left;
width: 50%;
padding-left: 15px;
}
.comments-area p.comment-form-email label {
display: block;
}
.comments-area p.comment-form-email input {
width: 100%;
height: 42px;
padding: 5px 10px;
border: 1px solid rgba(54, 54, 54, 0.1);
}
.comments-area p.comment-form-url {
clear: both;
}
.comments-area p.comment-form-url label {
display: block;
}
.comments-area p.comment-form-url input {
width: 100%;
height: 42px;
padding: 5px 10px;
border: 1px solid rgba(54, 54, 54, 0.1);
}
.comments-area p.comment-form-cookies-consent label {
padding-left: 10px;
}
.comments-area p.comment-form-comment {
clear: both;
}
.comments-area p.comment-form-comment label {
display: block;
}
.comments-area p.comment-form-comment textarea {
width: 100%;
height: 100px;
padding: 5px 10px;
border: 1px solid rgba(54, 54, 54, 0.1);
}
.comments-area .comment-navigation {
overflow: hidden;
}
.comments-area .comment-navigation .nav-previous {
position: relative;
padding-left: 18px;
}
.comments-area .comment-navigation .nav-previous:before {
content: "\f104";
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
position: absolute;
left: 0;
top: 1px;
color: #4caf50;
}
.comments-area .comment-navigation .nav-next {
position: relative;
padding-right: 18px;
}
.comments-area .comment-navigation .nav-next:before {
content: "\f105";
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
position: absolute;
right: 0;
top: 1px;
color: #4caf50;
}
#content .rs-blog-details .author-block {
background: transparent !important;
}
.img-shadow {
box-shadow: 0 3px 10px rgba(54, 54, 54, 0.2);
}
.inner-page-title {
padding-top: 70px;
}
.archive-post {
margin-bottom: 40px;
}
.archive-post h3.blog-title {
font-weight: 700;
}
.archive-post h3.blog-title a:hover {
color: #ff3115;
}
.archive-post .readmore {
display: inline-block;
padding: 6px 16px;
-webkit-transition: all .3s ease;
transition: all .3s ease;
background: #ff3115;
color: #fff;
}
.archive-post .readmore:hover {
background: #e41f05 !important;
color: #ffffff;
}
.archive-post .blog-img:hover img {
opacity: 0.93;
} .bs-sidebar {
margin-top: -9px;
padding-left: 20px;
}
.bs-sidebar .widget-title {
font-size: 20px;
line-height: 32px;
color: #212121;
font-weight: 600;
display: block;
margin-bottom: 30px;
position: relative;
padding-bottom: 10px;
}
.bs-sidebar .widget-title:after {
content: "";
position: absolute;
background: #ff3115;
height: 2px;
width: 50px;
left: 0;
bottom: 0;
display: block;
z-index: 1;
}
.bs-sidebar .widget:last-child {
margin-bottom: 0;
}
.bs-sidebar ul {
margin: 0;
padding: 0;
list-style: none;
}
.bs-sidebar ul a {
color: #505050;
transition: all 0.3s ease 0s;
}
.bs-sidebar ul a:hover {
color: #ff3115;
}
.bs-sidebar .bs-search {
position: relative;
z-index: 0;
}
.bs-sidebar .bs-search .search-wrap {
position: relative;
}
.bs-sidebar .bs-search input {
border: 1px solid #ced4da;
color: #505050;
padding: 0 20px;
width: 100%;
height: 45px;
line-height: 45px;
border-radius: 35px;
}
.bs-sidebar .bs-search button {
background: transparent !important;
border: medium none;
color: #505050;
padding: 9px 15px;
position: absolute;
right: 0;
top: 0;
z-index: 999;
font-size: 17px;
outline: none;
width: auto;
}
.bs-sidebar .bs-search label {
display: inline;
font-weight: normal;
}
.bs-sidebar .widget_categories ul,
.bs-sidebar .widget_recent_entries ul,
.bs-sidebar .widget_archive ul,
.bs-sidebar .widget_meta ul {
list-style: none;
}
.bs-sidebar .widget_categories li {
padding: 5px 0 5px 15px !important;
border-bottom: none;
}
.bs-sidebar .widget_categories li:first-child {
padding-top: 0;
}
.bs-sidebar .widget_recent_comments ul li {
padding: 7px 0 7px 15px;
border-bottom: none;
}
.bs-sidebar .recent-post-widget {
padding-bottom: 40px !important;
}
.bs-sidebar .recent-post-widget .widget-title {
margin-bottom: 22px !important;
border-bottom: 1px solid;
border-color: rgba(0, 0, 0, 0.07);
position: relative;
}
.bs-sidebar .recent-post-widget .show-featured {
display: flex;
}
.bs-sidebar .recent-post-widget .show-featured .post-img {
padding-right: 15px;
-ms-flex: 0 0 33.33%;
flex: 0 0 33.33%;
max-width: 33.33%;
}
.bs-sidebar .recent-post-widget .show-featured .post-img img {
transition: 0.2s ease all;
}
.bs-sidebar .recent-post-widget .show-featured .post-item {
-ms-flex: 0 0 66.66%;
flex: 0 0 66.66%;
max-width: 66.66%;
}
.bs-sidebar .recent-post-widget .show-featured + .show-featured {
border-top: 1px solid #eee;
padding-top: 20px;
margin-top: 15px;
}
.bs-sidebar .recent-post-widget .post-desc {
padding: 15px 0;
}
.bs-sidebar .recent-post-widget .post-desc a {
display: block;
font-size: 17px;
color: #212121;
transition: all 0.3s ease 0s;
font-weight: 600;
margin-top: -4px;
line-height: 22px;
}
.bs-sidebar .recent-post-widget .post-desc a:hover {
color: #ff3115;
}
.bs-sidebar .recent-post-widget .post-desc span {
display: block;
font-size: 13px;
color: #777;
}
.bs-sidebar .tagcloud {
margin-bottom: 8px;
}
.bs-sidebar .tagcloud a {
border: 1px solid #d7d7d7;
padding: 5px 13px;
margin: 0 2px 6px 0;
display: inline-block;
color: #505050;
font-weight: 600;
font-size: 13px !important;
letter-spacing: 2px;
line-height: 28px;
border-radius: 5px;
}
.bs-sidebar .tagcloud a:hover {
background-color: #ff3115;
border-color: #ff3115;
color: #ffffff;
}
.bs-sidebar .widget {
margin-bottom: 45px;
}
.bs-sidebar .widget ul li {
padding: 7px 0 7px 15px;
border-bottom: none;
line-height: 22px;
}
.bs-sidebar .widget ul li:first-child {
padding-top: 0;
}
.bs-sidebar .widget_course_category_widget ul li span {
float: right;
}
.bs-sidebar .widget_course_category_widget ul li:last-child {
border-bottom: none;
}
.bs-sidebar select {
border: 1px solid rgba(54, 54, 54, 0.1);
height: 45px;
}
.bs-sidebar .widget ul li:last-child {
padding-bottom: 0px !important;
}
p.comment-form-cookies-consent {
display: none;
}
.widget ul {
margin-left: 0;
}
.widget ul li {
position: relative;
padding: 3px 0 3px 15px;
list-style-type: none;
border-bottom: 1px solid #ddd;
}
.widget ul li:before {
content: "\f105";
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
position: absolute;
left: 0;
top: auto;
display: block !important;
}
.widget ul li:first-child {
border-top: 0;
}
.widget ul li:before {
display: none;
}
.services-sidebar-details .widgettitle,
.services-sidebar-details .widget-title {
font-size: 24px;
line-height: 34px !important;
font-weight: 500 !important;
}
.services-sidebar-details .widget_nav_menu {
margin-bottom: 25px;
}
.services-sidebar-details .widget_brochures .widgettitle {
margin-bottom: 37px;
}
.widget_calendar caption {
padding: 5px 13px;
border-width: 0 1px 1px 1px;
border-style: solid;
border-color: #ccc;
}
.widget_brochures a {
display: block;
padding: 12px 20px;
border: 1px solid #eee;
}
.widget_brochures a i {
margin-right: 6px;
}
.widget_brochures a:hover {
background: #ff3115;
border-color: #ff3115;
color: #fff !important;
}
.widget_contact_widget ul {
margin: 0;
padding: 0;
}
.widget_contact_widget ul li {
padding: 0;
border: 0;
}
.widget_contact_widget ul li:before {
display: none !important;
}
.widget_contact_widget ul li:before {
display: none;
}
.widget_contact_widget ul li + li {
margin-top: 12px;
}
.widget_contact_widget ul li a:hover {
color: #ff3115 !important;
}
.widget_contact_widget i {
font-size: 16px;
vertical-align: middle;
margin-right: 14px;
width: 16px;
color: #ff3115;
float: left;
margin-bottom: 6px;
margin-top: 6px;
}
.widget_contact_widget span,
.widget_contact_widget a {
display: inline-block;
vertical-align: middle;
width: 80%;
}
.inquiry-btn {
display: block;
text-align: left;
}
.inquiry-btn .vc_btn3 {
background: #ff3115 !important;
min-width: 170px;
color: #fff !important;
font-size: 15px !important;
border: 0 !important;
}
.inquiry-btn .vc_btn3:hover {
background: #505050 !important;
color: #ffffff !important;
}
.page-header {
margin: 0 0 20px;
}
.page-header h1 {
margin-top: 0;
}
#rs-header.header-styl-5 .logo-area {
float: none;
text-align: center;
}
.bs-search .search-wrap {
position: relative;
}
.bs-search input {
border: 1px solid #ced4da;
color: #505050;
padding: 10px;
width: 100%;
}
.bs-search button {
background: transparent !important;
border: medium none;
color: #505050;
padding: 8px 11px;
position: absolute;
right: 0;
top: 0;
z-index: 999;
font-size: 20px;
outline: none;
}
.bs-search label {
display: inline;
font-weight: normal;
}
article.sticky .blog-title a {
color: #ff3115;
position: relative;
padding-left: 25px;
}
article.sticky .blog-title a:after {
font-family: FontAwesome;
content: "\f08d";
position: absolute;
left: 0;
top: 2px;
color: #ff3115;
font-size: 25px;
} .pagination-area {
margin-top: 25px;
}
.pagination-area .nav-links {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding-left: 0;
list-style: none;
border-radius: .25rem;
}
.pagination-area .nav-links .dots {
line-height: 40px;
}
.pagination-area .nav-links > * {
width: 60px;
height: 40px;
line-height: 40px;
text-align: center;
font-size: 15px;
padding: 0;
color: #505050;
outline: none;
border: 1px solid #dee2e6;
display: block;
margin-left: -1px;
}
.pagination-area .nav-links > *:hover,
.pagination-area .nav-links > *.current {
color: #ff3115;
background: rgba(0, 0, 0, 0.05);
}
.pagination-area .nav-links > *.dotted {
line-height: 40px;
}
.pagination-area .nav-links > *:hover {
background: rgba(0, 0, 0, 0.05);
}
.pagination-area .nav-links > *:first-child {
border-radius: 20px 0 0 20px;
width: 65px;
}
.pagination-area .nav-links > *:last-child {
border-radius: 0 20px 20px 0;
}
.pagination-area .nav-links .prev {
padding: 0 20px;
width: auto;
line-height: 38px;
height: 40px;
}
.pagination-area .nav-links .next {
padding: 0 20px;
width: auto;
line-height: 38px;
height: 40px;
}
.woocommerce-pagination ul li a.page-numbers,
.woocommerce-pagination ul li span {
width: 50px;
height: 50px;
line-height: 50px;
font-size: 18px;
padding: 0;
font-weight: 600;
color: #505050;
outline: none;
line-height: 50px !important;
text-align: center;
font-size: 18px !important;
padding: 0 !important;
display: block;
margin-left: -1px;
} .book_preload {
position: fixed;
width: 100%;
height: 100%;
background: #ff3115;
z-index: 999999;
}
.book {
top: 50%;
left: 0;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
position: relative;
margin: 0 auto;
border: 5px solid #ecf0f1;
width: 100px;
height: 60px;
}
.book__page {
position: absolute;
left: 50%;
top: -5px;
margin: 0 auto;
border-top: 5px solid #ecf0f1;
border-bottom: 5px solid #ecf0f1;
border-right: 5px solid #ecf0f1;
background: #e41f05;
width: 50px;
height: 60px;
-webkit-transform-origin: 0% 50%;
transform-origin: 0% 50%;
-webkit-animation: flip 1.2s infinite linear;
animation: flip 1.2s infinite linear;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.book__page:nth-child(1) {
z-index: -1;
-webkit-animation-delay: 1.4s;
animation-delay: 1.4s;
}
.book__page:nth-child(2) {
z-index: -2;
-webkit-animation-delay: 2.8s;
animation-delay: 2.8s;
}
.book__page:nth-child(3) {
z-index: -3;
-webkit-animation-delay: 4.2s;
animation-delay: 4.2s;
}
@-webkit-keyframes flip {
0% {
-webkit-transform: perspective(600px) rotateY(0deg);
transform: perspective(600px) rotateY(0deg);
}
20% {
background: #ff3115;
}
29.9% {
background: #ff3115;
}
30% {
-webkit-transform: perspective(200px) rotateY(-90deg);
transform: perspective(200px) rotateY(-90deg);
background: #e41f05;
}
54.999% {
opacity: 1;
}
55% {
opacity: 0;
}
60% {
-webkit-transform: perspective(200px) rotateY(-180deg);
transform: perspective(200px) rotateY(-180deg);
background: #e41f05;
}
100% {
-webkit-transform: perspective(200px) rotateY(-180deg);
transform: perspective(200px) rotateY(-180deg);
background: #e41f05;
}
}
@keyframes flip {
0% {
-webkit-transform: perspective(600px) rotateY(0deg);
transform: perspective(600px) rotateY(0deg);
}
20% {
background: #ff3115;
}
29.9% {
background: #ff3115;
}
30% {
-webkit-transform: perspective(200px) rotateY(-90deg);
transform: perspective(200px) rotateY(-90deg);
background: #e41f05;
}
54.999% {
opacity: 1;
}
55% {
opacity: 0;
}
60% {
-webkit-transform: perspective(200px) rotateY(-180deg);
transform: perspective(200px) rotateY(-180deg);
background: #e41f05;
}
100% {
-webkit-transform: perspective(200px) rotateY(-180deg);
transform: perspective(200px) rotateY(-180deg);
background: #e41f05;
}
}
#loader-wrapper .loader-section.section-left {
left: 0;
}
#loader-wrapper .loader-section.section-right {
right: 0;
} .loaded #loader-wrapper .loader-section.section-left {
-webkit-transform: translateX(-100%); -ms-transform: translateX(-100%); transform: translateX(-100%); -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }
.loaded #loader-wrapper .loader-section.section-right {
-webkit-transform: translateX(100%); -ms-transform: translateX(100%); transform: translateX(100%); -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }
.loaded #loader {
opacity: 0;
-webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out; }
.loaded #loader-wrapper {
visibility: hidden;
-webkit-transform: translateY(-100%); -ms-transform: translateY(-100%); transform: translateY(-100%); -webkit-transition: all 0.3s 1s ease-out; transition: all 0.3s 1s ease-out; } #rs-accordion .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading {
border-radius: 0;
}
#rs-accordion .vc_tta-panels .vc_tta-panel .vc_tta-panel-title a {
color: #212121;
}
#rs-accordion .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
background-color: transparent;
}
#rs-accordion .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading {
background-color: #f0f0f0;
}
#rs-accordion .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a {
color: #ff3115;
}
#rs-accordion .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-controls-icon:before {
border-color: #ff3115;
}
#rs-accordion2 .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading {
border-radius: 0;
}
#rs-accordion2 .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
background-color: transparent;
}
#rs-accordion2 .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading {
background-color: #f0f0f0;
}
#rs-accordion2 .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a {
color: #ff3115;
}
#rs-accordion2 .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-controls-icon:before {
border-color: #ff3115;
} #cta-sec .vc_column-inner {
padding-top: 0;
}
#cta-sec .wpb_content_element {
margin-bottom: 0;
}
#cta-sec h2 {
font-size: 22px;
font-weight: 700;
color: #212121;
margin-bottom: 0px;
line-height: 45px;
text-transform: uppercase;
}
#cta-sec h3 {
color: #fff;
}
#cta-sec .call-title {
margin: 0;
color: #fff;
font-weight: 600;
font-size: 36px;
line-height: 46px;
font-family: 'poppins', sans-serif;
text-transform: uppercase;
}
#cta-sec .call-subtitle {
margin-bottom: 7px;
color: #fff;
font-size: 30px;
font-weight: 400;
font-family: 'poppins', sans-serif;
}
#cta-sec .readon {
font-size: 14px;
text-transform: uppercase;
background: #212121 !important;
color: #fff !important;
position: relative;
padding: 0 20px 0 20px;
border: 1px solid #fff !important;
height: 48px;
line-height: 45px;
}
#cta-sec .readon:hover {
color: #ff3115;
background: #212121 !important;
}
#cta-sec .readon:hover:before {
color: #ff3115;
}
.main-contain #cta-sec .readon {
background: #fff !important;
color: #505050 !important;
}
.main-contain #cta-sec .readon:hover {
background: #e41f05 !important;
border-color: #e41f05 !important;
} .about3 .vc_images_carousel .vc_carousel-indicators li {
border-color: #fff;
background-color: #fff;
}
.about3 .vc_images_carousel .vc_carousel-indicators li.vc_active {
background: transparent;
border-color: #fff;
}
#content .about-tabs .vc_tta-tabs-container li {
width: 19.7%;
}
#content .about-tabs .vc_tta-tabs-container li:last-child {
margin-right: 0px !important;
}
#content .about-tabs .vc_tta-tabs-container li a {
background-color: #fff !important;
position: relative !important;
padding: 14px 20px !important;
margin-right: 3px !important;
font-size: 24px !important;
border-top-left-radius: 5px !important;
border-top-right-radius: 5px !important;
border-bottom-left-radius: 5px !important;
border-bottom-right-radius: 5px !important;
}
#content .about-tabs .vc_tta-tabs-container li a .vc_tta-icon {
display: block;
text-align: center;
padding: 18px 0;
font-size: 22px;
}
#content .about-tabs .vc_tta-tabs-container li.vc_active a {
background: #212121 !important;
color: #fff !important;
border-bottom-left-radius: 0px !important;
border-bottom-right-radius: 0px !important;
}
#content .about-tabs .vc_tta-tabs-container li.vc_active a:after {
border-left: 12px solid rgba(0, 0, 0, 0);
border-right: 12px solid rgba(0, 0, 0, 0);
border-bottom: 10px solid red;
content: "";
height: 0;
left: 50%;
position: absolute;
bottom: -2px;
transform: translateX(-50%);
width: 20px !important;
top: auto;
}
#content .about-tabs .vc_tta-tabs-container li.vc_active a:before {
background: #ff3115;
content: "";
height: 6px;
left: 0;
position: absolute;
bottom: -8px;
width: 100% !important;
border-bottom-left-radius: 5px !important;
border-bottom-right-radius: 5px !important;
}
.kindergarten-about .vc_tta-container .vc_tta-tabs-container {
margin-bottom: 20px !important;
overflow: visible !important;
}
.kindergarten-about .vc_tta-container .vc_tta-tabs-container ul {
background: transparent;
text-align: left;
overflow: visible !important;
}
.kindergarten-about .vc_tta-container .vc_tta-tabs-container ul li a {
background-color: transparent !important;
border-color: transparent !important;
text-align: left;
padding: 16px 28px 12px 28px !important;
display: inline;
background-color: #e5e5e5 !important;
margin-right: 10px;
border-radius: 20px !important;
}
.kindergarten-about .vc_tta-container .vc_tta-tabs-container ul li a:after {
border-left: 15px solid transparent;
border-right: 15px solid transparent;
border-top: 15px solid #e5e5e5;
content: " ";
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 10px !important;
opacity: 0;
visibility: hidden;
}
.kindergarten-about .vc_tta-container .vc_tta-tabs-container ul li a .vc_tta-icon {
font-size: 30px;
display: block;
height: 40px;
width: 40px;
background: transparent;
line-height: 30px;
text-align: left;
margin: 0 auto;
}
.kindergarten-about .vc_tta-container .vc_tta-tabs-container ul li a .vc_tta-title-text {
margin-left: 0 !important;
margin-top: 0px;
display: inline-block;
font-size: 20px;
text-align: left;
text-transform: capitalize;
}
.kindergarten-about .vc_tta-container .vc_tta-tabs-container ul li.vc_active a {
background: #ff3115 !important;
}
.kindergarten-about .vc_tta-container .vc_tta-tabs-container ul li.vc_active a .vc_tta-title-text {
color: #fff;
}
.kindergarten-about .vc_tta-container .vc_tta-tabs-container ul li.vc_active a .vc_tta-icon {
color: #fff;
}
.kindergarten-about .vc_tta-container .vc_tta-tabs-container ul li.vc_active a:after {
border-left: 15px solid transparent !important;
border-right: 15px solid transparent !important;
border-top: 15px solid #ff3115 !important;
content: " ";
position: absolute;
bottom: -15px;
left: 50% !important;
transform: translateX(-50%);
width: 10px !important;
height: 15px !important;
display: block;
opacity: 1;
visibility: visible;
}
.kindergarten-about .vc_tta-container .vc_tta-panels-container .vc_tta-panels {
border: none !important;
background: none !important;
}
.kindergarten-about .vc_tta-container .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body {
padding: 25px 0 0 0;
font-size: 17px;
line-height: 28px;
}
.kindergarten-about .rs-menu .item-wrap {
padding: 30px 20px;
background: #f9f9f9;
overflow: hidden;
margin-bottom: 40px;
border-radius: 5px;
}
.kindergarten-about .rs-menu .menu-img {
padding: 0;
padding-right: 15px;
}
.kindergarten-about .rs-menu .menu-img .inner-img {
border-radius: 100%;
max-width: 100px;
border: 4px solid #ccc;
}
.kindergarten-about .rs-menu .menu-img .inner-img img {
border-radius: 100%;
padding: 6px;
}
.kindergarten-about .rs-menu .menu-desc {
padding: 0;
}
.kindergarten-about .rs-menu .menu-desc h3 {
margin-bottom: 0px;
font-weight: 400;
font-size: 20px;
}
.kindergarten-about .rs-menu .menu-price {
text-align: right;
padding-right: 0;
}
.kindergarten-about .rs-menu .menu-price .inner .price {
display: block;
margin-top: 15px;
font-size: 20px;
font-weight: 600;
}
.kindergarten-about .rs-menu .menu-price .inner .order a {
color: #212121;
text-decoration: underline !important;
transition: all 0.3s ease 0s;
}
.kindergarten-about .rs-menu .menu-price .inner .order a:hover {
color: #ff3115;
} #rs-projects .rs-portfolio.full_width .grid-item {
padding: 0;
margin: 0;
}
.rs-portfolio.style2 .portfolio-img .title-block {
display: none;
}
#rs-testimonial .testi-content {
background: #ff3115 !important;
font-style: normal;
max-width: 100% !important;
box-shadow: none;
}
#rs-testimonial .testi-content p {
color: #212121;
font-size: 15px;
}
#rs-testimonial .testi-content p i {
font-size: 26px;
left: -68px;
top: 2px;
}
#rs-testimonial .testi-content:before {
content: '';
position: absolute;
top: -18px;
height: 38px;
width: 38px;
background: transparent;
border: 1px solid #ff3115 !important;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
z-index: -1;
display: block !important;
}
#rs-testimonial .testi-img .image {
width: 100%;
border-radius: 0;
}
#rs-testimonial .testi-img .image img {
width: 100%;
}
#rs-testimonial .testi-img .image img,
#rs-testimonial .testi-img .image:after {
border-radius: 0;
}
#rs-testimonial .testi-item li {
font-size: 20px;
font-weight: 700;
color: #212121;
}
#rs-testimonial .testi-item li.testi-title {
font-weight: 400;
font-size: 13px;
color: #505050;
}
#rs-testimonial .slick-active.slick-current .testi-title:before {
display: none;
}
#cl-testimonial .slider4 .testimonial-content {
outline: none;
box-shadow: none;
border: 1px solid #eee;
}
#cl-testimonial .slider4 .testimonial-content p {
border-bottom: none;
box-shadow: none;
}
#cl-testimonial .slider4 .testimonial-content .cl-author-info {
background: #f5f5f5;
}
#cl-testimonial .slider4 .slick-active button {
background: #ff3115 !important;
}
.rs-partner .partner-item img {
width: auto;
margin-right: auto;
margin-left: auto;
}
.rs-partner .partner-item img:hover {
border-color: #ff3115;
}
.rs-partner .wpb_single_image {
border: 1px solid #eee;
background: #ffffff;
}
.partner-carousel.owl-carousel .owl-nav [class*="owl-"] {
top: 50%;
}
#about-us .rs-heading {
position: relative;
margin-bottom: 10px;
padding-bottom: 10px;
}
#rs-about .services-style-2 {
margin-bottom: 25px;
}
#rs-about .services-style-2 .services-item {
display: -webkit-flex; -webkit-align-items: center; display: flex;
align-items: center;
}
#rs-about .services-style-2 .services-icon {
overflow: visible;
float: left;
width: 32px;
}
#rs-about .services-style-2 .services-desc {
box-shadow: none !important;
border: 0 !important;
padding: 0 0 0 20px;
}
#rs-about .services-style-2 .services-desc h3 {
font-size: 15px !important;
margin-bottom: 0;
}
#rs-about .services-style-2:hover .services-icon img {
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
#rs-about.registration {
overflow: visible;
}
#rs-about.registration .registration-form {
padding: 115px 10px 48px 10px !important;
overflow: hidden;
margin-top: -190px;
}
#rs-about.registration .registration-form:before {
background: #e41f05;
transform: skewY(174deg);
content: "";
height: 100%;
right: 0;
position: absolute;
top: 33px;
width: 100%;
}
#rs-about.registration .registration-form .contact-form-area textarea,
#rs-about.registration .registration-form .contact-form-area input[type="text"],
#rs-about.registration .registration-form .contact-form-area input[type="email"] {
font-size: 15px;
margin-bottom: 30px;
width: 100%;
color: #fff;
}
#rs-about.registration .registration-form .contact-form-area textarea::-webkit-input-placeholder,
#rs-about.registration .registration-form .contact-form-area input[type="text"]::-webkit-input-placeholder,
#rs-about.registration .registration-form .contact-form-area input[type="email"]::-webkit-input-placeholder { color: #fff;
}
#rs-about.registration .registration-form .contact-form-area textarea::-moz-placeholder,
#rs-about.registration .registration-form .contact-form-area input[type="text"]::-moz-placeholder,
#rs-about.registration .registration-form .contact-form-area input[type="email"]::-moz-placeholder { color: #fff;
}
#rs-about.registration .registration-form .contact-form-area textarea:-ms-input-placeholder,
#rs-about.registration .registration-form .contact-form-area input[type="text"]:-ms-input-placeholder,
#rs-about.registration .registration-form .contact-form-area input[type="email"]:-ms-input-placeholder { color: #fff;
}
#rs-about.registration .registration-form .contact-form-area textarea:-moz-placeholder,
#rs-about.registration .registration-form .contact-form-area input[type="text"]:-moz-placeholder,
#rs-about.registration .registration-form .contact-form-area input[type="email"]:-moz-placeholder { color: #fff;
}
#rs-about.registration .registration-form .contact-form-area input[type="submit"] {
margin-top: 10px;
}
#rs-about.registration .registration-form .contact-form-area .wpcf7-submit:hover {
background: #ff1f01 !important;
}
#rs-about.registration .registration-form .contact-form-area textarea {
height: 150px;
}
#rs-about.registration .services-style-2 {
margin-bottom: 27px;
}
.blog-architecture .blog-item .blog-content,
.blog-architecture .blog-item .blog-date {
background: #f9f9f9;
}
.rs-about3 .services-style-2 .services-desc {
-webkit-box-shadow: none;
box-shadow: none;
padding: 22px 0 0;
border-bottom: none !important;
}
.rs-about3 .services-style-2 .services-desc h3 {
margin-bottom: 8px;
}
.rs-about3 .vc_tta-panel .vc_tta-panel-body {
border: 0 !important;
background: transparent !important;
padding-left: 0px !important;
padding-right: 0px !important;
}
.rs-about3 .vc_tta-panel-heading {
border-radius: 0 !important;
border: 0 !important;
background: #ff3115 !important;
-webkit-transition: 0.3s ease all !important;
transition: 0.3s ease all !important;
}
.rs-about3 .vc_tta-panel-title > a {
padding: 12px 20px !important;
-webkit-transition: 0.3s ease all !important;
transition: 0.3s ease all !important;
}
.rs-about3 .vc_tta-panel-heading a {
color: #ffffff !important;
}
.rs-about3 .vc_tta-panel-heading a i {
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 0;
width: 52px;
height: 52px;
line-height: 52px !important;
text-align: center;
background: #505050;
color: #fff;
-webkit-transition: 0.3s ease all !important;
transition: 0.3s ease all !important;
}
.rs-about3 .vc_tta-panel {
margin-bottom: 17px;
}
.rs-about3 .vc_tta-panel:last-child {
margin-bottom: 0;
}
.rs-about3 .vc_tta-panel.vc_active .vc_tta-panel-heading {
background: #505050 !important;
}
.rs-about3 .vc_tta-panel.vc_active .vc_tta-panel-heading a {
color: #ffffff !important;
}
.rs-about3 .vc_tta-panel.vc_active .vc_tta-panel-heading a i {
background: #ff3115;
color: #ffffff;
}
.rs-about3 .vc_tta-panel.vc_active .vc_tta-panel-heading a i:before {
content: "\f0d7";
}
.rs-about3 .vc_tta-panel-heading:hover {
background: #505050 !important;
}
.rs-about3 .vc_tta-panel-heading:hover a {
color: #ffffff !important;
}
.rs-about3 .vc_tta-panel-heading:hover a i {
background: #ff3115;
color: #ffffff;
}
#we-offer .rs-services1 .services-item {
border-color: #ccc !important;
}
#we-offer.we-offer-sidebar .rs-services1 .services-item {
margin-bottom: 0px;
border-left: 0 !important;
padding-left: 0 !important;
}
.list-brochures a {
padding: 10px 12px;
border: 1px solid #e9e9e9;
max-width: 280px;
display: block;
text-transform: uppercase;
font-size: 14px;
}
.list-brochures a i {
padding-right: 6px;
}
.services-tabs .vc_tta-tab > a {
border-width: 0 0 0 1px !important;
padding: 0 !important;
font-size: 15px !important;
background: #e41f05 !important;
color: #fff !important;
}
.services-tabs .vc_tta-tab > a .vc_tta-title-text {
padding: 12px 16px 12px 12px;
display: block;
margin-left: 0 !important;
font-size: 18px;
text-align: center;
}
.services-tabs .vc_tta-tab > a .vc_tta-icon {
position: absolute;
top: 50%;
left: 15px;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
pointer-events: none;
}
.services-tabs .vc_tta-tab > a:hover .vc_tta-icon {
color: #e41f05;
}
.services-tabs .vc_tta-tab.vc_active .vc_tta-title-text {
color: #fff !important;
}
.services-tabs .vc_tta-tab.vc_active .vc_tta-icon {
color: #fff;
}
.services-tabs .vc_tta-tab.vc_active > a,
.services-tabs .vc_tta-tab > a:hover {
background: #ff3115 !important;
color: #fff;
}
.services-tabs .vc_tta-tab + .vc_tta-tab {
margin-left: 1px !important;
}
.services-tabs .vc_tta-tabs-list {
display: table !important;
}
.services-tabs .vc_tta-tabs-list .vc_tta-tab {
display: table-cell !important;
width: 1%;
}
.services-tabs .vc_tta-tabs .vc_tta-panels {
background: #fff !important;
}
.services-tabs .vc_tta-panel-body {
padding: 25px !important;
padding-bottom: 41px !important;
}
.services-tabs .vc_tta-panel-body h3 {
margin-bottom: 5px;
}
.services-tabs .vc_tta-panel-body .btn-more {
background: #ff3115;
padding: 7px 18px;
color: #fff !important;
display: inline-block;
margin-top: 10px;
}
.services-tabs .vc_tta-panel-body .btn-more:hover {
color: #fff !important;
background: #e41f05;
}
.services-tabs .dropcap:first-letter {
display: block;
float: left;
font-size: 50px;
line-height: 40px;
padding: 4px 8px 0 0;
color: #ff3115;
}
span.says {
display: none;
}
.footer-style-1 .nav-footer ul {
text-align: left;
}
.footer-style-1 .nav-footer ul li {
padding: 10px 0;
}
.footer-style-1 .nav-footer ul li a {
padding: 10px 15px;
}
.footer-style-1 .nav-footer ul li:first-child a {
padding-left: 0;
} .footer-top {
padding-top: 70px;
}
.footer-top ul {
list-style: none !important;
margin: 0 !important;
}
.footer-top li {
list-style: none;
}
.footer-top .recent-post-widget {
margin-top: 50px;
}
.footer-top .recent-post-widget .post-date span {
display: block;
font-size: 16px;
}
#rs-footer .footer-top.footer5 {
padding-bottom: 60px !important;
}
#rs-footer .footer-top.footer5 .f-logo {
text-align: right;
padding-right: 50px;
position: relative;
}
#rs-footer .footer-top.footer5 .f-logo:after {
content: '';
position: absolute;
width: 1px;
height: 80px;
background: rgba(255, 255, 255, 0.4);
top: -17px;
transition: 0.3s ease all;
right: -15px;
display: block;
}
#rs-footer .footer-top.footer5 .footer-share {
text-align: left;
margin-top: 0;
padding-left: 50px;
}
#rs-footer .footer-top.footer3 {
padding-bottom: 55px;
}
.footer-share ul {
margin-left: 0;
}
.single .tag-line a {
display: inline-block;
margin-right: 0;
line-height: normal;
}
.single .tag-line i {
margin-right: 5px;
}
ul.sidenav li.menu-item-has-children {
position: relative !important;
}
ul.sidenav .menu > li.menu-item-has-children:before {
font-family: FontAwesome;
content: "\f107";
position: absolute;
left: auto;
right: 8px;
top: 11px;
color: #fff !important;
width: 30px;
height: 30px;
line-height: 30px;
background: rgba(255, 255, 255, 0.2);
border: 1px solid rgba(255, 255, 255, 0.3);
text-align: center;
z-index: 9999;
display: block !important;
cursor: pointer;
}
.entry-footer {
padding-top: 20px;
padding-bottom: 20px;
}
.entry-footer span {
margin-right: 10px;
font-weight: bold;
}
.entry-footer span a {
font-weight: normal;
}
#page {
word-wrap: break-word;
}
.comments-area .comment-list li.comment .comment-author img {
padding-top: 12px;
}
.archive .display-table {
word-wrap: break-word;
display: block;
}
mark,
ins {
background: #ff3115;
color: #fff;
padding: 0 4px;
}
code {
background: #ff3115;
color: #fff !important;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
background: #ff3115;
border: 0;
color: #fff;
padding: 9px 30px;
font-size: 15px;
text-transform: uppercase;
outline: none;
}
button:hover,
html input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
opacity: 0.85;
}
.post-password-required input[type="submit"] {
margin-left: -4px;
border-radius: 0 3px 3px 0;
padding: 16px 20px 15px;
}
input[type="text"],
input[type="number"],
input[type="password"],
input[type="email"],
textarea {
padding: 10px 14px;
border: 1px solid rgba(54, 54, 54, 0.1);
outline: none;
width: 100%;
height: 50px;
}
input[type="submit"] {
transition: 0.3s ease all;
}
textarea {
padding: 10px 14px;
border: none;
outline: none;
width: 100%;
height: 120px;
}
.entry-content .page-links {
padding-top: 30px;
}
.comment-reply-title {
margin-top: 14px;
}
.page-links span {
border: 1px solid #ff3115;
padding: 3px 12px;
font-size: 18px;
margin: 0 0 0 5px;
background: #ff3115;
color: #fff;
}
.page-links a span {
background: transparent !important;
color: #ff3115;
}
.page-links span:hover {
background: #ff3115 !important;
color: #fff;
}
.single-post h2 {
margin-top: 25px;
}
.single-post .bs-sidebar h2 {
margin-top: 0;
}
.comment-list .pingback,
.comment-list .trackback {
list-style: none;
padding-bottom: 15px;
padding-top: 15px;
}
.rs-blog-details .bs-meta li.category-name a {
line-height: 22px;
}
li.category-name ul.post-categories {
position: relative;
float: none !important;
padding-left: 22px !important;
}
li.category-name ul.post-categories:before {
content: "\f115";
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
position: absolute;
left: 0;
top: 7px;
color: #ff3115;
}
.format-aside .single-content-full .bs-desc {
margin-top: 0;
}
.error404 .rs-footer {
margin: 0;
}
.widget_contact_widget .fa-ul {
padding-top: 2px;
}
#rs-footer {
background-position: center;
}
#rs-footer .widget_contact_widget .fa-ul li {
color: #afb0b2;
}
.toolbar-contact-style4 ul {
float: right;
list-style: none;
padding: 0;
margin: 0;
}
.toolbar-contact-style4 ul li {
display: inline-block;
color: #505050;
}
.toolbar-contact-style4 ul li i {
float: left;
width: 35px;
margin-right: 0;
font-size: 18px;
color: #ff3115;
}
.toolbar-contact-style4 ul li i:before {
font-size: 26px;
top: 8;
position: relative;
font-weight: 600;
}
.toolbar-contact-style4 ul li .contact-inf {
float: left;
text-align: left;
margin-left: 22px;
}
.toolbar-contact-style4 ul li .contact-inf span {
color: #212121;
display: block;
text-align: left;
font-size: 17px;
padding: 0;
font-weight: 700;
line-height: 17px;
}
.toolbar-contact-style4 ul li .contact-inf a {
color: #505050;
}
.toolbar-contact-style4 ul li .contact-inf a:hover {
color: #ff3115;
} #rs-header {
width: 100%;
z-index: 9999;
}
#rs-header .toolbar-area {
padding: 10px 0;
position: relative;
-webkit-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
font-size: 14px;
}
#rs-header .toolbar-area .toolbar-contact ul {
margin: 0 !important;
padding: 0;
list-style: none;
}
#rs-header .toolbar-area .toolbar-contact ul li {
display: inline-block;
margin-right: 25px;
color: #fff;
}
#rs-header .toolbar-area .toolbar-contact ul li i {
font-size: 14px;
margin-right: 7px;
position: relative;
top: 1px;
}
#rs-header .toolbar-area .toolbar-contact ul li i:before {
font-size: 14px;
}
#rs-header .toolbar-area .toolbar-contact ul li a {
transition: all 0.3s ease 0s;
color: #fff;
}
#rs-header .toolbar-area .toolbar-contact ul li a:hover {
color: #ff3115;
}
#rs-header .toolbar-area .toolbar-sl-share ul {
text-align: right;
margin: 0px;
}
#rs-header .toolbar-area .toolbar-sl-share ul li {
display: inline-block;
}
#rs-header .toolbar-area .toolbar-sl-share ul li + li {
margin-left: 12px;
}
#rs-header .toolbar-area .toolbar-sl-share ul li a {
display: block;
color: #fff;
transition: all 0.3s ease 0s;
text-decoration: none;
}
#rs-header .toolbar-area .toolbar-sl-share ul li a:hover {
color: #ff3115;
}
#rs-header .toolbar-area .toolbar-sl-share ul li a i {
text-align: center;
display: inline-block;
}
#rs-header .toolbar-area .toolbar-sl-share ul li a i.fa-sign-in {
font-size: 16px;
color: #ff3115;
position: relative;
margin-right: 4px;
top: 1px;
}
#rs-header .toolbar-area .get-quote {
display: inline-block;
margin-left: 30px;
}
#rs-header.default_header .toolbar-area:before {
opacity: 1;
}
#rs-header .logo-area {
position: relative;
z-index: 9;
float: left;
}
#rs-header .logo-area a {
font-weight: 700;
color: #ff3115;
transition: all 0.3s ease 0s;
}
#rs-header .logo-area a img {
display: inline-block;
vertical-align: middle;
}
#rs-header .logo-area.sticky-logo {
display: none;
}
#rs-header.kids-header .kids-toolbar-area {
background: #00bcd4;
}
#rs-header.kids-header .kids-toolbar-area,
#rs-header.kids-header .kids-toolbar-area ul li,
#rs-header.kids-header .kids-toolbar-area a,
#rs-header.kids-header .kids-toolbar-area ul li a,
#rs-header.kids-header .kids-toolbar-area i,
#rs-header.kids-header .kids-toolbar-area ul li i {
color: #fff;
}
.main-contain ul.building,
.main-contain ol.building {
margin-left: 45px;
}
.main-contain ul.building li,
.main-contain ol.building li {
margin-bottom: 10px;
list-style: none;
}
.main-contain ul.building li:before,
.main-contain ol.building li:before {
content: "\f1ad";
left: -22px;
}
.main-contain ul.arrow,
.main-contain ol.arrow {
margin-left: 45px;
list-style: none;
}
.main-contain ul.arrow li,
.main-contain ol.arrow li {
margin-bottom: 10px;
list-style: none;
}
.main-contain ul.arrow li:before,
.main-contain ol.arrow li:before {
content: "\f105";
left: -22px;
}
.main-contain ul.check,
.main-contain ol.check {
margin-left: 45px;
list-style: none;
}
.main-contain ul.check li,
.main-contain ol.check li {
margin-bottom: 10px;
list-style: none;
}
.main-contain ul.check li:before,
.main-contain ol.check li:before {
content: "\f00c";
left: -22px;
}
.sidebar-area .title {
font-size: 20px;
color: #212121;
font-weight: 700;
text-transform: uppercase;
display: block;
margin-bottom: 25px;
}
.sidebar-area .search-box {
margin-bottom: 45px;
}
.sidebar-area .search-box .form-control {
border-radius: 0;
box-shadow: none;
color: #101010;
padding: 5px 15px;
height: 45px;
}
.sidebar-area .search-box .box-search {
position: relative;
}
.sidebar-area .search-box .btn {
position: absolute;
right: 3px;
background: transparent;
border: none;
box-shadow: none;
top: 50%;
outline: none;
transform: translateY(-50%);
}
.sidebar-area .cate-box {
margin-bottom: 45px;
}
.sidebar-area .cate-box ul {
padding: 0;
margin: 0;
}
.sidebar-area .cate-box ul li {
list-style: none;
border-bottom: 1px solid #ddd;
padding: 10px 0;
cursor: pointer;
}
.sidebar-area .cate-box ul li a {
color: #505050;
padding: 0 0 0 5px;
}
.sidebar-area .cate-box ul li a span {
float: right;
}
.sidebar-area .cate-box ul li:first-child {
padding-top: 0;
}
.sidebar-area .cate-box ul li:hover i,
.sidebar-area .cate-box ul li:hover a {
color: #ff3115;
}
.sidebar-area .tags-cloud {
margin-bottom: 39px;
}
.sidebar-area .tags-cloud ul {
padding: 0;
margin: 0;
}
.sidebar-area .tags-cloud ul li {
float: left;
list-style: none;
}
.sidebar-area .tags-cloud ul li a {
border: 1px solid #d7d7d7;
padding: 5px 13px;
margin: 0 6px 6px 0;
display: block;
color: #505050;
font-weight: 600;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 2px;
line-height: 28px;
}
.sidebar-area .tags-cloud ul li a:hover {
background-color: #ff3115;
border-color: #ff3115;
color: #ffffff;
}
.sidebar-area .newsletter {
background: #f0f0f0;
text-align: center;
padding: 30px 40px;
}
.sidebar-area .newsletter h4 {
font-size: 20px;
color: #212121;
font-weight: 700;
text-transform: uppercase;
display: block;
margin: 0;
}
.sidebar-area .newsletter p {
font-size: 15px;
color: #505050;
margin: 7px 0 20px;
}
.sidebar-area .newsletter .box-newsletter {
position: relative;
}
.sidebar-area .newsletter .box-newsletter .form-control {
border-radius: 0;
box-shadow: none;
color: #212121;
padding: 5px 20px;
height: 50px;
border-color: #ff3115;
}
.sidebar-area .newsletter .box-newsletter .btn {
position: absolute;
right: 3px;
background: #ff3115;
border: none;
top: 50%;
transform: translateY(-50%);
color: #ffffff;
display: block;
padding: 11px 17px;
border-radius: 0;
text-align: center;
}
.sidebar-area .newsletter .box-newsletter .btn:hover {
background: #e41f05;
}
.widget_lp-widget-recent-courses,
.widget_lp-widget-featured-courses,
.widget_lp-widget-popular-courses {
margin-bottom: 45px;
}
.widget_lp-widget-recent-courses .course-entry,
.widget_lp-widget-featured-courses .course-entry,
.widget_lp-widget-popular-courses .course-entry {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
margin-bottom: 20px;
}
.widget_lp-widget-recent-courses .course-entry .course-cover,
.widget_lp-widget-featured-courses .course-entry .course-cover,
.widget_lp-widget-popular-courses .course-entry .course-cover {
width: 33.33%;
transition: all 0.3s ease 0s;
}
.widget_lp-widget-recent-courses .course-entry .course-detail,
.widget_lp-widget-featured-courses .course-entry .course-detail,
.widget_lp-widget-popular-courses .course-entry .course-detail {
width: 66.66%;
padding-left: 20px;
}
.widget_lp-widget-recent-courses .course-entry .course-detail a,
.widget_lp-widget-featured-courses .course-entry .course-detail a,
.widget_lp-widget-popular-courses .course-entry .course-detail a {
margin-bottom: 5px;
}
.widget_lp-widget-recent-courses .course-entry .course-detail a h3,
.widget_lp-widget-featured-courses .course-entry .course-detail a h3,
.widget_lp-widget-popular-courses .course-entry .course-detail a h3 {
font-size: 16px;
color: #212121;
line-height: 16px !important;
margin: 0 0 6px;
}
.widget_lp-widget-recent-courses .course-entry .course-detail a h3:hover,
.widget_lp-widget-featured-courses .course-entry .course-detail a h3:hover,
.widget_lp-widget-popular-courses .course-entry .course-detail a h3:hover {
color: #ff3115;
}
.widget_lp-widget-recent-courses .course-entry .course-detail .duration,
.widget_lp-widget-featured-courses .course-entry .course-detail .duration,
.widget_lp-widget-popular-courses .course-entry .course-detail .duration {
font-weight: 600;
color: #777777;
}
.widget_lp-widget-recent-courses .course-entry .course-detail .course-meta-field,
.widget_lp-widget-featured-courses .course-entry .course-detail .course-meta-field,
.widget_lp-widget-popular-courses .course-entry .course-detail .course-meta-field {
margin-left: 0;
font-weight: 600;
color: #ff3115;
}
.widget_lp-widget-recent-courses .course-entry .course-detail .course-description,
.widget_lp-widget-featured-courses .course-entry .course-detail .course-description,
.widget_lp-widget-popular-courses .course-entry .course-detail .course-description {
line-height: 22px;
height: 46px;
overflow: hidden;
}
.widget_lp-widget-recent-courses .course-entry + .post-item,
.widget_lp-widget-featured-courses .course-entry + .post-item,
.widget_lp-widget-popular-courses .course-entry + .post-item {
padding-top: 20px;
margin-top: 20px;
border-top: 1px solid #ddd;
}
.widget_lp-widget-recent-courses .course-entry:hover .post-img,
.widget_lp-widget-featured-courses .course-entry:hover .post-img,
.widget_lp-widget-popular-courses .course-entry:hover .post-img {
opacity: 0.7;
}
.widget_lp-widget-recent-courses .widget-footer a.pull-right,
.widget_lp-widget-featured-courses .widget-footer a.pull-right,
.widget_lp-widget-popular-courses .widget-footer a.pull-right {
background: #ff3115;
color: #fff;
padding: 1px 10px;
font-size: 14px;
border-radius: 5px;
}
.widget_lp-widget-recent-courses .widget-footer a.pull-right:hover,
.widget_lp-widget-featured-courses .widget-footer a.pull-right:hover,
.widget_lp-widget-popular-courses .widget-footer a.pull-right:hover {
opacity: 0.85;
}
.learn-press-message::before {
background: #ff3115 !important;
}
.single-lp_course.viewing-course-item .lp-button-back .lp-button {
color: #fff;
}
.single-lp_course.viewing-course-item .section-header {
background: #999;
border-bottom: 3px solid #ff3115 !important;
}
.single-lp_course.viewing-course-item .section-header .section-title {
color: #fff;
}
.single-lp_course.viewing-course-item .section-content li a {
color: #212121;
}
.course-features-info {
margin-bottom: 20px;
background: #212121;
padding: 15px;
min-height: 415px;
color: #fff;
}
.course-features-info h3.title {
color: #ff3115;
margin: 10px 0 8px;
font-size: 20px;
}
.course-features-info ul {
padding: 0;
margin: 0;
}
.course-features-info ul li {
display: block;
overflow: hidden;
padding: 10px 0;
}
.course-features-info ul li + li {
border-top: 1px solid #414141;
}
.course-features-info ul li i {
color: #ff3115;
}
.course-features-info ul li .label {
padding-left: 10px;
}
.course-features-info ul li .value {
float: right;
padding-right: 5px;
}
.sidenav {
overflow-y: auto;
float: none;
background: #212121;
list-style: none;
width: 360px;
height: 100vh;
margin: 0;
position: fixed;
right: 0;
top: 0;
padding-top: 20px;
font-size: 11px;
z-index: 99999;
-ms-transition: transform 0.4s ease;
-webkit-transition: transform 0.4s ease;
-moz-transition: transform 0.4s ease;
transition: transform 0.4s ease;
-ms-transform: translateX(100%);
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
transform: translateX(100%);
text-align: center;
}
.sidenav .menu > li > .sub-menu li {
background: transparent !important;
}
.sidenav .menu > li > .sub-menu li a {
background: transparent !important;
}
.sidenav .menu > li > .sub-menu li:before {
display: none;
}
.sidenav .menu > li > .sub-menu li ul {
display: block !important;
}
.sidenav .menu > li > .sub-menu li ul > li a {
font-size: 13px;
padding-left: 60px;
}
.sidenav .widget {
padding: 0 12px;
}
.sidenav .widget.widget_search {
padding: 0 20px;
}
.sidenav .widget.widget_media_image {
margin-bottom: 45px;
}
.sidenav .widget .widget-title {
font-size: 16px;
color: #fff;
margin-bottom: 17px;
text-align: left;
text-transform: uppercase;
font-weight: 700;
}
.sidenav .widget .search-form {
margin-bottom: 30px;
}
.sidenav .widget .search-form label {
display: none;
}
.sidenav .widget .search-form .search-input {
background: rgba(255, 255, 255, 0.1);
border: 0 !important;
color: #fff;
outline: none;
border-radius: 30px;
height: 44px;
line-height: 44px;
padding: 8px 20px;
font-size: 14px;
}
.sidenav .widget .search-form .search-input::-webkit-input-placeholder { color: #fff;
}
.sidenav .widget .search-form .search-input::-moz-placeholder { color: #fff;
}
.sidenav .widget .search-form .search-input:-ms-input-placeholder { color: #fff;
}
.sidenav .widget .search-form .search-input:-moz-placeholder { color: #fff;
}
.sidenav .widget .search-form button {
color: #fff;
background: transparent;
-webkit-transition: 0.3s ease all;
transition: 0.3s ease all;
width: 36px;
height: 40px;
font-size: 14px;
padding: initial;
padding: 5px 11px;
right: 7px;
top: 3px;
}
.sidenav .widget .search-form button:hover {
opacity: 0.7;
}
.sidenav .nav-close-menu-li {
margin: 0;
padding-top: 30px;
padding-bottom: 30px;
text-align: right;
}
.sidenav .nav-close-menu-li button {
font-size: 0;
text-align: center;
display: inline-block;
border: 2px solid #fff;
background: transparent;
width: 36px;
height: 36px;
line-height: 36px;
border-radius: 100%;
margin-right: 19px;
position: relative;
padding: 0;
}
.sidenav .nav-close-menu-li button:after,
.sidenav .nav-close-menu-li button:before {
content: '';
position: absolute;
width: 2px;
height: 14px;
background-color: #fff;
top: 9px;
transition: 0.3s ease all;
left: 16px;
}
.sidenav .nav-close-menu-li button:before {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.sidenav .nav-close-menu-li button:after {
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.sidenav .nav-close-menu-li button:hover {
background: #fff;
color: #000;
border-color: #fff;
-webkit-transform: rotate(-180deg);
transform: rotate(180deg);
}
.sidenav .nav-close-menu-li button:hover:after,
.sidenav .nav-close-menu-li button:hover:before {
background-color: #ff3115;
left: 14px;
}
.sidenav .widget_nav_menu ul {
padding: 0;
margin: 0;
text-align: left;
}
.sidenav .widget_nav_menu ul li {
list-style: none;
border: none !important;
margin-left: 0;
padding: 0;
position: relative !important;
}
.sidenav .widget_nav_menu ul li a {
font-size: 14px;
padding: 12px 25px;
display: block;
color: #fff;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
margin-left: -12px;
margin-right: -12px;
}
.sidenav .widget_nav_menu ul li a:hover {
background: rgba(255, 255, 255, 0.05);
}
.sidenav .widget_nav_menu ul li.current-menu-parent > a,
.sidenav .widget_nav_menu ul li.current-menu-parent > ul .current-menu-item > a,
.sidenav .widget_nav_menu ul li.current-menu-ancestor > a {
color: #ff3115 !important;
}
.sidenav .widget_nav_menu ul li:before {
display: none !important;
}
.sidenav .menu-main-menu-container .menu li.current-menu-parent > a,
.sidenav .menu-main-menu-container .menu li.current-menu-parent > ul .current-menu-item > a,
.sidenav .menu-main-menu-container .menu li.current-menu-ancestor > a {
color: #ff3115 !important;
}
.sidenav .bs-search button {
padding: 5px 11px;
}
.mobile-menu-container .nav-close-menu-li {
padding-top: 54px;
padding-bottom: 20px;
}
.mobile-menu-container .nav-close-menu-li button {
padding: 0;
margin-right: 8px;
}
.mobile-menu-container ul {
padding: 0;
margin: 0;
text-align: left;
}
.mobile-menu-container ul li {
list-style: none;
border: none !important;
margin-left: 0;
padding: 0;
}
.mobile-menu-container ul li a {
font-size: 14px;
padding: 12px 20px;
display: block;
color: #fff;
border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.mobile-menu-container ul li a:hover {
color: #ff3115;
}
.mobile-menu-container ul li:before {
display: none;
}
.mobile-menu-container .menu-main-menu-single-container {
background: transparent;
}
.sidenav .sub-menu {
display: none;
}
.sidenav .menu li ul.sub-menu li {
background: rgba(255, 255, 255, 0.01);
}
.sidenav .menu li ul.sub-menu li a {
padding-left: 40px;
}
ul.sidenav ul.menu ul.sub-menu a:before {
display: none;
}
.sidenav .off-sl-share ul {
margin: 0;
}
.sidenav .off-sl-share ul li {
border: 0;
padding: 0;
display: inline-block;
margin: 10px;
line-height: normal;
}
.sidenav .off-sl-share ul li:before {
display: none;
}
.sidenav .off-sl-share ul li a {
color: #fff;
font-size: 20px;
-webkit-transition: 0.3s ease all;
transition: 0.3s ease all;
}
.sidenav .off-sl-share ul li a:hover {
opacity: 0.7;
}
.sidenav .readon:hover {
background: transparent !important;
}
body.search ::-webkit-input-placeholder { color: #505050;
opacity: 1;
}
body.search ::-moz-placeholder { color: #505050;
opacity: 1;
}
body.search :-ms-input-placeholder { color: #505050;
opacity: 1;
}
body.search :-moz-placeholder { color: #505050;
opacity: 1;
}
body.search article h3.entry-title a {
color: #212121;
}
body.search article .blog-button a {
color: #212121;
}
body.search article:hover .blog-button a {
color: #ff3115;
}
body.search article:hover h3.entry-title a {
color: #ff3115;
}
.modal-backdrop {
opacity: 0.95 !important;
}
.nav-active-menu-container {
-ms-transform: translate(0);
-webkit-transform: translate(0);
-moz-transform: translate(0);
transform: translate(0);
}
.menu-area .navbar-collapse {
padding-left: 0;
padding-right: 0;
}
.menu-area .navbar {
margin-bottom: 0;
border: 0;
}
.menu-area .navbar ul {
margin: 0;
padding: 0;
}
.menu-area .navbar ul li {
height: 70px;
line-height: 70px;
position: relative;
display: inline-block;
transition: all 0.3s ease 0s;
padding: 0 10px; }
.menu-area .navbar ul li.current-menu-parent > a,
.menu-area .navbar ul li.current-menu-parent > a,
.menu-area .navbar ul li.current-menu-ancestor > a {
color: #ff3115 !important;
}
.menu-area .navbar ul li ul.sub-menu {
padding: 0;
background: #212121;
}
.menu-area .navbar ul li ul.sub-menu li {
float: none;
display: block;
margin: 0;
text-align: left;
line-height: 25px;
}
.menu-area .navbar ul li ul.sub-menu li + li {
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.menu-area .navbar ul li ul.sub-menu li a {
line-height: 25px;
padding: 7px 15px;
color: #bbb;
text-transform: capitalize;
font-size: 14px;
transition: 0.3s ease all;
}
.menu-area .navbar ul li ul.sub-menu li a:hover {
margin-left: 2px;
}
.menu-area .navbar ul li:hover ul {
opacity: 1;
position: absolute;
}
.menu-area .navbar ul li > a {
display: block;
text-transform: uppercase;
text-decoration: none;
font-weight: 500;
font-size: 14px;
color: #fff;
}
.menu-area .navbar ul li > a i {
margin-left: 5px;
}
.menu-area .navbar ul li > a:hover {
color: #ff3115 !important;
}
.menu-area .navbar ul li.current-menu-item a,
.menu-area .navbar ul li.active a {
color: #ff3115;
}
.menu-area .navbar ul li.current-menu-item li a,
.menu-area .navbar ul li.active li a {
color: #fff;
}
.menu-area .navbar ul li.current-menu-item li a:hover,
.menu-area .navbar ul li.active li a:hover {
color: #ff3115;
}
.menu-area .navbar ul li .sub-menu {
background: #ff3115;
left: 0;
opacity: 0;
position: absolute;
top: 100%;
transform: scaleY(0);
transform-origin: 0 0 0;
transition: all 0.3s ease 0s;
width: 250px;
z-index: 99999 !important;
text-align: left;
visibility: hidden;
}
.menu-area .navbar ul li .sub-menu li {
line-height: normal;
height: auto;
display: block;
margin: 0;
padding: 0;
}
.menu-area .navbar ul li .sub-menu li a {
display: block;
padding: 12px 0;
text-transform: none;
transition: all 0.3s ease 0s;
color: #ff3115;
font-weight: 400;
}
.menu-area .navbar ul li:hover ul {
opacity: 1;
transform: scaleY(1);
visibility: visible;
}
.menu-area .navbar .navbar-toggle {
background-color: #ff3115;
border-radius: 2px;
-webkit-transition: .4s ease all;
transition: .4s ease all;
}
.menu-area .navbar .navbar-toggle .icon-bar {
background-color: #fff;
}
.menu-area .navbar .navbar-toggle:hover {
opacity: 0.8;
}
.menu-area .get-quote {
background: #ff3115;
transition: 0.3s;
-webkit-transition: 0.3s;
-ms-transition: 0.3s;
position: relative;
}
.menu-area .get-quote .quote-button {
color: #ffffff !important;
display: block;
line-height: 44px;
text-align: center;
font-size: 16px;
text-transform: uppercase;
font-weight: 500;
-webkit-transition: 0.3s all ease;
transition: 0.3s all ease;
}
.menu-area .get-quote:hover {
background: #e41f05;
}
.menu-area .menu-offcanvas .get-quote {
overflow: hidden;
padding: 0 15px;
}
.menu-area .menu-offcanvas .get-quote .quote-button {
position: relative;
float: left;
}
.menu-area .menu-offcanvas .get-quote .quote-button:after {
position: absolute;
content: "";
top: 50%;
right: -18px;
width: 2px;
height: 13px;
background: #ffffff;
transform: translateY(-50%);
}
.menu-area .menu-offcanvas .get-quote .nav-link-container {
height: 100%;
text-align: center;
line-height: 70px;
float: right;
}
.menu-area .menu-offcanvas .get-quote .nav-link-container a.nav-menu-link {
background: #ff3115;
display: block;
color: #ffffff !important;
-webkit-transition: 0.3s all ease;
transition: 0.3s all ease;
}
.menu-area .menu-offcanvas .get-quote .nav-link-container a.nav-menu-link:hover {
opacity: 0.7;
}
.menu-area .menu-offcanvas .get-quote.rs-quote-off {
padding: 0;
max-width: 54px;
float: right;
}
.menu-area .menu-offcanvas .get-quote.rs-quote-off a {
padding: 0 20px;
}
#rs-header .menu-area .navbar ul .menu-item:not(.mega) ul li ul.sub-menu,
#rs-header .menu-area .navbar ul .page_item:not(.mega) ul li ul.sub-menu {
position: absolute;
left: 100%;
top: 0px;
opacity: 0;
transform: scaleY(0);
visibility: hidden;
}
#rs-header .menu-area .navbar ul .menu-item:not(.mega) ul > li:hover > ul.sub-menu,
#rs-header .menu-area .navbar ul .page_item:not(.mega) ul > li:hover > ul.sub-menu {
opacity: 1;
transform: scaleY(1);
visibility: visible;
}
#rs-header .menu-area ul li.direction-left ul {
left: -100% !important;
}
.menu-one-page-menu-container li.active a {
color: #ff3115;
} .footer-style-1 .footer-bottom {
background: transparent;
}
#rs-footer {
background-color: #212121;
}
#rs-footer.has-footer-contact {
margin-top: 103px;
}
#rs-footer.has-footer-contact .footer-top {
padding-top: 160px;
}
#rs-footer.has-footer-contact .contact-container {
position: relative;
}
#rs-footer.has-footer-contact .footer-contact-desc {
margin: 0;
background: #222;
border-radius: 30px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
text-align: center;
padding: 35px;
position: absolute;
width: 100%;
transform: translateY(-50%);
z-index: 111;
}
#rs-footer.has-footer-contact .footer-contact-desc .widget_text {
margin-bottom: 0;
}
#rs-footer.has-footer-contact .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner {
border-left: 1px solid #ffffff;
}
#rs-footer.has-footer-contact .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner:before,
#rs-footer.has-footer-contact .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner:after {
content: '';
position: absolute;
height: calc(100% - 40px);
width: 1px;
background-color: #fff;
top: 50%;
transform: translateY(-50%);
}
#rs-footer.has-footer-contact .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner:before {
left: 3px;
}
#rs-footer.has-footer-contact .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner:after {
left: -5px;
}
#rs-footer.has-footer-contact .footer-contact-desc .contact-inner {
position: relative;
}
#rs-footer.has-footer-contact .footer-contact-desc .contact-inner .address-icon {
padding-top: 40px;
}
#rs-footer.has-footer-contact .footer-contact-desc .contact-inner .address-icon:before {
content: "\f041";
font-family: fontAwesome;
position: absolute;
top: 0;
left: 50%;
font-size: 28px;
color: #ff3115;
transform: translateX(-50%);
}
#rs-footer.has-footer-contact .footer-contact-desc .contact-inner .phone-icon {
padding-top: 40px;
}
#rs-footer.has-footer-contact .footer-contact-desc .contact-inner .phone-icon:before {
content: "\f095";
font-family: fontAwesome;
position: absolute;
top: 0;
left: 50%;
font-size: 28px;
color: #ff3115;
transform: translateX(-50%);
}
#rs-footer.has-footer-contact .footer-contact-desc .contact-inner .mail-icon {
padding-top: 40px;
}
#rs-footer.has-footer-contact .footer-contact-desc .contact-inner .mail-icon:before {
content: "\f003";
font-family: fontAwesome;
position: absolute;
top: 0;
left: 50%;
font-size: 28px;
color: #ff3115;
transform: translateX(-50%);
}
#rs-footer.has-footer-contact .footer-contact-desc .contact-inner .contact-title {
margin-bottom: 10px;
color: #ffffff;
font-size: 20px;
text-align: center;
}
#rs-footer.has-footer-contact .footer-contact-desc .contact-inner .contact-desc {
color: rgba(255, 255, 255, 0.7);
margin-bottom: 0;
font-size: 15px;
text-align: center;
}
#rs-footer.has-footer-contact .footer-contact-desc .contact-inner .contact-desc a {
color: rgba(255, 255, 255, 0.7);
}
#rs-footer.has-footer-contact .footer-contact-desc .contact-inner .contact-desc a:hover {
color: #ff3115;
}
#rs-footer.footerdark .footer-top a,
#rs-footer.footerdark .footer-top p {
color: #505050;
font-size: 14px;
}
#rs-footer.footerdark .footer-bottom .copyright p,
#rs-footer.footerdark .footer-bottom .copyright a {
color: #505050;
}
#rs-footer.footerdark .footer-bottom .copyright a:hover {
color: #212121;
}
#rs-footer .footer-top {
padding: 97px 0 0px;
font-size: 14px;
}
#rs-footer .footer-top a,
#rs-footer .footer-top p {
color: #afb0b2;
font-size: 14px;
}
#rs-footer .footer-top h3.footer-title {
margin-bottom: 40px;
padding-bottom: 5px;
color: #ffffff;
font-size: 15px;
position: relative;
font-weight: 600;
text-transform: uppercase;
line-height: 18px !important;
}
#rs-footer .footer-top h3.footer-title:after {
content: '';
position: absolute;
left: 0;
bottom: -5px;
height: 1px;
width: 50px;
background-color: #ff3115;
}
#rs-footer .footer-top .about-widget img {
margin-bottom: 30px;
}
#rs-footer .footer-top .recent-post-widget .post-item {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
align-items: center;
}
#rs-footer .footer-top .recent-post-widget .post-item .post-date {
width: 70px;
height: 65px;
flex: 0 0 70px;
text-align: center;
color: #ffffff;
margin-right: 15px;
transition: all 0.3s ease 0s;
background: #ff3115;
line-height: 27px;
padding-top: 6px;
}
#rs-footer .footer-top .recent-post-widget .post-item .post-title {
font-size: 15px;
line-height: 24px !important;
margin-bottom: 0;
font-weight: 400;
}
#rs-footer .footer-top .recent-post-widget .post-item .post-title a:hover {
color: #ff3115;
}
#rs-footer .footer-top .recent-post-widget .post-item:last-child {
margin-top: 15px;
padding-top: 15px;
border-top: 1px solid rgba(102, 102, 102, 0.5);
}
#rs-footer .footer-top ul#menu-footer-menu li {
border: none;
padding: 4px 0 4px 14px;
width: 50%;
float: left;
line-height: 20px;
}
#rs-footer .footer-top ul#menu-footer-menu li:before {
color: #98a1b3 !important;
}
#rs-footer .footer-top ul#menu-footer-menu li:hover a,
#rs-footer .footer-top ul#menu-footer-menu li:hover:before {
color: #ff3115;
}
#rs-footer .footer-top .mc4wp-form {
padding-top: 4px;
}
#rs-footer .footer-top .mc4wp-form-fields {
position: relative;
}
#rs-footer .footer-top .mc4wp-form-fields .form-inner {
position: relative;
max-width: 280px;
}
#rs-footer .footer-top .mc4wp-form-fields .form-inner:before {
content: "\f1d9";
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
position: absolute;
right: 30px;
top: 10px;
color: #ffffff;
pointer-events: none;
z-index: 11;
font-size: 20px;
}
#rs-footer .footer-top .mc4wp-form-fields input[type="email"] {
font-size: 14px;
padding: 12px 0 12px 16px;
border: none;
border-radius: 25px !important;
height: 46px;
position: relative;
width: 186px;
border-radius: 0;
display: block;
line-height: 1.428571429;
color: #555555;
background-color: #fff;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
outline: none;
width: 100%;
}
#rs-footer .footer-top .mc4wp-form-fields input[type="email"],
#rs-footer .footer-top .mc4wp-form-fields input[type="submit"] {
box-shadow: none;
}
#rs-footer .footer-top .mc4wp-form-fields input[type="submit"] {
position: absolute;
border-radius: 25px;
top: 2px;
right: 2px;
background: #ff3115;
color: #fff;
padding: 10px 16px;
border: 0;
transition: .2s;
height: auto;
font-size: 0;
height: 42px;
width: 74px;
min-width: auto !important;
}
#rs-footer .footer-top .mc4wp-form-fields ::placeholder {
color: #555555;
opacity: 1;
}
#rs-footer .footer-top .mc4wp-form-fields :-ms-input-placeholder {
color: #555555;
}
#rs-footer .footer-top .mc4wp-form-fields ::-ms-input-placeholder {
color: #555555;
}
#rs-footer .footer-share {
text-align: center;
margin-top: 15px;
}
#rs-footer .footer-share ul li {
display: inline-block;
}
#rs-footer .footer-share ul li a {
font-size: 13px;
display: block;
width: 42px;
height: 42px;
border-radius: 50%;
line-height: 44px;
text-align: center;
color: #fff;
transition: all .3s ease 0s;
background: rgba(255, 255, 255, 0.15);
}
#rs-footer .footer-share ul li a:hover {
background-color: #ff3115;
color: #ffffff;
}
#rs-footer .footer-share ul li + li {
margin-left: 5px;
}
#rs-footer .footer-bottom {
text-align: center;
border-top: 1px solid rgba(255, 255, 255, 0.15);
padding: 18px 0;
}
#rs-footer .footer-bottom .copyright p {
opacity: 0.95;
margin-bottom: 0;
font-size: 15px;
}
#rs-footer .footer-bottom.footer2 .copyright {
display: table;
width: 100%;
height: 100%;
}
#rs-footer .footer-bottom.footer2 .copyright p {
display: table-cell;
vertical-align: middle;
}
#rs-footer .footer-bottom.footer2 .footer-share {
margin-top: 0;
text-align: right;
}
#rs-footer .footer-bottom.footer2 .footer-share ul {
margin: 0;
}
#rs-footer .footer-bottom.footer3 {
padding: 25px 0;
}
#rs-footer .footer-bottom.footer3 .footer-share {
margin: 24px 0 16px;
}
#rs-footer .footer-bottom.footer3 .footer-share ul {
margin: 0;
}
#rs-footer .footer-bottom.footer3 .footer-share ul li a {
width: 35px;
height: 35px;
line-height: 37px;
}
#rs-footer .footer-bottom.footer4 .copyright {
display: table;
width: 100%;
height: 100%;
}
#rs-footer .footer-bottom.footer4 .copyright p {
display: table-cell;
vertical-align: middle;
}
#rs-footer .footer-bottom.footer4 .footer-share {
margin-top: 0;
text-align: right;
}
#rs-footer .footer-bottom.footer4 .footer-share ul {
margin: 0;
}
#rs-footer .widget {
text-align: left;
color: #afb0b2;
}
#rs-footer .widget h3.footer-top-title {
color: #fff;
font-size: 15px;
font-weight: 600;
text-transform: uppercase;
position: relative;
}
#rs-footer .widget h3.footer-top-title:after {
content: '';
position: absolute;
left: 0;
bottom: -5px;
height: 1px;
width: 50px;
background-color: #ff3115;
}
#rs-footer .widget p {
text-align: left;
}
#rs-footer .widget a {
color: #afb0b2;
}
#rs-footer .widget a:hover {
color: #ff3115;
}
#rs-footer .widget ul li {
text-align: left;
border: none;
color: #afb0b2;
}
#rs-footer .widget ul li a {
color: #afb0b2;
}
#rs-footer.has-footer-contact.top_gap {
margin-top: 0;
}
#rs-footer.has-footer-contact.top_gap .footer-contact-desc {
position: relative;
transform: translateY(0%);
}
.footer-bottom {
padding: 20px 0 13px;
background: #505050;
color: #afb0b2;
}
.footer-bottom .copyright {
font-size: 14px;
}
.footer-bottom .copyright p {
margin: 0;
color: #afb0b2;
}
.footer-bottom .copyright p a {
color: #fff;
}
.footer-bottom .copyright p a:hover {
color: #afb0b2;
} .primary-bg-color {
background: rgba(0, 0, 0, 0.12);
display: block;
padding: 30px !important;
color: #fff;
}
.readon.readon-border {
border: 2px solid #ff3115;
color: #fff;
background: transparent !important;
transition: all 0.9s ease;
}
.readon.readon-border:hover {
background: #ff3115;
} .contact-form-area textarea,
.contact-form-area input[type="text"],
.contact-form-area input[type="email"] {
text-transform: capitalize;
font-size: 15px;
margin-bottom: 30px;
width: 100%;
}
.contact-form-area textarea {
margin-bottom: 20px;
height: 200px;
border: 1px solid rgba(54, 54, 54, 0.1);
}
.contact-form-area input[type="submit"] {
font-weight: 700;
color: #fff;
font-size: 15px;
line-height: 24px;
border-radius: 0px;
padding: 14px 23px;
min-width: 190px;
text-transform: uppercase;
letter-spacing: 1px;
position: relative;
background: #ff3115;
transition: 0.4s;
-webkit-transition: 0.4s;
-ms-transition: 0.4s;
border: none;
border-radius: 30px;
}
.contact-form-area input[type="submit"]:hover {
background: #e41f05;
color: #fff !important;
}
.contact-form-area .col-sm-6 {
position: relative;
}
.contact-form-area .col-sm-6 input[type="text"],
.contact-form-area .col-sm-6 input[type="email"] {
padding: 5px 18px;
}
.contact-form-area .col-sm-6 i {
position: absolute;
top: 18px;
left: 30px;
font-size: 15px;
z-index: 10;
} .rs-breadcrumbs {
position: relative;
}
.rs-breadcrumbs .trail-browse {
display: none !important;
}
.rs-breadcrumbs .trail-items li::after {
right: 0px;
position: relative;
padding: 0;
}
.rs-breadcrumbs .page-title {
margin: 0 0 15px;
letter-spacing: 0.5px;
color: #ffffff;
text-transform: uppercase;
}
.rs-breadcrumbs ul {
display: inline-block;
padding: 5px 20px;
margin: 0px;
}
.rs-breadcrumbs ul li {
color: #ff3115;
display: inline-block;
font-size: 16px;
font-weight: 400;
}
.rs-breadcrumbs ul li a {
padding: 0 8px;
color: #fff;
}
.rs-breadcrumbs ul li a:hover {
color: #ff3115;
}
.rs-breadcrumbs ul li.trail-begin a {
position: relative;
text-transform: capitalize;
display: inline-block;
}
.rs-breadcrumbs ul li.trail-end {
padding-left: 8px;
}
.rs-breadcrumbs ul li:after {
color: #fff;
}
.rs-breadcrumbs.porfolio-details {
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
position: relative;
}
.rs-breadcrumbs .container {
left: 50%;
position: absolute;
top: auto;
transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
z-index: 1;
width: 100%;
bottom: 0;
}
.rs-breadcrumbs .breadcrumbs-single {
min-height: 300px;
background-size: cover;
background-position: center;
}
.lp-list-table thead tr th {
background: #ff3115 !important;
}
.style2 .breadcrumbs-single {
min-height: 320px;
}
.breadcrumbs-inner .fbc-page {
text-align: center;
display: inline-block;
}
.breadcrumbs-inner ol {
padding: 5px 6px !important;
}
.fbc-page .fbc-wrap .fbc-items li {
padding: 5px 0;
}
#map .wpb_gmaps_widget {
margin: 0 !important;
}
#map2 .wpb_wrapper {
padding: 0 !important;
}
#map {
padding-bottom: 300px !important;
background: #fff;
}
#map .vc_column-inner {
padding: 0 !important;
}
#map .wpb_wrapper {
padding: 0 !important;
}
#map iframe {
filter: grayscale(100%);
}
#map iframe:hover {
filter: grayscale(0);
}
.rs-breadcrumbs-inner {
min-height: 300px;
background-size: cover;
background-position: center;
background: #212121;
}
.rs-breadcrumbs-inner .breadcrumbs-inner {
margin-top: -5px;
}
.rs-breadcrumbs-inner .container {
left: 50%;
position: absolute;
top: auto;
transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
z-index: 1;
width: 100%;
bottom: 0;
}
.breadcrumbs-inner {
max-width: 1170px;
margin: 0 auto;
}
.lp-single-course .course-price .price {
font-size: 18px !important;
}
#company_overview #history_company .wpb_single_image {
margin-bottom: 20px;
}
#company_overview #history_company h4 {
margin-bottom: 8px;
font-size: 20px;
}
#rscontact-pages .contact-details .vc_column-inner > .wpb_wrapper {
padding-bottom: 35px;
border: 1px solid #e1e1e1;
}
#rscontact-pages .contact-details .vc_icon_element {
margin-bottom: 10px;
}
#rscontact-pages .contact-details .vc_icon_element .vc_icon_element-inner {
margin-top: 35px;
background: transparent !important;
}
#rscontact-pages .contact-details .vc_icon_element .vc_icon_element-inner .vc_icon_element-icon {
color: #ff3115;
}
#rscontact-pages .contact-details .vc_icon_element .vc_icon_element-inner span {
font-size: 36px !important;
}
#rscontact-pages .contact-details .wpb_text_column {
margin: 0;
}
#rscontact-pages .contact-details .wpb_text_column h4 {
margin-bottom: 10px;
text-transform: uppercase;
}
#rscontact-pages .contact-details .wpb_text_column p,
#rscontact-pages .contact-details .wpb_text_column a {
color: #212121;
}
#rscontact-pages .contact-details .wpb_text_column a:hover {
color: #ff3115;
}
body .pages-contact-form input[type=email],
body .pages-contact-form input[type=text],
body .pages-contact-form textarea {
background: #fff;
}
body .pages-contact-form .vc_column-inner {
padding-left: 0;
padding-right: 0;
}
.our-services2.border-none .services-item {
border-left: none;
}
.our-services2.border-none .services-item .services-icon i {
padding-right: 0;
font-size: 40px;
height: 50px;
}
@media only screen and (max-width: 1199px) {
.our-services2 .rs-services1 .services-item {
padding: 0px 4px 0px 0px !important;
}
#rs-header.style2 .menu-area .navbar ul li {
line-height: 82px;
height: 82px;
}
#rs-header.style2 .menu-area .menu-responsive .nav-link-container {
line-height: 82px;
}
} @media only screen and (min-width: 991px) {
.menu-area .container {
z-index: 999;
}
.menu-sticky,
.menu3sticky {
margin: 0;
width: 100%;
z-index: 999;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
transition: all .7s;
background: transparent;
}
.menu-sticky.sticky,
.menu3sticky.sticky {
position: fixed !important;
background: #fff;
opacity: .9;
box-shadow: 0 0 20px -10px rgba(0, 0, 0, 0.8);
padding: 0;
-webkit-animation-duration: .5s;
animation-duration: .5s;
-webkit-animation-name: sticky-animation;
animation-name: sticky-animation;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.menu-sticky.sticky .toolbar-area,
.menu3sticky.sticky .toolbar-area {
display: none;
}
.menu-sticky.sticky .logo-area,
.menu3sticky.sticky .logo-area {
display: none;
}
.menu-sticky.sticky .logo-area.sticky-logo,
.menu3sticky.sticky .logo-area.sticky-logo {
display: block !important;
}
@-webkit-keyframes sticky-animation {
0% {
opacity: 0;
-webkit-transform: translateY(-100%);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
}
}
@keyframes sticky-animation {
0% {
opacity: 0;
transform: translateY(-100%);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.header-style1 .sticky {
background: #505050;
}
.header-style1 .sticky .menu-area {
padding-top: 0;
}
.header-style1 .sticky .menu-middle {
display: none;
}
.header-style1 .sticky .menu_one {
top: 0 !important;
}
#rs-header.header-style-4 .sticky .menu_one {
top: 0 !important;
}
#rs-header.header-style-4 .sticky .menu-area {
position: initial;
padding-top: 0 !important;
}
#rs-header.header-style-4 .sticky .menu-area > .container {
display: none;
}
#rs-header.header-style-4 .sticky .menu-area .border-full {
border: 0;
margin-top: 0;
}
#rs-header.header-style-4 .sticky .fullwidth_menu {
margin-top: 0;
border: 0;
}
#rs-header.header-styl-5 .sticky .logo-area {
display: block !important;
}
#rs-header.header-styl-5 .sticky .sticky-logo.logo-area {
display: none !important;
}
}
@media only screen and (max-width: 991px) {
.team-slider-style2 .team-content p {
display: none;
}
#rs-header.style1 .menu-area .navbar .navbar-menu,
#rs-header.kids-header .menu-area .navbar .navbar-menu {
display: none;
}
#about-sec2 .left-col,
#about-sec2 .right-col {
width: 100%;
}
.our-services2 .rs-services1 .services-item {
padding: 0px 0px 0px 0px !important;
}
.our-services2 .rs-services1 .services-title {
font-size: 15px !important;
}
#rs-header.style2 .toolbar-area .toolbar-contact ul li {
margin-right: 5px;
}
#rs-header.style2 .toolbar-area .toolbar-contact ul li:first-child i:before {
margin-left: 0;
}
#rs-header.style2 .menu-area .header-logo {
width: 65%;
}
#rs-header.style2 .menu-area .menu-responsive {
width: 35% !important;
}
#rs-header.style2 .menu-area .logo-area {
padding: 15px 0;
max-width: 230px;
width: 100%;
position: relative;
}
#rs-header.style2 .menu-area .menu-responsive .nav-link-container {
height: 82px;
right: 0;
padding-right: 1px;
z-index: 99;
}
#rs-projects .rs-portfolio .portfolio-filter button {
font-size: 14px;
margin: 0 20px 4px 0;
}
#rs-about .rs-video-2 {
margin-top: 25px;
}
#rs-services.our-services .rs-services1 .services-title {
font-size: 15px;
}
#rs-blog .rs-blog .blog-item .blog-content h3 {
font-size: 17px !important;
padding: 10px 0;
line-height: 21px !important;
}
.menu-area .mobile-menu-link .nav-menu-link {
position: absolute;
right: 0;
z-index: 99;
}
#rs-header.header-style1 .navbar a {
line-height: 54px;
}
#rs-header.header-style1 .menu-area .get-quote .quote-button {
line-height: 50px;
}
#rs-header.header-style1 .menu-area .mobile-menu-link .nav-menu-link {
right: auto;
}
#rs-header.style2 .navbar a {
line-height: 82px;
}
.call2-text {
width: 100% !important;
text-align: center;
}
.call2-img {
display: none !important;
}
#cleaning-sec-contact .rs-services1 .services-item {
padding: 0;
}
#cleaning-sec-contact {
padding: 50px 0 !important;
}
#rs-header.style2 .header-inner {
position: relative;
}
}
@media only screen and (max-width: 767px) {
#rscontact-pages .contact-details + .contact-details {
margin-top: 30px;
}
.contact2-map {
margin-top: 50px;
}
#rs-header.style2 .menu-area .header-logo,
#rs-header.style2 .menu-area .menu-responsive {
float: left;
}
#rs-header.style2 .toolbar-area .toolbar-sl-share {
margin-top: 6px;
}
#rs-member .owl-nav {
display: none;
}
.rs-we-work-clean {
margin-top: 74px !important;
}
#video-clean.video-clean .popup-videos i {
text-indent: 9px;
}
#video-clean.video-clean .popup-videos {
width: 70px;
height: 70px;
line-height: 60px;
font-size: 35px;
}
#cleaning-sec-contact .rs-services1 .services-item {
padding-bottom: 20px;
}
#cleaning-sec-contact {
padding: 50px 0 30px !important;
}
}
@media only screen and (max-width: 480px) {
#rs-testimonial #cl-testimonial .slider2 ul.cl-author-info {
padding: 10px !important;
}
} #cleaning-sec .wpb_single_image {
margin: 0;
}
.about_arch .readon-sm {
margin-top: 20px;
}
.services-style-5 .services-item {
position: relative;
margin-bottom: 30px;
overflow: hidden;
}
.services-style-5 .services-item .services-icon img {
transition: all .5s ease;
}
.services-style-5 .services-item .services-desc {
position: absolute;
top: 50%;
left: 50%;
width: 100%;
transform: translateX(-50%);
text-align: center;
margin-top: -32px;
}
.services-style-5 .services-item .services-desc h3.services-title {
background: rgba(0, 0, 0, 0.5);
padding: 16px 0;
}
.services-style-5 .services-item .services-desc h3.services-title a {
color: #fff;
}
.services-style-5 .services-item:hover .services-icon img {
-webkit-transform: rotate(15deg) scale(1.2);
transform: rotate(4deg) scale(1.2);
}
#home-one-services .rs-services-style1 .services-item:hover {
background: none !important;
}
#cleaning-sec-contact .rs-services1.left .services-wrap .services-item {
color: #ffffff;
border: none;
margin: 0;
}
#cleaning-sec-contact .rs-services1.left .services-wrap .services-item .services-desc {
padding-left: 10px;
}
#cleaning-sec-contact .rs-services1.left .services-wrap .services-item .services-desc a {
color: #ffffff !important;
}
#cleaning-sec-contact .rs-services1.left .services-wrap .services-item .services-desc a:hover {
opacity: 0.8;
}
#cleaning-sec-contact .rs-services1.left .services-wrap .services-item .services-icon i {
color: #ffffff !important;
font-size: 40px;
}
#cleaning-sec-contact #middle-sec {
border-right: 2px solid rgba(255, 255, 255, 0.1);
border-left: 2px solid rgba(255, 255, 255, 0.1);
}
header.header-styl-5 .menu-area {
padding: 0 0;
}
header.header-styl-5 .menu-area .navbar ul.sub-menu li {
padding: 0;
height: 40px;
line-height: 40px;
}
header.header-styl-5 .logo-area {
line-height: 85px;
}
header.header-styl-5 #menu-right {
text-align: right;
}
header.header-styl-5 .menu-area .navbar ul li.menu-item-has-children > a::before {
right: 0;
}
header.header-styl-5 .menu-area .navbar ul li {
padding: 0 14px;
height: 85px;
line-height: 85px;
}
.cl-testimonial1 .testimonial-content,
#cl-testimonial .testimonial-content {
font-size: 16px !important;
}
footer#rs-footer.footer-style-5 .footer-top {
padding: 100px 0;
}
footer#rs-footer.footer-style-5 .footer-top .footer-bottom.footer-top-sosal {
background: none !important;
padding: 18px 0 18px 60px;
border-left: 1px solid #ccc;
}
footer#rs-footer.footer-style-5 .footer-top .container.footer-style-55 {
max-width: 850px;
}
footer#rs-footer.footer-style-5 .about-widget {
text-align: right;
padding-right: 30px;
padding-top: 18px;
}
footer#rs-footer.footer-style-5 .about-widget img {
margin: 0;
}
footer#rs-footer.footer-style-5 .nav-footer ul {
text-align: right;
}
footer#rs-footer.footer-style-5 .nav-footer ul li:last-child a {
padding-right: 0;
}
footer#rs-footer.footer-style-5 .nav-footer ul li:first-child a {
padding-left: 0;
}
.nav-footer ul {
margin: 0;
padding: 0;
list-style: none;
text-align: center;
}
.nav-footer ul li {
display: inline-block;
}
.nav-footer ul li a {
color: #fff;
padding: 10px 25px;
}
.nav-footer ul li a:hover {
color: #ff3115;
}
footer#rs-footer.footer-style-4 .footer-bottom-share {
margin-bottom: 18px;
}
footer#rs-footer.footer-style-3 .footer-top {
padding-bottom: 0;
}
footer#rs-footer.footer-style-3 .col-full {
text-align: center;
padding-top: 40px;
}
footer#rs-footer.footer-style-3 .footer-bottom {
padding: 12px 0 33px;
background: none !important;
}
footer#rs-footer.footer-style-3 .footer-bottom2 {
background: #303745;
padding-top: 24px;
}
footer#rs-footer.footer-style-3 .copyright {
margin-top: 14px;
color: #fff;
}
footer#rs-footer.footer-style-3 .copyright a {
color: #fff;
}
footer#rs-footer.footer-style-3 .copyright a:hover {
color: #ff3115;
}
footer#rs-footer.footer-style-3 .nav-footer ul li a {
padding: 0 14px;
}
.cl-testimonial2 button {
background: transparent !important;
}
footer#rs-footer.footer-style-2 .footer-top .footer-bottom {
padding: 0;
background: none !important;
}
footer#rs-footer.footer-style-2 .nav-footer {
text-align: right;
}
footer#rs-footer.footer-style-2 .nav-footer ul {
text-align: right;
} .service3 .rs-services1 .services-item {
border: none !important;
}
.service3 .rs-services1 .services-icon i {
height: auto;
}
.service4 .vc_column-inner {
background: transparent !important;
}
.service4 .rs-services .services-item {
border: none;
margin-bottom: 0;
background: #fff;
box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
margin-bottom: 30px;
}
.service4 .rs-services .services-icon {
text-align: center;
padding-top: 25px;
overflow: visible;
}
.service4 .rs-services .services-icon i {
height: auto;
}
.service4 .rs-services .services-icon img {
width: 60px;
}
.service4 .rs-services .services-desc {
box-shadow: none;
}
.service4 .mt-20 {
position: relative;
font-size: 15px;
padding: 0 40px 0 25px;
}
.service4 .mt-20:after {
content: "\f101";
font-family: FontAwesome;
font-style: normal;
text-decoration: inherit;
color: #fff;
font-size: 21px;
position: absolute;
-webkit-transition: 0.4s;
-ms-transition: 0.4s;
top: 0px;
right: 20px;
font-weight: 400;
}
.service4 .mt-20:hover:after {
color: #fff;
}
#services-design .wpb_single_image {
margin: 0;
}
#services-design .vc_column-inner {
padding: 0;
overflow: hidden;
}
#services-design .services-style-4 {
margin: 0;
padding: 0 30px;
}
.service5 #top-col,
.service5 #bottom-col {
margin: 0 auto;
max-width: 950px;
}
.service5 .rs-services .service-inner {
webkit-box-shadow: 0 1px 6px rgba(61, 65, 84, 0.15);
box-shadow: 0 1px 6px rgba(61, 65, 84, 0.15);
transition: all 0.2s ease-in-out;
padding: 40px 20px;
}
.service5 .rs-services .service-inner:hover {
webkit-box-shadow: 0 20px 40px rgba(61, 65, 84, 0.15);
box-shadow: 0 20px 40px rgba(61, 65, 84, 0.15);
}
.service5 .rs-services1 {
margin-bottom: 30px;
}
.service5 .rs-services1 .services-wrap {
webkit-box-shadow: 0 1px 6px rgba(61, 65, 84, 0.15);
box-shadow: 0 1px 6px rgba(61, 65, 84, 0.15);
padding: 40px 20px;
transition: all 0.2s ease-in-out;
}
.service5 .rs-services1 .services-wrap:hover {
webkit-box-shadow: 0 20px 40px rgba(61, 65, 84, 0.15);
box-shadow: 0 20px 40px rgba(61, 65, 84, 0.15);
}
.service5 .rs-services1 .services-item {
padding-bottom: 0;
}
.testimonial1 {
position: relative;
}
.testimonial1:after {
width: 100%;
height: 100%;
content: "";
position: absolute;
left: 0;
top: 0;
pointer-events: none;
background: rgba(0, 0, 0, 0.7);
}
.testimonial1 .vc_column_container {
position: relative;
z-index: 9;
}
.readon-sm {
text-transform: uppercase;
background: #ff3115;
padding: 10px 20px;
display: inline-block;
font-weight: 400;
vertical-align: middle;
-webkit-user-select: none;
user-select: none;
border: 1px solid transparent;
color: #ffffff;
transition: all 0.15s ease-in-out;
border-radius: 0;
position: relative;
text-align: center;
}
.readon-sm:hover {
background: #e41f05 !important;
color: #fff !important;
}
.services-three .services-style-2 .services-desc {
background: #fff;
padding: 30px 30px;
position: relative;
top: -30px;
margin: 0 20px;
}
#rs-services .vc_tta-tabs .vc_tta-panel-heading {
background: #232323;
margin-bottom: 0;
}
#rs-services .vc_tta-tabs .vc_tta-panel-heading a {
color: #fff;
}
#rs-services .vc_tta-tabs .vc_tta-panel.vc_active .vc_tta-panel-heading {
background: #ff3115;
}
#rs-services .vc_tta-tabs .vc_tta-panel.vc_active .vc_tta-panel-heading a {
color: #fff !important;
}
#rs-services .vc_tta-tabs .vc_tta-panel {
margin-bottom: 10px;
}
#rs-services.services-tabs .vc_tta-tabs .vc_tta-panels {
background: transparent !important;
}
  @media only screen and (max-width: 1400px) {
.rs-banner .banner-content .banner_title {
font-size: 56px;
}
}
@media only screen and (max-width: 1199px) {
.navbar a{
font-size: 12px !important;
}
.navbar a, .navbar li {
font-size: 12px !important;
}
.menu-area .navbar ul li,
.menu-area .navbar ul li.mega a{
padding: 0 8px;
}
.rs-courses-2 .cource-item .course-body .course-title {
font-size: 16px;
}
.rs-latest-news .news-list-block .news-list-item .news-title {
font-size: 13px;
margin-bottom: 0;
}
.rs-latest-news .news-list-block .news-list-item .news-desc {
line-height: 22px;
}
.rs-services-style1 .services-desc .services-title {
font-size: 16px;
}
.home4-post .latest-news-slider .slick-arrow{
display: none !important;
}
.rs-courses-categories .courses-item .courses-title {
font-size: 15px;
line-height: 22px;
}
.rs-events .event-item .event-title {
font-size: 16px;
}
#rs-header.style1 .menu-area .navbar ul li{
padding: 0 4px;
}
body.profile .user-tab .user-information ul li{
margin-right: 0;
}
.rs-course .cource-item .course-body .course-title{
font-size: 18px;
}
.menu-area .navbar ul li.menu-item-has-children > a::before {
right: 3px;
top: 0px;
font-size: 13px;
}
.rs-search-courses .rs-search form .form-control {
width: 74%;
}
.menu-area .menu-offcanvas .get-quote .quote-button::after {
right: -7px;
height: 12px;
}
.menu-area .get-quote .quote-button{
font-size: 14px;
}
#rs-header.style2 .menu-area .navbar ul li.mega a::before {
right: 0px;
}
#rs-header.style2 .menu-area .navbar ul li {
padding: 0 15px;
}
#cta-sec .wpb_single_image img {
max-width: 80px;
}
#cta-sec .call-subtitle {
font-size: 15px;
}
#cta-sec .call-title {
font-size: 19px;
}
.rs-blog-details .meta-info-wrap .tag-line a{
margin-bottom: 3px;
}
#cl-testimonial .testimonial-slide3.slider3 .testimonial-content .contents p {
font-size: 19px;
line-height: 30px;
}
.rs-latest-news.style2 .latest-news-nav .news-desc{
display: none;
}
.kindergarten-about .vc_tta-container .vc_tta-tabs-container ul li a .vc_tta-title-text{
font-size: 18px;
}
.kindergarten-about .vc_tta-container .vc_tta-tabs-container ul li a{
padding: 16px 19px 12px 19px !important;
}
} @media only screen and (min-width: 768px) and (max-width: 1199px) {
.tp-caption {
padding-left: 30px !important;
}
.rev_slider .readon {
font-size: 14px !important;
padding: 0 20px !important;
height: 44px !important;
line-height: 40px !important;
text-align: center !important;
}
.rev_slider .readon i {
font-size: 14px !important;
}
.services-tabs .vc_tta-tabs-list {
display: block !important;
text-align: center;
}
.services-tabs .vc_tta-tabs-list .vc_tta-tab {
display: inline-block !important;
width: auto;
}
} @media only screen and (min-width: 768px) and (max-width: 991px) {
.margin-tab-60 {
margin-top: 80px !important;
margin-bottom: 50px !important;
}
#cta-sec {
padding-left: 30px !important;
padding-right: 30px !important;
}
.rs-partner .rs-heading.transform-style {
display: block;
}
} @media only screen and (min-width: 991px) {
.menu-area .mobile-menu-link, 
.menu-area .mobile-menu-container {
display: none;
}
#about-sec2 .tp-bullets {
display: block !important;
}
.left-sidebar, .full-layout-left{
float: right;
}
.padding-left-sidebar, .right-full-layout-left{
display: block;
overflow: hidden;
}
.rs-blog-details .col-md-9 {
padding-right: 30px;
}
.padding-left-sidebar > .col-md-4, .right-full-layout-left > .col-md-4{
display: flex;
}
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
.widget_brochures a {
padding: 10px 8px;
font-size: 13px;
}
#cta-sec .readon {
padding: 0 14px 0 14px;
}
} @media only screen and (max-width: 991px) {
.mobile-menu-link {
right: 0;
}
.menu-responsive{
z-index: 9999 !important;
}
body.profile .user-tab, body.profile .profile-tabs{
float: none;
width: 100%;
padding: 0;
}
#rs-acheivements.rs-acheivements4.icon-left .rs-counter-list .count-icon {
margin-bottom: 23px;
margin-right: 0;
margin-top: 20px;
}
.bs-sidebar{
padding-left: 0;
}
.rs-team-style1 .team-item .team-social .social-icon {
width: 30px;
height: 30px;
line-height: 30px;
}
#content .news-slide{
padding-bottom: 54px !important;
}
.rs-latest-news.style2 .slick-arrow {
display: none !important;
}
#rs-acheivements.rs-acheivements4.icon-left{
padding-top: 39px !important;
padding-bottom: 60px !important;
}
#rs-acheivements.rs-acheivements4.icon-left .rs-counter-list {
display: block;
text-align: center;
}
body.profile .user-tab{
text-align: center;
padding-bottom: 30px;
}
body.profile .profile-tabs ul.nav-tabs {
margin: 0 0 30px;
padding: 0;
border: none;
}
.rs-services-responsive .vc_col-sm-3{
width: 50%;
}
.rs-services-responsive{
padding-top: 70px;
}
.rs-services-responsive .rs-services-style1{
margin-top: 110px;
}
.rs-gallery .gallery-desc{
padding: 40px 0;
}
.portfolio-filter .view-more {
position: relative;
right: 0;
top: 0;
transform: translateY(0%);
}
.rs-latest-news .row{
display: block;
}
.style2-slider .rs-latest-news .row {
display: flex;
}
.responsive-two-col .vc_col-sm-6{
float: none;
width: 100%;
}
.responsive-two-col .rs-video-2{
margin-bottom: 40px;
}
.rs-courses-2 .cource-item .cource-btn{
font-size: 11px;
}
.portfolio-filter .grid.row{
display: block;
}
.portfolio-filter .grid .col-md-4{
-ms-flex: 0 0 50% !important;
flex: 0 0 50% !important;
max-width: 50% !important;
}
.rs-latest-news .col-md-6{
-ms-flex: 0 0 50%;
flex: 0 0 100%;
max-width: 100%;
}
.rs-latest-news .news-normal-block{
margin-bottom: 20px;
}
.rs-search-courses .rs-search {
padding: 70px 50px;
}
.rs-search-courses .rs-search form .form-control {
width: 61%;
}
.rs-services-style3 .services-item .services-title{
line-height: 22px;
}
#rs-courses-2 .col-md-6{
margin: 0 auto;
}
#rs-pricing .price-table.style1 .cl-pricetable-wrap .bottom ul li {
padding: 4px 10px;
}
.rs-heading.style1 h2{
font-size: 25px;
line-height: 28px;
}
.rs-acheivements .vc_col-sm-3{
width: 50%;
}
.rs-latest-news.style2 .latest-news-nav{
display: none;
}
.rs-latest-news.style2 .col-md-6 {
-ms-flex: 0 0 10%;
flex: 0 0 100%;
max-width: 100%;
}
#cl-testimonial .testimonial-slide3.slider3 .testimonial-content .contents{
width: 100%;
margin-top: 0;
float: none;
padding-bottom: 95px;
}
#cl-testimonial .testimonial-slide3.slider3 .testimonial-content .author-image{
width: 100%;
margin: 0;
float: none;
}
#cl-testimonial .testimonial-slide3.slider3 .testimonial-content{
display: block;
overflow: hidden;
}
.rs-video-2 .video-content h4 {
font-size: 20px;
}
.rs-course .cource-item .course-body .course-title{
line-height: 22px;
}
.rs-course .cource-item .course-footer > div span{
font-size: 11px;
}
.rs-course .cource-item .course-footer > div{
line-height: 15px;
}
ul.learn-press-courses .course {
width: 47.888% !important;
}
.rs-events-2 .event-item .event-img img{
width: 100%;
}
.rs-blog .blog-item{
display: block;
}
.rs-blog .blog-item .blog-img, 
.rs-blog .blog-item .blog-full-area{
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.rs-blog .blog-item .blog-full-area .full-blog-content {
padding: 25px 0 0;
}
.counter-top-area .rs-counter {
font-size: 30px !important;
line-height: 40px !important;
}
.counter-top-area h4 {
line-height: 22px !important;
}
.bs-sidebar .widget ul li{
line-height: 22px;
}
#rs-header.header-styl-3 .sticky_search, 
#rs-header.header-styl-3 .menu-area .toggle-btn.active,
#rs-header.header-styl-3 .menu-area .toggle-btn{
display: none !important;
}
.header-style-4 .menu-responsive{
width: 100% !important;
}
#rs-header.header-style-4 .sidebarmenu-area .nav-link-container a{
display: none;
}
#rs-header.header-style-4 .menu-area .mobile-menu-link .nav-menu-link{
left: 0;
right: auto;
}
#rs-header.header-styl-3 .menu-area .menu-responsive .nav-link-container{
right: 0;
top: 4px;
}
#rs-header.header-styl-3 .rs-off-menu-wrap{
display: block;
opacity: 1;
visibility: visible;
}
body.profile .profile-tabs ul.nav-tabs li {
margin: 0 30px 10px 0;
}
#rs-footer.has-footer-contact .footer-top {
padding-top: 60px;
}
#rs-footer.has-footer-contact .footer-top .col-md-3{
max-width: 100%;
flex: auto;
width: 100%;
margin: 0;
clear: both;
}
.header-style2 .menu-area .mobile-menu-link .nav-menu-link{
left: 20px;
right: auto;
}
.toolbar-contact-style4 ul li .contact-inf {
margin-left: 12px;
}
#rs-header.header-style2 .toolbar-contact-style4 ul li {
margin-right: 2px;
}
body.rs-list-view .lp-archive-courses ul.learn-press-courses li .course-item .course-right {
float: none;
width: 100%;
}
body.rs-list-view .lp-archive-courses ul.learn-press-courses li .course-item .course-img {
float: none;
width: 100%;
}
#rs-header.style1 .menu-area .menu-responsive .nav-link-container{
right: 0;
}
#rs-footer.has-footer-contact .contact-container{
max-width: 100%;
padding: 0;
}
#rs-footer.has-footer-contact {
margin-top: 0;
}
#rs-footer.has-footer-contact .footer-contact-desc {
margin: 0;
position: relative;
width: auto;
transform: none;
}
.contact-details p{
font-size: 14px;
line-height: 22px;
}
#rs-header .get-quote {
display: none !important;
}
.woocommerce ul.products[class*="columns-"] li.product:last-child, .woocommerce-page ul.products[class*="columns-"] li.product:last-child{
padding-bottom: 0 !important;
margin-bottom: 0 !important;
}
#rs-footer{
background-size: cover !important;
}
.footer-contact-desc .col-md-4{
-ms-flex: 100%;
flex: 100%;
max-width: 100%;
padding:20px 0;
}
.footer-contact-desc .contact-inner:before, .footer-contact-desc .contact-inner:after{
display: none;
}
#rs-footer.has-footer-contact .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner{
border: none;
}
.learn-press-courses .learn-press-course-wishlist.wishlist-button{
width: auto;
}
.owl-carousel .owl-nav [class*="owl-"] {
display: none !important;
}
#rs-header.style1 .menu-area .menu-responsive .nav-link-container a{
line-height: 70px;
}
.menu-one-page-menu-container li.active a{
color: #ccc !important;
}
#rs-header.kids-header .menu-area .menu-responsive .nav-link-container a{
color: #505050;
}
.mobile-menu-container .nav-close-menu-li{
padding-top: 0;
padding-bottom: 20px;
max-width: 38px;
position: absolute;
right: 7px;
top: 15px;
}
.mobile-menu-container ul{
padding-top: 30px;
padding-left: 10px;
}
.mobile-menu-container  ul.sub-menu{
padding-top: 10px;
}
#rs-header.style1 .sticky_search {
display: none !important;
}
#rs-header.style1 .menu-area .mobile-menu-link .nav-menu-link i{
color: #ff3115;
}
#rs-header.style1 .menu-area .has-quote-text .mobile-menu-link .nav-menu-link {
right: 0;
}
#rs-header.style1 .has-quote-text .get-quote {
margin-top: 25px;
}
#rs-about.we-offer {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.ps-navigation ul li a span {
display: none;
}
#rs-footer .footer-top {
padding: 64px 0 45px;
}
#rs-footer .footer-top ul#menu-footer-menu li{
float: none;
width: 100%;
}
.page .bs-sidebar{
padding: 0 0 80px !important;
}
.page aside.widget-area{
margin-top: 92px !important;
}
#rs-counter{
padding-left: 20px !important;
padding-right: 20px !important;
}
#rs-about.rs-about3 {
padding-top: 75px !important;
padding-bottom: 90px !important;
}
.nav-container {
margin-top: 0;
width: 20%;
position:absolute;
right:0;
top:0;
height: 100%;
}
.menu-area .mobile-menu-link, 
.menu-area .mobile-menu-container {
display: block;
}
.nav-link-container, .nav-container{
display: none;
}
.menu-area #primary-menu-single {
display: block;
}
.menu-area .navbar ul li{
height: 60px;
line-height: 60px;
display: block;
text-align: left;
}
.menu-main-menu-single-container{
width: 100%;
padding: 0;
background: #50d2c2;
}
.navbar-header{
float: none;
margin-top: 8px;
}
#rs-header .menu-area .navbar ul li:hover a::after, #rs-header .menu-area .navbar ul li.active a::after{
display: none;
}
.navbar a{
line-height: 70px;
}
body .kids-header .menu-area ul > li > a{
color: #fff !important;
}
.menu-area .navbar ul li ul.sub-menu {
min-width: 100%;
display: none;
}
.menu-area .navbar ul li ul.sub-menu li{
background: rgba(255, 255, 255, 0.3);
}
.navbar-menu #primary-menu-single{
display: none;
}
#blog-home .blog-meta .blog-title {
font-size: 16px;
line-height: 23px !important;
}
.rs-blog .blog-item .blog-meta .blog-date {
font-size: 12px;
}
span.author {
margin-left: 6px;
}
.rs-blog .blog-item .blog-meta .blog-lc > div:first-child {
margin-right: 0;
font-size: 10px;
}
.rs-banner .banner-content .banner_title {
font-size: 45px;
}
.rs-banner .banner-content .work-position h3, 
.rs-banner .banner-content .work-position .cd-headline {
font-size: 35px;
line-height: 42px;
}
.rev_slider .tparrows {
display: none !important;
}
.archive-post .blog-img {
margin-bottom: 20px;
}
.pagination {
margin: 0;
}
.archive-post {
margin-bottom: 0 !important;
}
#rs-footer .widget_nav_menu{
margin-top: 47px;
}
#rs-header.header-style1 .toolbar-contact-style4{
font-size: 14px;
}
#rs-header.header-style1 .toolbar-contact-style4 ul li {
margin-right: -4px;
}
.menu-area .get-quote .quote-button {
line-height: 60px;
font-size: 16px;
}
.menu-area .mobile-menu-link{
padding: 0 15px;
}
.menu-area .mobile-menu-link .nav-menu-link i{
font-size: 18px !important;
color: #ff3115;
}
.header-styl-3 .menu-area .mobile-menu-link .nav-menu-link i{
color: #ff3115;
}
#rs-header.kids-header .sticky_search,
#rs-header.style1 .sticky_search{
display: none;
}
.rev_slider .tp-bullets{
display: none !important;
}
.menu-area .menu-offcanvas .get-quote .quote-button::after {
display: none;
}
.menu-responsive{
width: 50% !important;
}
.menu-offcanvas{
width: 50% !important;
}
.menu-area .get-quote {
max-width: 200px;
position: absolute;
right: 15px;
}
.rs-breadcrumbs .breadcrumbs-single{
min-height: 300px;
}
#rs-footer .footer-top .about-widget img {
max-width: 300px;
}
.p-spacer{
margin-bottom: 0;
display: inline;
}
.our-services .rs-services1 .services-title {
font-size: 16px;
line-height: 20px !important;
}
.our-services .rs-services1 .services-icon{
width: 42px;
}
.our-services .rs-services1 .services-icon i {
width: 40px;
height: 40px;
}
.our-services .rs-services1.left .services-icon i {
font-size: 25px;
line-height: 25px;
}
.our-services .rs-services1.left .services-desc {
width: calc(100% - 42px);
}
.our-services .architect-service .rs-services1 .services-item{
padding: 20px;
}
.architect-service .rs-services1.center .services-icon{
margin-bottom: 5px;
}
.our-services .rs-services1 .vc_column_container > .vc_column-inner {
padding-left: 8px;
}
#cta-sec h2 {
font-size: 21px;
line-height: 30px;
}
#cta-sec .readon {
height: 46px;
line-height: 44px;
font-size: 13px !important;
}
#rs-about > .wpb_column {
width: 100%;
}
.rs-video-2 img {
width: 100%;
}
#rs-about {
padding-top: 50px !important;
padding-bottom: 70px !important;
}
.services-style-2 .services-desc h3 {
font-size: 18px !important;
}
.services-style-3 .services-desc h3 {
font-size: 18px !important;
}
.counter-top-area h4 {
font-size: 14px;
}
.rev_slider .readon {
font-size: 14px !important;
padding: 0 20px !important;
height: 40px !important;
line-height: 37px !important;
text-align: center !important;
}
.rev_slider .readon i {
font-size: 14px !important;
}
#rs-counter {
padding-top: 55px !important;
padding-bottom: 60px !important;
}
#rs-header.header-styl-3 .navbar a {
line-height: 45px;
}
#rs-about {
padding-left: 0px !important;
padding-right: 0px !important;
}
#rs-testimonial.rs-testimonial-home {
padding-bottom: 100px !important;
}
#rs-services.services-home {
padding-top: 75px !important;
padding-bottom: 66px !important;
}
#rs-about.registration {
padding-top: 90px !important;
padding-bottom: 100px !important;
}
#rs-about.registration .registration-form {
margin-top: 0 !important;
}
#rs-header.header-styl-3 .logo-area {
text-align: left;
}
#we-offer #included-left .vc_column-inner{
padding-right: 30px !important;
padding-left: 45px !important;
}
#skew-style .slotholder::before {
display: none !important;
}
.rigth-video-border .rs-heading{
padding-right: 0 !important;
}
.border-style-counter .counter .counter-top-area {
padding: 20px 27px !important;
}
.border-style-counter .counter.counter .counter-top-area::before,
.border-style-counter .counter.counter .counter-top-area::after{
display: none !important;
}
} @media only screen and (min-width: 767px) {
} @media only screen and (max-width: 767px) {
.nav-footer ul li{
display: block;
}
.toolbar-sl-share{
display: block;
float: none;
}
.toolbar-login-btn{
float: none;
}
#rs-header.header-styl-3 {
position: relative;
}
#university-acheivements .services-item{
border-right: none;
}
#university-acheivements{
padding-top: 50px !important;
padding-bottom: 50px !important;
}
.toolbar-area .text-right{
text-align: center !important;
}
#rs-home-video.rs-acheivements::after{
display: none !important;
}
.border-style-counter .counter.counter1 .counter-top-area, 
.border-style-counter .counter.counter3 .counter-top-area {
text-align: center;
}
.rs-heading.style1 p {
font-size: 14px;
line-height: 23px;
}
#rs-footer .footer-bottom.footer2 .copyright.text-left,
#rs-footer .footer-bottom.footer4 .copyright.text-left,
#rs-footer .footer-bottom.footer2 .footer-share,
#rs-footer .footer-bottom.footer4 .footer-share{
text-align: center !important;
}
#rs-footer .footer-bottom.footer2 .footer-share,
#rs-footer .footer-bottom.footer4 .footer-share{
margin-top: 10px;
}
#rs-header.header-styl-3 .toolbar-area{
background: #212121;
}
#rs-footer .footer-top.footer5 .f-logo:after{
display: none;
}
#rs-footer .footer-top.footer5 .footer-share {
text-align: center;
margin-top: 0;
padding-left: 0;
}
#rs-footer .footer-top.footer5 .f-logo {
text-align: center;
padding-right: 0;
margin-bottom: 30px;
}
.skew_bg:before{
display: none !important;
}
#content .rs-branches{
padding-top: 40px !important;
}
#rs-header.header-styl-3 .menu-area{
background: #212121;
opacity: 1;
}
.vc_tta-panel-body .rs-video-2 {
margin: 40px 0;
}
.vc_tta-panel-body h4{
margin-top: 30px;
}
#content .rs-about2{
padding-top: 50px !important;
padding-bottom: 56px !important;
}
#content .about-choose{
padding-top: 75px !important;
padding-bottom: 60px !important;
}
.rs-branches .wpb_column .rs-services::before{
display: none !important;
}
.rs-branches .services-style-2 .services-icon img {
width: auto;
}
#content .about3{
padding-top: 80px !important;
}
.vc_tta-panel-body p:last-child{
margin-bottom: 30px !important;
}
.vc_tta-panels img{
margin: 30px 0;
}
#content #about-staff{
padding-bottom: 60px !important;
}
#rs-home-video.rs-acheivements{
padding-right: 0 !important;
}
.rigth-video-border .rs-heading {
text-align: center;
}
.rigth-video-border .vc_column-inner{
padding-left: 15px !important;
}
.border-style-counter .counter.counter2 .counter-top-area, 
.border-style-counter .counter.counter4 .counter-top-area {
text-align: center;
}
.momb40{
margin-bottom: 40px;
}
.rs-services-responsive .vc_col-sm-3 {
width: 100%;
}
.nav-footer ul{
text-align: center !important;
}
.sl-subtitle {
font-size: 26px !important;
}
#services-design .vc_column-inner{
padding:20px;
}
.search-top {
margin-top: 0;
}
.rs-heading.right .view-more,
.rs-heading.right .description,
.rs-heading.right{
text-align: center !important;
margin-top: 0;
}
.portfolio-filter.filter-left .grid.row .col-sm-6.grid-item{
-ms-flex: 0 0 100% !important;
flex: 0 0 100% !important;
max-width: 100% !important;
}
.rs-search-courses .rs-search {
padding: 50px 35px;
text-align: center;
}
.rs-heading.style4 .view-more, .rs-heading.style5 .view-more {
text-align: left;
margin-top: 0;
}
.rs-search-courses .rs-search form .form-control {
width: 100%;
margin: 0 0 16px;
}
.rs-search-courses .rs-search form button {
height: 50px;
}
.rs-blog-details .meta-info-wrap{
display: block;
}
.bs-sidebar.dynamic-sidebar{
margin-top: 50px;
}
.page .bs-sidebar.dynamic-sidebar{
margin-top: 0;
}
.btm-cate li {
margin: 0 25px 0 0;
}
body.blog .blog-full-area .blog-meta, body.archive .blog-full-area .blog-meta{
padding-right: 20px;
}
.page-template-events .rs-events-2 .rs-vertical-middle .col-md-6{
display: block;
width: 100%;
}
.rs-events-2 .event-item .event-img img{
width: auto;
}
.rs-events-2 .event-item .event-img:after{
display: none;
}
.rs-events-2 .event-item .event-content {
padding: 20px 20px 20px 0;
}
.rs-events-2 .event-item .event-desc {
height: auto;
}
.rs-events-2 .event-item .event-btn {
margin-top: 5px;
}
.rs-events-2 .event-item{
background: none;
}
.rs-events-2 .event-item .event-img a{
display: none;
}
.rs-acheivements .vc_col-sm-3 {
width: 100%;
}
.rs-acheivements .counter-top-area{
background-size: 50%;
}
.width80{
width: auto;
}
.page aside.widget-area {
margin-top: 0px !important;
}
.rs-blog-details .author-block {
margin-top: 70px;
}
.rs-blog-details .meta-info-wrap .bs-general-meta{
padding-bottom: 15px;
}
#one-servies-img{
margin-bottom: 35px;
}
#services-design .services-style-4{
padding: 0 !important;
}
.course-summary .course-tabs .learn-press-nav-tabs .course-nav {
width: 100%;
}
.rs-courses-details .course-payment {
float: none;
display: block;
text-align: center;
}
.toolbar-contact-style4 .t-con-inner, .toolbar-contact-style4 .t-con-inner.float-right{
max-width: 100%;
margin: 0 auto !important;
float: none !important;
text-align: center;
}
.t-con-inner .contact-inf span{
text-align: center;
}
#rs-header.header-style-4 .logo-area {
padding: 30px 0;
}
.t-con-inner .contact-inf {
float: none;
text-align: center;
margin-left: 0;
}
.t-con-inner i {
float: none;
width: 100%;
margin-right: 0;
}
body.login-form-body .learn-press-user-profile .profile-tabs .learn-press-form-login {
padding-right: 0px !important;
border-right: none !important;
padding-bottom: 0px !important;
float: none;
width: 100%;
}
ul.learn-press-courses .course {
width: 100% !important;
margin: 0 !important;
padding: 0 !important;
flex: auto;
}
body.login-form-body .user-tab {
padding-bottom: 0;
}
body.login-form-body .learn-press-user-profile .profile-tabs .learn-press-form-register {
padding-left: 0px !important;
float: none;
width: 100%;
}
#rs-header .toolbar-area .col-sm-7,
#rs-header .toolbar-area .col-sm-5{
flex: auto;
max-width: 100%;
}
#rs-about {
margin-top: 0 !important;
}
#we-offer{
background-image: none !important;
}
#cta-sec .wpb_single_image img {
margin-bottom: 16px;
}
.alignright{
float: none !important;
display: block !important;
margin-left: 0 !important;
}
#cta-sec .readon {
margin-top: 20px;
}
.rs-partner .rs-heading.transform-style {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
.rs-partner .rs-heading.transform-style {
display: block;
-webkit-transform: none;
transform: none;
margin-bottom: 50px !important;
}
.rs-partner .rs-heading.transform-style .title-inner {
display: block;
}
.sl-desc{
white-space: normal !important;
}
#rs-accordion {
margin-top: 50px !important;
}
.rs-accordion2{
margin-top: 0px !important;
}
#rs-accordion.home4-accordion {
margin-top: 0px !important;
margin-bottom: 50px;
}
.choose-sec .vc_column-inner {
padding-top: 0 !important;
}
.choose-sec .vc_column-inner .title-inner{
padding-top: 100px;
}
.sl-desc br{
display: none;
}
.contact-form {
padding: 0 15px 0 15px;
}
#contact-address #contact-form-title h3 {
padding: 70px 0 24px 0;
text-align: center;
}
.comments-area .comment-list li.comment {
padding: 10px;
border: none;
box-shadow: none;
}
.services-style-2 .services-icon img {
width: 100%;
}
.comments-area .comment-list li.comment .comment-content p {
margin-bottom: 8px;
}
.comments-area .comment-list li.comment .comment-content p {
margin-bottom: 8px;
}
.comments-area .comment-list li.comment .comment-content {
margin-top: 15px;
}
.rs-banner {
height: 450px;
}
.rs-banner .arrow-btn {
display: none;
}
.rs-banner .banner-content .banner_title {
font-size: 26px !important;
line-height: 36px !important;
margin-bottom: 10px;
}
.rs-banner .banner-content .work-position h3, .rs-banner .banner-content .work-position .cd-headline {
font-size: 26px;
line-height: 30px;
}
.rs-banner .banner-content .banner-button {
margin-top: 0;
}
.wpb_single_image.vc_align_right {
text-align: left !important;
}
#contact-address {
padding: 65px 15px 15px !important;
}
#contact-address .form-row .first-col, 
#contact-address .form-row .last-col {
padding-right: 0 !important;
padding-left: 0 !important;
}
#contact-address #address-box, 
#contact-address #phone-box, 
#contact-address #email-box {
margin-bottom: 20px;
-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}
.sl-title {
font-size: 34px !important;
}
.footer-bottom .copyright,
.footer-bottom .ft-bottom-right{
text-align: center;
}
.footer-bottom .copyright{
margin-bottom: 10px;
}
#rs-header.header-style1 .logo-area {
position: relative;
text-align: center;
margin: 0 auto 15px;
float: none;
}
#rs-header.header-style1 .toolbar-contact-style4 ul {
float: none;
text-align: center;
}
#rs-header.header-style1 .toolbar-contact-style4 ul li {
margin-right: 7px;
}
#rs-header .toolbar-area .toolbar-contact {
text-align: center;
}
#rs-header .toolbar-area .toolbar-contact ul li {
margin-right: 6px;
}
#rs-header .toolbar-area .toolbar-sl-share ul {
text-align: center;
}
.rs-breadcrumbs .page-title {
font-size: 20px !important;
line-height: 22px !important;
margin-top: 0;
margin-bottom: 18px;
}
.rs-breadcrumbs .breadcrumbs-single{
min-height: 250px;
}
#cta-sec {
padding-left: 15px !important;
padding-right: 15px !important;
padding-bottom: 44px !important;
text-align: center;
}
#cta-sec .wpb_content_element{
text-align: center;
}
#cta-sec .readon{
margin-top: 10px;
}
.rs-breadcrumbs-inner{
padding: 220px 0 0;
}
.service4 .vc_column-inner {
padding-top: 0 !important;
}
.service4 .rs-services1 {
margin-bottom: 30px;
}
#rs-services.service4 {
padding-bottom: 70px !important;
}
} @media only screen and (max-width: 590px) {
.sidenav {
width: 270px;
}
.rs-team .owl-carousel .owl-nav{
display: none;
}
#rs-header.style1 .menu-area .menu-responsive{
position: absolute;
right: 0;
}
.woocommerce ul.products[class*="columns-"] li.product, .woocommerce-page ul.products[class*="columns-"] li.product {
width: 100%;
float: none;
clear: both;
margin: 0 !important;
}
.rev_slider .readon {
font-size: 12px !important;
padding: 0 13px !important;
height: 32px !important;
line-height: 28px !important;
text-align: center !important;
margin-top: 10px !important;
}
#we-offer .rs-services1 .services-item {
border-left: none !important;
padding-left: 0;
padding-top: 0px;
padding-right: 0;
}
#we-offer .rs-services1 .services-icon {
width: 40px;
}
#we-offer .rs-services1 .services-icon i {
width: 35px;
height: 35px;
padding-right: 14px;
}
.main-contain .service-brochure{
padding-left: 10px !important;
padding-right: 10px !important;
}
#we-offer.we-offer-sidebar #included-left .vc_column-inner {
padding-right: 15px !important;
padding-left: 15px !important;
}
.rs-banner .banner-content .work-position h3, .rs-banner .banner-content .work-position .cd-headline {
font-size: 20px;
line-height: 26px;
}
.rs-banner .banner-content .banner-button {
margin-top: 0;
}
.rs-portfolio .grid-item {
width: 100%;
}
.rs-heading .description br {
display: none;
}
#rs-header .logo-area a img {
width: 140px;
}
#rs-header.header-style1 .toolbar-contact-style4 ul li {
position: relative;
overflow: hidden;
text-align: center;
display: block;
max-width: 213px;
margin: 0 auto 10px !important;
}
#rs-header.header-style1 .toolbar-contact-style4 ul li i {
display: none;
}
#rs-header.header-style1 .toolbar-contact-style4 ul li .contact-inf,
#rs-header.header-style1 .toolbar-contact-style4 ul li .contact-inf span {
text-align: center;
margin-left: 0;
float: none;
}
.rs-breadcrumbs .breadcrumbs-single{
min-height: 200px;
}
.rs-breadcrumbs .page-title {
margin-top: 8px;
margin-bottom: 4px;
}
.breadcrumbs-inner .category-name {
margin-bottom: 0;
}
}
@media only screen and (max-width: 575px) {
#rs-header .toolbar-area .toolbar-sl-share {
display: block;
margin-top: 5px;
}
.lp-archive-courses .rs-search form{
margin-top: 20px;
}
body.rs-list-view .lp-archive-courses ul.learn-press-courses li .course-item .course-right {
padding: 20px;
}
.header-logo{
width: 40%;
}
.menu-responsive{
width: 60%;
}
#about-staff .team-item{
max-width: 360px;
margin: 0 auto 40px;
}
.rs-courses-details .course-meta > div {
display: block;
margin-right: 0;
margin-bottom: 0;
padding-right: 0;
border-right: none;
float: none;
}
.rs-courses-details .course-meta{
display: block;
}
.rs-courses-details .course-meta .author .image,
.rs-courses-details .course-meta .author .author-name, 
.rs-courses-details .course-meta .author .image{
float: none;
text-align: center;
}
.rs-courses-details .course-meta .author .author-name {
padding-left: 0;
padding-top: 10px;
}
.rs-courses-details .course-meta .author-name, 
.rs-courses-details .course-meta .categories, 
.rs-courses-details .course-meta .client-rating{
text-align: center;
float: none;
}
.review-stars-rated {
width: 100% !important;
}
.review-stars-rated .review-stars.empty, .review-stars-rated .review-stars.filled{
margin: 0 auto;
}
.rs-courses-details .course-meta .client-rating{
padding-bottom: 0;
}
#rs-header .logo-area {
float: none;
text-align: center;
}
#rs-header.style1 .logo-area{
text-align: left;
}
.header-style2 .logo-area {
padding-bottom: 20px;
}
.toolbar-contact-style4 ul {
float: none;
}
#rs-header.header-style2 .toolbar-contact-style4 ul li{
display: block;
margin: 0;
max-width: 100%;
margin: 20px auto !important;
overflow: hidden;
text-align: center;
}
#rs-header.header-styl-3 .menu-area .menu-responsive {
position: absolute;
z-index: 9;
right: 0;
}
.toolbar-contact-style4 ul li .contact-inf {
float: none;
text-align: center;
}
.toolbar-contact-style4 ul li i {
float: none;
width: 100%;
}
#rs-header.header-style2 .toolbar-contact-style4 ul li i::before {
margin-left: 0;
}
.toolbar-contact-style4 ul li .contact-inf span {
text-align: center;
}
.toolbar-contact-style4 ul li .contact-inf {
margin-left: 0;
}
.rs-acheivements .counter-top-area {
background-size: 90% !important;
}
.rs-heading h2,
.rs-heading.style1 h2 {
font-size: 20px;
line-height: 28px;
}
.rs-course .cource-item .course-body .course-title {
font-size: 16px;
}
h4{
font-size: 15px;
}
#cl-testimonial .testimonial-slide3.slider3 .testimonial-content .contents .cl-author-info {
font-size: 18px;
line-height: 25px;
}
.rs-course .course-rating-total {
border-left: none;
padding-left: 0;
margin-left: 0;
text-align: center;
}
.rs-latest-news .news-normal-block .news-title {
font-size: 16px;
}
.rs-video-2 .video-content h4 {
font-size: 18px;
}
.rs-events .event-item .events-details {
padding: 20px 20px 27px;
}
.rs-latest-news .news-list-block .news-list-item .news-content,
.rs-latest-news .news-list-block .news-list-item .news-img{
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
text-align: center;
}
.rs-latest-news .news-list-block .news-list-item {
padding: 30px;
}
.rs-latest-news .news-list-block .news-list-item .news-title {
margin-top: 10px;
margin-bottom: 12px;
line-height: 22px;
}
} @media only screen and (max-width: 480px) {
.mc4wp-form input[type=submit] {
position: relative;
}
.rs-breadcrumbs .breadcrumbs-single {
min-height: 250px;
}
.rs-breadcrumbs .container{
top: 50%;
}
#rs-testimonial2{
padding-bottom: 40px !important;
}
#rs-acheivements.rs-acheivements4.icon-left .rs-counter-list .count-icon {
margin-bottom: 8px;
margin-top: 8px;
}
.rs-acheivements .counter-top-area .rs-counter {
font-size: 34px !important;
line-height: 43px !important;
}
#rs-acheivements.rs-acheivements4 .counter-top-area .count-icon i {
font-size: 35px;
}
.sl-title {
font-size: 28px !important;
}
.sl-subtitle {
font-size: 22px !important;
}
.rev-btn.readon {
padding: 12px 20px !important;
font-size: 10px !important;
line-height: normal !important;
}
.slider3 li.testimonial-item, 
#cl-testimonial ul {
padding: 0px !important;
}
.rs-banner .banner-content .banner_title {
font-size: 22px !important;
line-height: 30px !important;
margin-bottom: 0;
}
.rs-banner ul li {
margin: 0 15px 20px 0;
}
#rs-header.header-styl-3 .navbar a {
line-height: 43px;
}
.rev_slider .primary-bg-color {
font-size: 26px !important
background: transparent !important;
}
.rev_slider .readon {
font-size: 12px !important;
padding: 0 13px !important;
height: 28px !important;
line-height: 24px !important;
text-align: center !important;
margin-top: 14px !important;
}
.rs-search-courses .rs-search form button {
height: 41px;
padding: 9px 15px;
}
} @media only screen and (max-width: 320px) {
}article,  aside,  details,  figcaption,  figure,  footer,  header,  main,  menu,  nav,  section,  summary {
display: block;
}
audio,  canvas,  progress,  video {
display: inline-block;
vertical-align: baseline;
}
audio:not([controls]) {
display: none;
height: 0;
}
[hidden],  template {
display: none;
}
a {
background-color: transparent;
}
a:active,  a:hover {
outline: 0;
}
abbr[title] {
border-bottom: 1px dotted;
}
b,  strong {
font-weight: bold;
}
dfn {
font-style: italic;
}
h1 {
margin: 0.67em 0;
}
mark {
background: #ff0;
color: #000;
}
small {
font-size: 80%;
}
sub,  sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
img {
border: 0;
}
svg:not(:root) {
overflow: hidden;
}
figure {
margin: 1em 40px;
}
hr {
box-sizing: content-box;
height: 0;
}
pre {
overflow: auto;
}
code,  kbd,  pre,  samp {
font-family: monospace, monospace;
font-size: 1em;
}
button,  input,  optgroup,  select,  textarea {
color: inherit;
font: inherit;
margin: 0;
}
button {
overflow: visible;
}
button,  select {
text-transform: none;
}
button,  html input[type="button"],  input[type="reset"],  input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
button[disabled],  html input[disabled] {
cursor: default;
}
button::-moz-focus-inner,  input::-moz-focus-inner {
border: 0;
padding: 0;
}
input {
line-height: normal;
}
input[type="checkbox"],  input[type="radio"] {
box-sizing: border-box;
padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,  input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
input[type="search"]::-webkit-search-cancel-button,  input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
legend {
border: 0;
padding: 0;
}
textarea {
overflow: auto;
}
optgroup {
font-weight: bold;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
td,  th {
padding:0 0 0 10px;
border:1px solid #ccc;
}
iframe{
width: 100%
}
.lp-single-course .author-info ul li{
margin-right: 5px;
} h1,  h2,  h3,  h4,  h5,  h6 {
clear: both;
}
p {
margin-bottom: 1.5em;
}
dfn,  cite,  em,  i {
font-style: italic;
}
blockquote {
font-size: 16px;
}
address {
margin: 0 0 1.5em;
}
pre {
background: #eee;
font-family: "Courier 10 Pitch", Courier, monospace;
font-size: 15px;
font-size: 0.9375rem;
line-height: 1.6;
margin-bottom: 1.6em;
max-width: 100%;
overflow: auto;
padding: 1.6em;
}
code,  kbd,  tt,  var {
font-size: 15px;
}
abbr,  acronym {
border-bottom: 1px dotted #666;
cursor: help;
}
mark,  ins {	
text-decoration: none;
}
big {
font-size: 125%;
}
h1#logo{
margin: 0 !important;
} html {
box-sizing: border-box;
}
*,  *:before,  *:after { box-sizing: inherit;
}
body {
background: #fff; }
blockquote:before,  blockquote:after,  q:before,  q:after {
content: "";
}
blockquote,  q {
quotes: "" "";
}
hr {
background-color: #ccc;
border: 0;
height: 1px;
margin-bottom: 1.5em;
}
ul, ol {
margin: 0 0 1.5em 3em;
}
ul {
list-style: disc;
}
ol {
list-style: decimal;
padding: 0
}
li > ul,  li > ol {
margin-bottom: 0;
margin-left: 1.5em
}
dt {
font-weight: bold;
}
dd {
margin: 0 1.5em 1.5em;
}
img {
height: auto; max-width: 100%; }
figure {
margin: 1em 0; }
table {
margin: 0 0 1.5em;
width: 100%;
}
body.home.blog .main-contain #content{
padding: 100px 0 70px;
}  .main-navigation {
float: left;
}
.main-navigation ul {
display: none;
list-style: none;
margin: 0;
padding-left: 0;
}
.main-navigation li.page_item {
float: left;
position: relative;
padding: 0 10px;
}
.main-navigation li.page_item a {
display: block;
text-decoration: none;
line-height: 60px;
}
.main-navigation ul ul {
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
float: left;
position: absolute;
top: 100%;
left: -999em;
z-index: 99999;
}
.main-navigation ul ul ul {
left: -999em;
top: 0;
}
.main-navigation ul ul a {
width: 200px;
}
.main-navigation ul li:hover > ul,  .main-navigation ul li.focus > ul {
left: auto;
}
.main-navigation ul ul li:hover > ul,  .main-navigation ul ul li.focus > ul {
left: 100%;
}
#primary-menu ul {
list-style: none;
text-align: right;
}
#primary-menu ul li.page_item {
display:inline-block;
}
#primary-menu ul li.page_item ul {
display:none;
} .menu-toggle,  .main-navigation.toggled ul {
display: block;
}
@media screen and (min-width: 37.5em) {
.menu-toggle {
display: none;
}
.main-navigation ul {
display: block;
}
}
.site-main .comment-navigation,  .site-main .posts-navigation,  .site-main .post-navigation {
margin: 0 0 1.5em;
overflow: hidden;
}
.comment-navigation .nav-previous,  .posts-navigation .nav-previous,  .post-navigation .nav-previous {
float: left;
width: 50%;
}
.comment-navigation .nav-next,  .posts-navigation .nav-next,  .post-navigation .nav-next {
float: right;
text-align: right;
width: 50%;
}  .search .entry-header h2{
font-weight: 500;
margin-bottom: 0;
}
.entry-footer span{
font-weight: bold;
}
.entry-footer span a{
font-weight: normal;
}
.screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
word-wrap: normal !important; }
.screen-reader-text:focus {
background-color: #f1f1f1;
border-radius: 3px;
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: bold;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000; } #content[tabindex="-1"]:focus {
outline: 0;
} .alignleft {
display: inline;
float: left;
margin-right: 1.5em;
margin-bottom: 1.5em;
}
.alignright {
display: inline;
float: right;
margin-left: 1.5em;
margin-bottom: 1.5em;
}
.aligncenter {
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
} .clear:before,  .clear:after,  .entry-content:before,  .entry-content: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 {
content: "";
display: table;
table-layout: fixed;
}
.clear-fix, .clear:after,  .entry-content:after,  .comment-content:after,  .site-header:after,  .site-content:after,  .site-footer:after {
clear: both;
} .widget {
margin: 0 0 2.5em;
} .widget select {
max-width: 100%;
width:100%;
padding: 6px 8px
} .price-style3,  .cl-pricetable-wrap {
padding-bottom: 0px !important
}
.style1 .cl-pricetable-wrap {
padding-bottom: 40px !important
}
.page_title_single h3 {
padding-top: 70px;
}  .sticky {
display: block;
}
.rs-about .about-exp .exp-desc {
color: #666;
}
.updated:not(.published) {
display: none;
}
.page-links {
clear: both;
margin: 0 0 1.5em;
}
span.author {
text-transform: capitalize;
margin-left: 20px;
}
.archive .page-header {
margin-bottom: 35px;
}
.archive-post {
padding-bottom: 36px;
border-bottom: 1px solid #f1f1f1;
padding-left: 0;
}
.archive-post h3.blog-title {
margin-bottom: 7px;
font-size: 20px !important;
}
.archive-post .blog-meta {
padding-bottom: 15px;
}
.page .bs-sidebar {
padding:92px 0;
}
.fbc-page .fbc-wrap .fbc-items {
background: rgba(0, 0, 0, 0.5) !important
}
.fbc-page .fbc-wrap .fbc-items li a {
color: #4caf50 !important
}
.fbc-items li.active span {
color: #fff !important
}
.search .page-title {	
padding-bottom:20px;
margin-bottom:0px;
}
.search .entry-header h2{	
font-size: 22px !important
}
.search .pagination-area{
padding-top: 0;
}
.search article{
margin-bottom: 42px;
}
.sticky_form {
display:none
}
body.search article{
padding-bottom: 50px;
border-bottom: 1px solid #eee;
}
body.search article:last-child{
padding-bottom: 0;
border-bottom: none;
}
body.search .entry-footer{
margin-top: 20px;
padding: 10px 0px;
}
body.search article h3.entry-title{
margin-bottom: 15px;
}
.show-featured .post-img{
width: 90px;
float: left;
padding-right: 10px;
}
.bs-sidebar .recent-post-widget .show-featured .post-desc{
padding:0;
} .comment-content a {
word-wrap: break-word;
}
.bypostauthor {
display: block;
}  .infinite-scroll .posts-navigation, .infinite-scroll.neverending .site-footer { display: none;
} .infinity-end.neverending .site-footer {
display: block;
} .page-content .wp-smiley,  .entry-content .wp-smiley,  .comment-content .wp-smiley {
border: none;
margin-bottom: 0;
margin-top: 0;
padding: 0;
} embed,  iframe,  object {
max-width: 100%;
} .custom-logo-link {
display: inline-block;
} .wp-caption {
margin-bottom: 1.5em;
max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
display: block;
margin-left: auto;
margin-right: auto;
}
.wp-caption .wp-caption-text {
margin: 0.8075em 0;
}
.wp-caption-text {
text-align: center;
} .gallery {
margin-bottom: 1.5em;
}
.gallery-item {
display: inline-block;
text-align: center;
vertical-align: top;
width: 100%;
}
.gallery-columns-2 .gallery-item {
max-width: 50%;
}
.gallery-columns-3 .gallery-item {
max-width: 33.33333%;
}
.gallery-columns-4 .gallery-item {
max-width: 25%;
}
.gallery-columns-5 .gallery-item {
max-width: 20%;
}
.gallery-columns-6 .gallery-item {
max-width: 16.66667%;
}
.gallery-columns-7 .gallery-item {
max-width: 14.28571%;
}
.gallery-columns-8 .gallery-item {
max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
max-width: 11.11111%;
}
.gallery-caption {
display: block;
}
.tab-text {
display: none;
}
.rs-testimonial .testi-item:hover .testi-img:before {
width: 80%;
height: 80%;
opacity: 0;
}
.testi-item {
position: relative;
}
.testi-img:before {
background: rgba(0, 0, 0, 0.8);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.testi-item.slick-current {
opacity: 1;
}
.header-styl-5 .bs-search input{
width:60%;
float:right;
}
#map iframe{
height: 800px;
border: none;
width: 100%;
} #loading {
background-color: #fff;
height: 100%;
width: 100%;
position: fixed;
z-index: 1;
margin-top: 0px;
top: 0px;
z-index: 9999999;
}
#loading-center {
width: 100%;
height: 100%;
position: relative;
}
#loading-center-absolute {
position: absolute;
left: 50%;
top: 50%;
height: 150px;
width: 150px;
margin-top: -75px;
margin-left: -75px;
}
.object {
width: 20px;
height: 20px;
background-color: #444;
float: left;
margin-right: 20px;
margin-top: 65px;
-moz-border-radius: 50% 50% 50% 50%;
-webkit-border-radius: 50% 50% 50% 50%;
border-radius: 50% 50% 50% 50%;
}
#object_one {
-webkit-animation: object_one 1.5s infinite;
animation: object_one 1.5s infinite;
}
#object_two {
-webkit-animation: object_two 1.5s infinite;
animation: object_two 1.5s infinite;
-webkit-animation-delay: 0.25s;
animation-delay: 0.25s;
}
#object_three {
-webkit-animation: object_three 1.5s infinite;
animation: object_three 1.5s infinite;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
}
@-webkit-keyframes object_one {
75% {
-webkit-transform: scale(0);
}
}
@keyframes object_one {
75% {
transform: scale(0);
-webkit-transform: scale(0);
}
}
@-webkit-keyframes object_two {
75% {
-webkit-transform: scale(0);
}
}
@keyframes object_two {
75% {
transform: scale(0);
-webkit-transform: scale(0);
}
}
@-webkit-keyframes object_three {
75% {
-webkit-transform: scale(0);
}
}
@keyframes object_three {
75% {
transform: scale(0);
-webkit-transform: scale(0);
}
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg); }
100% {
-webkit-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg); }
100% {
-webkit-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
#loader-wrapper .loader-section {
position: fixed;
top: 0;
width: 51%;
height: 100%;
background: #4caf50;
z-index: 1000;
}
#loader-wrapper .loader-section.section-left {
left: 0;
}
#loader-wrapper .loader-section.section-right {
right: 0;
} .loaded #loader-wrapper .loader-section.section-left {
-webkit-transform: translateX(-100%); -ms-transform: translateX(-100%); transform: translateX(-100%); -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }
.loaded #loader-wrapper .loader-section.section-right {
-webkit-transform: translateX(100%); -ms-transform: translateX(100%); transform: translateX(100%); -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }
.loaded #loader {
opacity: 0;
-webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out; }
.loaded #loader-wrapper {
visibility: hidden;
-webkit-transform: translateY(-100%); -ms-transform: translateY(-100%); transform: translateY(-100%); -webkit-transition: all 0.3s 1s ease-out; transition: all 0.3s 1s ease-out; }
.rs-blog-grid .blog-item .full-blog-content{
padding-top: 15px;
}