@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 {
0%, 20%, 53%, 80%, 100% {
-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 {
0%, 20%, 53%, 80%, 100% {
-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 {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
0% {
-webkit-transform: 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);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
0% {
-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);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
0% {
-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);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
0% {
-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);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
0%, 100% {
-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 {
0%, 100% {
-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);
}
100% {
-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);
}
100% {
-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 {
0% {
-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);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
0% {
-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);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
0% {
-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);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes wobble {
0% {
-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);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes jello {
11.1% {
-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)
}
100% {
-webkit-transform: none;
transform: none
}
}
@keyframes jello {
11.1% {
-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)
}
100% {
-webkit-transform: none;
transform: none
}
}
.jello{
-webkit-animation-name:jello;
animation-name:jello;
-webkit-transform-origin: center;
transform-origin: center
}
@-webkit-keyframes bounceIn {
0%, 20%, 40%, 60%, 80%, 100% {
-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);
}
100% {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
0%, 20%, 40%, 60%, 80%, 100% {
-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);
}
100% {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
0%, 60%, 75%, 90%, 100% {
-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);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInDown {
0%, 60%, 75%, 90%, 100% {
-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);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
0%, 60%, 75%, 90%, 100% {
-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);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInLeft {
0%, 60%, 75%, 90%, 100% {
-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);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
0%, 60%, 75%, 90%, 100% {
-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);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInRight {
0%, 60%, 75%, 90%, 100% {
-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);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
0%, 60%, 75%, 90%, 100% {
-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, -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);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
0%, 60%, 75%, 90%, 100% {
-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, -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);
}
100% {
-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);
}
100% {
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);
}
100% {
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);
}
100% {
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);
}
100% {
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);
}
100% {
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);
}
100% {
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);
}
100% {
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);
}
100% {
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);
}
100% {
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);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
}
@keyframes fadeOutDown {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
}
@keyframes fadeOutDownBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-20px);
transform: translateX(-20px);
}
}
@keyframes fadeOutLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
@keyframes fadeOutLeftBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(20px);
transform: translateX(20px);
}
}
@keyframes fadeOutRight {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
}
@keyframes fadeOutRightBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
}
@keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
@keyframes fadeOutUpBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
0% {
-webkit-transform: perspective(400px) 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;
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
0% {
-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;
}
100% {
-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 {
0% {
-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);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
0% {
-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);
}
100% {
-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 {
0% {
-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);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInY {
0% {
-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);
}
100% {
-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 {
0% {
-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;
}
100% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
0% {
-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;
}
100% {
-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 {
0% {
-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;
}
100% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
0% {
-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;
}
100% {
-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 {
0% {
-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;
}
100% {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes lightSpeedIn {
0% {
-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;
}
100% {
-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 {
0% {
opacity: 1;
}
100% {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
0% {
opacity: 1;
}
100% {
-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 {
0% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateIn {
0% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
100% {
-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 {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
100% {
-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 {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-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 {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-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 {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
100% {
-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 {
0% {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
0% {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
100% {
-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 {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-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 {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-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 {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-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 {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-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 {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-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 {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-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 {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-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 {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-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;
}
100% {
-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;
}
100% {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
0% {
opacity: 1;
}
100% {
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 {
0% {
opacity: 1;
}
100% {
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 {
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
0% {
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 zoomInStable {
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
33.333% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
66.666666% {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes zoomInStable {
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
33.333% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
66.666666% {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.zoomInStable {
-webkit-animation-name: zoomInStable;
animation-name: zoomInStable;
}
@-webkit-keyframes zoomInDown {
0% {
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 {
0% {
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 {
0% {
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 {
0% {
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 {
0% {
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 {
0% {
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 {
0% {
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 {
0% {
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 {
0% {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
100% {
opacity: 0;
}
}
@keyframes zoomOut {
0% {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
100% {
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);
}
100% {
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);
}
100% {
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);
}
100% {
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);
}
100% {
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);
}
100% {
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);
}
100% {
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);
}
100% {
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);
}
100% {
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 {
0% {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInDown {
0% {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
0% {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInLeft {
0% {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
0% {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInRight {
0% {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
0% {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp {
0% {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
100% {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes slideOutDown {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
100% {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
100% {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes slideOutLeft {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
100% {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
100% {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes slideOutRight {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
100% {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
100% {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes slideOutUp {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
100% {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}
@keyframes anime {
from {
opacity: 0;
transform: scaleY(0);
-webkit-transform: scaleY(0);
-moz-transform: scaleY(0);
-ms-transform: scaleY(0);
-o-transform: scaleY(0);
}
to {
opacity: 1;
transform: scaleY(1);
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
-o-transform: scaleY(1);
-moz-transform: scaleY(1);
}
}
@-webkit-keyframes anime {
from {
opacity: 0;
transform: scaleY(0);
-webkit-transform: scaleY(0);
-moz-transform: scaleY(0);
-ms-transform: scaleY(0);
-o-transform: scaleY(0);
}
to {
opacity: 1;
transform: scaleY(1);
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
-o-transform: scaleY(1);
-moz-transform: scaleY(1);
}
}
@-moz-keyframes anime {
from {
opacity: 0;
transform: scaleY(0);
-webkit-transform: scaleY(0);
-moz-transform: scaleY(0);
-ms-transform: scaleY(0);
-o-transform: scaleY(0);
}
to {
opacity: 1;
transform: scaleY(1);
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
-o-transform: scaleY(1);
-moz-transform: scaleY(1);
}
}
@-o-keyframes anime {
from {
opacity: 0;
transform: scaleY(0);
-webkit-transform: scaleY(0);
-moz-transform: scaleY(0);
-ms-transform: scaleY(0);
-o-transform: scaleY(0);
}
to {
opacity: 1;
transform: scaleY(1);
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
-o-transform: scaleY(1);
-moz-transform: scaleY(1);
}
}
@-ms-keyframes anime {
from {
opacity: 0;
transform: scaleY(0);
-webkit-transform: scaleY(0);
-moz-transform: scaleY(0);
-ms-transform: scaleY(0);
-o-transform: scaleY(0);
}
to {
opacity: 1;
transform: scaleY(1);
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
-o-transform: scaleY(1);
-moz-transform: scaleY(1);
}
}:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width:device-width}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-family:inherit;font-weight:500;line-height:1.2;color:inherit}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014 \00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;max-width:100%;margin-bottom:1rem;background-color:transparent}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table .table{background-color:#fff}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#212529;border-color:#32383e}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#212529}.table-dark td,.table-dark th,.table-dark thead th{border-color:#32383e}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:not([size]):not([multiple]){height:calc(2.25rem + 2px)}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm,.input-group-lg>.form-control-plaintext.form-control,.input-group-lg>.input-group-append>.form-control-plaintext.btn,.input-group-lg>.input-group-append>.form-control-plaintext.input-group-text,.input-group-lg>.input-group-prepend>.form-control-plaintext.btn,.input-group-lg>.input-group-prepend>.form-control-plaintext.input-group-text,.input-group-sm>.form-control-plaintext.form-control,.input-group-sm>.input-group-append>.form-control-plaintext.btn,.input-group-sm>.input-group-append>.form-control-plaintext.input-group-text,.input-group-sm>.input-group-prepend>.form-control-plaintext.btn,.input-group-sm>.input-group-prepend>.form-control-plaintext.input-group-text{padding-right:0;padding-left:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-sm>.input-group-append>select.btn:not([size]):not([multiple]),.input-group-sm>.input-group-append>select.input-group-text:not([size]):not([multiple]),.input-group-sm>.input-group-prepend>select.btn:not([size]):not([multiple]),.input-group-sm>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),.input-group-sm>select.form-control:not([size]):not([multiple]),select.form-control-sm:not([size]):not([multiple]){height:calc(1.8125rem + 2px)}.form-control-lg,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-lg>.input-group-append>select.btn:not([size]):not([multiple]),.input-group-lg>.input-group-append>select.input-group-text:not([size]):not([multiple]),.input-group-lg>.input-group-prepend>select.btn:not([size]):not([multiple]),.input-group-lg>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),.input-group-lg>select.form-control:not([size]):not([multiple]),select.form-control-lg:not([size]):not([multiple]){height:calc(2.875rem + 2px)}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.5rem;margin-top:.1rem;font-size:.875rem;line-height:1;color:#fff;background-color:rgba(40,167,69,.8);border-radius:.2rem}.custom-select.is-valid,.form-control.is-valid,.was-validated .custom-select:valid,.was-validated .form-control:valid{border-color:#28a745}.custom-select.is-valid:focus,.form-control.is-valid:focus,.was-validated .custom-select:valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{background-color:#71dd8a}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(40,167,69,.25)}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label::before,.was-validated .custom-file-input:valid~.custom-file-label::before{border-color:inherit}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.5rem;margin-top:.1rem;font-size:.875rem;line-height:1;color:#fff;background-color:rgba(220,53,69,.8);border-radius:.2rem}.custom-select.is-invalid,.form-control.is-invalid,.was-validated .custom-select:invalid,.was-validated .form-control:invalid{border-color:#dc3545}.custom-select.is-invalid:focus,.form-control.is-invalid:focus,.was-validated .custom-select:invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{background-color:#efa2a9}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(220,53,69,.25)}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label::before,.was-validated .custom-file-input:invalid~.custom-file-label::before{border-color:inherit}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:focus,.btn:hover{text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}.btn:not(:disabled):not(.disabled).active,.btn:not(:disabled):not(.disabled):active{background-image:none}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-primary{color:#007bff;background-color:transparent;background-image:none;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;background-color:transparent;background-image:none;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;background-color:transparent;background-image:none;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;background-color:transparent;background-image:none;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;background-color:transparent;background-image:none;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;background-color:transparent;background-image:none;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;background-color:transparent;background-image:none;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;background-color:transparent;background-image:none;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;background-color:transparent}.btn-link:hover{color:#0056b3;text-decoration:underline;background-color:transparent;border-color:transparent}.btn-link.focus,.btn-link:focus{text-decoration:underline;border-color:transparent;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media screen and (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media screen and (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-right{right:0;left:auto}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;width:0;height:0;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:0 1 auto;flex:0 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group,.btn-group-vertical .btn+.btn,.btn-group-vertical .btn+.btn-group,.btn-group-vertical .btn-group+.btn,.btn-group-vertical .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical .btn,.btn-group-vertical .btn-group{width:100%}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file:focus,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control{margin-left:-1px}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:active~.custom-control-label::before{color:#fff;background-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#dee2e6}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background-repeat:no-repeat;background-position:center center;background-size:50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::before{background-color:#007bff}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::before{background-color:#007bff}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(2.25rem + 2px);padding:.375rem 1.75rem .375rem .75rem;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;background-size:8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.075),0 0 5px rgba(128,189,255,.5)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{opacity:0}.custom-select-sm{height:calc(1.8125rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:75%}.custom-select-lg{height:calc(2.875rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:125%}.custom-file{position:relative;display:inline-block;width:100%;height:calc(2.25rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(2.25rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:focus~.custom-file-label::after{border-color:#80bdff}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(2.25rem + 2px);padding:.375rem .75rem;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:2.25rem;padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:1px solid #ced4da;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;padding-left:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-appearance:none;appearance:none}.custom-range::-webkit-slider-thumb:focus{outline:0;box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-appearance:none;appearance:none}.custom-range::-moz-range-thumb:focus{outline:0;box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;appearance:none}.custom-range::-ms-thumb:focus{outline:0;box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler:not(:disabled):not(.disabled){cursor:pointer}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(.25rem - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{display:-ms-flexbox;display:flex;-ms-flex:1 0 0%;flex:1 0 0%;-ms-flex-direction:column;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:first-child .card-header,.card-group>.card:first-child .card-img-top{border-top-right-radius:0}.card-group>.card:first-child .card-footer,.card-group>.card:first-child .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:last-child .card-header,.card-group>.card:last-child .card-img-top{border-top-left-radius:0}.card-group>.card:last-child .card-footer,.card-group>.card:last-child .card-img-bottom{border-bottom-left-radius:0}.card-group>.card:only-child{border-radius:.25rem}.card-group>.card:only-child .card-header,.card-group>.card:only-child .card-img-top{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-group>.card:only-child .card-footer,.card-group>.card:only-child .card-img-bottom{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-group>.card:not(:first-child):not(:last-child):not(:only-child){border-radius:0}.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top{border-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion .card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion .card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion .card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion .card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-link:not(:disabled):not(.disabled){cursor:pointer}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:1;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}.badge-primary[href]:focus,.badge-primary[href]:hover{color:#fff;text-decoration:none;background-color:#0062cc}.badge-secondary{color:#fff;background-color:#6c757d}.badge-secondary[href]:focus,.badge-secondary[href]:hover{color:#fff;text-decoration:none;background-color:#545b62}.badge-success{color:#fff;background-color:#28a745}.badge-success[href]:focus,.badge-success[href]:hover{color:#fff;text-decoration:none;background-color:#1e7e34}.badge-info{color:#fff;background-color:#17a2b8}.badge-info[href]:focus,.badge-info[href]:hover{color:#fff;text-decoration:none;background-color:#117a8b}.badge-warning{color:#212529;background-color:#ffc107}.badge-warning[href]:focus,.badge-warning[href]:hover{color:#212529;text-decoration:none;background-color:#d39e00}.badge-danger{color:#fff;background-color:#dc3545}.badge-danger[href]:focus,.badge-danger[href]:hover{color:#fff;text-decoration:none;background-color:#bd2130}.badge-light{color:#212529;background-color:#f8f9fa}.badge-light[href]:focus,.badge-light[href]:hover{color:#212529;text-decoration:none;background-color:#dae0e5}.badge-dark{color:#fff;background-color:#343a40}.badge-dark[href]:focus,.badge-dark[href]:hover{color:#fff;text-decoration:none;background-color:#1d2124}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media screen and (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-item:focus,.list-group-item:hover{z-index:1;text-decoration:none}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{border-bottom:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:focus,.close:hover{color:#000;text-decoration:none;opacity:.75}.close:not(:disabled):not(.disabled){cursor:pointer}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;outline:0}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-25%);transform:translate(0,-25%)}@media screen and (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:translate(0,0);transform:translate(0,0)}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - (.5rem * 2))}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem;border-bottom:1px solid #e9ecef;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #e9ecef}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-centered{min-height:calc(100% - (1.75rem * 2))}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg{max-width:800px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top] .arrow,.bs-popover-top .arrow{bottom:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=top] .arrow::after,.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::after,.bs-popover-top .arrow::before{border-width:.5rem .5rem 0}.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::before{bottom:0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top] .arrow::after,.bs-popover-top .arrow::after{bottom:1px;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right] .arrow,.bs-popover-right .arrow{left:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right] .arrow::after,.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::after,.bs-popover-right .arrow::before{border-width:.5rem .5rem .5rem 0}.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::before{left:0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right] .arrow::after,.bs-popover-right .arrow::after{left:1px;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom] .arrow,.bs-popover-bottom .arrow{top:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=bottom] .arrow::after,.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::after,.bs-popover-bottom .arrow::before{border-width:0 .5rem .5rem .5rem}.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::before{top:0;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom] .arrow::after,.bs-popover-bottom .arrow::after{top:1px;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left] .arrow,.bs-popover-left .arrow{right:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left] .arrow::after,.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::after,.bs-popover-left .arrow::before{border-width:.5rem 0 .5rem .5rem}.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::before{right:0;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left] .arrow::after,.bs-popover-left .arrow::after{right:1px;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;color:inherit;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-item{position:relative;display:none;-ms-flex-align:center;align-items:center;width:100%;transition:-webkit-transform .6s ease;transition:transform .6s ease;transition:transform .6s ease,-webkit-transform .6s ease;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}@media screen and (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.carousel-item-next,.carousel-item-prev{position:absolute;top:0}.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{-webkit-transform:translateX(0);transform:translateX(0)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.active.carousel-item-right,.carousel-item-next{-webkit-transform:translateX(100%);transform:translateX(100%)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.active.carousel-item-right,.carousel-item-next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.active.carousel-item-left,.carousel-item-prev{-webkit-transform:translateX(-100%);transform:translateX(-100%)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.active.carousel-item-left,.carousel-item-prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.carousel-fade .carousel-item{opacity:0;transition-duration:.6s;transition-property:opacity}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{opacity:0}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-prev,.carousel-fade .carousel-item-next,.carousel-fade .carousel-item-prev,.carousel-fade .carousel-item.active{-webkit-transform:translateX(0);transform:translateX(0)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-prev,.carousel-fade .carousel-item-next,.carousel-fade .carousel-item-prev,.carousel-fade .carousel-item.active{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:transparent no-repeat center center;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{position:absolute;right:0;bottom:10px;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{position:relative;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:rgba(255,255,255,.5)}.carousel-indicators li::before{position:absolute;top:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators li::after{position:absolute;bottom:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators .active{background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-circle{border-radius:50%!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.text-justify{text-align:justify!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0062cc!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#545b62!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#1e7e34!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#117a8b!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#d39e00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#bd2130!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#dae0e5!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#1d2124!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}.chart-block.now-in-view,
.zoomInStable {
animation-name: zoomInStable; 
animation-duration: 3s; 
animation-iteration-count: 1;
animation-timing-function: linear;
-webkit-animation-name: zoomInStable; 
-webkit-animation-duration: 3s; 
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: linear;
-moz-animation-name: zoomInStable; 
-moz-animation-duration: 3s; 
-moz-animation-iteration-count: 1;
-moz-animation-timing-function: linear;
-ms-animation-name: zoomInStable; 
-ms-animation-duration: 3s; 
-ms-animation-iteration-count: 1;
-ms-animation-timing-function: linear;
-o-animation-name: zoomInStable; 
-o-animation-duration: 3s; 
-o-animation-iteration-count: 1;
-o-animation-timing-function: linear;
}
.zoomInStable2 {
animation-name: zoomInStable; 
animation-duration: 3s; 
animation-iteration-count: infinite;
animation-timing-function: linear;
-webkit-animation-name: zoomInStable; 
-webkit-animation-duration: 3s; 
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: zoomInStable; 
-moz-animation-duration: 3s; 
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: zoomInStable; 
-ms-animation-duration: 3s; 
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
-o-animation-name: zoomInStable; 
-o-animation-duration: 3s; 
-o-animation-iteration-count: infinite;
-o-animation-timing-function: linear;
}
.slideInUp {
animation-name: slideInUp; 
animation-duration: 2s; 
animation-iteration-count: 1;
animation-timing-function: linear;
-webkit-animation-name: slideInUp; 
-webkit-animation-duration: 2s; 
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: linear;
-moz-animation-name: slideInUp; 
-moz-animation-duration: 2s; 
-moz-animation-iteration-count: 1;
-moz-animation-timing-function: linear;
-ms-animation-name: slideInUp; 
-ms-animation-duration: 2s; 
-ms-animation-iteration-count: 1;
-ms-animation-timing-function: linear;
}
.app-download-section .big-shape-14.now-in-view,
.slideInRight {
animation-name: slideInRight; 
animation-duration: 2s; 
animation-iteration-count: 1;
animation-timing-function: linear;
-webkit-animation-name: slideInRight; 
-webkit-animation-duration: 2s; 
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: linear;
-moz-animation-name: slideInRight; 
-moz-animation-duration: 2s; 
-moz-animation-iteration-count: 1;
-moz-animation-timing-function: linear;
-ms-animation-name: slideInRight; 
-ms-animation-duration: 2s; 
-ms-animation-iteration-count: 1;
-ms-animation-timing-function: linear;
}
.slideInLeft{
animation-name: slideInLeft; 
animation-duration: 2s; 
animation-iteration-count: 1;
animation-timing-function: linear;
-webkit-animation-name: slideInLeft; 
-webkit-animation-duration: 2s; 
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: linear;
-moz-animation-name: slideInLeft; 
-moz-animation-duration: 2s; 
-moz-animation-iteration-count: 1;
-moz-animation-timing-function: linear;
-ms-animation-name: slideInLeft; 
-ms-animation-duration: 2s; 
-ms-animation-iteration-count: 1;
-ms-animation-timing-function: linear;
}
.banner-section-one .shape-29.now-in-view,
.slideInDown {
animation-name: slideInDown; 
animation-duration: 2s; 
animation-iteration-count: 1;
animation-timing-function: linear;
-webkit-animation-name: slideInDown; 
-webkit-animation-duration: 2s; 
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: linear;
-moz-animation-name: slideInDown; 
-moz-animation-duration: 2s;
-moz-animation-iteration-count: 1;
-moz-animation-timing-function: linear;
-ms-animation-name: slideInDown; 
-ms-animation-duration: 2s; 
-ms-animation-iteration-count: 1;
-ms-animation-timing-function: linear;
}
@-webkit-keyframes rotateme {
0% {
-webkit-transform: rotate(0deg);
opacity: 1;
}
50% {
-webkit-transform: rotate(180deg);
opacity: 0.7;
}
100% {
-webkit-transform: rotate(360deg);
opacity: 1;
}
}
@-moz-keyframes rotateme {
0% {
-moz-transform: rotate(0deg);
opacity: 1;
}
50% {
-moz-transform: rotate(180deg);
opacity: 0.7;
}
100% {
-moz-transform: rotate(360deg);
opacity: 1;
}
}
@-o-keyframes rotateme {
0% {
-o-transform: rotate(0deg);
opacity: 1;
}
50% {
-o-transform: rotate(180deg);
opacity: 0.7;
}
100% {
-o-transform: rotate(360deg);
opacity: 1;
}
}
@keyframes rotateme {
0% {
transform: rotate(0deg);
opacity: 1;
}
50% {
transform: rotate(180deg);
}
100% {
transform: rotate(360deg);
opacity: 1;
}
}
.banner-section-two .shape-14,
.banner-section-two .shape-16,
.features-section-two .shape-6,
.call-to-action-one .shape-8{
animation-name: rotateme; 
animation-duration: 15s; 
animation-iteration-count: infinite;
animation-timing-function: linear;
-webkit-animation-name: rotateme; 
-webkit-animation-duration: 15s; 
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: rotateme; 
-moz-animation-duration: 15s; 
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: rotateme; 
-ms-animation-duration: 15s; 
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
-o-animation-name: rotateme; 
-o-animation-duration: 15s; 
-o-animation-iteration-count: infinite;
-o-animation-timing-function: linear;
} @-webkit-keyframes float_up_down {
0% {
-webkit-transform: translateY(0px);
transform: translateY(0px);
opacity: 1;
}
50% {
-webkit-transform: translateY(30px);
transform: translateY(30px);
opacity: 1;
}
100% {
-webkit-transform: translateY(0px);
transform: translateY(0px);
opacity: 1;
}
}
@keyframes float_up_down {
0% {
transform: translateY(0px);
transform: translateY(0px);
opacity: 1;
}
50% {
transform: translateY(30px);
transform: translateY(30px);
opacity: 1;
}
100% {
transform: translateY(0px);
transform: translateY(0px);
opacity: 1;
}
}
.banner-section-two .shape-15 {
animation-name: float_up_down; 
animation-duration: 5s; 
animation-iteration-count: infinite;
animation-timing-function: linear;
-webkit-animation-name: float_up_down; 
-webkit-animation-duration: 5s; 
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: float_up_down; 
-moz-animation-duration: 5s; 
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: float_up_down; 
-ms-animation-duration: 5s; 
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
-o-animation-name: float_left_right; 
-o-animation-duration: 5s; 
-o-animation-iteration-count: infinite;
-o-animation-timing-function: linear;
}
@-webkit-keyframes float_up_down_two {
0% {
-webkit-transform: rotateX(0deg) translateY(0px);
transform: rotateX(0deg) translateY(0px)
}
50% {
-webkit-transform: rotateX(0deg) translateY(15px);
transform: rotateX(0deg) translateY(15px)
}
to {
-webkit-transform: rotateX(0deg) translateY(0px);
transform: rotateX(0deg) translateY(0px)
}
}
@keyframes float_up_down_two {
0% {
-webkit-transform: rotateX(0deg) translateY(0px);
transform: rotateX(0deg) translateY(0px)
}
50% {
-webkit-transform: rotateX(0deg) translateY(15px);
transform: rotateX(0deg) translateY(15px)
}
to {
-webkit-transform: rotateX(0deg) translateY(0px);
transform: rotateX(0deg) translateY(0px)
}
}
.image-block-one .image img,
.features-section-eight .image img,
.features-section-five .image img,
.features-section-eleven .image img,
.image-block-three .image-box-one img,
.banner-section-five .image img,
.banner-section-three .image img,
.about-section .shape-5,
.call-to-action-one .shape-5,
.image-block-two .image img{
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
-webkit-animation-name: float_up_down_two;
animation-name: float_up_down_two;
-webkit-animation-duration: 5s;
animation-duration: 5s
} @-webkit-keyframes float_left_right {
0% {
-webkit-transform: translateX(-100px);
transform: translateX(-100px);
opacity: 1;
}
50% {
-webkit-transform: translateX(100px);
transform: translateX(100px);
opacity: 0.40;
}
100% {
-webkit-transform: translateX(-100px);
transform: translateX(-100px);
opacity: 1;
}
}
@keyframes float_left_right {
0% {
-webkit-transform: translateX(-100px);
transform: translateX(-100px);
opacity: 1;
}
50% {
-webkit-transform: translateX(100px);
transform: translateX(100px);
opacity: 0.40;
}
100% {
-webkit-transform: translateX(-100px);
transform: translateX(-100px);
opacity: 1;
}
}
.circle-animation {
animation-name: circle_animation; 
animation-duration: 30s; 
animation-iteration-count: infinite;
animation-timing-function: linear;
-webkit-animation-name: circle_animation; 
-webkit-animation-duration: 30s; 
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: circle_animation; 
-moz-animation-duration: 30s; 
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: circle_animation; 
-ms-animation-duration: 30s; 
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
-o-animation-name: circle_animation; 
-o-animation-duration: 30s; 
-o-animation-iteration-count: infinite;
-o-animation-timing-function: linear;
}
@keyframes circle_animation {
0% {
transform:  translate(165px,-179px)  ;
}
100% {
transform:  translate(-346px,617px)  ;
}
}
@-webkit-keyframes circle_animation {
0% {
-webkit-transform:  translate(165px,-179px)  ;
}
100% {
-webkit-transform:  translate(-346px,617px)  ;
}
}
.banner-section-three .shape-18,
.sec-title .shape-icon,
.subscribe-section-two .icon-buildings,
.subscribe-section .icon-buildings,
.video-section .icon-buildings{
animation-name: float_left_right; 
animation-duration: 30s; 
animation-iteration-count: infinite;
animation-timing-function: linear;
-webkit-animation-name: float_left_right; 
-webkit-animation-duration: 30s; 
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: float_left_right; 
-moz-animation-duration: 30s; 
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: float_left_right; 
-ms-animation-duration: 30s; 
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
-o-animation-name: float_left_right; 
-o-animation-duration: 30s; 
-o-animation-iteration-count: infinite;
-o-animation-timing-function: linear;
}
@-webkit-keyframes float_left_right_two {
0% {
-webkit-transform: translateX(-30px);
opacity: 1;
}
50% {
-webkit-transform: translateX(0px);
opacity: 0.80;
}
100% {
-webkit-transform: translateX(-30px);
opacity: 1;
}
}
@keyframes float_left_right_two {
0% {
transform: translateX(-30px);
opacity: 1;
}
50% {
transform: translateX(0px);
opacity: 0.80;
}
100% {
transform: translateX(-30px);
opacity: 1;
}
}
.banner-section-five .drone,
.banner-section-two .shape-12,
.icon-mountain{
animation-name: float_left_right_two; 
animation-duration: 5s; 
animation-iteration-count: infinite;
animation-timing-function: linear;
-webkit-animation-name: float_left_right_two; 
-webkit-animation-duration: 5s; 
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: float_left_right_two; 
-moz-animation-duration: 5s; 
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: float_left_right_two; 
-ms-animation-duration: 5s; 
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
-o-animation-name: float_left_right_two; 
-o-animation-duration: 5s; 
-o-animation-iteration-count: infinite;
-o-animation-timing-function: linear;
}
@-webkit-keyframes zoom-fade {
0% {
-webkit-transform: scale(0.8);
transform: scale(0.8);
}
50% {
-webkit-transform: scale(1);
transform: scale(1);
}
100% {
-webkit-transform: scale(0.8);
transform: scale(0.8);
}
}
@keyframes zoom-fade {
0% {
-webkit-transform: scale(0.8);
transform: scale(0.8);
}
50% {
-webkit-transform: scale(1);
transform: scale(1);
}
100% {
-webkit-transform: scale(0.8);
transform: scale(0.8);
}
}
.banner-section-two .shape-13,
.testimonial-section .shape-7,
.banner-section-one .video-box .video-link .icon,
.zoomFade{
animation-name: zoom-fade; 
animation-duration: 3s; 
animation-iteration-count: infinite;
animation-timing-function: linear;
-webkit-animation-name: zoom-fade; 
-webkit-animation-duration: 3s; 
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: zoom-fade; 
-moz-animation-duration: 3s; 
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: zoom-fade; 
-ms-animation-duration: 3s; 
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
-o-animation-name: zoom-fade; 
-o-animation-duration: 3s; 
-o-animation-iteration-count: infinite;
-o-animation-timing-function: linear;
}
@-webkit-keyframes zoom-fade-two {
0% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
50% {
-webkit-transform: scale(1);
transform: scale(1);
}
100% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
}
@keyframes zoom-fade-two {
0% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
50% {
-webkit-transform: scale(1);
transform: scale(1);
}
100% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
}
.pricing-table .shape-17,
.integrations-block .anim-icons .icon{
animation-name: zoom-fade-two; 
animation-duration: 3s; 
animation-iteration-count: infinite;
animation-timing-function: linear;
-webkit-animation-name: zoom-fade-two; 
-webkit-animation-duration: 3s; 
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: zoom-fade-two; 
-moz-animation-duration: 3s; 
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: zoom-fade-two; 
-ms-animation-duration: 3s; 
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
-o-animation-name: zoom-fade-two; 
-o-animation-duration: 3s; 
-o-animation-iteration-count: infinite;
-o-animation-timing-function: linear;
}@font-face {
font-family: "Flaticon";
src: url(//aq-technologies.com/wp-content/themes/saasweb/fonts/Flaticon.eot);
src: url(//aq-technologies.com/wp-content/themes/saasweb/fonts/Flaticon.eot?#iefix) format("embedded-opentype"),
url(//aq-technologies.com/wp-content/themes/saasweb/fonts/Flaticon.woff2) format("woff2"),
url(//aq-technologies.com/wp-content/themes/saasweb/fonts/Flaticon.woff) format("woff"),
url(//aq-technologies.com/wp-content/themes/saasweb/fonts/Flaticon.ttf) format("truetype"),
url(//aq-technologies.com/wp-content/themes/saasweb/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(//aq-technologies.com/wp-content/themes/saasweb/fonts/Flaticon.svg#Flaticon) format("svg");
}
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
font-family: Flaticon;
font-style: normal;
}
.flaticon-construction:before { content: "\f100"; }
.flaticon-drawing:before { content: "\f101"; }
.flaticon-group:before { content: "\f102"; }
.flaticon-businessman:before { content: "\f103"; }
.flaticon-arrows:before { content: "\f104"; }
.flaticon-arrows-1:before { content: "\f105"; }
.flaticon-left-arrow:before { content: "\f106"; }
.flaticon-arrows-2:before { content: "\f107"; }
.flaticon-layers:before { content: "\f108"; }
.flaticon-arrows-3:before { content: "\f109"; }
.flaticon-arrows-4:before { content: "\f10a"; }
.flaticon-left-arrow-1:before { content: "\f10b"; }
.flaticon-right-arrow:before { content: "\f10c"; }
.flaticon-note:before { content: "\f10d"; }
.flaticon-favorite:before { content: "\f10e"; }
.flaticon-left:before { content: "\f10f"; }
.flaticon-left-quotes-sign:before { content: "\f110"; }
.flaticon-envelope:before { content: "\f111"; }
.flaticon-remove:before { content: "\f112"; }
.flaticon-multimedia:before { content: "\f113"; }
.flaticon-technology:before { content: "\f114"; }
.flaticon-social:before { content: "\f115"; }
.flaticon-edit:before { content: "\f116"; }
.flaticon-signs:before { content: "\f117"; }
.flaticon-can:before { content: "\f118"; }
.flaticon-check:before { content: "\f119"; }
.flaticon-social-1:before { content: "\f11a"; }
.flaticon-circle:before { content: "\f11b"; }
.flaticon-cross:before { content: "\f11c"; }
.flaticon-agenda:before { content: "\f11d"; }
.flaticon-business:before { content: "\f11e"; }
.flaticon-pencil:before { content: "\f11f"; }
.flaticon-construction-1:before { content: "\f120"; }
.flaticon-profile:before { content: "\f121"; }
.flaticon-suitcase:before { content: "\f122"; }
.flaticon-connection:before { content: "\f123"; }
.flaticon-travel:before { content: "\f124"; }
.flaticon-people:before { content: "\f125"; }
.flaticon-signs-1:before { content: "\f126"; }
.flaticon-location-pin:before { content: "\f127"; }
.flaticon-play-button:before { content: "\f128"; }
.flaticon-diamond:before { content: "\f129"; }
.flaticon-magnifying-glass:before { content: "\f12a"; }
.flaticon-play-button-1:before { content: "\f12b"; }
.flaticon-play-button-2:before { content: "\f12c"; }
.flaticon-quote:before { content: "\f12d"; }
.flaticon-right-quote-symbol:before { content: "\f12e"; }
.flaticon-add-plus-button:before { content: "\f12f"; }
.flaticon-minus:before { content: "\f130"; }
.flaticon-tick:before { content: "\f131"; }
.flaticon-tick-box:before { content: "\f132"; }
.flaticon-clock:before { content: "\f133"; }
.flaticon-phone-call:before { content: "\f134"; }
.flaticon-mail:before { content: "\f135"; }
.flaticon-right:before { content: "\f136"; }
.flaticon-back:before { content: "\f137"; }
.flaticon-add:before { content: "\f138"; }
.flaticon-picture:before { content: "\f139"; }
.flaticon-list:before { content: "\f13a"; }
.flaticon-home:before { content: "\f13b"; }
.flaticon-file:before { content: "\f13c"; }
.flaticon-plus:before { content: "\f13d"; }
.flaticon-star:before { content: "\f13e"; }
.flaticon-idea:before { content: "\f13f"; }
.flaticon-file-1:before { content: "\f140"; }
.flaticon-user:before { content: "\f141"; }
.flaticon-success:before { content: "\f142"; }
.flaticon-clock-1:before { content: "\f143"; }
.flaticon-like:before { content: "\f144"; }
.flaticon-smartphone:before { content: "\f145"; }
.flaticon-calendar:before { content: "\f146"; }
.flaticon-stopwatch:before { content: "\f147"; }
.flaticon-substract:before { content: "\f148"; }
.flaticon-search:before { content: "\f149"; }
.flaticon-search-1:before { content: "\f14a"; }
.flaticon-layers-1:before { content: "\f14b"; }
.flaticon-play-button-3:before { content: "\f14c"; }
.flaticon-file-2:before { content: "\f14d"; }
.flaticon-edit-1:before { content: "\f14e"; }
.flaticon-chat:before { content: "\f14f"; }
.flaticon-trophy:before { content: "\f150"; }
.flaticon-envelope-1:before { content: "\f151"; }
.flaticon-message:before { content: "\f152"; }
.flaticon-monitor:before { content: "\f153"; }
.flaticon-rgb:before { content: "\f154"; }
.flaticon-rocket:before { content: "\f155"; }
.flaticon-statistics:before { content: "\f156"; }
.flaticon-development:before { content: "\f157"; }
.flaticon-support:before { content: "\f158"; }
.flaticon-target:before { content: "\f159"; }
.flaticon-medal:before { content: "\f15a"; }
.flaticon-user-1:before { content: "\f15b"; }
.flaticon-calendar-1:before { content: "\f15c"; }
.flaticon-calendar-2:before { content: "\f15d"; }
.flaticon-next:before { content: "\f15e"; }
.flaticon-next-1:before { content: "\f15f"; }
.flaticon-next-2:before { content: "\f160"; }
.flaticon-send:before { content: "\f161"; }
.flaticon-layer:before { content: "\f162"; }
.flaticon-earnings:before { content: "\f163"; }
.flaticon-stats:before { content: "\f164"; }
.flaticon-graph:before { content: "\f165"; }
.flaticon-graph-1:before { content: "\f166"; }
.flaticon-money:before { content: "\f167"; }
.flaticon-piggy-bank:before { content: "\f168"; }
.flaticon-bank:before { content: "\f169"; }
.flaticon-calendar-3:before { content: "\f16a"; }
.flaticon-laptop:before { content: "\f16b"; }
.flaticon-taxes:before { content: "\f16c"; }
.flaticon-laptop-1:before { content: "\f16d"; }
.flaticon-team:before { content: "\f16e"; }
.flaticon-money-1:before { content: "\f16f"; }
.flaticon-report:before { content: "\f170"; }
.flaticon-code:before { content: "\f171"; }
.flaticon-goal:before { content: "\f172"; }
.flaticon-money-2:before { content: "\f173"; }
.flaticon-interview:before { content: "\f174"; }
.flaticon-profit:before { content: "\f175"; }
.flaticon-contract:before { content: "\f176"; }
.flaticon-think:before { content: "\f177"; }
.flaticon-process:before { content: "\f178"; }
.flaticon-diamond-1:before { content: "\f179"; }
.flaticon-support-1:before { content: "\f17a"; }
.flaticon-graph-2:before { content: "\f17b"; }
.flaticon-structure:before { content: "\f17c"; }
.flaticon-diamond-2:before { content: "\f17d"; }
.flaticon-notification:before { content: "\f17e"; }
.flaticon-chart:before { content: "\f17f"; }
.flaticon-graph-3:before { content: "\f180"; }
.flaticon-open-envelope-with-letter:before { content: "\f181"; }
.flaticon-order:before { content: "\f182"; }
.flaticon-pie-chart:before { content: "\f183"; }.fa,
.fas,
.far,
.fal,
.fab {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
line-height: 1; }
.fa-lg {
font-size: 1.33333em;
line-height: 0.75em;
vertical-align: -.0667em; }
.fa-xs {
font-size: .75em; }
.fa-sm {
font-size: .875em; }
.fa-1x {
font-size: 1em; }
.fa-2x {
font-size: 2em; }
.fa-3x {
font-size: 3em; }
.fa-4x {
font-size: 4em; }
.fa-5x {
font-size: 5em; }
.fa-6x {
font-size: 6em; }
.fa-7x {
font-size: 7em; }
.fa-8x {
font-size: 8em; }
.fa-9x {
font-size: 9em; }
.fa-10x {
font-size: 10em; }
.fa-fw {
text-align: center;
width: 1.25em; }
.fa-ul {
list-style-type: none;
margin-left: 2.5em;
padding-left: 0; }
.fa-ul > li {
position: relative; }
.fa-li {
left: -2em;
position: absolute;
text-align: center;
width: 2em;
line-height: inherit; }
.fa-border {
border: solid 0.08em #eee;
border-radius: .1em;
padding: .2em .25em .15em; }
.fa-pull-left {
float: left; }
.fa-pull-right {
float: right; }
.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
margin-right: .3em; }
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
margin-left: .3em; }
.fa-spin {
-webkit-animation: fa-spin 2s infinite linear;
animation: fa-spin 2s infinite linear; }
.fa-pulse {
-webkit-animation: fa-spin 1s infinite steps(8);
animation: fa-spin 1s infinite steps(8); }
@-webkit-keyframes fa-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg); }
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg); } }
@keyframes fa-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg); }
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg); } }
.fa-rotate-90 {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
-webkit-transform: rotate(90deg);
transform: rotate(90deg); }
.fa-rotate-180 {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
-webkit-transform: rotate(180deg);
transform: rotate(180deg); }
.fa-rotate-270 {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
-webkit-transform: rotate(270deg);
transform: rotate(270deg); }
.fa-flip-horizontal {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
-webkit-transform: scale(-1, 1);
transform: scale(-1, 1); }
.fa-flip-vertical {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
-webkit-transform: scale(1, -1);
transform: scale(1, -1); }
.fa-flip-horizontal.fa-flip-vertical {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
-webkit-transform: scale(-1, -1);
transform: scale(-1, -1); }
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
-webkit-filter: none;
filter: none; }
.fa-stack {
display: inline-block;
height: 2em;
line-height: 2em;
position: relative;
vertical-align: middle;
width: 2.5em; }
.fa-stack-1x,
.fa-stack-2x {
left: 0;
position: absolute;
text-align: center;
width: 100%; }
.fa-stack-1x {
line-height: inherit; }
.fa-stack-2x {
font-size: 2em; }
.fa-inverse {
color: #fff; } .fa-500px:before {
content: "\f26e"; }
.fa-accessible-icon:before {
content: "\f368"; }
.fa-accusoft:before {
content: "\f369"; }
.fa-acquisitions-incorporated:before {
content: "\f6af"; }
.fa-ad:before {
content: "\f641"; }
.fa-address-book:before {
content: "\f2b9"; }
.fa-address-card:before {
content: "\f2bb"; }
.fa-adjust:before {
content: "\f042"; }
.fa-adn:before {
content: "\f170"; }
.fa-adobe:before {
content: "\f778"; }
.fa-adversal:before {
content: "\f36a"; }
.fa-affiliatetheme:before {
content: "\f36b"; }
.fa-air-freshener:before {
content: "\f5d0"; }
.fa-algolia:before {
content: "\f36c"; }
.fa-align-center:before {
content: "\f037"; }
.fa-align-justify:before {
content: "\f039"; }
.fa-align-left:before {
content: "\f036"; }
.fa-align-right:before {
content: "\f038"; }
.fa-alipay:before {
content: "\f642"; }
.fa-allergies:before {
content: "\f461"; }
.fa-amazon:before {
content: "\f270"; }
.fa-amazon-pay:before {
content: "\f42c"; }
.fa-ambulance:before {
content: "\f0f9"; }
.fa-american-sign-language-interpreting:before {
content: "\f2a3"; }
.fa-amilia:before {
content: "\f36d"; }
.fa-anchor:before {
content: "\f13d"; }
.fa-android:before {
content: "\f17b"; }
.fa-angellist:before {
content: "\f209"; }
.fa-angle-double-down:before {
content: "\f103"; }
.fa-angle-double-left:before {
content: "\f100"; }
.fa-angle-double-right:before {
content: "\f101"; }
.fa-angle-double-up:before {
content: "\f102"; }
.fa-angle-down:before {
content: "\f107"; }
.fa-angle-left:before {
content: "\f104"; }
.fa-angle-right:before {
content: "\f105"; }
.fa-angle-up:before {
content: "\f106"; }
.fa-angry:before {
content: "\f556"; }
.fa-angrycreative:before {
content: "\f36e"; }
.fa-angular:before {
content: "\f420"; }
.fa-ankh:before {
content: "\f644"; }
.fa-app-store:before {
content: "\f36f"; }
.fa-app-store-ios:before {
content: "\f370"; }
.fa-apper:before {
content: "\f371"; }
.fa-apple:before {
content: "\f179"; }
.fa-apple-alt:before {
content: "\f5d1"; }
.fa-apple-pay:before {
content: "\f415"; }
.fa-archive:before {
content: "\f187"; }
.fa-archway:before {
content: "\f557"; }
.fa-arrow-alt-circle-down:before {
content: "\f358"; }
.fa-arrow-alt-circle-left:before {
content: "\f359"; }
.fa-arrow-alt-circle-right:before {
content: "\f35a"; }
.fa-arrow-alt-circle-up:before {
content: "\f35b"; }
.fa-arrow-circle-down:before {
content: "\f0ab"; }
.fa-arrow-circle-left:before {
content: "\f0a8"; }
.fa-arrow-circle-right:before {
content: "\f0a9"; }
.fa-arrow-circle-up:before {
content: "\f0aa"; }
.fa-arrow-down:before {
content: "\f063"; }
.fa-arrow-left:before {
content: "\f060"; }
.fa-arrow-right:before {
content: "\f061"; }
.fa-arrow-up:before {
content: "\f062"; }
.fa-arrows-alt:before {
content: "\f0b2"; }
.fa-arrows-alt-h:before {
content: "\f337"; }
.fa-arrows-alt-v:before {
content: "\f338"; }
.fa-artstation:before {
content: "\f77a"; }
.fa-assistive-listening-systems:before {
content: "\f2a2"; }
.fa-asterisk:before {
content: "\f069"; }
.fa-asymmetrik:before {
content: "\f372"; }
.fa-at:before {
content: "\f1fa"; }
.fa-atlas:before {
content: "\f558"; }
.fa-atlassian:before {
content: "\f77b"; }
.fa-atom:before {
content: "\f5d2"; }
.fa-audible:before {
content: "\f373"; }
.fa-audio-description:before {
content: "\f29e"; }
.fa-autoprefixer:before {
content: "\f41c"; }
.fa-avianex:before {
content: "\f374"; }
.fa-aviato:before {
content: "\f421"; }
.fa-award:before {
content: "\f559"; }
.fa-aws:before {
content: "\f375"; }
.fa-baby:before {
content: "\f77c"; }
.fa-baby-carriage:before {
content: "\f77d"; }
.fa-backspace:before {
content: "\f55a"; }
.fa-backward:before {
content: "\f04a"; }
.fa-balance-scale:before {
content: "\f24e"; }
.fa-ban:before {
content: "\f05e"; }
.fa-band-aid:before {
content: "\f462"; }
.fa-bandcamp:before {
content: "\f2d5"; }
.fa-barcode:before {
content: "\f02a"; }
.fa-bars:before {
content: "\f0c9"; }
.fa-baseball-ball:before {
content: "\f433"; }
.fa-basketball-ball:before {
content: "\f434"; }
.fa-bath:before {
content: "\f2cd"; }
.fa-battery-empty:before {
content: "\f244"; }
.fa-battery-full:before {
content: "\f240"; }
.fa-battery-half:before {
content: "\f242"; }
.fa-battery-quarter:before {
content: "\f243"; }
.fa-battery-three-quarters:before {
content: "\f241"; }
.fa-bed:before {
content: "\f236"; }
.fa-beer:before {
content: "\f0fc"; }
.fa-behance:before {
content: "\f1b4"; }
.fa-behance-square:before {
content: "\f1b5"; }
.fa-bell:before {
content: "\f0f3"; }
.fa-bell-slash:before {
content: "\f1f6"; }
.fa-bezier-curve:before {
content: "\f55b"; }
.fa-bible:before {
content: "\f647"; }
.fa-bicycle:before {
content: "\f206"; }
.fa-bimobject:before {
content: "\f378"; }
.fa-binoculars:before {
content: "\f1e5"; }
.fa-biohazard:before {
content: "\f780"; }
.fa-birthday-cake:before {
content: "\f1fd"; }
.fa-bitbucket:before {
content: "\f171"; }
.fa-bitcoin:before {
content: "\f379"; }
.fa-bity:before {
content: "\f37a"; }
.fa-black-tie:before {
content: "\f27e"; }
.fa-blackberry:before {
content: "\f37b"; }
.fa-blender:before {
content: "\f517"; }
.fa-blender-phone:before {
content: "\f6b6"; }
.fa-blind:before {
content: "\f29d"; }
.fa-blog:before {
content: "\f781"; }
.fa-blogger:before {
content: "\f37c"; }
.fa-blogger-b:before {
content: "\f37d"; }
.fa-bluetooth:before {
content: "\f293"; }
.fa-bluetooth-b:before {
content: "\f294"; }
.fa-bold:before {
content: "\f032"; }
.fa-bolt:before {
content: "\f0e7"; }
.fa-bomb:before {
content: "\f1e2"; }
.fa-bone:before {
content: "\f5d7"; }
.fa-bong:before {
content: "\f55c"; }
.fa-book:before {
content: "\f02d"; }
.fa-book-dead:before {
content: "\f6b7"; }
.fa-book-open:before {
content: "\f518"; }
.fa-book-reader:before {
content: "\f5da"; }
.fa-bookmark:before {
content: "\f02e"; }
.fa-bowling-ball:before {
content: "\f436"; }
.fa-box:before {
content: "\f466"; }
.fa-box-open:before {
content: "\f49e"; }
.fa-boxes:before {
content: "\f468"; }
.fa-braille:before {
content: "\f2a1"; }
.fa-brain:before {
content: "\f5dc"; }
.fa-briefcase:before {
content: "\f0b1"; }
.fa-briefcase-medical:before {
content: "\f469"; }
.fa-broadcast-tower:before {
content: "\f519"; }
.fa-broom:before {
content: "\f51a"; }
.fa-brush:before {
content: "\f55d"; }
.fa-btc:before {
content: "\f15a"; }
.fa-bug:before {
content: "\f188"; }
.fa-building:before {
content: "\f1ad"; }
.fa-bullhorn:before {
content: "\f0a1"; }
.fa-bullseye:before {
content: "\f140"; }
.fa-burn:before {
content: "\f46a"; }
.fa-buromobelexperte:before {
content: "\f37f"; }
.fa-bus:before {
content: "\f207"; }
.fa-bus-alt:before {
content: "\f55e"; }
.fa-business-time:before {
content: "\f64a"; }
.fa-buysellads:before {
content: "\f20d"; }
.fa-calculator:before {
content: "\f1ec"; }
.fa-calendar:before {
content: "\f133"; }
.fa-calendar-alt:before {
content: "\f073"; }
.fa-calendar-check:before {
content: "\f274"; }
.fa-calendar-day:before {
content: "\f783"; }
.fa-calendar-minus:before {
content: "\f272"; }
.fa-calendar-plus:before {
content: "\f271"; }
.fa-calendar-times:before {
content: "\f273"; }
.fa-calendar-week:before {
content: "\f784"; }
.fa-camera:before {
content: "\f030"; }
.fa-camera-retro:before {
content: "\f083"; }
.fa-campground:before {
content: "\f6bb"; }
.fa-canadian-maple-leaf:before {
content: "\f785"; }
.fa-candy-cane:before {
content: "\f786"; }
.fa-cannabis:before {
content: "\f55f"; }
.fa-capsules:before {
content: "\f46b"; }
.fa-car:before {
content: "\f1b9"; }
.fa-car-alt:before {
content: "\f5de"; }
.fa-car-battery:before {
content: "\f5df"; }
.fa-car-crash:before {
content: "\f5e1"; }
.fa-car-side:before {
content: "\f5e4"; }
.fa-caret-down:before {
content: "\f0d7"; }
.fa-caret-left:before {
content: "\f0d9"; }
.fa-caret-right:before {
content: "\f0da"; }
.fa-caret-square-down:before {
content: "\f150"; }
.fa-caret-square-left:before {
content: "\f191"; }
.fa-caret-square-right:before {
content: "\f152"; }
.fa-caret-square-up:before {
content: "\f151"; }
.fa-caret-up:before {
content: "\f0d8"; }
.fa-carrot:before {
content: "\f787"; }
.fa-cart-arrow-down:before {
content: "\f218"; }
.fa-cart-plus:before {
content: "\f217"; }
.fa-cash-register:before {
content: "\f788"; }
.fa-cat:before {
content: "\f6be"; }
.fa-cc-amazon-pay:before {
content: "\f42d"; }
.fa-cc-amex:before {
content: "\f1f3"; }
.fa-cc-apple-pay:before {
content: "\f416"; }
.fa-cc-diners-club:before {
content: "\f24c"; }
.fa-cc-discover:before {
content: "\f1f2"; }
.fa-cc-jcb:before {
content: "\f24b"; }
.fa-cc-mastercard:before {
content: "\f1f1"; }
.fa-cc-paypal:before {
content: "\f1f4"; }
.fa-cc-stripe:before {
content: "\f1f5"; }
.fa-cc-visa:before {
content: "\f1f0"; }
.fa-centercode:before {
content: "\f380"; }
.fa-centos:before {
content: "\f789"; }
.fa-certificate:before {
content: "\f0a3"; }
.fa-chair:before {
content: "\f6c0"; }
.fa-chalkboard:before {
content: "\f51b"; }
.fa-chalkboard-teacher:before {
content: "\f51c"; }
.fa-charging-station:before {
content: "\f5e7"; }
.fa-chart-area:before {
content: "\f1fe"; }
.fa-chart-bar:before {
content: "\f080"; }
.fa-chart-line:before {
content: "\f201"; }
.fa-chart-pie:before {
content: "\f200"; }
.fa-check:before {
content: "\f00c"; }
.fa-check-circle:before {
content: "\f058"; }
.fa-check-double:before {
content: "\f560"; }
.fa-check-square:before {
content: "\f14a"; }
.fa-chess:before {
content: "\f439"; }
.fa-chess-bishop:before {
content: "\f43a"; }
.fa-chess-board:before {
content: "\f43c"; }
.fa-chess-king:before {
content: "\f43f"; }
.fa-chess-knight:before {
content: "\f441"; }
.fa-chess-pawn:before {
content: "\f443"; }
.fa-chess-queen:before {
content: "\f445"; }
.fa-chess-rook:before {
content: "\f447"; }
.fa-chevron-circle-down:before {
content: "\f13a"; }
.fa-chevron-circle-left:before {
content: "\f137"; }
.fa-chevron-circle-right:before {
content: "\f138"; }
.fa-chevron-circle-up:before {
content: "\f139"; }
.fa-chevron-down:before {
content: "\f078"; }
.fa-chevron-left:before {
content: "\f053"; }
.fa-chevron-right:before {
content: "\f054"; }
.fa-chevron-up:before {
content: "\f077"; }
.fa-child:before {
content: "\f1ae"; }
.fa-chrome:before {
content: "\f268"; }
.fa-church:before {
content: "\f51d"; }
.fa-circle:before {
content: "\f111"; }
.fa-circle-notch:before {
content: "\f1ce"; }
.fa-city:before {
content: "\f64f"; }
.fa-clipboard:before {
content: "\f328"; }
.fa-clipboard-check:before {
content: "\f46c"; }
.fa-clipboard-list:before {
content: "\f46d"; }
.fa-clock:before {
content: "\f017"; }
.fa-clone:before {
content: "\f24d"; }
.fa-closed-captioning:before {
content: "\f20a"; }
.fa-cloud:before {
content: "\f0c2"; }
.fa-cloud-download-alt:before {
content: "\f381"; }
.fa-cloud-meatball:before {
content: "\f73b"; }
.fa-cloud-moon:before {
content: "\f6c3"; }
.fa-cloud-moon-rain:before {
content: "\f73c"; }
.fa-cloud-rain:before {
content: "\f73d"; }
.fa-cloud-showers-heavy:before {
content: "\f740"; }
.fa-cloud-sun:before {
content: "\f6c4"; }
.fa-cloud-sun-rain:before {
content: "\f743"; }
.fa-cloud-upload-alt:before {
content: "\f382"; }
.fa-cloudscale:before {
content: "\f383"; }
.fa-cloudsmith:before {
content: "\f384"; }
.fa-cloudversify:before {
content: "\f385"; }
.fa-cocktail:before {
content: "\f561"; }
.fa-code:before {
content: "\f121"; }
.fa-code-branch:before {
content: "\f126"; }
.fa-codepen:before {
content: "\f1cb"; }
.fa-codiepie:before {
content: "\f284"; }
.fa-coffee:before {
content: "\f0f4"; }
.fa-cog:before {
content: "\f013"; }
.fa-cogs:before {
content: "\f085"; }
.fa-coins:before {
content: "\f51e"; }
.fa-columns:before {
content: "\f0db"; }
.fa-comment:before {
content: "\f075"; }
.fa-comment-alt:before {
content: "\f27a"; }
.fa-comment-dollar:before {
content: "\f651"; }
.fa-comment-dots:before {
content: "\f4ad"; }
.fa-comment-slash:before {
content: "\f4b3"; }
.fa-comments:before {
content: "\f086"; }
.fa-comments-dollar:before {
content: "\f653"; }
.fa-compact-disc:before {
content: "\f51f"; }
.fa-compass:before {
content: "\f14e"; }
.fa-compress:before {
content: "\f066"; }
.fa-compress-arrows-alt:before {
content: "\f78c"; }
.fa-concierge-bell:before {
content: "\f562"; }
.fa-confluence:before {
content: "\f78d"; }
.fa-connectdevelop:before {
content: "\f20e"; }
.fa-contao:before {
content: "\f26d"; }
.fa-cookie:before {
content: "\f563"; }
.fa-cookie-bite:before {
content: "\f564"; }
.fa-copy:before {
content: "\f0c5"; }
.fa-copyright:before {
content: "\f1f9"; }
.fa-couch:before {
content: "\f4b8"; }
.fa-cpanel:before {
content: "\f388"; }
.fa-creative-commons:before {
content: "\f25e"; }
.fa-creative-commons-by:before {
content: "\f4e7"; }
.fa-creative-commons-nc:before {
content: "\f4e8"; }
.fa-creative-commons-nc-eu:before {
content: "\f4e9"; }
.fa-creative-commons-nc-jp:before {
content: "\f4ea"; }
.fa-creative-commons-nd:before {
content: "\f4eb"; }
.fa-creative-commons-pd:before {
content: "\f4ec"; }
.fa-creative-commons-pd-alt:before {
content: "\f4ed"; }
.fa-creative-commons-remix:before {
content: "\f4ee"; }
.fa-creative-commons-sa:before {
content: "\f4ef"; }
.fa-creative-commons-sampling:before {
content: "\f4f0"; }
.fa-creative-commons-sampling-plus:before {
content: "\f4f1"; }
.fa-creative-commons-share:before {
content: "\f4f2"; }
.fa-creative-commons-zero:before {
content: "\f4f3"; }
.fa-credit-card:before {
content: "\f09d"; }
.fa-critical-role:before {
content: "\f6c9"; }
.fa-crop:before {
content: "\f125"; }
.fa-crop-alt:before {
content: "\f565"; }
.fa-cross:before {
content: "\f654"; }
.fa-crosshairs:before {
content: "\f05b"; }
.fa-crow:before {
content: "\f520"; }
.fa-crown:before {
content: "\f521"; }
.fa-css3:before {
content: "\f13c"; }
.fa-css3-alt:before {
content: "\f38b"; }
.fa-cube:before {
content: "\f1b2"; }
.fa-cubes:before {
content: "\f1b3"; }
.fa-cut:before {
content: "\f0c4"; }
.fa-cuttlefish:before {
content: "\f38c"; }
.fa-d-and-d:before {
content: "\f38d"; }
.fa-d-and-d-beyond:before {
content: "\f6ca"; }
.fa-dashcube:before {
content: "\f210"; }
.fa-database:before {
content: "\f1c0"; }
.fa-deaf:before {
content: "\f2a4"; }
.fa-delicious:before {
content: "\f1a5"; }
.fa-democrat:before {
content: "\f747"; }
.fa-deploydog:before {
content: "\f38e"; }
.fa-deskpro:before {
content: "\f38f"; }
.fa-desktop:before {
content: "\f108"; }
.fa-dev:before {
content: "\f6cc"; }
.fa-deviantart:before {
content: "\f1bd"; }
.fa-dharmachakra:before {
content: "\f655"; }
.fa-dhl:before {
content: "\f790"; }
.fa-diagnoses:before {
content: "\f470"; }
.fa-diaspora:before {
content: "\f791"; }
.fa-dice:before {
content: "\f522"; }
.fa-dice-d20:before {
content: "\f6cf"; }
.fa-dice-d6:before {
content: "\f6d1"; }
.fa-dice-five:before {
content: "\f523"; }
.fa-dice-four:before {
content: "\f524"; }
.fa-dice-one:before {
content: "\f525"; }
.fa-dice-six:before {
content: "\f526"; }
.fa-dice-three:before {
content: "\f527"; }
.fa-dice-two:before {
content: "\f528"; }
.fa-digg:before {
content: "\f1a6"; }
.fa-digital-ocean:before {
content: "\f391"; }
.fa-digital-tachograph:before {
content: "\f566"; }
.fa-directions:before {
content: "\f5eb"; }
.fa-discord:before {
content: "\f392"; }
.fa-discourse:before {
content: "\f393"; }
.fa-divide:before {
content: "\f529"; }
.fa-dizzy:before {
content: "\f567"; }
.fa-dna:before {
content: "\f471"; }
.fa-dochub:before {
content: "\f394"; }
.fa-docker:before {
content: "\f395"; }
.fa-dog:before {
content: "\f6d3"; }
.fa-dollar-sign:before {
content: "\f155"; }
.fa-dolly:before {
content: "\f472"; }
.fa-dolly-flatbed:before {
content: "\f474"; }
.fa-donate:before {
content: "\f4b9"; }
.fa-door-closed:before {
content: "\f52a"; }
.fa-door-open:before {
content: "\f52b"; }
.fa-dot-circle:before {
content: "\f192"; }
.fa-dove:before {
content: "\f4ba"; }
.fa-download:before {
content: "\f019"; }
.fa-draft2digital:before {
content: "\f396"; }
.fa-drafting-compass:before {
content: "\f568"; }
.fa-dragon:before {
content: "\f6d5"; }
.fa-draw-polygon:before {
content: "\f5ee"; }
.fa-dribbble:before {
content: "\f17d"; }
.fa-dribbble-square:before {
content: "\f397"; }
.fa-dropbox:before {
content: "\f16b"; }
.fa-drum:before {
content: "\f569"; }
.fa-drum-steelpan:before {
content: "\f56a"; }
.fa-drumstick-bite:before {
content: "\f6d7"; }
.fa-drupal:before {
content: "\f1a9"; }
.fa-dumbbell:before {
content: "\f44b"; }
.fa-dumpster:before {
content: "\f793"; }
.fa-dumpster-fire:before {
content: "\f794"; }
.fa-dungeon:before {
content: "\f6d9"; }
.fa-dyalog:before {
content: "\f399"; }
.fa-earlybirds:before {
content: "\f39a"; }
.fa-ebay:before {
content: "\f4f4"; }
.fa-edge:before {
content: "\f282"; }
.fa-edit:before {
content: "\f044"; }
.fa-eject:before {
content: "\f052"; }
.fa-elementor:before {
content: "\f430"; }
.fa-ellipsis-h:before {
content: "\f141"; }
.fa-ellipsis-v:before {
content: "\f142"; }
.fa-ello:before {
content: "\f5f1"; }
.fa-ember:before {
content: "\f423"; }
.fa-empire:before {
content: "\f1d1"; }
.fa-envelope:before {
content: "\f0e0"; }
.fa-envelope-open:before {
content: "\f2b6"; }
.fa-envelope-open-text:before {
content: "\f658"; }
.fa-envelope-square:before {
content: "\f199"; }
.fa-envira:before {
content: "\f299"; }
.fa-equals:before {
content: "\f52c"; }
.fa-eraser:before {
content: "\f12d"; }
.fa-erlang:before {
content: "\f39d"; }
.fa-ethereum:before {
content: "\f42e"; }
.fa-ethernet:before {
content: "\f796"; }
.fa-etsy:before {
content: "\f2d7"; }
.fa-euro-sign:before {
content: "\f153"; }
.fa-exchange-alt:before {
content: "\f362"; }
.fa-exclamation:before {
content: "\f12a"; }
.fa-exclamation-circle:before {
content: "\f06a"; }
.fa-exclamation-triangle:before {
content: "\f071"; }
.fa-expand:before {
content: "\f065"; }
.fa-expand-arrows-alt:before {
content: "\f31e"; }
.fa-expeditedssl:before {
content: "\f23e"; }
.fa-external-link-alt:before {
content: "\f35d"; }
.fa-external-link-square-alt:before {
content: "\f360"; }
.fa-eye:before {
content: "\f06e"; }
.fa-eye-dropper:before {
content: "\f1fb"; }
.fa-eye-slash:before {
content: "\f070"; }
.fa-facebook:before {
content: "\f09a"; }
.fa-facebook-f:before {
content: "\f39e"; }
.fa-facebook-messenger:before {
content: "\f39f"; }
.fa-facebook-square:before {
content: "\f082"; }
.fa-fantasy-flight-games:before {
content: "\f6dc"; }
.fa-fast-backward:before {
content: "\f049"; }
.fa-fast-forward:before {
content: "\f050"; }
.fa-fax:before {
content: "\f1ac"; }
.fa-feather:before {
content: "\f52d"; }
.fa-feather-alt:before {
content: "\f56b"; }
.fa-fedex:before {
content: "\f797"; }
.fa-fedora:before {
content: "\f798"; }
.fa-female:before {
content: "\f182"; }
.fa-fighter-jet:before {
content: "\f0fb"; }
.fa-figma:before {
content: "\f799"; }
.fa-file:before {
content: "\f15b"; }
.fa-file-alt:before {
content: "\f15c"; }
.fa-file-archive:before {
content: "\f1c6"; }
.fa-file-audio:before {
content: "\f1c7"; }
.fa-file-code:before {
content: "\f1c9"; }
.fa-file-contract:before {
content: "\f56c"; }
.fa-file-csv:before {
content: "\f6dd"; }
.fa-file-download:before {
content: "\f56d"; }
.fa-file-excel:before {
content: "\f1c3"; }
.fa-file-export:before {
content: "\f56e"; }
.fa-file-image:before {
content: "\f1c5"; }
.fa-file-import:before {
content: "\f56f"; }
.fa-file-invoice:before {
content: "\f570"; }
.fa-file-invoice-dollar:before {
content: "\f571"; }
.fa-file-medical:before {
content: "\f477"; }
.fa-file-medical-alt:before {
content: "\f478"; }
.fa-file-pdf:before {
content: "\f1c1"; }
.fa-file-powerpoint:before {
content: "\f1c4"; }
.fa-file-prescription:before {
content: "\f572"; }
.fa-file-signature:before {
content: "\f573"; }
.fa-file-upload:before {
content: "\f574"; }
.fa-file-video:before {
content: "\f1c8"; }
.fa-file-word:before {
content: "\f1c2"; }
.fa-fill:before {
content: "\f575"; }
.fa-fill-drip:before {
content: "\f576"; }
.fa-film:before {
content: "\f008"; }
.fa-filter:before {
content: "\f0b0"; }
.fa-fingerprint:before {
content: "\f577"; }
.fa-fire:before {
content: "\f06d"; }
.fa-fire-alt:before {
content: "\f7e4"; }
.fa-fire-extinguisher:before {
content: "\f134"; }
.fa-firefox:before {
content: "\f269"; }
.fa-first-aid:before {
content: "\f479"; }
.fa-first-order:before {
content: "\f2b0"; }
.fa-first-order-alt:before {
content: "\f50a"; }
.fa-firstdraft:before {
content: "\f3a1"; }
.fa-fish:before {
content: "\f578"; }
.fa-fist-raised:before {
content: "\f6de"; }
.fa-flag:before {
content: "\f024"; }
.fa-flag-checkered:before {
content: "\f11e"; }
.fa-flag-usa:before {
content: "\f74d"; }
.fa-flask:before {
content: "\f0c3"; }
.fa-flickr:before {
content: "\f16e"; }
.fa-flipboard:before {
content: "\f44d"; }
.fa-flushed:before {
content: "\f579"; }
.fa-fly:before {
content: "\f417"; }
.fa-folder:before {
content: "\f07b"; }
.fa-folder-minus:before {
content: "\f65d"; }
.fa-folder-open:before {
content: "\f07c"; }
.fa-folder-plus:before {
content: "\f65e"; }
.fa-font:before {
content: "\f031"; }
.fa-font-awesome:before {
content: "\f2b4"; }
.fa-font-awesome-alt:before {
content: "\f35c"; }
.fa-font-awesome-flag:before {
content: "\f425"; }
.fa-font-awesome-logo-full:before {
content: "\f4e6"; }
.fa-fonticons:before {
content: "\f280"; }
.fa-fonticons-fi:before {
content: "\f3a2"; }
.fa-football-ball:before {
content: "\f44e"; }
.fa-fort-awesome:before {
content: "\f286"; }
.fa-fort-awesome-alt:before {
content: "\f3a3"; }
.fa-forumbee:before {
content: "\f211"; }
.fa-forward:before {
content: "\f04e"; }
.fa-foursquare:before {
content: "\f180"; }
.fa-free-code-camp:before {
content: "\f2c5"; }
.fa-freebsd:before {
content: "\f3a4"; }
.fa-frog:before {
content: "\f52e"; }
.fa-frown:before {
content: "\f119"; }
.fa-frown-open:before {
content: "\f57a"; }
.fa-fulcrum:before {
content: "\f50b"; }
.fa-funnel-dollar:before {
content: "\f662"; }
.fa-futbol:before {
content: "\f1e3"; }
.fa-galactic-republic:before {
content: "\f50c"; }
.fa-galactic-senate:before {
content: "\f50d"; }
.fa-gamepad:before {
content: "\f11b"; }
.fa-gas-pump:before {
content: "\f52f"; }
.fa-gavel:before {
content: "\f0e3"; }
.fa-gem:before {
content: "\f3a5"; }
.fa-genderless:before {
content: "\f22d"; }
.fa-get-pocket:before {
content: "\f265"; }
.fa-gg:before {
content: "\f260"; }
.fa-gg-circle:before {
content: "\f261"; }
.fa-ghost:before {
content: "\f6e2"; }
.fa-gift:before {
content: "\f06b"; }
.fa-gifts:before {
content: "\f79c"; }
.fa-git:before {
content: "\f1d3"; }
.fa-git-square:before {
content: "\f1d2"; }
.fa-github:before {
content: "\f09b"; }
.fa-github-alt:before {
content: "\f113"; }
.fa-github-square:before {
content: "\f092"; }
.fa-gitkraken:before {
content: "\f3a6"; }
.fa-gitlab:before {
content: "\f296"; }
.fa-gitter:before {
content: "\f426"; }
.fa-glass-cheers:before {
content: "\f79f"; }
.fa-glass-martini:before {
content: "\f000"; }
.fa-glass-martini-alt:before {
content: "\f57b"; }
.fa-glass-whiskey:before {
content: "\f7a0"; }
.fa-glasses:before {
content: "\f530"; }
.fa-glide:before {
content: "\f2a5"; }
.fa-glide-g:before {
content: "\f2a6"; }
.fa-globe:before {
content: "\f0ac"; }
.fa-globe-africa:before {
content: "\f57c"; }
.fa-globe-americas:before {
content: "\f57d"; }
.fa-globe-asia:before {
content: "\f57e"; }
.fa-globe-europe:before {
content: "\f7a2"; }
.fa-gofore:before {
content: "\f3a7"; }
.fa-golf-ball:before {
content: "\f450"; }
.fa-goodreads:before {
content: "\f3a8"; }
.fa-goodreads-g:before {
content: "\f3a9"; }
.fa-google:before {
content: "\f1a0"; }
.fa-google-drive:before {
content: "\f3aa"; }
.fa-google-play:before {
content: "\f3ab"; }
.fa-google-plus:before {
content: "\f2b3"; }
.fa-google-plus-g:before {
content: "\f0d5"; }
.fa-google-plus-square:before {
content: "\f0d4"; }
.fa-google-wallet:before {
content: "\f1ee"; }
.fa-gopuram:before {
content: "\f664"; }
.fa-graduation-cap:before {
content: "\f19d"; }
.fa-gratipay:before {
content: "\f184"; }
.fa-grav:before {
content: "\f2d6"; }
.fa-greater-than:before {
content: "\f531"; }
.fa-greater-than-equal:before {
content: "\f532"; }
.fa-grimace:before {
content: "\f57f"; }
.fa-grin:before {
content: "\f580"; }
.fa-grin-alt:before {
content: "\f581"; }
.fa-grin-beam:before {
content: "\f582"; }
.fa-grin-beam-sweat:before {
content: "\f583"; }
.fa-grin-hearts:before {
content: "\f584"; }
.fa-grin-squint:before {
content: "\f585"; }
.fa-grin-squint-tears:before {
content: "\f586"; }
.fa-grin-stars:before {
content: "\f587"; }
.fa-grin-tears:before {
content: "\f588"; }
.fa-grin-tongue:before {
content: "\f589"; }
.fa-grin-tongue-squint:before {
content: "\f58a"; }
.fa-grin-tongue-wink:before {
content: "\f58b"; }
.fa-grin-wink:before {
content: "\f58c"; }
.fa-grip-horizontal:before {
content: "\f58d"; }
.fa-grip-lines:before {
content: "\f7a4"; }
.fa-grip-lines-vertical:before {
content: "\f7a5"; }
.fa-grip-vertical:before {
content: "\f58e"; }
.fa-gripfire:before {
content: "\f3ac"; }
.fa-grunt:before {
content: "\f3ad"; }
.fa-guitar:before {
content: "\f7a6"; }
.fa-gulp:before {
content: "\f3ae"; }
.fa-h-square:before {
content: "\f0fd"; }
.fa-hacker-news:before {
content: "\f1d4"; }
.fa-hacker-news-square:before {
content: "\f3af"; }
.fa-hackerrank:before {
content: "\f5f7"; }
.fa-hammer:before {
content: "\f6e3"; }
.fa-hamsa:before {
content: "\f665"; }
.fa-hand-holding:before {
content: "\f4bd"; }
.fa-hand-holding-heart:before {
content: "\f4be"; }
.fa-hand-holding-usd:before {
content: "\f4c0"; }
.fa-hand-lizard:before {
content: "\f258"; }
.fa-hand-paper:before {
content: "\f256"; }
.fa-hand-peace:before {
content: "\f25b"; }
.fa-hand-point-down:before {
content: "\f0a7"; }
.fa-hand-point-left:before {
content: "\f0a5"; }
.fa-hand-point-right:before {
content: "\f0a4"; }
.fa-hand-point-up:before {
content: "\f0a6"; }
.fa-hand-pointer:before {
content: "\f25a"; }
.fa-hand-rock:before {
content: "\f255"; }
.fa-hand-scissors:before {
content: "\f257"; }
.fa-hand-spock:before {
content: "\f259"; }
.fa-hands:before {
content: "\f4c2"; }
.fa-hands-helping:before {
content: "\f4c4"; }
.fa-handshake:before {
content: "\f2b5"; }
.fa-hanukiah:before {
content: "\f6e6"; }
.fa-hashtag:before {
content: "\f292"; }
.fa-hat-wizard:before {
content: "\f6e8"; }
.fa-haykal:before {
content: "\f666"; }
.fa-hdd:before {
content: "\f0a0"; }
.fa-heading:before {
content: "\f1dc"; }
.fa-headphones:before {
content: "\f025"; }
.fa-headphones-alt:before {
content: "\f58f"; }
.fa-headset:before {
content: "\f590"; }
.fa-heart:before {
content: "\f004"; }
.fa-heart-broken:before {
content: "\f7a9"; }
.fa-heartbeat:before {
content: "\f21e"; }
.fa-helicopter:before {
content: "\f533"; }
.fa-highlighter:before {
content: "\f591"; }
.fa-hiking:before {
content: "\f6ec"; }
.fa-hippo:before {
content: "\f6ed"; }
.fa-hips:before {
content: "\f452"; }
.fa-hire-a-helper:before {
content: "\f3b0"; }
.fa-history:before {
content: "\f1da"; }
.fa-hockey-puck:before {
content: "\f453"; }
.fa-holly-berry:before {
content: "\f7aa"; }
.fa-home:before {
content: "\f015"; }
.fa-hooli:before {
content: "\f427"; }
.fa-hornbill:before {
content: "\f592"; }
.fa-horse:before {
content: "\f6f0"; }
.fa-horse-head:before {
content: "\f7ab"; }
.fa-hospital:before {
content: "\f0f8"; }
.fa-hospital-alt:before {
content: "\f47d"; }
.fa-hospital-symbol:before {
content: "\f47e"; }
.fa-hot-tub:before {
content: "\f593"; }
.fa-hotel:before {
content: "\f594"; }
.fa-hotjar:before {
content: "\f3b1"; }
.fa-hourglass:before {
content: "\f254"; }
.fa-hourglass-end:before {
content: "\f253"; }
.fa-hourglass-half:before {
content: "\f252"; }
.fa-hourglass-start:before {
content: "\f251"; }
.fa-house-damage:before {
content: "\f6f1"; }
.fa-houzz:before {
content: "\f27c"; }
.fa-hryvnia:before {
content: "\f6f2"; }
.fa-html5:before {
content: "\f13b"; }
.fa-hubspot:before {
content: "\f3b2"; }
.fa-i-cursor:before {
content: "\f246"; }
.fa-icicles:before {
content: "\f7ad"; }
.fa-id-badge:before {
content: "\f2c1"; }
.fa-id-card:before {
content: "\f2c2"; }
.fa-id-card-alt:before {
content: "\f47f"; }
.fa-igloo:before {
content: "\f7ae"; }
.fa-image:before {
content: "\f03e"; }
.fa-images:before {
content: "\f302"; }
.fa-imdb:before {
content: "\f2d8"; }
.fa-inbox:before {
content: "\f01c"; }
.fa-indent:before {
content: "\f03c"; }
.fa-industry:before {
content: "\f275"; }
.fa-infinity:before {
content: "\f534"; }
.fa-info:before {
content: "\f129"; }
.fa-info-circle:before {
content: "\f05a"; }
.fa-instagram:before {
content: "\f16d"; }
.fa-intercom:before {
content: "\f7af"; }
.fa-internet-explorer:before {
content: "\f26b"; }
.fa-invision:before {
content: "\f7b0"; }
.fa-ioxhost:before {
content: "\f208"; }
.fa-italic:before {
content: "\f033"; }
.fa-itunes:before {
content: "\f3b4"; }
.fa-itunes-note:before {
content: "\f3b5"; }
.fa-java:before {
content: "\f4e4"; }
.fa-jedi:before {
content: "\f669"; }
.fa-jedi-order:before {
content: "\f50e"; }
.fa-jenkins:before {
content: "\f3b6"; }
.fa-jira:before {
content: "\f7b1"; }
.fa-joget:before {
content: "\f3b7"; }
.fa-joint:before {
content: "\f595"; }
.fa-joomla:before {
content: "\f1aa"; }
.fa-journal-whills:before {
content: "\f66a"; }
.fa-js:before {
content: "\f3b8"; }
.fa-js-square:before {
content: "\f3b9"; }
.fa-jsfiddle:before {
content: "\f1cc"; }
.fa-kaaba:before {
content: "\f66b"; }
.fa-kaggle:before {
content: "\f5fa"; }
.fa-key:before {
content: "\f084"; }
.fa-keybase:before {
content: "\f4f5"; }
.fa-keyboard:before {
content: "\f11c"; }
.fa-keycdn:before {
content: "\f3ba"; }
.fa-khanda:before {
content: "\f66d"; }
.fa-kickstarter:before {
content: "\f3bb"; }
.fa-kickstarter-k:before {
content: "\f3bc"; }
.fa-kiss:before {
content: "\f596"; }
.fa-kiss-beam:before {
content: "\f597"; }
.fa-kiss-wink-heart:before {
content: "\f598"; }
.fa-kiwi-bird:before {
content: "\f535"; }
.fa-korvue:before {
content: "\f42f"; }
.fa-landmark:before {
content: "\f66f"; }
.fa-language:before {
content: "\f1ab"; }
.fa-laptop:before {
content: "\f109"; }
.fa-laptop-code:before {
content: "\f5fc"; }
.fa-laravel:before {
content: "\f3bd"; }
.fa-lastfm:before {
content: "\f202"; }
.fa-lastfm-square:before {
content: "\f203"; }
.fa-laugh:before {
content: "\f599"; }
.fa-laugh-beam:before {
content: "\f59a"; }
.fa-laugh-squint:before {
content: "\f59b"; }
.fa-laugh-wink:before {
content: "\f59c"; }
.fa-layer-group:before {
content: "\f5fd"; }
.fa-leaf:before {
content: "\f06c"; }
.fa-leanpub:before {
content: "\f212"; }
.fa-lemon:before {
content: "\f094"; }
.fa-less:before {
content: "\f41d"; }
.fa-less-than:before {
content: "\f536"; }
.fa-less-than-equal:before {
content: "\f537"; }
.fa-level-down-alt:before {
content: "\f3be"; }
.fa-level-up-alt:before {
content: "\f3bf"; }
.fa-life-ring:before {
content: "\f1cd"; }
.fa-lightbulb:before {
content: "\f0eb"; }
.fa-line:before {
content: "\f3c0"; }
.fa-link:before {
content: "\f0c1"; }
.fa-linkedin:before {
content: "\f08c"; }
.fa-linkedin-in:before {
content: "\f0e1"; }
.fa-linode:before {
content: "\f2b8"; }
.fa-linux:before {
content: "\f17c"; }
.fa-lira-sign:before {
content: "\f195"; }
.fa-list:before {
content: "\f03a"; }
.fa-list-alt:before {
content: "\f022"; }
.fa-list-ol:before {
content: "\f0cb"; }
.fa-list-ul:before {
content: "\f0ca"; }
.fa-location-arrow:before {
content: "\f124"; }
.fa-lock:before {
content: "\f023"; }
.fa-lock-open:before {
content: "\f3c1"; }
.fa-long-arrow-alt-down:before {
content: "\f309"; }
.fa-long-arrow-alt-left:before {
content: "\f30a"; }
.fa-long-arrow-alt-right:before {
content: "\f30b"; }
.fa-long-arrow-alt-up:before {
content: "\f30c"; }
.fa-low-vision:before {
content: "\f2a8"; }
.fa-luggage-cart:before {
content: "\f59d"; }
.fa-lyft:before {
content: "\f3c3"; }
.fa-magento:before {
content: "\f3c4"; }
.fa-magic:before {
content: "\f0d0"; }
.fa-magnet:before {
content: "\f076"; }
.fa-mail-bulk:before {
content: "\f674"; }
.fa-mailchimp:before {
content: "\f59e"; }
.fa-male:before {
content: "\f183"; }
.fa-mandalorian:before {
content: "\f50f"; }
.fa-map:before {
content: "\f279"; }
.fa-map-marked:before {
content: "\f59f"; }
.fa-map-marked-alt:before {
content: "\f5a0"; }
.fa-map-marker:before {
content: "\f041"; }
.fa-map-marker-alt:before {
content: "\f3c5"; }
.fa-map-pin:before {
content: "\f276"; }
.fa-map-signs:before {
content: "\f277"; }
.fa-markdown:before {
content: "\f60f"; }
.fa-marker:before {
content: "\f5a1"; }
.fa-mars:before {
content: "\f222"; }
.fa-mars-double:before {
content: "\f227"; }
.fa-mars-stroke:before {
content: "\f229"; }
.fa-mars-stroke-h:before {
content: "\f22b"; }
.fa-mars-stroke-v:before {
content: "\f22a"; }
.fa-mask:before {
content: "\f6fa"; }
.fa-mastodon:before {
content: "\f4f6"; }
.fa-maxcdn:before {
content: "\f136"; }
.fa-medal:before {
content: "\f5a2"; }
.fa-medapps:before {
content: "\f3c6"; }
.fa-medium:before {
content: "\f23a"; }
.fa-medium-m:before {
content: "\f3c7"; }
.fa-medkit:before {
content: "\f0fa"; }
.fa-medrt:before {
content: "\f3c8"; }
.fa-meetup:before {
content: "\f2e0"; }
.fa-megaport:before {
content: "\f5a3"; }
.fa-meh:before {
content: "\f11a"; }
.fa-meh-blank:before {
content: "\f5a4"; }
.fa-meh-rolling-eyes:before {
content: "\f5a5"; }
.fa-memory:before {
content: "\f538"; }
.fa-mendeley:before {
content: "\f7b3"; }
.fa-menorah:before {
content: "\f676"; }
.fa-mercury:before {
content: "\f223"; }
.fa-meteor:before {
content: "\f753"; }
.fa-microchip:before {
content: "\f2db"; }
.fa-microphone:before {
content: "\f130"; }
.fa-microphone-alt:before {
content: "\f3c9"; }
.fa-microphone-alt-slash:before {
content: "\f539"; }
.fa-microphone-slash:before {
content: "\f131"; }
.fa-microscope:before {
content: "\f610"; }
.fa-microsoft:before {
content: "\f3ca"; }
.fa-minus:before {
content: "\f068"; }
.fa-minus-circle:before {
content: "\f056"; }
.fa-minus-square:before {
content: "\f146"; }
.fa-mitten:before {
content: "\f7b5"; }
.fa-mix:before {
content: "\f3cb"; }
.fa-mixcloud:before {
content: "\f289"; }
.fa-mizuni:before {
content: "\f3cc"; }
.fa-mobile:before {
content: "\f10b"; }
.fa-mobile-alt:before {
content: "\f3cd"; }
.fa-modx:before {
content: "\f285"; }
.fa-monero:before {
content: "\f3d0"; }
.fa-money-bill:before {
content: "\f0d6"; }
.fa-money-bill-alt:before {
content: "\f3d1"; }
.fa-money-bill-wave:before {
content: "\f53a"; }
.fa-money-bill-wave-alt:before {
content: "\f53b"; }
.fa-money-check:before {
content: "\f53c"; }
.fa-money-check-alt:before {
content: "\f53d"; }
.fa-monument:before {
content: "\f5a6"; }
.fa-moon:before {
content: "\f186"; }
.fa-mortar-pestle:before {
content: "\f5a7"; }
.fa-mosque:before {
content: "\f678"; }
.fa-motorcycle:before {
content: "\f21c"; }
.fa-mountain:before {
content: "\f6fc"; }
.fa-mouse-pointer:before {
content: "\f245"; }
.fa-mug-hot:before {
content: "\f7b6"; }
.fa-music:before {
content: "\f001"; }
.fa-napster:before {
content: "\f3d2"; }
.fa-neos:before {
content: "\f612"; }
.fa-network-wired:before {
content: "\f6ff"; }
.fa-neuter:before {
content: "\f22c"; }
.fa-newspaper:before {
content: "\f1ea"; }
.fa-nimblr:before {
content: "\f5a8"; }
.fa-nintendo-switch:before {
content: "\f418"; }
.fa-node:before {
content: "\f419"; }
.fa-node-js:before {
content: "\f3d3"; }
.fa-not-equal:before {
content: "\f53e"; }
.fa-notes-medical:before {
content: "\f481"; }
.fa-npm:before {
content: "\f3d4"; }
.fa-ns8:before {
content: "\f3d5"; }
.fa-nutritionix:before {
content: "\f3d6"; }
.fa-object-group:before {
content: "\f247"; }
.fa-object-ungroup:before {
content: "\f248"; }
.fa-odnoklassniki:before {
content: "\f263"; }
.fa-odnoklassniki-square:before {
content: "\f264"; }
.fa-oil-can:before {
content: "\f613"; }
.fa-old-republic:before {
content: "\f510"; }
.fa-om:before {
content: "\f679"; }
.fa-opencart:before {
content: "\f23d"; }
.fa-openid:before {
content: "\f19b"; }
.fa-opera:before {
content: "\f26a"; }
.fa-optin-monster:before {
content: "\f23c"; }
.fa-osi:before {
content: "\f41a"; }
.fa-otter:before {
content: "\f700"; }
.fa-outdent:before {
content: "\f03b"; }
.fa-page4:before {
content: "\f3d7"; }
.fa-pagelines:before {
content: "\f18c"; }
.fa-paint-brush:before {
content: "\f1fc"; }
.fa-paint-roller:before {
content: "\f5aa"; }
.fa-palette:before {
content: "\f53f"; }
.fa-palfed:before {
content: "\f3d8"; }
.fa-pallet:before {
content: "\f482"; }
.fa-paper-plane:before {
content: "\f1d8"; }
.fa-paperclip:before {
content: "\f0c6"; }
.fa-parachute-box:before {
content: "\f4cd"; }
.fa-paragraph:before {
content: "\f1dd"; }
.fa-parking:before {
content: "\f540"; }
.fa-passport:before {
content: "\f5ab"; }
.fa-pastafarianism:before {
content: "\f67b"; }
.fa-paste:before {
content: "\f0ea"; }
.fa-patreon:before {
content: "\f3d9"; }
.fa-pause:before {
content: "\f04c"; }
.fa-pause-circle:before {
content: "\f28b"; }
.fa-paw:before {
content: "\f1b0"; }
.fa-paypal:before {
content: "\f1ed"; }
.fa-peace:before {
content: "\f67c"; }
.fa-pen:before {
content: "\f304"; }
.fa-pen-alt:before {
content: "\f305"; }
.fa-pen-fancy:before {
content: "\f5ac"; }
.fa-pen-nib:before {
content: "\f5ad"; }
.fa-pen-square:before {
content: "\f14b"; }
.fa-pencil-alt:before {
content: "\f303"; }
.fa-pencil-ruler:before {
content: "\f5ae"; }
.fa-penny-arcade:before {
content: "\f704"; }
.fa-people-carry:before {
content: "\f4ce"; }
.fa-percent:before {
content: "\f295"; }
.fa-percentage:before {
content: "\f541"; }
.fa-periscope:before {
content: "\f3da"; }
.fa-person-booth:before {
content: "\f756"; }
.fa-phabricator:before {
content: "\f3db"; }
.fa-phoenix-framework:before {
content: "\f3dc"; }
.fa-phoenix-squadron:before {
content: "\f511"; }
.fa-phone:before {
content: "\f095"; }
.fa-phone-slash:before {
content: "\f3dd"; }
.fa-phone-square:before {
content: "\f098"; }
.fa-phone-volume:before {
content: "\f2a0"; }
.fa-php:before {
content: "\f457"; }
.fa-pied-piper:before {
content: "\f2ae"; }
.fa-pied-piper-alt:before {
content: "\f1a8"; }
.fa-pied-piper-hat:before {
content: "\f4e5"; }
.fa-pied-piper-pp:before {
content: "\f1a7"; }
.fa-piggy-bank:before {
content: "\f4d3"; }
.fa-pills:before {
content: "\f484"; }
.fa-pinterest:before {
content: "\f0d2"; }
.fa-pinterest-p:before {
content: "\f231"; }
.fa-pinterest-square:before {
content: "\f0d3"; }
.fa-place-of-worship:before {
content: "\f67f"; }
.fa-plane:before {
content: "\f072"; }
.fa-plane-arrival:before {
content: "\f5af"; }
.fa-plane-departure:before {
content: "\f5b0"; }
.fa-play:before {
content: "\f04b"; }
.fa-play-circle:before {
content: "\f144"; }
.fa-playstation:before {
content: "\f3df"; }
.fa-plug:before {
content: "\f1e6"; }
.fa-plus:before {
content: "\f067"; }
.fa-plus-circle:before {
content: "\f055"; }
.fa-plus-square:before {
content: "\f0fe"; }
.fa-podcast:before {
content: "\f2ce"; }
.fa-poll:before {
content: "\f681"; }
.fa-poll-h:before {
content: "\f682"; }
.fa-poo:before {
content: "\f2fe"; }
.fa-poo-storm:before {
content: "\f75a"; }
.fa-poop:before {
content: "\f619"; }
.fa-portrait:before {
content: "\f3e0"; }
.fa-pound-sign:before {
content: "\f154"; }
.fa-power-off:before {
content: "\f011"; }
.fa-pray:before {
content: "\f683"; }
.fa-praying-hands:before {
content: "\f684"; }
.fa-prescription:before {
content: "\f5b1"; }
.fa-prescription-bottle:before {
content: "\f485"; }
.fa-prescription-bottle-alt:before {
content: "\f486"; }
.fa-print:before {
content: "\f02f"; }
.fa-procedures:before {
content: "\f487"; }
.fa-product-hunt:before {
content: "\f288"; }
.fa-project-diagram:before {
content: "\f542"; }
.fa-pushed:before {
content: "\f3e1"; }
.fa-puzzle-piece:before {
content: "\f12e"; }
.fa-python:before {
content: "\f3e2"; }
.fa-qq:before {
content: "\f1d6"; }
.fa-qrcode:before {
content: "\f029"; }
.fa-question:before {
content: "\f128"; }
.fa-question-circle:before {
content: "\f059"; }
.fa-quidditch:before {
content: "\f458"; }
.fa-quinscape:before {
content: "\f459"; }
.fa-quora:before {
content: "\f2c4"; }
.fa-quote-left:before {
content: "\f10d"; }
.fa-quote-right:before {
content: "\f10e"; }
.fa-quran:before {
content: "\f687"; }
.fa-r-project:before {
content: "\f4f7"; }
.fa-radiation:before {
content: "\f7b9"; }
.fa-radiation-alt:before {
content: "\f7ba"; }
.fa-rainbow:before {
content: "\f75b"; }
.fa-random:before {
content: "\f074"; }
.fa-raspberry-pi:before {
content: "\f7bb"; }
.fa-ravelry:before {
content: "\f2d9"; }
.fa-react:before {
content: "\f41b"; }
.fa-reacteurope:before {
content: "\f75d"; }
.fa-readme:before {
content: "\f4d5"; }
.fa-rebel:before {
content: "\f1d0"; }
.fa-receipt:before {
content: "\f543"; }
.fa-recycle:before {
content: "\f1b8"; }
.fa-red-river:before {
content: "\f3e3"; }
.fa-reddit:before {
content: "\f1a1"; }
.fa-reddit-alien:before {
content: "\f281"; }
.fa-reddit-square:before {
content: "\f1a2"; }
.fa-redhat:before {
content: "\f7bc"; }
.fa-redo:before {
content: "\f01e"; }
.fa-redo-alt:before {
content: "\f2f9"; }
.fa-registered:before {
content: "\f25d"; }
.fa-renren:before {
content: "\f18b"; }
.fa-reply:before {
content: "\f3e5"; }
.fa-reply-all:before {
content: "\f122"; }
.fa-replyd:before {
content: "\f3e6"; }
.fa-republican:before {
content: "\f75e"; }
.fa-researchgate:before {
content: "\f4f8"; }
.fa-resolving:before {
content: "\f3e7"; }
.fa-restroom:before {
content: "\f7bd"; }
.fa-retweet:before {
content: "\f079"; }
.fa-rev:before {
content: "\f5b2"; }
.fa-ribbon:before {
content: "\f4d6"; }
.fa-ring:before {
content: "\f70b"; }
.fa-road:before {
content: "\f018"; }
.fa-robot:before {
content: "\f544"; }
.fa-rocket:before {
content: "\f135"; }
.fa-rocketchat:before {
content: "\f3e8"; }
.fa-rockrms:before {
content: "\f3e9"; }
.fa-route:before {
content: "\f4d7"; }
.fa-rss:before {
content: "\f09e"; }
.fa-rss-square:before {
content: "\f143"; }
.fa-ruble-sign:before {
content: "\f158"; }
.fa-ruler:before {
content: "\f545"; }
.fa-ruler-combined:before {
content: "\f546"; }
.fa-ruler-horizontal:before {
content: "\f547"; }
.fa-ruler-vertical:before {
content: "\f548"; }
.fa-running:before {
content: "\f70c"; }
.fa-rupee-sign:before {
content: "\f156"; }
.fa-sad-cry:before {
content: "\f5b3"; }
.fa-sad-tear:before {
content: "\f5b4"; }
.fa-safari:before {
content: "\f267"; }
.fa-sass:before {
content: "\f41e"; }
.fa-satellite:before {
content: "\f7bf"; }
.fa-satellite-dish:before {
content: "\f7c0"; }
.fa-save:before {
content: "\f0c7"; }
.fa-schlix:before {
content: "\f3ea"; }
.fa-school:before {
content: "\f549"; }
.fa-screwdriver:before {
content: "\f54a"; }
.fa-scribd:before {
content: "\f28a"; }
.fa-scroll:before {
content: "\f70e"; }
.fa-sd-card:before {
content: "\f7c2"; }
.fa-search:before {
content: "\f002"; }
.fa-search-dollar:before {
content: "\f688"; }
.fa-search-location:before {
content: "\f689"; }
.fa-search-minus:before {
content: "\f010"; }
.fa-search-plus:before {
content: "\f00e"; }
.fa-searchengin:before {
content: "\f3eb"; }
.fa-seedling:before {
content: "\f4d8"; }
.fa-sellcast:before {
content: "\f2da"; }
.fa-sellsy:before {
content: "\f213"; }
.fa-server:before {
content: "\f233"; }
.fa-servicestack:before {
content: "\f3ec"; }
.fa-shapes:before {
content: "\f61f"; }
.fa-share:before {
content: "\f064"; }
.fa-share-alt:before {
content: "\f1e0"; }
.fa-share-alt-square:before {
content: "\f1e1"; }
.fa-share-square:before {
content: "\f14d"; }
.fa-shekel-sign:before {
content: "\f20b"; }
.fa-shield-alt:before {
content: "\f3ed"; }
.fa-ship:before {
content: "\f21a"; }
.fa-shipping-fast:before {
content: "\f48b"; }
.fa-shirtsinbulk:before {
content: "\f214"; }
.fa-shoe-prints:before {
content: "\f54b"; }
.fa-shopping-bag:before {
content: "\f290"; }
.fa-shopping-basket:before {
content: "\f291"; }
.fa-shopping-cart:before {
content: "\f07a"; }
.fa-shopware:before {
content: "\f5b5"; }
.fa-shower:before {
content: "\f2cc"; }
.fa-shuttle-van:before {
content: "\f5b6"; }
.fa-sign:before {
content: "\f4d9"; }
.fa-sign-in-alt:before {
content: "\f2f6"; }
.fa-sign-language:before {
content: "\f2a7"; }
.fa-sign-out-alt:before {
content: "\f2f5"; }
.fa-signal:before {
content: "\f012"; }
.fa-signature:before {
content: "\f5b7"; }
.fa-sim-card:before {
content: "\f7c4"; }
.fa-simplybuilt:before {
content: "\f215"; }
.fa-sistrix:before {
content: "\f3ee"; }
.fa-sitemap:before {
content: "\f0e8"; }
.fa-sith:before {
content: "\f512"; }
.fa-skating:before {
content: "\f7c5"; }
.fa-sketch:before {
content: "\f7c6"; }
.fa-skiing:before {
content: "\f7c9"; }
.fa-skiing-nordic:before {
content: "\f7ca"; }
.fa-skull:before {
content: "\f54c"; }
.fa-skull-crossbones:before {
content: "\f714"; }
.fa-skyatlas:before {
content: "\f216"; }
.fa-skype:before {
content: "\f17e"; }
.fa-slack:before {
content: "\f198"; }
.fa-slack-hash:before {
content: "\f3ef"; }
.fa-slash:before {
content: "\f715"; }
.fa-sleigh:before {
content: "\f7cc"; }
.fa-sliders-h:before {
content: "\f1de"; }
.fa-slideshare:before {
content: "\f1e7"; }
.fa-smile:before {
content: "\f118"; }
.fa-smile-beam:before {
content: "\f5b8"; }
.fa-smile-wink:before {
content: "\f4da"; }
.fa-smog:before {
content: "\f75f"; }
.fa-smoking:before {
content: "\f48d"; }
.fa-smoking-ban:before {
content: "\f54d"; }
.fa-sms:before {
content: "\f7cd"; }
.fa-snapchat:before {
content: "\f2ab"; }
.fa-snapchat-ghost:before {
content: "\f2ac"; }
.fa-snapchat-square:before {
content: "\f2ad"; }
.fa-snowboarding:before {
content: "\f7ce"; }
.fa-snowflake:before {
content: "\f2dc"; }
.fa-snowman:before {
content: "\f7d0"; }
.fa-snowplow:before {
content: "\f7d2"; }
.fa-socks:before {
content: "\f696"; }
.fa-solar-panel:before {
content: "\f5ba"; }
.fa-sort:before {
content: "\f0dc"; }
.fa-sort-alpha-down:before {
content: "\f15d"; }
.fa-sort-alpha-up:before {
content: "\f15e"; }
.fa-sort-amount-down:before {
content: "\f160"; }
.fa-sort-amount-up:before {
content: "\f161"; }
.fa-sort-down:before {
content: "\f0dd"; }
.fa-sort-numeric-down:before {
content: "\f162"; }
.fa-sort-numeric-up:before {
content: "\f163"; }
.fa-sort-up:before {
content: "\f0de"; }
.fa-soundcloud:before {
content: "\f1be"; }
.fa-sourcetree:before {
content: "\f7d3"; }
.fa-spa:before {
content: "\f5bb"; }
.fa-space-shuttle:before {
content: "\f197"; }
.fa-speakap:before {
content: "\f3f3"; }
.fa-spider:before {
content: "\f717"; }
.fa-spinner:before {
content: "\f110"; }
.fa-splotch:before {
content: "\f5bc"; }
.fa-spotify:before {
content: "\f1bc"; }
.fa-spray-can:before {
content: "\f5bd"; }
.fa-square:before {
content: "\f0c8"; }
.fa-square-full:before {
content: "\f45c"; }
.fa-square-root-alt:before {
content: "\f698"; }
.fa-squarespace:before {
content: "\f5be"; }
.fa-stack-exchange:before {
content: "\f18d"; }
.fa-stack-overflow:before {
content: "\f16c"; }
.fa-stamp:before {
content: "\f5bf"; }
.fa-star:before {
content: "\f005"; }
.fa-star-and-crescent:before {
content: "\f699"; }
.fa-star-half:before {
content: "\f089"; }
.fa-star-half-alt:before {
content: "\f5c0"; }
.fa-star-of-david:before {
content: "\f69a"; }
.fa-star-of-life:before {
content: "\f621"; }
.fa-staylinked:before {
content: "\f3f5"; }
.fa-steam:before {
content: "\f1b6"; }
.fa-steam-square:before {
content: "\f1b7"; }
.fa-steam-symbol:before {
content: "\f3f6"; }
.fa-step-backward:before {
content: "\f048"; }
.fa-step-forward:before {
content: "\f051"; }
.fa-stethoscope:before {
content: "\f0f1"; }
.fa-sticker-mule:before {
content: "\f3f7"; }
.fa-sticky-note:before {
content: "\f249"; }
.fa-stop:before {
content: "\f04d"; }
.fa-stop-circle:before {
content: "\f28d"; }
.fa-stopwatch:before {
content: "\f2f2"; }
.fa-store:before {
content: "\f54e"; }
.fa-store-alt:before {
content: "\f54f"; }
.fa-strava:before {
content: "\f428"; }
.fa-stream:before {
content: "\f550"; }
.fa-street-view:before {
content: "\f21d"; }
.fa-strikethrough:before {
content: "\f0cc"; }
.fa-stripe:before {
content: "\f429"; }
.fa-stripe-s:before {
content: "\f42a"; }
.fa-stroopwafel:before {
content: "\f551"; }
.fa-studiovinari:before {
content: "\f3f8"; }
.fa-stumbleupon:before {
content: "\f1a4"; }
.fa-stumbleupon-circle:before {
content: "\f1a3"; }
.fa-subscript:before {
content: "\f12c"; }
.fa-subway:before {
content: "\f239"; }
.fa-suitcase:before {
content: "\f0f2"; }
.fa-suitcase-rolling:before {
content: "\f5c1"; }
.fa-sun:before {
content: "\f185"; }
.fa-superpowers:before {
content: "\f2dd"; }
.fa-superscript:before {
content: "\f12b"; }
.fa-supple:before {
content: "\f3f9"; }
.fa-surprise:before {
content: "\f5c2"; }
.fa-suse:before {
content: "\f7d6"; }
.fa-swatchbook:before {
content: "\f5c3"; }
.fa-swimmer:before {
content: "\f5c4"; }
.fa-swimming-pool:before {
content: "\f5c5"; }
.fa-synagogue:before {
content: "\f69b"; }
.fa-sync:before {
content: "\f021"; }
.fa-sync-alt:before {
content: "\f2f1"; }
.fa-syringe:before {
content: "\f48e"; }
.fa-table:before {
content: "\f0ce"; }
.fa-table-tennis:before {
content: "\f45d"; }
.fa-tablet:before {
content: "\f10a"; }
.fa-tablet-alt:before {
content: "\f3fa"; }
.fa-tablets:before {
content: "\f490"; }
.fa-tachometer-alt:before {
content: "\f3fd"; }
.fa-tag:before {
content: "\f02b"; }
.fa-tags:before {
content: "\f02c"; }
.fa-tape:before {
content: "\f4db"; }
.fa-tasks:before {
content: "\f0ae"; }
.fa-taxi:before {
content: "\f1ba"; }
.fa-teamspeak:before {
content: "\f4f9"; }
.fa-teeth:before {
content: "\f62e"; }
.fa-teeth-open:before {
content: "\f62f"; }
.fa-telegram:before {
content: "\f2c6"; }
.fa-telegram-plane:before {
content: "\f3fe"; }
.fa-temperature-high:before {
content: "\f769"; }
.fa-temperature-low:before {
content: "\f76b"; }
.fa-tencent-weibo:before {
content: "\f1d5"; }
.fa-tenge:before {
content: "\f7d7"; }
.fa-terminal:before {
content: "\f120"; }
.fa-text-height:before {
content: "\f034"; }
.fa-text-width:before {
content: "\f035"; }
.fa-th:before {
content: "\f00a"; }
.fa-th-large:before {
content: "\f009"; }
.fa-th-list:before {
content: "\f00b"; }
.fa-the-red-yeti:before {
content: "\f69d"; }
.fa-theater-masks:before {
content: "\f630"; }
.fa-themeco:before {
content: "\f5c6"; }
.fa-themeisle:before {
content: "\f2b2"; }
.fa-thermometer:before {
content: "\f491"; }
.fa-thermometer-empty:before {
content: "\f2cb"; }
.fa-thermometer-full:before {
content: "\f2c7"; }
.fa-thermometer-half:before {
content: "\f2c9"; }
.fa-thermometer-quarter:before {
content: "\f2ca"; }
.fa-thermometer-three-quarters:before {
content: "\f2c8"; }
.fa-think-peaks:before {
content: "\f731"; }
.fa-thumbs-down:before {
content: "\f165"; }
.fa-thumbs-up:before {
content: "\f164"; }
.fa-thumbtack:before {
content: "\f08d"; }
.fa-ticket-alt:before {
content: "\f3ff"; }
.fa-times:before {
content: "\f00d"; }
.fa-times-circle:before {
content: "\f057"; }
.fa-tint:before {
content: "\f043"; }
.fa-tint-slash:before {
content: "\f5c7"; }
.fa-tired:before {
content: "\f5c8"; }
.fa-toggle-off:before {
content: "\f204"; }
.fa-toggle-on:before {
content: "\f205"; }
.fa-toilet:before {
content: "\f7d8"; }
.fa-toilet-paper:before {
content: "\f71e"; }
.fa-toolbox:before {
content: "\f552"; }
.fa-tools:before {
content: "\f7d9"; }
.fa-tooth:before {
content: "\f5c9"; }
.fa-torah:before {
content: "\f6a0"; }
.fa-torii-gate:before {
content: "\f6a1"; }
.fa-tractor:before {
content: "\f722"; }
.fa-trade-federation:before {
content: "\f513"; }
.fa-trademark:before {
content: "\f25c"; }
.fa-traffic-light:before {
content: "\f637"; }
.fa-train:before {
content: "\f238"; }
.fa-tram:before {
content: "\f7da"; }
.fa-transgender:before {
content: "\f224"; }
.fa-transgender-alt:before {
content: "\f225"; }
.fa-trash:before {
content: "\f1f8"; }
.fa-trash-alt:before {
content: "\f2ed"; }
.fa-tree:before {
content: "\f1bb"; }
.fa-trello:before {
content: "\f181"; }
.fa-tripadvisor:before {
content: "\f262"; }
.fa-trophy:before {
content: "\f091"; }
.fa-truck:before {
content: "\f0d1"; }
.fa-truck-loading:before {
content: "\f4de"; }
.fa-truck-monster:before {
content: "\f63b"; }
.fa-truck-moving:before {
content: "\f4df"; }
.fa-truck-pickup:before {
content: "\f63c"; }
.fa-tshirt:before {
content: "\f553"; }
.fa-tty:before {
content: "\f1e4"; }
.fa-tumblr:before {
content: "\f173"; }
.fa-tumblr-square:before {
content: "\f174"; }
.fa-tv:before {
content: "\f26c"; }
.fa-twitch:before {
content: "\f1e8"; }
.fa-twitter:before {
content: "\f099"; }
.fa-twitter-square:before {
content: "\f081"; }
.fa-typo3:before {
content: "\f42b"; }
.fa-uber:before {
content: "\f402"; }
.fa-ubuntu:before {
content: "\f7df"; }
.fa-uikit:before {
content: "\f403"; }
.fa-umbrella:before {
content: "\f0e9"; }
.fa-umbrella-beach:before {
content: "\f5ca"; }
.fa-underline:before {
content: "\f0cd"; }
.fa-undo:before {
content: "\f0e2"; }
.fa-undo-alt:before {
content: "\f2ea"; }
.fa-uniregistry:before {
content: "\f404"; }
.fa-universal-access:before {
content: "\f29a"; }
.fa-university:before {
content: "\f19c"; }
.fa-unlink:before {
content: "\f127"; }
.fa-unlock:before {
content: "\f09c"; }
.fa-unlock-alt:before {
content: "\f13e"; }
.fa-untappd:before {
content: "\f405"; }
.fa-upload:before {
content: "\f093"; }
.fa-ups:before {
content: "\f7e0"; }
.fa-usb:before {
content: "\f287"; }
.fa-user:before {
content: "\f007"; }
.fa-user-alt:before {
content: "\f406"; }
.fa-user-alt-slash:before {
content: "\f4fa"; }
.fa-user-astronaut:before {
content: "\f4fb"; }
.fa-user-check:before {
content: "\f4fc"; }
.fa-user-circle:before {
content: "\f2bd"; }
.fa-user-clock:before {
content: "\f4fd"; }
.fa-user-cog:before {
content: "\f4fe"; }
.fa-user-edit:before {
content: "\f4ff"; }
.fa-user-friends:before {
content: "\f500"; }
.fa-user-graduate:before {
content: "\f501"; }
.fa-user-injured:before {
content: "\f728"; }
.fa-user-lock:before {
content: "\f502"; }
.fa-user-md:before {
content: "\f0f0"; }
.fa-user-minus:before {
content: "\f503"; }
.fa-user-ninja:before {
content: "\f504"; }
.fa-user-plus:before {
content: "\f234"; }
.fa-user-secret:before {
content: "\f21b"; }
.fa-user-shield:before {
content: "\f505"; }
.fa-user-slash:before {
content: "\f506"; }
.fa-user-tag:before {
content: "\f507"; }
.fa-user-tie:before {
content: "\f508"; }
.fa-user-times:before {
content: "\f235"; }
.fa-users:before {
content: "\f0c0"; }
.fa-users-cog:before {
content: "\f509"; }
.fa-usps:before {
content: "\f7e1"; }
.fa-ussunnah:before {
content: "\f407"; }
.fa-utensil-spoon:before {
content: "\f2e5"; }
.fa-utensils:before {
content: "\f2e7"; }
.fa-vaadin:before {
content: "\f408"; }
.fa-vector-square:before {
content: "\f5cb"; }
.fa-venus:before {
content: "\f221"; }
.fa-venus-double:before {
content: "\f226"; }
.fa-venus-mars:before {
content: "\f228"; }
.fa-viacoin:before {
content: "\f237"; }
.fa-viadeo:before {
content: "\f2a9"; }
.fa-viadeo-square:before {
content: "\f2aa"; }
.fa-vial:before {
content: "\f492"; }
.fa-vials:before {
content: "\f493"; }
.fa-viber:before {
content: "\f409"; }
.fa-video:before {
content: "\f03d"; }
.fa-video-slash:before {
content: "\f4e2"; }
.fa-vihara:before {
content: "\f6a7"; }
.fa-vimeo:before {
content: "\f40a"; }
.fa-vimeo-square:before {
content: "\f194"; }
.fa-vimeo-v:before {
content: "\f27d"; }
.fa-vine:before {
content: "\f1ca"; }
.fa-vk:before {
content: "\f189"; }
.fa-vnv:before {
content: "\f40b"; }
.fa-volleyball-ball:before {
content: "\f45f"; }
.fa-volume-down:before {
content: "\f027"; }
.fa-volume-mute:before {
content: "\f6a9"; }
.fa-volume-off:before {
content: "\f026"; }
.fa-volume-up:before {
content: "\f028"; }
.fa-vote-yea:before {
content: "\f772"; }
.fa-vr-cardboard:before {
content: "\f729"; }
.fa-vuejs:before {
content: "\f41f"; }
.fa-walking:before {
content: "\f554"; }
.fa-wallet:before {
content: "\f555"; }
.fa-warehouse:before {
content: "\f494"; }
.fa-water:before {
content: "\f773"; }
.fa-weebly:before {
content: "\f5cc"; }
.fa-weibo:before {
content: "\f18a"; }
.fa-weight:before {
content: "\f496"; }
.fa-weight-hanging:before {
content: "\f5cd"; }
.fa-weixin:before {
content: "\f1d7"; }
.fa-whatsapp:before {
content: "\f232"; }
.fa-whatsapp-square:before {
content: "\f40c"; }
.fa-wheelchair:before {
content: "\f193"; }
.fa-whmcs:before {
content: "\f40d"; }
.fa-wifi:before {
content: "\f1eb"; }
.fa-wikipedia-w:before {
content: "\f266"; }
.fa-wind:before {
content: "\f72e"; }
.fa-window-close:before {
content: "\f410"; }
.fa-window-maximize:before {
content: "\f2d0"; }
.fa-window-minimize:before {
content: "\f2d1"; }
.fa-window-restore:before {
content: "\f2d2"; }
.fa-windows:before {
content: "\f17a"; }
.fa-wine-bottle:before {
content: "\f72f"; }
.fa-wine-glass:before {
content: "\f4e3"; }
.fa-wine-glass-alt:before {
content: "\f5ce"; }
.fa-wix:before {
content: "\f5cf"; }
.fa-wizards-of-the-coast:before {
content: "\f730"; }
.fa-wolf-pack-battalion:before {
content: "\f514"; }
.fa-won-sign:before {
content: "\f159"; }
.fa-wordpress:before {
content: "\f19a"; }
.fa-wordpress-simple:before {
content: "\f411"; }
.fa-wpbeginner:before {
content: "\f297"; }
.fa-wpexplorer:before {
content: "\f2de"; }
.fa-wpforms:before {
content: "\f298"; }
.fa-wpressr:before {
content: "\f3e4"; }
.fa-wrench:before {
content: "\f0ad"; }
.fa-x-ray:before {
content: "\f497"; }
.fa-xbox:before {
content: "\f412"; }
.fa-xing:before {
content: "\f168"; }
.fa-xing-square:before {
content: "\f169"; }
.fa-y-combinator:before {
content: "\f23b"; }
.fa-yahoo:before {
content: "\f19e"; }
.fa-yandex:before {
content: "\f413"; }
.fa-yandex-international:before {
content: "\f414"; }
.fa-yarn:before {
content: "\f7e3"; }
.fa-yelp:before {
content: "\f1e9"; }
.fa-yen-sign:before {
content: "\f157"; }
.fa-yin-yang:before {
content: "\f6ad"; }
.fa-yoast:before {
content: "\f2b1"; }
.fa-youtube:before {
content: "\f167"; }
.fa-youtube-square:before {
content: "\f431"; }
.fa-zhihu:before {
content: "\f63f"; }
.sr-only {
border: 0;
clip: rect(0, 0, 0, 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px; }
.sr-only-focusable:active, .sr-only-focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto; }
@font-face {
font-family: 'Font Awesome 5 Brands';
font-style: normal;
font-weight: normal;
src: url(//aq-technologies.com/wp-content/themes/saasweb/fonts/fa-brands-400.eot);
src: url(//aq-technologies.com/wp-content/themes/saasweb/fonts/fa-brands-400.eot?#iefix) format("embedded-opentype"), url(//aq-technologies.com/wp-content/themes/saasweb/fonts/fa-brands-400.woff2) format("woff2"), url(//aq-technologies.com/wp-content/themes/saasweb/fonts/fa-brands-400.woff) format("woff"), url(//aq-technologies.com/wp-content/themes/saasweb/fonts/fa-brands-400.ttf) format("truetype"), url(//aq-technologies.com/wp-content/themes/saasweb/fonts/fa-brands-400.svg#fontawesome) format("svg"); }
.fab {
font-family: 'Font Awesome 5 Brands'; }
@font-face {
font-family: 'Font Awesome 5 Free';
font-style: normal;
font-weight: 400;
src: url(//aq-technologies.com/wp-content/themes/saasweb/fonts/fa-regular-400.eot);
src: url(//aq-technologies.com/wp-content/themes/saasweb/fonts/fa-regular-400.eot?#iefix) format("embedded-opentype"), url(//aq-technologies.com/wp-content/themes/saasweb/fonts/fa-regular-400.woff2) format("woff2"), url(//aq-technologies.com/wp-content/themes/saasweb/fonts/fa-regular-400.woff) format("woff"), url(//aq-technologies.com/wp-content/themes/saasweb/fonts/fa-regular-400.ttf) format("truetype"), url(//aq-technologies.com/wp-content/themes/saasweb/fonts/fa-regular-400.svg#fontawesome) format("svg"); }
.far {
font-family: 'Font Awesome 5 Free';
font-weight: 400; }
@font-face {
font-family: 'Font Awesome 5 Free';
font-style: normal;
font-weight: 900;
src: url(//aq-technologies.com/wp-content/themes/saasweb/fonts/fa-solid-900.eot);
src: url(//aq-technologies.com/wp-content/themes/saasweb/fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(//aq-technologies.com/wp-content/themes/saasweb/fonts/fa-solid-900.woff2) format("woff2"), url(//aq-technologies.com/wp-content/themes/saasweb/fonts/fa-solid-900.woff) format("woff"), url(//aq-technologies.com/wp-content/themes/saasweb/fonts/fa-solid-900.ttf) format("truetype"), url(//aq-technologies.com/wp-content/themes/saasweb/fonts/fa-solid-900.svg#fontawesome) format("svg"); }
.fa,
.fas {
font-family: 'Font Awesome 5 Free';
font-weight: 900; }* {
margin: 0px;
padding: 0px;
border: none;
outline: none;
} body {
font-size: 16px;
color: #555;
line-height: 1.8em;
font-weight: 300;
background: #ffffff;
background-size: cover;
background-repeat: no-repeat;
background-position: center top;
-webkit-font-smoothing: antialiased;
font-family: 'Poppins', sans-serif;
}
a {
text-decoration: none;
cursor: pointer;
color: #0eaf96;
}
.no-padding {
padding: 0px !important;
}
a:hover,
a:focus,
a:visited {
text-decoration: none;
outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
position: relative;
font-weight: normal;
margin: 0px;
background: none;
line-height: 1.6em;
font-family: 'Poppins', sans-serif;
color: #222;
}
input,
button,
select,
textarea {}
button:focus {
outline: none;
}
p {
margin-bottom: 20px;
}
.text {
font-size: 15px;
color: #555;
}
.text.light {
color: #fff;
}
.border-bottom {
border-bottom: 1px solid #eee !important;
}
.curve-border-bottom:before {
position: absolute;
content: '';
width: 100%;
height: 1px;
background: #eee;
left: 0;
bottom: 0;
transform: rotate(-1.5deg);
}
.strike-through {
text-decoration: line-through;
}
.page-wrapper {
position: relative;
margin: 0 auto;
width: 100%;
min-width: 300px;
background: #fff;
z-index: 9;
overflow: hidden;
}
ul,
li {
list-style: none;
padding: 0px;
margin: 0px;
}
@media (min-width: 1200px) {
.container {
padding: 0px;
}
}
.auto-container{
position:static;
max-width:1200px;
padding:0px 15px;
margin:0 auto;
}
.theme-btn {
display: inline-block;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.grey-bg {
background-color: #f7f7fa !important;
}
.anim-icons .icon {
position: absolute;
background-repeat: no-repeat;
background-position: center;
} .sp-one {
padding: 110px 0;
}
.sp-two {
padding: 110px 0 80px;
}
.sp-three {
padding: 110px 0 60px;
}
.sp-four {
padding: 110px 0 0px;
}
.sp-five {
padding: 0px 0 110px;
}
.sp-six {
padding: 0px 0 80px;
}
.projects-block-one.mix {
display: none;
}
.projects-block-two.mix {
display: none;
}
.theme-color {
color: #0eaf96;
}
img {
display: inline-block;
max-width: 100%;
}
.preloader {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 999999;
background-color: #03112e;
background-position: center center;
background-repeat: no-repeat;
}
.arlo_tm_preloader{
position: fixed;
background-color: #fff;
z-index: 9999999;
height: 100%;
width: 100%;	
-webkit-transition: .2s all ease;
-o-transition: .2s all ease;
transition: .2s all ease;
-webkit-transition-delay: .5s;
-o-transition-delay: .5s;
transition-delay: .5s; 
} 
.preloader .spinner_wrap{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
z-index: 33333;
}
.preloader.loaded {
opacity: 0;
visibility: hidden;
}
.preloader .spinner {
width: 70px;
height: 70px;
background-color: #fff;
border-radius: 100%;  
-webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
animation: sk-scaleout 1.0s infinite ease-in-out;
}
@-webkit-keyframes sk-scaleout {
0% { -webkit-transform: scale(0) }
100% {
-webkit-transform: scale(1.0);
opacity: 0;
}
}
@keyframes sk-scaleout {
0% { 
-webkit-transform: scale(0);
transform: scale(0);
} 100% {
-webkit-transform: scale(1.0);
transform: scale(1.0);
opacity: 0;
}
} .scroll-to-top {
width: 60px;
height: 60px;
position: fixed;
bottom: 30px;
right: 30px;
line-height: 66px;
font-size: 15px;
border-radius: 50%;
z-index: 99;
display: none;
color: #fff;
text-align: center;
cursor: pointer;
background: #0eaf96;
-webkit-animation: pulse 2s infinite;
-o-animation: pulse 2s infinite;
animation: pulse 2s infinite;
box-shadow: 0px 11px 21.25px 3.75px rgba(0, 0, 0, 0.06);
}
.scroll-to-top span:before {
font-size: 27px;
}
.scroll-to-top:after {
position: absolute;
z-index: -1;
content: '';
top: 100%;
left: 5%;
height: 10px;
width: 90%;
opacity: 1;
background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
} .parallax-one {
position: relative;
background-repeat: no-repeat;
background-size: cover;
}
.parallax-one:before {
position: absolute;
content: '';
background: rgba(30, 67, 152, 0.8);
width: 100%;
height: 100%;
left: 0;
top: 0;
} .parallax-two {
position: relative;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
.parallax-two:before {
position: absolute;
content: '';
background: rgba(0, 0, 0, 0.6);
width: 100%;
height: 100%;
left: 0;
top: 0;
} .parallax-three {
position: relative;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
.parallax-three:before {
position: absolute;
content: '';
background: rgba(0, 0, 0, 0.05);
width: 100%;
height: 100%;
left: 0;
top: 0;
} .form-group .ui-selectmenu-button.ui-button {
width: 100%;
font-size: 14px;
font-style: normal;
height: 50px;
padding: 7px 20px;
line-height: 30px;
color: #333333;
border-radius: 0px;
border: 1px solid #e5e5e5;
background: #ffffff;
}
.form-group .ui-button .ui-icon {
background: none;
position: relative;
top: 3px;
text-indent: 0px;
color: #333333;
}
.form-group .ui-button .ui-icon:before {
font-family: 'Font Awesome 5 Free';
content: "\f107";
position: absolute;
right: 0px;
top: 2px !important;
top: 13px;
width: 10px;
height: 20px;
display: block;
color: #333333;
line-height: 20px;
font-size: 16px;
font-weight: normal;
text-align: center;
z-index: 5;
}
.ui-widget.ui-widget-content {
border: 1px solid #e0e0e0;
font-family: 'Poppins', sans-serif;
}
.ui-menu .ui-menu-item {
font-size: 14px;
border-bottom: 1px solid #e0e0e0;
}
.ui-menu .ui-menu-item:last-child {
border: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active {
background-color: #0eaf96;
}
.ui-menu .ui-menu-item-wrapper {
position: relative;
display: block;
padding: 8px 20px;
font-size: 14px;
line-height: 24px;
}
.ui-menu-item:hover {
background-color: #17519d;
} .owl-dots-none .owl-dots {
display: none;
} .owl-dot-style-one .owl-dots {
position: relative;
text-align: center;
}
.owl-dot-style-one .owl-dots .owl-dot {
position: relative;
display: inline-block;
margin: 0px 5px;
}
.owl-dot-style-one .owl-dots .owl-dot span {
position: relative;
display: block;
width: 10px;
height: 10px;
border-radius: 50%;
border: 1px solid #0eaf96;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.owl-dot-style-one .owl-dots .owl-dot.active span,
.owl-dot-style-one .owl-dots .owl-dot:hover span {
background: #0eaf96;
border-color: #0eaf96;
} .owl-dot-style-two .owl-dots {
position: relative;
text-align: center;
line-height: 15px;
}
.owl-dot-style-two .owl-dots .owl-dot {
position: relative;
display: inline-block;
margin: 0px 5px;
}
.owl-dot-style-two .owl-dots .owl-dot span {
position: relative;
display: block;
width: 15px;
height: 15px;
border-radius: 50%;
border: 2px solid #e8e8e8;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.owl-dot-style-two .owl-dots .owl-dot span:before {
position: absolute;
content: '';
background: #e8e8e8;
width: 5px;
height: 5px;
border-radius: 50%;
left: 3px;
top: 3px;
}
.owl-dot-style-two .owl-dots .owl-dot.active span,
.owl-dot-style-two .owl-dots .owl-dot:hover span {
background: #0eaf96;
border-color: #0eaf96;
} .owl-dot-style-three .owl-dots {
position: relative;
text-align: center;
line-height: 15px;
}
.owl-dot-style-three .owl-dots .owl-dot {
position: relative;
display: inline-block;
margin: 0px 5px;
}
.owl-dot-style-three .owl-dots .owl-dot span {
position: relative;
display: block;
width: 10px;
height: 10px;
border-radius: 6px;
background: #5650c3;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.owl-dot-style-three .owl-dots .owl-dot.active span,
.owl-dot-style-three .owl-dots .owl-dot:hover span {
background: #fff;
} .owl-nav-none .owl-nav {
display: none;
}
.owl-nav-style-one .owl-nav {
margin: 0px;
margin-top: 80px;
padding: 0px;
text-align: center;
}
.owl-nav-style-one .owl-nav .owl-next,
.owl-nav-style-one .owl-nav .owl-prev {
position: relative;
border-radius: 50%;
color: #fff;
font-size: 14px;
text-align: center;
background-color: #403ab4;
box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
width: 50px;
height: 50px;
line-height: 50px;
margin: 0 8px;
display: inline-block;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
}
.owl-nav-style-one .owl-nav .owl-prev {
left: 0px;
}
.owl-nav-style-one .owl-nav .owl-next {
right: 0px;
}
.owl-nav-style-one .owl-nav .owl-next:hover,
.owl-nav-style-one .owl-nav .owl-prev:hover {
background-color: #0daf96;
box-shadow: 0px 11px 21.25px 3.75px rgba(167, 238, 227, 0.65);
} .owl-nav-style-two .owl-nav {
padding: 0px;
text-align: center;
bottom: 100%;
top: inherit;
position: absolute;
left: inherit;
right: 0;
}
.owl-nav-style-two .owl-nav .owl-next,
.owl-nav-style-two .owl-nav .owl-prev {
position: relative;
width: 50px;
height: 50px;
margin: 0 8px 30px;
display: inline-block;
line-height: 46px;
border: 1px solid #f0f0f0;
text-align: center;
font-size: 24px;
color: #949494;
border-radius: 50%;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
}
.owl-nav-style-two .carousel-outer:hover .owl-nav .owl-next,
.owl-nav-style-two .carousel-outer:hover .owl-nav .owl-prev {
opacity: 1;
visibility: visible;
}
.owl-nav-style-two .owl-nav .owl-prev {
left: 0px;
}
.owl-nav-style-two .owl-nav .owl-next {
right: 0px;
}
.owl-nav-style-two .owl-nav .owl-next:hover,
.owl-nav-style-two .owl-nav .owl-prev:hover {
color: #0eaf96;
border-color: #0eaf96;
} .owl-nav-style-three .owl-nav {
padding: 0px;
top: 50%;
margin-top: -40px;
position: absolute;
left: -45%;
right: -45%;
}
.owl-nav-style-three .owl-nav .owl-next,
.owl-nav-style-three .owl-nav .owl-prev {
position: relative;
width: 50px;
height: 50px;
line-height: 48px;
border: 1px solid #fff;
text-align: center;
font-size: 24px;
color: #ffffff;
border-radius: 50%;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
}
.owl-nav-style-three .carousel-outer:hover .owl-nav .owl-next,
.owl-nav-style-three .carousel-outer:hover .owl-nav .owl-prev {
opacity: 1;
visibility: visible;
}
.owl-nav-style-three .owl-nav .owl-prev {
left: -25px;
float:  left;
}
.owl-nav-style-three .owl-nav .owl-next {
right: -25px;
float:  right;
}
.owl-nav-style-three .owl-nav .owl-next:hover,
.owl-nav-style-three .owl-nav .owl-prev:hover {
color: #0eaf96;
border-color: #0eaf96;
} .owl-nav-style-four .owl-nav {
padding: 0px;
top: 50%;
position: absolute;
left: 0;
right: 0;
}
.owl-nav-style-four .owl-nav .owl-next,
.owl-nav-style-four .owl-nav .owl-prev {
position: relative;
width: 50px;
height: 50px;
line-height: 48px;
text-align: center;
font-size: 20px;
color: #b2b2b2;
border-radius: 50%;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
}
.owl-nav-style-four .carousel-outer:hover .owl-nav .owl-next,
.owl-nav-style-four .carousel-outer:hover .owl-nav .owl-prev {
opacity: 1;
visibility: visible;
}
.owl-nav-style-four .owl-nav .owl-prev {
left: 45px;
top: 13px;
float:  left;
}
.owl-nav-style-four .owl-nav .owl-next {
right: 45px;
top: 13px;
float:  right;
}
.owl-nav-style-four .owl-nav .owl-next:hover,
.owl-nav-style-four .owl-nav .owl-prev:hover {
color: #0eaf96;
border-color: #0eaf96;
} .owl-nav-style-five .owl-nav {
margin: 0px;
margin-top: 40px;
padding: 0px;
text-align: center;
}
.owl-nav-style-five .owl-nav .owl-next,
.owl-nav-style-five .owl-nav .owl-prev {
position: relative;
color: #222;
font-size: 14px;
text-align: center;
line-height: 26px;
margin: 0 15px;
display: inline-block;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
}
.owl-nav-style-five .owl-nav .owl-prev {
left: 0px;
}
.owl-nav-style-five .owl-nav .owl-next {
right: 0px;
}
.owl-nav-style-five .owl-nav .owl-next:before {
position: absolute;
content: '';
height: 26px;
width: 2px;
background: #9cacd8;
top: 0;
right: 26px;
}
.owl-nav-style-five .owl-nav .owl-next:hover,
.owl-nav-style-five .owl-nav .owl-prev:hover {
color: #0daf96;
} .fancybox-next span,
.fancybox-prev span {
background-image: none !important;
width: 44px !important;
height: 44px !important;
line-height: 44px !important;
text-align: center;
}
.fancybox-next span:before,
.fancybox-prev span:before {
content: '';
position: absolute;
font-family: 'Font Awesome 5 Free';
left: 0px;
top: 0px;
font-size: 12px;
width: 44px !important;
height: 44px !important;
line-height: 44px !important;
background-color: rgba(28, 28, 28, 0.40) !important;
color: #ffffff;
visibility: visible;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
}
.fancybox-next span:before {
content: '\f178';
}
.fancybox-prev span:before {
content: '\f177';
}
.fancybox-next:hover span:before,
.fancybox-prev:hover span:before {
background-color: #ffffff !important;
color: #000000;
}
.fancybox-type-image .fancybox-close {
right: 0px;
top: 0px;
width: 45px;
height: 45px;
background: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/icon-cross.png) center center no-repeat;
background-color: rgba(17, 17, 17, 0.50) !important;
}
.fancybox-type-image .fancybox-close:hover {
background-color: #000000 !important;
}
.fancybox-type-image .fancybox-skin {
padding: 0px !important;
} .m-0 {
margin: 0px !important;
}
.mt-5 {
margin-top: 5px !important;
}
.mt-10 {
margin-top: 10px !important;
}
.mt-15 {
margin-top: 15px !important;
}
.mt-20 {
margin-top: 20px !important;
}
.mt-25 {
margin-top: 25px !important;
}
.mt-30 {
margin-top: 30px !important;
}
.mt-35 {
margin-top: 35px !important;
}
.mt-40 {
margin-top: 40px !important;
}
.mt-45 {
margin-top: 45px !important;
}
.mt-50 {
margin-top: 50px !important;
}
.mt-55 {
margin-top: 55px !important;
}
.mt-60 {
margin-top: 60px !important;
}
.mt-65 {
margin-top: 65px !important;
}
.mt-70 {
margin-top: 70px !important;
}
.mt-75 {
margin-top: 75px !important;
}
.mt-80 {
margin-top: 80px !important;
}
.mb-5 {
margin-bottom: 5px !important;
}
.mb-10 {
margin-bottom: 10px !important;
}
.mb-15 {
margin-bottom: 15px !important;
}
.mb-20 {
margin-bottom: 20px !important;
}
.mb-25 {
margin-bottom: 25px !important;
}
.mb-30 {
margin-bottom: 30px !important;
}
.mb-35 {
margin-bottom: 35px !important;
}
.mb-40 {
margin-bottom: 40px !important;
}
.mb-45 {
margin-bottom: 45px !important;
}
.mb-50 {
margin-bottom: 50px !important;
}
.mb-55 {
margin-bottom: 55px !important;
}
.mb-60 {
margin-bottom: 60px !important;
}
.mb-65 {
margin-bottom: 65px !important;
}
.mb-70 {
margin-bottom: 70px !important;
}
.mb-75 {
margin-bottom: 75px !important;
}
.mb-80 {
margin-bottom: 80px !important;
}
.ml-5 {
margin-left: 5px !important;
}
.ml-10 {
margin-left: 10px !important;
}
.ml-15 {
margin-left: 15px !important;
}
.ml-20 {
margin-left: 20px !important;
}
.ml-25 {
margin-left: 25px !important;
}
.ml-30 {
margin-left: 30px !important;
}
.ml-35 {
margin-left: 35px !important;
}
.ml-40 {
margin-left: 40px !important;
}
.ml-45 {
margin-left: 45px !important;
}
.ml-50 {
margin-left: 50px !important;
}
.ml-55 {
margin-left: 55px !important;
}
.ml-60 {
margin-left: 60px !important;
}
.ml-65 {
margin-left: 65px !important;
}
.ml-70 {
margin-left: 70px !important;
}
.ml-75 {
margin-left: 75px !important;
}
.ml-80 {
margin-left: 80px !important;
}
.mr-5 {
margin-right: 5px !important;
}
.mr-10 {
margin-right: 10px !important;
}
.mr-15 {
margin-right: 15px !important;
}
.mr-20 {
margin-right: 20px !important;
}
.mr-25 {
margin-right: 25px !important;
}
.mr-30 {
margin-right: 30px !important;
}
.mr-35 {
margin-right: 35px !important;
}
.mr-40 {
margin-right: 40px !important;
}
.mr-45 {
margin-right: 45px !important;
}
.mr-50 {
margin-right: 50px !important;
}
.mr-55 {
margin-right: 55px !important;
}
.mr-60 {
margin-right: 60px !important;
}
.mr-65 {
margin-right: 65px !important;
}
.mr-70 {
margin-right: 70px !important;
}
.mr-75 {
margin-right: 75px !important;
}
.mr-80 {
margin-right: 80px !important;
} .p-0 {
padding: 0px !important;
}
.pt-5 {
padding-top: 5px !important;
}
.pt-10 {
padding-top: 10px !important;
}
.pt-15 {
padding-top: 15px !important;
}
.pt-20 {
padding-top: 20px !important;
}
.pt-25 {
padding-top: 25px !important;
}
.pt-30 {
padding-top: 30px !important;
}
.pt-35 {
padding-top: 35px !important;
}
.pt-40 {
padding-top: 40px !important;
}
.pt-45 {
padding-top: 45px !important;
}
.pt-50 {
padding-top: 50px !important;
}
.pt-55 {
padding-top: 55px !important;
}
.pt-60 {
padding-top: 60px !important;
}
.pt-65 {
padding-top: 65px !important;
}
.pt-70 {
padding-top: 70px !important;
}
.pt-75 {
padding-top: 75px !important;
}
.pt-80 {
padding-top: 80px !important;
}
.pt-200 {
padding-top: 200px;
}
.pb-5 {
padding-bottom: 5px !important;
}
.pb-10 {
padding-bottom: 10px !important;
}
.pb-15 {
padding-bottom: 15px !important;
}
.pb-20 {
padding-bottom: 20px !important;
}
.pb-25 {
padding-bottom: 25px !important;
}
.pb-30 {
padding-bottom: 30px !important;
}
.pb-35 {
padding-bottom: 35px !important;
}
.pb-40 {
padding-bottom: 40px !important;
}
.pb-45 {
padding-bottom: 45px !important;
}
.pb-50 {
padding-bottom: 50px !important;
}
.pb-55 {
padding-bottom: 55px !important;
}
.pb-60 {
padding-bottom: 60px !important;
}
.pb-65 {
padding-bottom: 65px !important;
}
.pb-70 {
padding-bottom: 70px !important;
}
.pb-75 {
padding-bottom: 75px !important;
}
.pb-80 {
padding-bottom: 80px !important;
}
.pl-5 {
padding-left: 5px !important;
}
.pl-10 {
padding-left: 10px !important;
}
.pl-15 {
padding-left: 15px !important;
}
.pl-20 {
padding-left: 20px !important;
}
.pl-25 {
padding-left: 25px !important;
}
.pl-30 {
padding-left: 30px !important;
}
.pl-35 {
padding-left: 35px !important;
}
.pl-40 {
padding-left: 40px !important;
}
.pl-45 {
padding-left: 45px !important;
}
.pl-50 {
padding-left: 50px !important;
}
.pl-55 {
padding-left: 55px !important;
}
.pl-60 {
padding-left: 60px !important;
}
.pl-65 {
padding-left: 65px !important;
}
.pl-70 {
padding-left: 70px !important;
}
.pl-75 {
padding-left: 75px !important;
}
.pl-80 {
padding-left: 80px !important;
}
.pr-5 {
padding-right: 5px !important;
}
.pr-10 {
padding-right: 10px !important;
}
.pr-15 {
padding-right: 15px !important;
}
.pr-20 {
padding-right: 20px !important;
}
.pr-25 {
padding-right: 25px !important;
}
.pr-30 {
padding-right: 30px !important;
}
.pr-35 {
padding-right: 35px !important;
}
.pr-40 {
padding-right: 40px !important;
}
.pr-45 {
padding-right: 45px !important;
}
.pr-50 {
padding-right: 50px !important;
}
.pr-55 {
padding-right: 55px !important;
}
.pr-60 {
padding-right: 60px !important;
}
.pr-65 {
padding-right: 65px !important;
}
.pr-70 {
padding-right: 70px !important;
}
.pr-75 {
padding-right: 75px !important;
}
.pr-80 {
padding-right: 80px !important;
} .sec-title {
position: relative;
margin-bottom: 60px;
}
.sec-title.small {
margin-bottom: 30px;
}
.sec-title .title {
font-size: 14px;
color: #403ab4;
font-weight: 500;
margin-bottom: 20px;
letter-spacing: 2px;
display: inline-block;
}
.sec-title.light .title {
color: #0daf96;
}
.sec-title.small .title {
margin-bottom: 5px;
}
.sec-title h1 {
font-size: 36px;
font-weight: 600;
line-height: 46px;
color: #222;
}
.sec-title.light h1 {
color: #fff;
line-height: 42px;
}
.sec-title.small h1 {
font-size: 30px;
}
.sec-title .shape-icon {
position: absolute;
right: 60%;
top: 29px;
height: 14px;
width: 10px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-9.png);
background-repeat: no-repeat;
}
.sec-title .text {
margin-top: 20px;
}
.sec-title.light .text {
color: #fff;
} .inner-page-title {
position: relative;
margin-bottom: 30px;
padding-bottom: 20px;
}
.inner-page-title h4 {
font-size: 22px;
color: #000000;
font-weight: 500;
line-height: 1.2em;
text-transform: capitalize;
}
.inner-page-title:before {
position: absolute;
content: '';
background: #ddd;
height: 1px;
width: 100%;
bottom: 0;
}
.inner-page-title:after {
position: absolute;
content: '';
background: #0eaf96;
height: 2px;
width: 40px;
bottom: 0;
}  .btn-style-one{
position:relative;
color:#222;
font-size:18px;
line-height:26px;
font-weight:500;
padding:15px 35px;
border-radius: 3px;
background-color: #ffffff;
z-index: 1;
}
.btn-style-one:before{
position: absolute;
content: '';
background-color: #0daf96;
border-radius: 3px;
width: 0%;
height: 100%;
left: 0px;
top: 0px;
z-index: -1;
transition: all 500ms ease;
}
.btn-style-one:hover:before{
width: 100%;
}
.btn-style-one:hover{
color:#ffffff;
} .btn-style-two{
position:relative;
color:#ffffff;
font-size:18px;
line-height:26px;
font-weight: 500;
padding: 15px 35px;
border-radius: 3px;
background-color: #0daf96;
box-shadow: 0px 11px 21.25px 3.75px rgba(167, 238, 227, 0.65);
z-index: 1;
}
.btn-style-two:before{
position: absolute;
content: '';
background-color: #403ab4;
border-radius: 3px;
width: 0%;
height: 100%;
left: 0px;
top: 0px;
z-index: -1;
transition: all 500ms ease;
}
.btn-style-two:hover:before{
width: 100%;
}
.btn-style-two:hover{
color:#ffffff;
box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
} .btn-style-three{
position:relative;
color:#0daf96;
font-size:18px;
line-height:26px;
font-weight:600;
padding:10px 35px;
border-radius: 3px;
background-color: #ffffff;
border: 2px solid #0daf96;
z-index: 1;
transition: all 500ms ease;
}
.btn-style-three:before{
position: absolute;
content: '';
background-color: #0daf96;
width: 0%;
height: 100%;
left: 0px;
top: 0px;
z-index: -1;
transition: all 500ms ease;
}
.btn-style-three:hover:before{
width: 100%;
}
.btn-style-three:hover{
color:#ffffff;
} .btn-style-four{
position:relative;
color:#ffffff;
font-size: 16px;
line-height:26px;
font-weight:600;
padding:12px 35px;
border-radius: 3px;
background-color: #403ab4;
box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
z-index: 1;
transition: all 500ms ease;
}
.btn-style-four:before{
position: absolute;
content: '';
background-color: #0daf96;
border-radius: 3px;
width: 0%;
height: 100%;
left: 0px;
top: 0px;
z-index: -1;
transition: all 500ms ease;
}
.btn-style-four:hover:before{
width: 100%;
}
.btn-style-four:hover{
color:#ffffff;
} .btn-style-five{
position:relative;
color:#ffffff;
font-size: 16px;
line-height:26px;
font-weight:600;
padding:15px 35px;
border-radius: 3px;
background-color: #b83b96;
box-shadow: 0px 11px 21.25px 3.75px rgba(255, 190, 237, 0.65);
z-index: 1;
transition: all 500ms ease;
}
.btn-style-five:before{
position: absolute;
content: '';
background-color: #0daf96;
border-radius: 3px;
width: 0%;
height: 100%;
left: 0px;
top: 0px;
z-index: -1;
transition: all 500ms ease;
}
.btn-style-five:hover:before{
width: 100%;
}
.btn-style-five:hover{
color:#ffffff !important;
background-color: #b83b96 !important;
} .btn-style-six{
position:relative;
color:#ffffff;
font-size: 16px;
line-height:26px;
font-weight:600;
padding:15px 35px;
border-radius: 3px;
background-color: #f0467a;
box-shadow: 0px 11px 21.25px 3.75px rgba(240, 70, 122, 0.13);
}
.btn-style-six:hover{
color:#ffffff;
background-color: #0daf96;
} .btn-style-seven{
position:relative;
color: #222;
font-size:18px;
line-height:26px;
font-weight: 500;
padding: 14px 35px;
border-radius: 3px;
border: 1px solid #403ab4;
box-shadow: 0px 5px 21.25px 3.75px rgba(194, 191, 255, 0.4);
}
.btn-style-seven:hover{
color:#ffffff;
background-color: #403ab4;
} .btn-style-eight{
position:relative;
color:#ffffff;
font-size:18px;
line-height:26px;
font-weight:500;
padding:10px 35px;
border-radius: 3px;
border: 2px solid #ffffff;
}
.btn-style-eight:hover{
color:#2a2685;
background-color: #ffffff;
} .btn-style-nine{
position:relative;
color:#7478fa;
font-size:18px;
line-height:30px;
font-weight:600;
padding:15px 40px;
border-radius: 3px;
background: #ffffff;
}
.btn-style-nine:hover{
color:#ffffff;
background-color: #202020;
} .btn-style-ten{
position:relative;
color:#555;
font-size: 18px;
font-weight: 500;
font-family: 'Poppins', sans-serif;
border-bottom: 1px solid #8b8b8b;
line-height: 20px;
}
.btn-style-ten:hover{
color:#0daf96;
border-color:#0daf96;
} .btn-style-eleven{
position:relative;
color: #222;
font-size: 25px;
width: 70px;
height: 70px;
line-height: 70px;
text-align: center;
box-shadow: -3px 12px 21.25px 3.75px rgba(233, 233, 233, 0.37);
background: #fff;
}
.btn-style-eleven:hover{
color:#fff;
background-color: #222;
} .btn-style-twelve{
position:relative;
color: #fff;
font-size: 14px;
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
box-shadow: 0px 11px 21.25px 3.75px rgba(167, 238, 227, 0.65);
background: #0daf96;
border-radius: 50%;
transition: all 500ms ease;
}
.btn-style-twelve:hover{
color:#fff;
background-color: #403ab4;
box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
} .list-style-one {
position: relative;
}
.list-style-one li {
position: relative;
color: #111;
font-size: 18px;
font-weight: 400;
padding-left: 28px;
margin-bottom: 15px;
}
.list-style-one li:before {
position: absolute;
content: "\f058";
left: 0px;
top: 0px;
font-size: 16px;
color: #3648b2;
font-family: 'Font Awesome 5 Free';
} .list-style-two {
position: relative;
margin-bottom: 30px;
}
.list-style-two li {
position: relative;
color: #222;
font-size: 16px;
font-weight: 400;
padding-left: 16px;
margin-bottom: 6px;
}
.list-style-two li:before {
position: absolute;
content: "\f105";
left: 0px;
top: 0;
font-family: 'Font Awesome 5 Free';
color: #0eaf96;
font-size: 16px;
} .list-style-three {
position: relative;
margin-bottom: 30px;
}
.list-style-three li {
position: relative;
color: #848484;
font-size: 16px;
font-weight: 300;
padding-left: 20px;
margin-bottom: 6px;
}
.list-style-three li:before {
position: absolute;
content: '';
left: 0px;
top: 10px;
width: 7px;
height: 7px;
border-radius: 50%;
background-color: #0eaf96;
font-family: 'Font Awesome 5 Free';
}
.list-style-three li:nth-child(2):before {
background-color: #fd5075;
}
.list-style-three li:nth-child(3):before {
background-color: #11e6a2;
} .list-style-four {
position: relative;
}
.list-style-four li {
position: relative;
margin-bottom: 12px;
color: #848484;
font-size: 14px;
font-weight: 400;
padding-left: 35px;
line-height: 2em;
}
.list-style-four li i {
position: absolute;
left: 0px;
top: 4px;
color: #0eaf96;
font-size: 22px;
line-height: 1.2em;
} .list-style-five {
position: relative;
}
.list-style-five li {
position: relative;
color: #ffffff;
font-size: 16px;
font-weight: 300;
padding-left: 28px;
margin-bottom: 10px;
}
.list-style-five li:before {
position: absolute;
content: '\f192';
left: 0px;
top: 2px;
font-size: 16px;
color: #0eaf96;
font-family: 'Font Awesome 5 Free';
}  .social-icon-one {
position: relative;
}
.social-icon-one li {
position: relative;
margin: 0 7px;
display: inline-block;
}
.social-icon-one li a {
position: relative;
color: #666;
font-size: 16px;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
transition: all 300ms ease;
}
.social-icon-one li a:hover {
color: #0eaf96;
} .social-icon-two {
position: relative;
}
.social-icon-two li {
position: relative;
margin: 0 7px;
display: inline-block;
}
.social-icon-two li a {
position: relative;
color: #0eaf96;
font-size: 16px;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
transition: all 300ms ease;
}
.social-icon-two li a:hover {
color: #0eaf96;
} .social-icon-three {
position: relative;
}
.social-icon-three li {
position: relative;
margin-right: 10px;
margin-bottom: 10px;
display: inline-block;
}
.social-icon-three li a {
position: relative;
width: 40px;
height: 40px;
color: #848484;
font-size: 16px;
line-height: 40px;
text-align: center;
border-radius: 50%;
display: inline-block;
background: #f4f4f4;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
transition: all 300ms ease;
}
.social-icon-three li a:hover {
color: #ffffff;
background-color: #0eaf96;
} .social-icon-four {
position: relative;
}
.social-icon-four li {
position: relative;
margin-right: 10px;
margin-bottom: 10px;
display: inline-block;
}
.social-icon-four li a {
position: relative;
width: 40px;
height: 40px;
color: #0eaf96;
font-size: 16px;
line-height: 40px;
text-align: center;
border-radius: 50%;
display: inline-block;
background: #f4f4f4;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
transition: all 300ms ease;
}
.social-icon-four li a:hover {
color: #ffffff;
background-color: #0eaf96;
} .social-icon-five {
position: relative;
}
.social-icon-five li {
position: relative;
margin-right: 10px;
margin-bottom: 10px;
display: inline-block;
}
.social-icon-five li a {
position: relative;
width: 40px;
height: 40px;
color: #848484;
font-size: 16px;
line-height: 38px;
text-align: center;
border-radius: 50%;
display: inline-block;
border: 1px solid #eee;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
transition: all 300ms ease;
}
.social-icon-five li a:hover {
color: #ffffff;
background-color: #0eaf96;
} .social-icon-six {
position: relative;
}
.social-icon-six li {
position: relative;
margin-right: 10px;
margin-bottom: 10px;
display: inline-block;
}
.social-icon-six li a {
position: relative;
width: 40px;
height: 40px;
color: #0eaf96;
font-size: 16px;
line-height: 38px;
text-align: center;
border-radius: 50%;
display: inline-block;
border: 1px solid #eee;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
transition: all 300ms ease;
}
.social-icon-six li a:hover {
color: #ffffff;
background-color: #0eaf96;
} .social-icon-seven {
position: relative;
}
.social-icon-seven li {
position: relative;
margin: 0 7px;
display: inline-block;
}
.social-icon-seven li a {
position: relative;
color: #fff;
font-size: 16px;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
transition: all 300ms ease;
}
.social-icon-seven li a:hover {
color: #0eaf96;
} .social-icon-eight {
position: relative;
}
.social-icon-eight li {
position: relative;
margin-right: 10px;
margin-bottom: 10px;
display: inline-block;
}
.social-icon-eight li a {
position: relative;
width: 40px;
height: 40px;
color: #ffffff;
font-size: 16px;
line-height: 38px;
text-align: center;
border-radius: 50%;
display: inline-block;
border: 1px solid #fff;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
transition: all 300ms ease;
}
.social-icon-eight li a:hover {
color: #ffffff;
background-color: #0eaf96;
border-color: #0eaf96;
} .social-icon-nine {
display: flex;
flex-wrap: wrap;
}
.social-icon-nine li {
margin: 0 7px;
}
.social-icon-nine .fa {
font-size: 16px;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
text-decoration: none;
margin: 5px 2px;
}
.social-icon-nine .fa:hover {
opacity: 0.7;
}
.social-icon-nine .fa-facebook-f {
background: #3B5998;
color: white;
}
.social-icon-nine .fa-twitter {
background: #55ACEE;
color: white;
}
.social-icon-nine .fa-google-plus-g {
background: #dd4b39;
color: white;
}
.social-icon-nine .fa-linkedin {
background: #007bb5;
color: white;
}
.social-icon-nine .fa-youtube {
background: #bb0000;
color: white;
}
.social-icon-nine .fa-instagram {
background: #125688;
color: white;
}
.social-icon-nine .fa-pinterest {
background: #cb2027;
color: white;
}
.social-icon-nine .fa-snapchat-ghost {
background: #fffc00;
color: white;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.social-icon-nine .fa-skype {
background: #00aff0;
color: white;
}
.social-icon-nine .fa-android {
background: #a4c639;
color: white;
}
.social-icon-nine .fa-dribbble {
background: #ea4c89;
color: white;
}
.social-icon-nine .fa-vimeo {
background: #45bbff;
color: white;
}
.social-icon-nine .fa-tumblr {
background: #2c4762;
color: white;
}
.social-icon-nine .fa-vine {
background: #00b489;
color: white;
}
.social-icon-nine .fa-foursquare {
background: #45bbff;
color: white;
}
.social-icon-nine .fa-stumbleupon {
background: #eb4924;
color: white;
}
.social-icon-nine .fa-flickr {
background: #f40083;
color: white;
}
.social-icon-nine .fa-yahoo {
background: #430297;
color: white;
}
.social-icon-nine .fa-soundcloud {
background: #ff5500;
color: white;
}
.social-icon-nine .fa-reddit {
background: #ff5700;
color: white;
}
.social-icon-nine .fa-rss {
background: #ff6600;
color: white;
} .social-icon-ten {
display: flex;
flex-wrap: wrap;
}
.social-icon-ten li {
margin: 0 7px;
}
.social-icon-ten .fa {
font-size: 16px;
width: 40px;
height: 40px;
line-height: 40px;
border-radius: 50%;
text-align: center;
text-decoration: none;
margin: 5px 2px;
}
.social-icon-ten .fa:hover {
opacity: 0.7;
}
.social-icon-ten .fa-facebook {
background: #3B5998;
color: white;
}
.social-icon-ten .fa-twitter {
background: #55ACEE;
color: white;
}
.social-icon-ten .fa-google {
background: #dd4b39;
color: white;
}
.social-icon-ten .fa-linkedin {
background: #007bb5;
color: white;
}
.social-icon-ten .fa-youtube {
background: #bb0000;
color: white;
}
.social-icon-ten .fa-instagram {
background: #125688;
color: white;
}
.social-icon-ten .fa-pinterest {
background: #cb2027;
color: white;
}
.social-icon-ten .fa-snapchat-ghost {
background: #fffc00;
color: white;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.social-icon-ten .fa-skype {
background: #00aff0;
color: white;
}
.social-icon-ten .fa-android {
background: #a4c639;
color: white;
}
.social-icon-ten .fa-dribbble {
background: #ea4c89;
color: white;
}
.social-icon-ten .fa-vimeo {
background: #45bbff;
color: white;
}
.social-icon-ten .fa-tumblr {
background: #2c4762;
color: white;
}
.social-icon-ten .fa-vine {
background: #00b489;
color: white;
}
.social-icon-ten .fa-foursquare {
background: #45bbff;
color: white;
}
.social-icon-ten .fa-stumbleupon {
background: #eb4924;
color: white;
}
.social-icon-ten .fa-flickr {
background: #f40083;
color: white;
}
.social-icon-ten .fa-yahoo {
background: #430297;
color: white;
}
.social-icon-ten .fa-soundcloud {
background: #ff5500;
color: white;
}
.social-icon-ten .fa-reddit {
background: #ff5700;
color: white;
}
.social-icon-ten .fa-rss {
background: #ff6600;
color: white;
} .default-tabs {
position: relative;
}
.default-tabs.style-three {
border: 1px solid #f4f4f4;
}
.default-tabs nav {
overflow: auto;
-webkit-overflow-scrolling: touch;
background: #f8f7ee;
box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
}
@media only screen and (min-width: 768px) {
.default-tabs nav {
position: absolute;
top: 0;
left: 0;
height: 100%;
box-shadow: inset -2px 0 3px rgba(203, 196, 130, 0.06);
z-index: 1;
}
}
@media only screen and (min-width: 960px) {
.default-tabs nav {
position: relative;
float: none;
background: transparent;
box-shadow: none;
}
}
.default-tabs-navigation {
width: 360px;
}
.default-tabs-navigation:after {
content: "";
display: table;
clear: both;
}
.default-tabs-navigation li {
float: left;
}
.default-tabs-navigation a {
position: relative;
display: block;
height: 60px;
width: 60px;
text-align: center;
font-size: 12px;
font-size: 0.75rem;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-weight: 700;
color: #848484;
padding-top: 34px;
}
.no-touch .default-tabs-navigation a:hover {
color: #29324e;
background-color: rgba(233, 230, 202, 0.3);
}
.default-tabs-navigation a.selected {
background-color: #ffffff !important;
box-shadow: inset 0 2px 0 #f05451;
color: #29324e;
}
@media only screen and (min-width: 768px) {
.default-tabs-navigation { width: 80px;
float: left;
}
.default-tabs-navigation a {
height: 80px;
width: 80px;
padding-top: 46px;
}
.default-tabs-navigation a.selected {
box-shadow: inset 2px 0 0 #0eaf96;
}
.default-tabs-navigation a::before {
top: 22px;
}
}
@media only screen and (min-width: 960px) {
.default-tabs-navigation { width: auto;
background-color: #f8f7ee;
box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
}
.default-tabs-navigation a {
height: 60px;
line-height: 60px;
width: auto;
text-align: left;
font-size: 15px;
padding: 0 2.8em 0 4.6em;
}
.default-tabs-navigation a.selected {
box-shadow: inset 0 2px 0 #f05451;
}
.default-tabs-navigation a::before {
top: 50%;
margin-top: -10px;
margin-left: 0;
left: 38px;
}
}
.default-tabs-content {
background: #ffffff;
}
.default-tabs-content li {
display: none;
padding: 1.4em;
border: 1px solid #f0f0f0;
}
.default-tabs-content li.selected {
display: block;
-webkit-animation: default-fade-in 0.5s;
-moz-animation: default-fade-in 0.5s;
animation: default-fade-in 0.5s;
}
.default-tabs-content li p {
font-size: 14px;
font-size: 0.875rem;
line-height: 1.6;
color: #848484;
margin-bottom: 2em;
}
@media only screen and (min-width: 768px) {
.default-tabs-content {
min-height: 480px;
}
.default-tabs-content li {
padding: 2em 2em 2em 7em;
}
}
@media only screen and (min-width: 960px) {
.default-tabs-content {
min-height: 0;
}
.default-tabs-content li {
padding: 3em;
}
.default-tabs-content li p {
font-size: 16px;
}
}
@-webkit-keyframes default-fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes default-fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes default-fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.tabs-box{
position:relative;	
}
.tabs-box .tabs-header{
position:relative;
}
.tabs-box .tab-btns{
position:relative;
padding-top: 70px;
}
.tabs-box .tab-btns .tab-btn{
position:relative;
cursor:pointer;
color: #1a224d;
font-weight: 600;
font-size: 18px;
display:inline-block;
margin-bottom:10px;
margin-left: 10px;
padding:0px 10px;
text-transform: capitalize;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
font-family: 'Poppins', sans-serif;
}
.tabs-box .tab-btns .tab-btn:after{
position:absolute;
content:'';
left:0px;
top:12px;
width:100%;
height:1px;
opacity:0;
background-color:#ff5e8f;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.tabs-box .tab-btns .tab-btn:hover,
.tabs-box .tab-btns .tab-btn.active-btn{
color: #0eaf96;
}
.tabs-box .tabs-content{
position:relative;
display:block;
}
.tabs-box .tab-item {
position:absolute;
left:0px;
top:0px;
width:100%;
height:auto;
opacity:0;
visibility:hidden;
transition: .7s ease;
transform: scale(.8);
z-index: 0;
}
.tabs-box .tab-item.active-tab{
position:relative;
opacity:1;
visibility:visible;
z-index:5;
transform: scale(1);
} .accordion-box {
position: relative;
}
.accordion-box .block {
position: relative;
padding-top: 0px;
margin-bottom: 25px;
box-shadow: 0px 5px 21.25px 3.75px rgba(217, 217, 217, 0.65);
}
.accordion-box .block:last-child {
margin-bottom: 0px;
}
.accordion-box .block .acc-btn {
position: relative;
font-size: 18px;
cursor: pointer;
line-height: 1.2em;
color: #222;
font-weight: 400;
padding: 28.5px 30px;
padding-left: 58px;
transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
}
.accordion-box .block .acc-btn.active {
background: #ffffff;
color: #403ab4;
}
.accordion-box .block .icon-outer {
position: absolute;
left: 32px;
top: 47px;
font-size: 25px;
color: #222222;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
}
.accordion-box .block .icon-outer .icon {
position: absolute;
top: 50%;
margin-top: -15px;
font-size: 18px;
color: #222222;
line-height: 1em;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.accordion-box .block .icon-outer .icon_plus {
opacity: 1;
}
.accordion-box .block .icon-outer .icon_minus {
opacity: 0;
color: #222;
font-weight: 700;
}
.accordion-box .block .acc-btn.active .icon-outer .icon_minus {
opacity: 1;
}
.accordion-box .block .acc-btn.active .icon-outer .icon_plus {
opacity: 0;
}
.accordion-box .block .acc-btn.active .icon-outer {
color: #0eaf96;
}
.accordion-box .block .acc-content {
position: relative;
display: none;
padding: 0 20px;
padding-left: 58px;
border-bottom: 1px solid #f2f2f2;
}
.accordion-box .block .acc-content .content-text {
padding-bottom: 6px;
}
.accordion-box .block .acc-content.current {
display: block;
}
.accordion-box .block .content {
position: relative;
font-size: 14px;
margin-bottom: 40px;
}
.accordion-box .block .content .text {
margin-bottom: 20px;
} .accordion-box.style-two {
border: 0px;
}
.accordion-box.style-two .block {
margin-bottom: 20px;
padding: 15px 20px;
border: 1px solid rgba(255, 255, 255, 0.20);
background: #fff;
}
.accordion-box.style-two .block .acc-btn {
color: #000000;
}
.accordion-box.style-two .block .content p {
color: #adadad;
font-size: 16px;
line-height: 1.9em;
} .accordion-box.style-three {
position: relative;
padding-left: 30px;
padding-right: 30px;
margin-bottom: 70px;
}
.accordion-box.style-three .block {
padding-left: 0px;
}
.accordion-box.style-three .block .acc-btn {
font-weight: 400;
}
.accordion-box.style-three .block .icon-outer {
right: 0px;
} .accordion-box.style-four {
border: 0px;
}
.accordion-box.style-four .block {
border: 0px;
padding: 0px;
margin-bottom: 10px;
}
.accordion-box.style-four .block .acc-btn {
padding: 13px 20px;
background-color: #f7f7f7;
}
.accordion-box.style-four .block .icon-outer .icon {
font-size: 20px;
margin-top: -20px;
}
.accordion-box.style-four .block .icon-outer {
right: 30px;
top: 36px;
}
.accordion-box.style-four .block .acc-btn.active .icon-outer .icon_plus {
opacity: 1;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
.accordion-box.style-four .block .content {
padding: 20px 20px;
border: 1px solid #f4f4f4;
border-top: 0px;
} .accordion-box.style-five {
position: relative;
padding: 0px 30px;
border: 0px;
background-color: #f7f7f7;
}
.accordion-box.style-five .block {
padding: 0px 0px;
}
.accordion-box.style-five .block:last-child .acc-content {
padding-bottom: 25px;
}
.accordion-box.style-five .block .acc-btn {
padding-right: 0px;
padding-left: 40px;
padding-top: 19px;
padding-bottom: 19px;
}
.accordion-box.style-five .block .acc-btn.active {
color: #e6202d;
}
.accordion-box.style-five .block .acc-btn.active .icon-outer {
background-color: #e6202d;
}
.accordion-box.style-five .block .icon-outer {
left: 0px;
top: 50%;
right: auto;
width: 20px;
height: 20px;
color: #ffffff;
line-height: 21px;
border-radius: 50%;
text-align: center;
margin-top: -10px;
background-color: #cccccc;
}
.accordion-box.style-five .block .icon-outer .icon {
left: 0px;
top: 19px;
width: 20px;
height: 20px;
color: #ffffff;
}
.accordion-box.style-five .block .content {
background-color: #ffffff;
margin-top: 0px;
padding: 25px 40px;
} .page_pagination {
text-align: center;
margin-bottom: 50px;
}
.page_pagination li {
display: inline-block;
margin: 0 10px;
}
.page_pagination li a {
display: block;
text-align: center;
color: #000000;
font-size: 18px;
font-weight: 500;
font-family: 'Poppins', sans-serif;
}
.page_pagination li.active a,
.page_pagination li a:hover {
color: #0eaf96;
} .page_pagination_two {
text-align: center;
margin-bottom: 50px;
}
.page_pagination_two li {
display: inline-block;
margin: 0 4px;
}
.page_pagination_two li a {
width: 45px;
height: 45px;
line-height: 45px;
display: block;
border-radius: 3px;
border: 1px solid #ddd;
text-align: center;
color: #222;
font-size: 16px;
font-weight: 500;
transition: .5s ease;
}
.page_pagination_two li span {
font-size: 12px;
}
.page_pagination_two li.active a,
.page_pagination_two li a:hover {
color: #fff;
background: #403ab4;
border-color: #403ab4;
box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
} .page_pagination_three {
text-align: center;
margin-bottom: 50px;
}
.page_pagination_three li {
display: inline-block;
margin: 0 4px;
}
.page_pagination_three li a {
width: 55px;
height: 55px;
line-height: 55px;
border-radius:  50%;
display: block;
text-align: center;
background: #f7f8f9;
color: #333;
font-size: 18px;
font-weight: 700;
}
.page_pagination_three li.active a,
.page_pagination_three li a:hover {
color: #fff;
background: #0eaf96;
} .filter-tabs {
display: flex;
flex-wrap: wrap;
margin: 0;
margin-bottom: 50px;
}
.text-center .filter-tabs {
justify-content: center;
}
.filter-tabs li {
padding: 0;
margin: 0px 20px 0px;
}
.filter-tabs li:first-child {
margin-left: 0px;
}
.filter-tabs li span {
color: #222;
font-size: 18px;
font-weight: 500;
line-height: 26px;
border-radius: 22px;
font-family: 'Poppins', sans-serif;
display: block;
cursor: pointer;
transition: .5s ease;
}
.filter-tabs li:last-child span {
border-right: 0px;
}
.filter-tabs.style-2 li span {
color: #fff;
}
.filter-tabs li:hover span,
.filter-tabs li.active span {
color: #0eaf96;
transition: .5s ease;
}
.filter-tabs li span i {
font-size: 14px;
margin-right: 5px;
} .filter-tabs-two {
display: flex;
flex-wrap: wrap;
margin: 0;
margin-bottom: 40px;
justify-content: center;
}
.filter-tabs-two li {
padding: 0;
margin: 0px 7px 10px;
}
.filter-tabs-two li.active {}
.filter-tabs-two li span {
color: #464646;
font-size: 16px;
font-weight: 400;
line-height: 26px;
padding: 8px 25px;
background: #e6e8eb;
border-radius: 22px;
font-family: 'Poppins', sans-serif;
display: block;
cursor: pointer;
transition: .5s ease;
}
.filter-tabs-two li:last-child span {
border-right: 0px;
}
.filter-tabs-two li:hover span,
.filter-tabs-two li.active span {
color: #ffffff;
background: #0eaf96;
border-color: #0eaf96;
transition: .5s ease;
}
.filter-tabs-two li span i {
font-size: 14px;
margin-right: 5px;
} .video-image-box .image {
position: relative;
border-radius: 10px;
overflow: hidden;
}
.video-image-box img {
display: block;
width: 100%;
}
.video-image-box .image .overlay-link {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
display: flex;
height: 100%;
font-size: 50px;
align-items: center;
justify-content: center;
z-index: 9;
color: #0eaf96;
text-align: center;
background: rgba(0, 0, 0, 0.50);
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
}
.video-image-box .image .overlay-link:hover {
background: rgba(0, 0, 0, 0.30);
}
.video-image-box .overlay-link span {
height: 81px;
width: 81px;
border-radius: 50%;
background-color: #fff;
text-align: center;
line-height: 80px;
font-size: 30px;
padding-left: 6px;
} .default-video-box {
margin-bottom: 40px;
}
.default-video-box a {
color: #fff;
font-size: 60px;
position: relative;
display: inline-block;
}
.video-image-box .ripple,
.video-image-box .ripple:before,
.video-image-box .ripple:after {
position: absolute;
left: 50%;
top: 50%;
height: 80px;
width: 80px;
margin-top: -40px;
margin-left: -40px;
border-radius: 50%;
-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.64);
-ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.64);
-o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.64);
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.64);
-webkit-animation: ripple 3s infinite;
animation: ripple 3s infinite;
}
.video-image-box .ripple:before {
-webkit-animation-delay: .9s;
animation-delay: .9s;
content: "";
position: absolute;
right: 0;
bottom: 0;
}
.video-image-box .ripple:after {
-webkit-animation-delay: .6s;
animation-delay: .6s;
content: "";
position: absolute;
right: 0;
bottom: 0;
}
@-webkit-keyframes ripple {
70% {
-webkit-box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
}
100% {
-webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
}
}
@keyframes ripple {
70% {
-webkit-box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
}
100% {
-webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
}
} .progress-levels {
position: relative;
}
.default-section .progress-levels {
padding-top: 7px;
}
.progress-levels .progress-box h5 {
font-size: 14px;
color: #909297;
margin-bottom: 5px;
}
.progress-levels .progress-box {
position: relative;
padding-bottom: 16px;
padding-top: 10px;
overflow: hidden;
}
.progress-levels .progress-box:last-child {
margin-bottom: 0px;
}
.progress-levels .progress-box:last-child {
margin-bottom: 0px;
}
.progress-levels .progress-box .bar {
position: relative;
height: 6px;
background: #e5e5e5;
}
.progress-levels .progress-box .bar .bar-innner {
position: relative;
left: 0px;
top: 0px;
width: 100%;
height: 10px;
}
.progress-levels .progress-box .bar .bar-fill {
position: absolute;
left: -100%;
top: 0px;
width: 0px;
height: 6px;
background: #3648b2;
-webkit-transition: all 2000ms ease 300ms;
-o-transition: all 2000ms ease 300ms;
transition: all 2000ms ease 300ms;
}
.progress-levels .progress-box.html .bar .bar-fill {
background: #ef6267;
}
.progress-levels .progress-box.wp .bar .bar-fill {
background: #ff9924;
}
.progress-levels .progress-box.php .bar .bar-fill {
background: #14dbba;
}
.progress-levels .progress-box.animated .bar .bar-fill {
left: 0px;
}
.progress-levels .progress-box .percent {
position: absolute;
right: 0;
top: -30px;
letter-spacing: 0px;
font-size: 14px;
font-weight: 600;
color: #222;
font-family: 'Poppins', sans-serif;
opacity: 0;
-webkit-transition: all 2000ms ease 700ms;
-o-transition: all 2000ms ease 700ms;
transition: all 2000ms ease 700ms;
}
.progress-levels .progress-box.animated .percent {
opacity: 1;
} @media only screen and (max-width: 1499px){
.sm-banner-section-two.style-four .image-box img {
max-width: 100% !important;
}
.sm-banner-section-two.style-four {
padding: 278px 0px 200px 0px !important;
}
}
@media only screen and (max-width: 991px){
.sm-feature-style-three .image-box .image-1 {
margin-left: 0 !important;
}
.banner-section .image-box img {
display: none !important;
}
.sm-feature-style-three .content-box {
padding-top: 0 !important;
}
.sm-about-section {
padding-top: 0 !important;
}
.sm-feature-section {
padding-bottom: 0 !important;
}
.sm-service-section .service-block-one .inner-box .icon-box {
position: relative !important;
top: -25px !important;
}
.sm-service-section .service-block-one .inner-box {
padding-left: 0 !important;
}
.sm-service-section .service-block-one {
padding: 70px 30px 50px 34px !important;
}
.sm-work-section .image-box img {
max-width: 100% !important;
width: 100% !important;
float: none !important;
}
.sm-work-section .inner-box:first-child .content-box, .sm-work-section .inner-box:last-child .content-box {
margin-bottom: 80px !important;
}
.sm-work-section .image-box, .sm-work-section .inner-box:nth-child(2) .image-box {
margin: 0px !important;
}
.sm-work-section .inner-content:before {
display: none !important;
}
.sm-pricing-section .tabs-content .pricing-column {
padding: 0px 15px !important;
}
.sm-pricing-section .pricing-table {
border: 1px solid #e5e5e5 !important;
margin-bottom: 30px !important;
}
}
.admin-bar .main-header {
top:32px;
}
body.fancybox-active{overflow:hidden}body.fancybox-iosfix{position:fixed;left:0;right:0}.fancybox-is-hidden{position:absolute;top:-9999px;left:-9999px;visibility:hidden}.fancybox-container{position:fixed;top:0;left:0;width:100%;height:100%;z-index:99992;-webkit-tap-highlight-color:transparent;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translateZ(0);transform:translateZ(0);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{position:absolute;top:0;right:0;bottom:0;left:0}.fancybox-outer{overflow-y:auto;-webkit-overflow-scrolling:touch}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.87;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption-wrap,.fancybox-infobar,.fancybox-toolbar{position:absolute;direction:ltr;z-index:99997;opacity:0;visibility:hidden;transition:opacity .25s,visibility 0s linear .25s;box-sizing:border-box}.fancybox-show-caption .fancybox-caption-wrap,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;visibility:visible;transition:opacity .25s,visibility 0s}.fancybox-infobar{top:0;left:0;font-size:13px;padding:0 10px;height:44px;min-width:44px;line-height:44px;color:#ccc;text-align:center;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-font-smoothing:subpixel-antialiased;mix-blend-mode:exclusion}.fancybox-toolbar{top:0;right:0;margin:0;padding:0}.fancybox-stage{overflow:hidden;direction:ltr;z-index:99994;-webkit-transform:translateZ(0)}.fancybox-is-closing .fancybox-stage{overflow:visible}.fancybox-slide{position:absolute;top:0;left:0;width:100%;height:100%;margin:0;padding:0;overflow:auto;outline:none;white-space:normal;box-sizing:border-box;text-align:center;z-index:99994;-webkit-overflow-scrolling:touch;display:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform}.fancybox-slide:before{content:"";display:inline-block;vertical-align:middle;height:100%;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:visible}.fancybox-slide--image:before{display:none}.fancybox-slide--video .fancybox-content,.fancybox-slide--video iframe{background:#000}.fancybox-slide--map .fancybox-content,.fancybox-slide--map iframe{background:#e5e3df}.fancybox-slide--next{z-index:99995}.fancybox-slide>*{display:inline-block;position:relative;padding:24px;margin:44px 0;border-width:0;vertical-align:middle;text-align:left;background-color:#fff;overflow:auto;box-sizing:border-box}.fancybox-slide>base,.fancybox-slide>link,.fancybox-slide>meta,.fancybox-slide>script,.fancybox-slide>style,.fancybox-slide>title{display:none}.fancybox-slide .fancybox-image-wrap{position:absolute;top:0;left:0;margin:0;padding:0;border:0;z-index:99995;background:transparent;cursor:default;overflow:visible;-webkit-transform-origin:top left;transform-origin:top left;background-size:100% 100%;background-repeat:no-repeat;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform}.fancybox-can-zoomOut .fancybox-image-wrap{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-image-wrap{cursor:zoom-in}.fancybox-can-drag .fancybox-image-wrap{cursor:-webkit-grab;cursor:grab}.fancybox-is-dragging .fancybox-image-wrap{cursor:-webkit-grabbing;cursor:grabbing}.fancybox-image,.fancybox-spaceball{position:absolute;top:0;left:0;width:100%;height:100%;margin:0;padding:0;border:0;max-width:none;max-height:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content{padding:0;width:80%;height:80%;max-width:calc(100% - 100px);max-height:calc(100% - 88px);overflow:visible;background:#fff}.fancybox-iframe{display:block;padding:0;border:0;height:100%}.fancybox-error,.fancybox-iframe{margin:0;width:100%;background:#fff}.fancybox-error{padding:40px;max-width:380px;cursor:default}.fancybox-error p{margin:0;padding:0;color:#444;font-size:16px;line-height:20px}.fancybox-button{box-sizing:border-box;display:inline-block;vertical-align:top;width:44px;height:44px;margin:0;padding:10px;border:0;border-radius:0;background:rgba(30,30,30,.6);transition:color .3s ease;cursor:pointer;outline:none}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:focus,.fancybox-button:hover{color:#fff}.fancybox-button[disabled]{color:#ccc;cursor:default;opacity:.6}.fancybox-button svg{display:block;position:relative;overflow:visible;shape-rendering:geometricPrecision}.fancybox-button svg path{fill:currentColor;stroke:currentColor;stroke-linejoin:round;stroke-width:3}.fancybox-button--share svg path{stroke-width:1}.fancybox-button--pause svg path:nth-child(1),.fancybox-button--play svg path:nth-child(2){display:none}.fancybox-button--zoom svg path{fill:transparent}.fancybox-navigation{display:none}.fancybox-show-nav .fancybox-navigation{display:block}.fancybox-navigation button{position:absolute;top:50%;margin:-50px 0 0;z-index:99997;background:transparent;width:60px;height:100px;padding:17px}.fancybox-navigation button:before{content:"";position:absolute;top:30px;right:10px;width:40px;height:40px;background:rgba(30,30,30,.6)}.fancybox-navigation .fancybox-button--arrow_left{left:0}.fancybox-navigation .fancybox-button--arrow_right{right:0}.fancybox-close-small{position:absolute;top:0;right:0;width:40px;height:40px;padding:0;margin:0;border:0;border-radius:0;background:transparent;z-index:10;cursor:pointer}.fancybox-close-small:after{content:"×";position:absolute;top:5px;right:5px;width:30px;height:30px;font:22px/30px Arial,Helvetica Neue,Helvetica,sans-serif;color:#888;font-weight:300;text-align:center;border-radius:50%;border-width:0;background-color:transparent;transition:background-color .25s;box-sizing:border-box;z-index:2}.fancybox-close-small:focus{outline:none}.fancybox-close-small:focus:after{outline:1px dotted #888}.fancybox-close-small:hover:after{color:#555;background:#eee}.fancybox-slide--iframe .fancybox-close-small,.fancybox-slide--image .fancybox-close-small{top:0;right:-40px}.fancybox-slide--iframe .fancybox-close-small:after,.fancybox-slide--image .fancybox-close-small:after{font-size:35px;color:#aaa}.fancybox-slide--iframe .fancybox-close-small:hover:after,.fancybox-slide--image .fancybox-close-small:hover:after{color:#fff;background:transparent}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small{display:none}.fancybox-caption-wrap{bottom:0;left:0;right:0;padding:60px 2vw 0;background:linear-gradient(180deg,transparent 0,rgba(0,0,0,.1) 20%,rgba(0,0,0,.2) 40%,rgba(0,0,0,.6) 80%,rgba(0,0,0,.8));pointer-events:none}.fancybox-caption{padding:30px 0;border-top:1px solid hsla(0,0%,100%,.4);font-size:14px;color:#fff;line-height:20px;-webkit-text-size-adjust:none}.fancybox-caption a,.fancybox-caption button,.fancybox-caption select{pointer-events:all;position:relative}.fancybox-caption a{color:#fff;text-decoration:underline}.fancybox-slide>.fancybox-loading{border:6px solid hsla(0,0%,39%,.4);border-top:6px solid hsla(0,0%,100%,.6);border-radius:100%;height:50px;width:50px;-webkit-animation:a .8s infinite linear;animation:a .8s infinite linear;background:transparent;position:absolute;top:50%;left:50%;margin-top:-30px;margin-left:-30px;z-index:99999}@-webkit-keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);opacity:0}.fancybox-fx-slide.fancybox-slide--next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);opacity:0}.fancybox-fx-slide.fancybox-slide--current{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{-webkit-transform:scale3d(1.5,1.5,1.5);transform:scale3d(1.5,1.5,1.5);opacity:0}.fancybox-fx-zoom-in-out.fancybox-slide--next{-webkit-transform:scale3d(.5,.5,.5);transform:scale3d(.5,.5,.5);opacity:0}.fancybox-fx-zoom-in-out.fancybox-slide--current{-webkit-transform:scaleX(1);transform:scaleX(1);opacity:1}.fancybox-fx-rotate.fancybox-slide--previous{-webkit-transform:rotate(-1turn);transform:rotate(-1turn);opacity:0}.fancybox-fx-rotate.fancybox-slide--next{-webkit-transform:rotate(1turn);transform:rotate(1turn);opacity:0}.fancybox-fx-rotate.fancybox-slide--current{-webkit-transform:rotate(0deg);transform:rotate(0deg);opacity:1}.fancybox-fx-circular.fancybox-slide--previous{-webkit-transform:scale3d(0,0,0) translate3d(-100%,0,0);transform:scale3d(0,0,0) translate3d(-100%,0,0);opacity:0}.fancybox-fx-circular.fancybox-slide--next{-webkit-transform:scale3d(0,0,0) translate3d(100%,0,0);transform:scale3d(0,0,0) translate3d(100%,0,0);opacity:0}.fancybox-fx-circular.fancybox-slide--current{-webkit-transform:scaleX(1) translateZ(0);transform:scaleX(1) translateZ(0);opacity:1}.fancybox-fx-tube.fancybox-slide--previous{-webkit-transform:translate3d(-100%,0,0) scale(.1) skew(-10deg);transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{-webkit-transform:translate3d(100%,0,0) scale(.1) skew(10deg);transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{-webkit-transform:translateZ(0) scale(1);transform:translateZ(0) scale(1)}.fancybox-share{padding:30px;border-radius:3px;background:#f4f4f4;max-width:90%;text-align:center}.fancybox-share h1{color:#222;margin:0 0 20px;font-size:35px;font-weight:700}.fancybox-share p{margin:0;padding:0}p.fancybox-share__links{margin-right:-10px}.fancybox-share__button{display:inline-block;text-decoration:none;margin:0 10px 10px 0;padding:0 15px;min-width:130px;border:0;border-radius:3px;background:#fff;white-space:nowrap;font-size:14px;font-weight:700;line-height:40px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#fff;transition:all .2s}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{position:relative;top:-1px;width:25px;height:25px;margin-right:7px;vertical-align:middle}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{box-sizing:border-box;width:100%;margin:10px 0 0;padding:10px 15px;background:transparent;color:#5d5b5b;font-size:14px;outline:none;border:0;border-bottom:2px solid #d7d7d7}.fancybox-thumbs{display:none;position:absolute;top:0;bottom:0;right:0;width:212px;margin:0;padding:2px 2px 4px;background:#fff;-webkit-tap-highlight-color:transparent;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;box-sizing:border-box;z-index:99995}.fancybox-thumbs-x{overflow-y:hidden;overflow-x:auto}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs>ul{list-style:none;position:absolute;position:relative;width:100%;height:100%;margin:0;padding:0;overflow-x:hidden;overflow-y:auto;font-size:0;white-space:nowrap}.fancybox-thumbs-x>ul{overflow:hidden}.fancybox-thumbs-y>ul::-webkit-scrollbar{width:7px}.fancybox-thumbs-y>ul::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y>ul::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs>ul>li{float:left;overflow:hidden;padding:0;margin:2px;width:100px;height:75px;max-width:calc(50% - 4px);max-height:calc(100% - 8px);position:relative;cursor:pointer;outline:none;-webkit-tap-highlight-color:transparent;-webkit-backface-visibility:hidden;backface-visibility:hidden;box-sizing:border-box}li.fancybox-thumbs-loading{background:rgba(0,0,0,.1)}.fancybox-thumbs>ul>li>img{position:absolute;top:0;left:0;max-width:none;max-height:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-thumbs>ul>li:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border:4px solid #4ea7f9;z-index:99991;opacity:0;transition:all .2s cubic-bezier(.25,.46,.45,.94)}.fancybox-thumbs>ul>li.fancybox-thumbs-active:before{opacity:1}@media (max-width:800px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs>ul>li{max-width:calc(100% - 10px)}}.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; }
.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-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%;
-webkit-transform-style: preserve-3d; }
.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 {
-webkit-animation-duration: 1000ms;
animation-duration: 1000ms;
-webkit-animation-fill-mode: both;
animation-fill-mode: both; }
.owl-carousel .owl-animated-in {
z-index: 0; }
.owl-carousel .owl-animated-out {
z-index: 1; }
.owl-carousel .fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut; }
@-webkit-keyframes fadeOut {
0% {
opacity: 1; }
100% {
opacity: 0; } }
@keyframes fadeOut {
0% {
opacity: 1; }
100% {
opacity: 0; } } .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 {
-webkit-transform-style: preserve-3d;
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(//aq-technologies.com/wp-content/themes/saasweb/css/owl.video.play.png) no-repeat;
cursor: pointer;
z-index: 1;
-webkit-backface-visibility: hidden;
transition: -webkit-transform 100ms ease;
transition: transform 100ms ease; }
.owl-carousel .owl-video-play-icon:hover {
-webkit-transform: scale(1.3, 1.3);
-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%; }@font-face {
font-family: 'Pe-icon-7-stroke';
src:url(//aq-technologies.com/wp-content/themes/saasweb/fonts/Pe-icon-7-stroke.eot?d7yf1v);
src:url(//aq-technologies.com/wp-content/themes/saasweb/fonts/Pe-icon-7-stroke.eot?#iefixd7yf1v) format('embedded-opentype'),
url(//aq-technologies.com/wp-content/themes/saasweb/fonts/Pe-icon-7-stroke.woff?d7yf1v) format('woff'),
url(//aq-technologies.com/wp-content/themes/saasweb/fonts/Pe-icon-7-stroke.ttf?d7yf1v) format('truetype'),
url(//aq-technologies.com/wp-content/themes/saasweb/fonts/Pe-icon-7-stroke.svg?d7yf1v#Pe-icon-7-stroke) format('svg');
font-weight: normal;
font-style: normal;
}
[class^="pe-7s-"], [class*=" pe-7s-"] {
display: inline-block;
font-family: 'Pe-icon-7-stroke';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.pe-7s-album:before {
content: "\e6aa";
}
.pe-7s-arc:before {
content: "\e6ab";
}
.pe-7s-back-2:before {
content: "\e6ac";
}
.pe-7s-bandaid:before {
content: "\e6ad";
}
.pe-7s-car:before {
content: "\e6ae";
}
.pe-7s-diamond:before {
content: "\e6af";
}
.pe-7s-door-lock:before {
content: "\e6b0";
}
.pe-7s-eyedropper:before {
content: "\e6b1";
}
.pe-7s-female:before {
content: "\e6b2";
}
.pe-7s-gym:before {
content: "\e6b3";
}
.pe-7s-hammer:before {
content: "\e6b4";
}
.pe-7s-headphones:before {
content: "\e6b5";
}
.pe-7s-helm:before {
content: "\e6b6";
}
.pe-7s-hourglass:before {
content: "\e6b7";
}
.pe-7s-leaf:before {
content: "\e6b8";
}
.pe-7s-magic-wand:before {
content: "\e6b9";
}
.pe-7s-male:before {
content: "\e6ba";
}
.pe-7s-map-2:before {
content: "\e6bb";
}
.pe-7s-next-2:before {
content: "\e6bc";
}
.pe-7s-paint-bucket:before {
content: "\e6bd";
}
.pe-7s-pendrive:before {
content: "\e6be";
}
.pe-7s-photo:before {
content: "\e6bf";
}
.pe-7s-piggy:before {
content: "\e6c0";
}
.pe-7s-plugin:before {
content: "\e6c1";
}
.pe-7s-refresh-2:before {
content: "\e6c2";
}
.pe-7s-rocket:before {
content: "\e6c3";
}
.pe-7s-settings:before {
content: "\e6c4";
}
.pe-7s-shield:before {
content: "\e6c5";
}
.pe-7s-smile:before {
content: "\e6c6";
}
.pe-7s-usb:before {
content: "\e6c7";
}
.pe-7s-vector:before {
content: "\e6c8";
}
.pe-7s-wine:before {
content: "\e6c9";
}
.pe-7s-cloud-upload:before {
content: "\e68a";
}
.pe-7s-cash:before {
content: "\e68c";
}
.pe-7s-close:before {
content: "\e680";
}
.pe-7s-bluetooth:before {
content: "\e68d";
}
.pe-7s-cloud-download:before {
content: "\e68b";
}
.pe-7s-way:before {
content: "\e68e";
}
.pe-7s-close-circle:before {
content: "\e681";
}
.pe-7s-id:before {
content: "\e68f";
}
.pe-7s-angle-up:before {
content: "\e682";
}
.pe-7s-wristwatch:before {
content: "\e690";
}
.pe-7s-angle-up-circle:before {
content: "\e683";
}
.pe-7s-world:before {
content: "\e691";
}
.pe-7s-angle-right:before {
content: "\e684";
}
.pe-7s-volume:before {
content: "\e692";
}
.pe-7s-angle-right-circle:before {
content: "\e685";
}
.pe-7s-users:before {
content: "\e693";
}
.pe-7s-angle-left:before {
content: "\e686";
}
.pe-7s-user-female:before {
content: "\e694";
}
.pe-7s-angle-left-circle:before {
content: "\e687";
}
.pe-7s-up-arrow:before {
content: "\e695";
}
.pe-7s-angle-down:before {
content: "\e688";
}
.pe-7s-switch:before {
content: "\e696";
}
.pe-7s-angle-down-circle:before {
content: "\e689";
}
.pe-7s-scissors:before {
content: "\e697";
}
.pe-7s-wallet:before {
content: "\e600";
}
.pe-7s-safe:before {
content: "\e698";
}
.pe-7s-volume2:before {
content: "\e601";
}
.pe-7s-volume1:before {
content: "\e602";
}
.pe-7s-voicemail:before {
content: "\e603";
}
.pe-7s-video:before {
content: "\e604";
}
.pe-7s-user:before {
content: "\e605";
}
.pe-7s-upload:before {
content: "\e606";
}
.pe-7s-unlock:before {
content: "\e607";
}
.pe-7s-umbrella:before {
content: "\e608";
}
.pe-7s-trash:before {
content: "\e609";
}
.pe-7s-tools:before {
content: "\e60a";
}
.pe-7s-timer:before {
content: "\e60b";
}
.pe-7s-ticket:before {
content: "\e60c";
}
.pe-7s-target:before {
content: "\e60d";
}
.pe-7s-sun:before {
content: "\e60e";
}
.pe-7s-study:before {
content: "\e60f";
}
.pe-7s-stopwatch:before {
content: "\e610";
}
.pe-7s-star:before {
content: "\e611";
}
.pe-7s-speaker:before {
content: "\e612";
}
.pe-7s-signal:before {
content: "\e613";
}
.pe-7s-shuffle:before {
content: "\e614";
}
.pe-7s-shopbag:before {
content: "\e615";
}
.pe-7s-share:before {
content: "\e616";
}
.pe-7s-server:before {
content: "\e617";
}
.pe-7s-search:before {
content: "\e618";
}
.pe-7s-film:before {
content: "\e6a5";
}
.pe-7s-science:before {
content: "\e619";
}
.pe-7s-disk:before {
content: "\e6a6";
}
.pe-7s-ribbon:before {
content: "\e61a";
}
.pe-7s-repeat:before {
content: "\e61b";
}
.pe-7s-refresh:before {
content: "\e61c";
}
.pe-7s-add-user:before {
content: "\e6a9";
}
.pe-7s-refresh-cloud:before {
content: "\e61d";
}
.pe-7s-paperclip:before {
content: "\e69c";
}
.pe-7s-radio:before {
content: "\e61e";
}
.pe-7s-note2:before {
content: "\e69d";
}
.pe-7s-print:before {
content: "\e61f";
}
.pe-7s-network:before {
content: "\e69e";
}
.pe-7s-prev:before {
content: "\e620";
}
.pe-7s-mute:before {
content: "\e69f";
}
.pe-7s-power:before {
content: "\e621";
}
.pe-7s-medal:before {
content: "\e6a0";
}
.pe-7s-portfolio:before {
content: "\e622";
}
.pe-7s-like2:before {
content: "\e6a1";
}
.pe-7s-plus:before {
content: "\e623";
}
.pe-7s-left-arrow:before {
content: "\e6a2";
}
.pe-7s-play:before {
content: "\e624";
}
.pe-7s-key:before {
content: "\e6a3";
}
.pe-7s-plane:before {
content: "\e625";
}
.pe-7s-joy:before {
content: "\e6a4";
}
.pe-7s-photo-gallery:before {
content: "\e626";
}
.pe-7s-pin:before {
content: "\e69b";
}
.pe-7s-phone:before {
content: "\e627";
}
.pe-7s-plug:before {
content: "\e69a";
}
.pe-7s-pen:before {
content: "\e628";
}
.pe-7s-right-arrow:before {
content: "\e699";
}
.pe-7s-paper-plane:before {
content: "\e629";
}
.pe-7s-delete-user:before {
content: "\e6a7";
}
.pe-7s-paint:before {
content: "\e62a";
}
.pe-7s-bottom-arrow:before {
content: "\e6a8";
}
.pe-7s-notebook:before {
content: "\e62b";
}
.pe-7s-note:before {
content: "\e62c";
}
.pe-7s-next:before {
content: "\e62d";
}
.pe-7s-news-paper:before {
content: "\e62e";
}
.pe-7s-musiclist:before {
content: "\e62f";
}
.pe-7s-music:before {
content: "\e630";
}
.pe-7s-mouse:before {
content: "\e631";
}
.pe-7s-more:before {
content: "\e632";
}
.pe-7s-moon:before {
content: "\e633";
}
.pe-7s-monitor:before {
content: "\e634";
}
.pe-7s-micro:before {
content: "\e635";
}
.pe-7s-menu:before {
content: "\e636";
}
.pe-7s-map:before {
content: "\e637";
}
.pe-7s-map-marker:before {
content: "\e638";
}
.pe-7s-mail:before {
content: "\e639";
}
.pe-7s-mail-open:before {
content: "\e63a";
}
.pe-7s-mail-open-file:before {
content: "\e63b";
}
.pe-7s-magnet:before {
content: "\e63c";
}
.pe-7s-loop:before {
content: "\e63d";
}
.pe-7s-look:before {
content: "\e63e";
}
.pe-7s-lock:before {
content: "\e63f";
}
.pe-7s-lintern:before {
content: "\e640";
}
.pe-7s-link:before {
content: "\e641";
}
.pe-7s-like:before {
content: "\e642";
}
.pe-7s-light:before {
content: "\e643";
}
.pe-7s-less:before {
content: "\e644";
}
.pe-7s-keypad:before {
content: "\e645";
}
.pe-7s-junk:before {
content: "\e646";
}
.pe-7s-info:before {
content: "\e647";
}
.pe-7s-home:before {
content: "\e648";
}
.pe-7s-help2:before {
content: "\e649";
}
.pe-7s-help1:before {
content: "\e64a";
}
.pe-7s-graph3:before {
content: "\e64b";
}
.pe-7s-graph2:before {
content: "\e64c";
}
.pe-7s-graph1:before {
content: "\e64d";
}
.pe-7s-graph:before {
content: "\e64e";
}
.pe-7s-global:before {
content: "\e64f";
}
.pe-7s-gleam:before {
content: "\e650";
}
.pe-7s-glasses:before {
content: "\e651";
}
.pe-7s-gift:before {
content: "\e652";
}
.pe-7s-folder:before {
content: "\e653";
}
.pe-7s-flag:before {
content: "\e654";
}
.pe-7s-filter:before {
content: "\e655";
}
.pe-7s-file:before {
content: "\e656";
}
.pe-7s-expand1:before {
content: "\e657";
}
.pe-7s-exapnd2:before {
content: "\e658";
}
.pe-7s-edit:before {
content: "\e659";
}
.pe-7s-drop:before {
content: "\e65a";
}
.pe-7s-drawer:before {
content: "\e65b";
}
.pe-7s-download:before {
content: "\e65c";
}
.pe-7s-display2:before {
content: "\e65d";
}
.pe-7s-display1:before {
content: "\e65e";
}
.pe-7s-diskette:before {
content: "\e65f";
}
.pe-7s-date:before {
content: "\e660";
}
.pe-7s-cup:before {
content: "\e661";
}
.pe-7s-culture:before {
content: "\e662";
}
.pe-7s-crop:before {
content: "\e663";
}
.pe-7s-credit:before {
content: "\e664";
}
.pe-7s-copy-file:before {
content: "\e665";
}
.pe-7s-config:before {
content: "\e666";
}
.pe-7s-compass:before {
content: "\e667";
}
.pe-7s-comment:before {
content: "\e668";
}
.pe-7s-coffee:before {
content: "\e669";
}
.pe-7s-cloud:before {
content: "\e66a";
}
.pe-7s-clock:before {
content: "\e66b";
}
.pe-7s-check:before {
content: "\e66c";
}
.pe-7s-chat:before {
content: "\e66d";
}
.pe-7s-cart:before {
content: "\e66e";
}
.pe-7s-camera:before {
content: "\e66f";
}
.pe-7s-call:before {
content: "\e670";
}
.pe-7s-calculator:before {
content: "\e671";
}
.pe-7s-browser:before {
content: "\e672";
}
.pe-7s-box2:before {
content: "\e673";
}
.pe-7s-box1:before {
content: "\e674";
}
.pe-7s-bookmarks:before {
content: "\e675";
}
.pe-7s-bicycle:before {
content: "\e676";
}
.pe-7s-bell:before {
content: "\e677";
}
.pe-7s-battery:before {
content: "\e678";
}
.pe-7s-ball:before {
content: "\e679";
}
.pe-7s-back:before {
content: "\e67a";
}
.pe-7s-attention:before {
content: "\e67b";
}
.pe-7s-anchor:before {
content: "\e67c";
}
.pe-7s-albums:before {
content: "\e67d";
}
.pe-7s-alarm:before {
content: "\e67e";
}
.pe-7s-airplay:before {
content: "\e67f";
}.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;
margin-left: auto;
margin-right: auto;
}
.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;
}@font-face {
font-family: 'Stroke-Gap-Icons';
src: url(//aq-technologies.com/wp-content/themes/saasweb/fonts/Stroke-Gap-Icons.eot);
}
@font-face {
font-family: 'Stroke-Gap-Icons';
src: url(data:application/x-font-ttf;charset=utf-8;base64,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) format('truetype'),
url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAIP4AAoAAAAAg7AAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAfQ4AAH0O2y4JFk9TLzIAAH4EAAAAYAAAAGAIIv19Y21hcAAAfmQAAABMAAAATBpVzR5nYXNwAAB+sAAAAAgAAAAIAAAAEGhlYWQAAH64AAAANgAAADYAUlk+aGhlYQAAfvAAAAAkAAAAJAPkAqlobXR4AAB/FAAAAzAAAAMwkQcUJ21heHAAAIJEAAAABgAAAAYAzFAAbmFtZQAAgkwAAAGKAAABipxmbApwb3N0AACD2AAAACAAAAAgAAMAAAEABAQAAQEBEVN0cm9rZS1HYXAtSWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoAGVP/i4seCgAZU/+LiwwHiGf4mPh9BR0AAAYJDx0AAAYOER0AAAAJHQAAfQUSAM0CAAEAEQAhACMAJQAoAC0AMgA3ADwAQQBGAEsAUABVAFoAXwBkAGkAbgBzAHgAfQCCAIcAjACRAJYAmwCgAKUAqgCvALQAuQC+AMMAyADNANIA1wDcAOEA5gDrAPAA9QD6AP8BBAEJAQ4BEwEYAR0BIgEnASwBMQE2ATsBQAFFAUoBTwFUAVkBXgFjAWgBbQFyAXcBfAGBAYYBiwGQAZUBmgGfAaQBqQGuAbMBuAG9AcIBxwHMAdEB1gHbAeAB5QHqAe8B9AH5Af4CAwIIAg0CEgIXAhwCIQImAisCMAI1AjoCPwJEAkkCTgJTAlgCXQJiAmcCbAJxAnYCewKAAoUCigKPApQCmQKeAqMCqAKtArICtwK8AsECxgLLAtAC1QLaAt8C5ALpAu4C8wL4Av0DAgMHAwwDEQMWAxsDIAMlAyoDLwM0AzkDPgNDA0gDTQNSA1cDXANhA2YDawNwA3UDegN/A4QDiQOOA5MDmAOdA6IDpwOsA7EDtgO7A8ADxQPKA88D1APZA94D4wPoA+0D8gP3A/wEAQQGBAsEEFN0cm9rZS1HYXAtSWNvbnNTdHJva2UtR2FwLUljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzdUU2MDR1RTYwNXVFNjA2dUU2MDd1RTYwOHVFNjA5dUU2MEF1RTYwQnVFNjBDdUU2MER1RTYwRXVFNjBGdUU2MTB1RTYxMXVFNjEydUU2MTN1RTYxNHVFNjE1dUU2MTZ1RTYxN3VFNjE4dUU2MTl1RTYxQXVFNjFCdUU2MUN1RTYxRHVFNjFFdUU2MUZ1RTYyMHVFNjIxdUU2MjJ1RTYyM3VFNjI0dUU2MjV1RTYyNnVFNjI3dUU2Mjh1RTYyOXVFNjJBdUU2MkJ1RTYyQ3VFNjJEdUU2MkV1RTYyRnVFNjMwdUU2MzF1RTYzMnVFNjMzdUU2MzR1RTYzNXVFNjM2dUU2Mzd1RTYzOHVFNjM5dUU2M0F1RTYzQnVFNjNDdUU2M0R1RTYzRXVFNjNGdUU2NDB1RTY0MXVFNjQydUU2NDN1RTY0NHVFNjQ1dUU2NDZ1RTY0N3VFNjQ4dUU2NDl1RTY0QXVFNjRCdUU2NEN1RTY0RHVFNjRFdUU2NEZ1RTY1MHVFNjUxdUU2NTJ1RTY1M3VFNjU0dUU2NTV1RTY1NnVFNjU3dUU2NTh1RTY1OXVFNjVBdUU2NUJ1RTY1Q3VFNjVEdUU2NUV1RTY1RnVFNjYwdUU2NjF1RTY2MnVFNjYzdUU2NjR1RTY2NXVFNjY2dUU2Njd1RTY2OHVFNjY5dUU2NkF1RTY2QnVFNjZDdUU2NkR1RTY2RXVFNjZGdUU2NzB1RTY3MXVFNjcydUU2NzN1RTY3NHVFNjc1dUU2NzZ1RTY3N3VFNjc4dUU2Nzl1RTY3QXVFNjdCdUU2N0N1RTY3RHVFNjdFdUU2N0Z1RTY4MHVFNjgxdUU2ODJ1RTY4M3VFNjg0dUU2ODV1RTY4NnVFNjg3dUU2ODh1RTY4OXVFNjhBdUU2OEJ1RTY4Q3VFNjhEdUU2OEV1RTY4RnVFNjkwdUU2OTF1RTY5MnVFNjkzdUU2OTR1RTY5NXVFNjk2dUU2OTd1RTY5OHVFNjk5dUU2OUF1RTY5QnVFNjlDdUU2OUR1RTY5RXVFNjlGdUU2QTB1RTZBMXVFNkEydUU2QTN1RTZBNHVFNkE1dUU2QTZ1RTZBN3VFNkE4dUU2QTl1RTZBQXVFNkFCdUU2QUN1RTZBRHVFNkFFdUU2QUZ1RTZCMHVFNkIxdUU2QjJ1RTZCM3VFNkI0dUU2QjV1RTZCNnVFNkI3dUU2Qjh1RTZCOXVFNkJBdUU2QkJ1RTZCQ3VFNkJEdUU2QkV1RTZCRnVFNkMwdUU2QzF1RTZDMnVFNkMzdUU2QzR1RTZDNXVFNkM2dUU2QzcAAAIBiQDKAMwCAAEA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tovAi8C2tsCLwIu2YItWi1ZgYFaLCIv3NBVoi25ui2iLaKhurouui6ioi66Lrm6oaIsI+1SrFcuLi2tLi4urBffUixXLi4trS4uLqwWL+zQVy4uLa0uLi6sF+9SLFcuLi2tLi4urBQ74lNsV+2SLi6v3RIuL97T8VIuL+7T3RYuLa/tli4v39PiUiwVL+7QV/BSLi/d0+BSLi/t0Bfv0qxX31IuL9zT71IuL+zQF9yRMFauLi2pri4usBTpKFfdWi4tr+1aLi6sFDvg09/QV+9SLBWiLbqiLrouuqKiuiwj31IsFrouobotoi2hubmiLCPvU6xV5i319i3mLeZl9nYsI99SLBZ2LmZmLnYudfZl5iwj71IsF90T8dBVri4vUZLLMy0vKsbOL1KuLizRycsxLSkukcgUO+CNrFfuyi3r4A6uNmvvl93aLmvflq4kF+/TMFfgUi4tr/BSLi6sF99hrFfuci6L3BPdui6L7BAX7dKsV90yLgrv7OouCWwXn+8QVaItuqIuui66oqK6Lrouobotoi2hubmiLCIvrFXmLfX2LeYt5mX2di52LmZmLnYudfZl5iwgr6xX3VIuLa/tUi4urBYv7dBX3VIuLa/tUi4urBQ6LixX4lIuLa/yUi4urBYv4dBWri4v8lGuLi/iUBfcE/FQVq4uLa2uLi6sFy4sVq4uLa2uLi6sFy4sVq4uLa2uLi6sFy4sVq4uLa2uLi6sFy4sVq4uLa2uLi6sFy4sVq4uLa2uLi6sF/CTLFauLi2tri4urBYvLFauLi2tri4urBYvLFauLi2tri4urBYvLFauLi2tri4urBYvLFauLi2tri4urBYvLFauLi2tri4urBfdE+/QVK4uL93Tri4v7dAVLqxWri4v3NGuLi/s0BfdUaxUri4v39OuLi/v0BUurFauLi/e0a4uL+7QF91RrFSuLi/e064uL+7QFS6sVq4uL93Rri4v7dAUOi4sV+JSLi2v8lIuLqwWL+HQVq4uL/JRri4v4lAX3BPxUFauLi2tri4urBcuLFauLi2tri4urBcuLFauLi2tri4urBcuLFauLi2tri4urBcuLFauLi2tri4urBcuLFauLi2tri4urBfwkyxWri4tra4uLqwWLyxWri4tra4uLqwWLyxWri4tra4uLqwWLyxWri4tra4uLqwWLyxWri4tra4uLqwWLyxWri4tra4uLqwX3Afu+FXGf9fch3Un3GvcaoXX7LvsuPckF94FyFWuLi/cE+wSLi6v3JIsFDouLFfiUi4tr/JSLi6sFi/h0FauLi/yUa4uL+JQF9wT8VBWri4tra4uLqwXLixWri4tra4uLqwXLixWri4tra4uLqwXLixWri4tra4uLqwXLixWri4tra4uLqwXLixWri4tra4uLqwX8JMsVq4uLa2uLi6sFi8sVq4uLa2uLi6sFi8sVq4uLa2uLi6sFi8sVq4uLa2uLi6sFi8sVq4uLa2uLi6sFi8sVq4uLa2uLi6sF+Cj7rxX7GvcpO0sh9xCjn+En28v3Lvs/BY9wFfski4ur9wSLi/cEq4sFDviUaxX8lIuL+JT4lIuL/JQF/HSrFfhUi4v4VPxUi4v8VAX3BPgUFauLi/sUa4uL9xQFW1sV9xSLi2v7FIuLqwX3VIsV9xSLi2v7FIuLqwWL+zQVq4uLa2uLi6sF20sVq4uLa2uLi6sF+z/WFaF1Kyt1oevrBfdUixWhdSsrdaHr6wX7nosV6yt1dSvroaEFDvgU94QVS4uLq6uLi5sFi+ND0zOLM4tDQ4szCIt7q4uLa0uLi7sFi/Xh4fWL9YvhNYshCItbBWv7pBX71IuL94Sri4v7ZPeUi4v3ZKuLBfc0qxVLi4urq4uLmwWL40PTM4sIi6sF9YvhNYshCItbBWv7pBUri4ury4uL92SriwUO98T31BUri4vrq4uLS6uLi8uriwX7FMsV9zSLi2v7NIuLqwX3dPyUFfu0i4v3hKuLi/tk93SLi/dkq4sFi4sVa4sFi8lZvU2LTYtZWYtNCGuLBYvazMzai9qLzEqLPAj7VPtEFWuLi/dEBYu3r663iwiLawVxi3V2i3EIi/tEBQ73xPfUFSuLi+uri4tLq4uLy6uLBSvLFeuLi2sri4urBfck/JQV+1SLi/e0BYvAtrbAi8CLtmCLVgiL+7QF+zSrFfcUi4v3lAWLrm6oaItoi25ui2gIi/uUBcu7FWuLi/dkBYucmZidiwiL+4IFDtv3ZBWri4v7JGuLi/ckBauLFWuLBYvXvM3RowhH9fchi4trOIvILXSGBUh9W1CLRwj3dPuEFfs0iwVWi2C2i8AIq4sFi2iobq6LCPc0iwWui6ioi64Iq4sFi1ZgYFaLCMv3hBWri4v7JGuLi/ckBauLFWuLBYvPW8ZImQh0kNj3C6V5VzoF0XO8SYs/CPtE+wQVcYt1oYulCKuLBYuCkoSUi5SLkpKLlIuUhJKCi3GLdaGLpYumoaCli6WLoXaLcAhriwWLlISSgouCi4SEi4KLgpKElIuli6F2i3CLcXV1cYsIe/dkFauLi2tri4urBYv7dBWri4tra4uLqwUO9773wBXbS3dzO8ufowVR+zAV+4SLi/c094SLi2v7ZIuLK/dkiwVr+1YVi/cWq4uLTfdr90L7a/dCi01ri4v3Fve9+4YFDveU93YVaItuqIuui66oqK6Lrouobotoi2hubmiLCIvrFXmLfX2LeYt5mX2di52LmZmLnYudfZl5iwj7APs5FUbPi/cE0M8IoXUFU1OLL8NTCHV1BUJaFSfvi/c27+4IoXUFNDSL+yLiNAh1dAX3tcMVdaIFw8OL51PDCKGhBdBHi/sERkYI1EwVdaEF4uKL9yI04gihoQXvKIv7NicoCPsJjBVri4urBYudfZl5i3mLfX2LeQiLa2uLi6sFi66oqK6LrouobotoCItrBYv7FBX7FIuL6/cUi4srBSurFcuLi6tLi4trBQ73RGsVXItfnWqtRs+L9wTQzwjDxPeN+41SUwVqaV95XIsIR/fMFWlpBVNTiy/DU6ZwsHyxi7GLsJqmpgitrftg92AFgPtrFV+2i9O3tgihdQVsa4tZqmsIdXUF91D3BhV1oQWRkY6Ti5SLlIiThZF/l3WLf38IdaEFo6O1i6Nzl3+Se4t6i3qEe39/CO2yFYvbS8s7iwiLqwXsi9o8iyoIa4sF7JIVi/cPJ+/7D4sIi6sF9yCL9wf7B4v7IAhriwUO95S7FfsQiyfhi/UIi5vLi4trbIsFlTrdTO6L7ovdypXcCGyLi6vLi4t7BYshJzX7EIsIi/ekFV+LZ6+Lt4u3r6+3i7eLr2eLX4tfZ2dfiwiL9xQVcYt1dYtxi3GhdaWLpYuhoYuli6V1oXGLCHv7BBWri4v7dGuLi/d0BZv8BBVxi3Whi6UIq4sFi4KShJSLlIuSkouUCKuLBYtxdXVxiwgO68sVe4t8j32SXKR5xqS5pbrFnblyCHxuBWycZH97bHpsl2Sqe5qDnImbkJyQmJaTmgiofAV+dHd6c4SCiIGKgosI+B/3gxWVbPwk+xOBqfgk9xQF+7tBFfsb9y/354uLK2uLi8v7gYvkJgXbOhXLO3N3S9ujnwUO95TrFSGLNeGL9Yv14eH1i/WL4TWLIYshNTUhiwiL9/QVM4tDQ4szizPTQ+OL44vT04vji+ND0zOLCIv7lBVWi2C2i8CLwLa2wIvAi7Zgi1aLVmBgVosIi/c0FWiLbm6LaItoqG6ui66LqKiLrouubqhoiwiLSxVriwWLnZmZnYsIi2sF90z71BX8BIu08al/dFH3pIt0xamXBQ74LfdBFXSiyMgFt7aL01+2YLdDi2BfCE5OdKLIyAXDw+eLw1PDU4svU1MITk4F+537YRVmi2aZb6dTw4vnw8MIyMiidE5OBV9gi0O3YLZf04u2twjIyKJ0Tk4Fb29mfWaLCFb4TxX3FPsUdXX7FPcUoaEF93T7dBX3FPsUdXX7FPcUoaEFDvfU9wQV+9SLi/fU99SLi/vUBfu0qxX3lIuL95T7lIuL+5QF+HRrFfs0i4ur9xSLi/cAYd9Vi4sry4uLayuLi/c09YvB+wAF/FR3FfdUi4tr+1SLi6sF+AT7dBVoi26oi64Iq4sFi3mZfZ2LnYuZmYudCKuLBYtobm5oiwj7xIsVaItuqIuuCKuLBYt5mX2di52LmZmLnQiriwWLaG5uaIsIDveUaxX7B4su6Iv3B4vfvdfZqwiXbgVJb2FLi0SLKto87Ivmi9jSkuUIq4kFgiAwNyCLCPdD93MVhsxixE6lCJeoBdNtvEiRPQhriQX7E/clFWuLi9u7i4ur+xSLi2u7i4s7a4uLu1uLi+v3VIuLK1uLBfcpphWhdVtbdaG7uwWLohW4XnR0XriiogVG+6YV+ySLi/ckq4uL+wT3BIsFDvf69BX7CvcHi/c6q4uL+y33ACIF+w/7MRVJi0mkWrwIoaIF10D3Cn/jxQidcQVgblp+WosI92n3BhVxnQXF43/3C0DWCKKhBeE2mPscSCYItvchFWuLBYv1P+gioAiRqgX3DHPiIYv7DQj7lvuUFfshi/sH9weL9yGL9w7h9PcLowiRbAUkdj8viyCL+w/wJvcPiwiLawUO+JT3lBX8lIuL91T4lIuL+1QF/HSrFfhUi4v3FPxUi4v7FAX4RPu0Ffw0i4v3hKuLi/tk9/SLi/dkq4sFO/sEFfuUi4vrq4uLS/dUi4vLq4sFDvda95QV+1qLi6v3RIvM90mpgQX3RPx0FftT9wX7U/sF0PdNLrmZp/cMUVv7E/cV1/cVP1v3E/cMxZlvLl0F9xrnFftwi2j3EqmUqCT3WIsFDvhh9xQV+82LO/e0V4uLq9eL2/u095uLpfck+5GLi6v3t4sF+8f75BVxi3Whi6WLpaGhpYuli6F1i3GLcXV1cYsIi8sVgouEhIuCi4KShJSLlIuSkouUi5SEkoKLCPdkSxVxi3Whi6WLpaGhpYuli6F1i3GLcXV1cYsIi8sVgouEhIuCi4KShJSLlIuSkouUi5SEkoKLCPs092QVq4uLO2uLi9sF64sVq4uLO2uLi9sFDrv35BWri4v7ZGuLi/dkBfgUixWri4v7ZGuLi/dkBfsw/AQVY4v7KtsFaKCIo4uuCKuLBYtrjYKhfwiLi/cgQKOL9yDWBaGXjZSLqwiriwWLaIhzaHYIiYr7KDwF+xj3lBX3dIuLa/t0i4urBYtLFfd0i4tr+3SLi6sFi/cUFfcEi4tr+wSLi6sF99TbFfsEiwVii2ihd6t3a2h1YosI+wSLi6v3BIsFt4uvr4u3CKuLBYtfr2e3iwj3BIuLawUOt64VonRjZHWhsrMF+Br4GhWidD0+daHY2QWEvRXbO3V1O9uhoQX7a/xDFXSi90X3RTHl+0X7RXSi91z3XPcc+xwF+6tXFaZwdHRwpqKiBbu7FaZwdHRwpqKiBbu7FaZwdHRwpqKiBTb7pBVyi3OUeJ5msYvHsLEIonQFcnKLY6RypHKzi6SkCKJ0BXh4c4JyiwgO+HD3eRVzoAWdoZWni6eLzVXBSYtni2p8dHAIf3x/mgV0pmqaZ4tJi1VVi0mLb5VvnXUIc3YFdKd+rouvi9/Pz9+LsouwfKdxp6WwmrKL34vPR4s3i2d+aHRvCPt9+xIVVfcHeGH7PouLq/cqi7LhvSDL90nH+zT3KYuLa/tAi2ftBXL7xhVdi/sZ9zGjoPcP+yadi/cP9yajdgUO93/NFfsb9xz3RvdG9xz7G/tH+0cFMfccFeUw9xr3GjDl+xn7GQVa+34VcYtzlXmdZrGLx7CxCLe3onRfXwV/f4R7i3qLepJ7l3+Xf5uEnIuci5uSl5cIt7eidF9fBXl5c4Fxiwj37PfEFXSit7cFl5eSm4uci5yEm3+Xc6Nhi3NzCF9fdKK3twWdnaOVpYuli6OBnXmdeZVzi3GLcYFzeXkIX18F+4xiFaJ0dHR0oqKiBcubFaJ0dHR0oqKiBZvLFaJ0dHR0oqKiBWv7FBWidHR0dKKiogXb2xWidHR0dKKiogUO9+xvFfsc9w6LY5CQoXRQUYv3UPcs+x73E/ge/B37IN849zf3EJ5x+037IPsh9x34i/dIBQ74LfdBFXSiyMgFt7aL01+2YLdDi2BfCE5OdKLIyAXDw+eLw1PDU4svU1MITk4F+537YRVli2aacKZTw4vnw8MI9xD3EPdh+1/7EfsRBXBwZnxliwii99kVJSUFX2CLQ7dgoHanf6mLqYunl6CgCPHx+zL3MgUO+HKLFfxQi2n3gquPqftm+BiLqfdmq4cF/JTNFfiUi4tr/JSLi6sF92T7ARWbK2uFe+urkQXrixWrhXsra5Gb6wW+95oVpXn7BPs0cZ33BPc0BQ7342cVP4s3r0bP+wH3AW33LNHnCKV4BVA9qPsd6yvrK/cbcNfICJ9yBWlwYX5eiwj3KtkV+w33DXV1BXR0bX9qi2uLbJd1olu7i9i7ugigofsN9w2iovck+yReXwVoaItSrmiceqGCo4uji6GUnJwIuLf3I/skdXUFDvht98UV+xz3HJaWBZ2do5Wli6WLo4GdebBli09mZQiAgAUx9xoV4zMFmqSHq3agd6BqjnJ9CFp8Fev7NHB7K/c0ppsF+9n8UhW790aqg2r7EvcRrZRsBaWiFWXsKrD3W/ddonT7Ofs6zHKkS/cZ9xmidAUO9zn3KBWhc/sk+xx1o/ck9xwFtl8VaItuqIuui66oqK6Lrouobotoi2hubmiLCIvrFXmLfX2LeYt5mX2di52LmZmLnYudfZl5iwj3NJsVaYtrmHOjcqR+q4uti62Yq6SkCLa390r7SV9eBXJza35piwhc920VdnYFeXmBc4txi3GVc515nXmjgaWLpYujlZ2dCKCh+xz3GwX7x/xZFa73yvcr35tv+x0/bvuO96a9uPcMqX9Y+xwFDvc0exVgi2OcbaltqXqzi7aLtpyzqakI9033WqJ2+037WwVycn5ri2mLaZhro3Okcqt+rYuti6uYo6QI9173agWdnZWji6WLpYGjeZ15nXOVcYtxi3OBeXkI+137agVycYtjpHKXf5uEnIuLi4uLi4uci5uSl5cI91X3XaJ1+1X7XgV5eXOBcYuLi4uLi4txi3OVeZ1lsIzIsLEI9133agWkpKuYrYuti6t+o3Kkc5hri2mLaX5rcnII+137agVtbWN6YIsIDvc0yxWLiwUzi0PTi+OL49PT4osI91WLBeOL00OLM4szQ0M0iwj7VYsF91T3tBX7VYsFRYtSUotEi0TEUtKLCPdViwXRi8TEi9KL0lLERIsI+1T7dBVWi2C2i8CLwLa2wIvAi7Zgi1aLVmBgVosIi/c0FWiLbm6LaItoqG6ui66LqKiLrouubqhoiwgO+ET3xBVriwWL2krMPIs8i0pKizwIa4sFi+za2uyL7IvaPIsqCPtE++QVKos82ovsCIv3FKuLi/sUBYs8zErai9qLzMyL2giL9xSri4v7FAWLKjw8KosIe/g0FauLi/sUa4uL9xQFDveE9zQVO4uLq7uLi/cUO4uLq/cEiwX3pPu7Ffu585Wp948zi/fG+48zgan3ufMFNSkVl237JFWAqfcjwQX73vtZFSuLi/dU64uL+1QFS6sVq4uL9xRri4v7FAXr+1QVaItuqIuuCIvLq4uLSwWLeZl9nYudi5mZi50Ii8vLi4tra4uLawWLaG5uaIsIDvdh90EVU8OL5sPECKJ0BV9fi0S3YAh0dAX3YIsVdKLIyAW3tovTX7Zgt0OLYF8ITk50osjIBcPD54vDU8NTiy9TUwhOTgUlJRV0ogW3t4vSX7YIoqIFw1OLMFNSCPs3JBVmi2aZb6dTw4vnw8MIyMiidE5OBV9gi0O3YLZf04u2twjIyKJ0Tk4Fb29mfWaLCA7r95QVq4uLa2uLi6sF64sVq4uLa2uLi6sF64sVq4uLa2uLi6sF64sVq4uLa2uLi6sF+7TLFauLi2tri4urBeuLFauLi2tri4urBeuLFauLi2tri4urBeuLFauLi2tri4urBfuU+zQV95SLi2v7lIuLqwX4FPsEFfyUi4v3xKuLi/uk+FSLi/e0/HSLi6v4lIsFDvhUaxX8FIuL92Sri4v7RPfUi4v3RKuLBa+QFft494j7ePuIc6H3kPeg95D7oAX7UPs/FWuLi/cES4uL+wRri4v3JPcUiwVLqxVoi26oi66Lrqiorouui6hui2iLaG5uaIsIi+sVeYt9fYt5i3mZfZ2LnYuZmYudi519mXmLCA73mX8V+3X3ZQV0p36ui6+L38/P34uyi7B8p3GnpbCasovfi89HizeLZ35odG8Iior7RPs0daP3Q/czBZ2glaeLp4vNVcFJi2eLanx0cAh/fH+aBXSmappni0mLVVWLSYtvlW+ddgj3c/tjdXMFefMV+zX3KgV/moWfi56LvLKyvIsIi2sFbItycotsi3+Pf5KBCPcy+yZ1cwXP93gVb5oFlqCemqKRoZKjiKCACHtvBX6SfI19h3yGf4KEfggO9wTbFXuLBVSLYrSLwovCtLTCiwibi4v7VAVr9zIVboV4c4tri2yecqiFCIv3EAX35PsyFXuLi/dUm4sFwou0YotUi1RiYlSLCJv3MhWL+xAFqJGepIuqi6t4o26RCIv7ghWLqwWTi5OQi5YIq4sFi3B2dnCLCEurFcuLi2tLi4urBWNLFXGLdaCLpouloaGli6aLoHWLcYtwdnZwiwiLyxWDi4OEi4KLgpOEk4uUi5KSi5SLlISSgosI8/ekFWuLBYvaSsw8izyLSkqLPAhriwWL7Nra7Ivsi9o8iyoIDvhh9xQV+82LO/e0V4uLq9eL2/u095uLpfck+5CLi6v3tosF+8f75BVxi3Whi6WLpaGhpYuli6F1i3GLcXV1cYsIi8sVgouEhIuCi4KShJSLlIuSkouUi5SEkoKLCPdkSxVxi3Whi6WLpaGhpYuli6F1i3GLcXV1cYsIi8sVgouEhIuCi4KShJSLlIuSkouUi5SEkoKLCPs092QVq4uLO2uLi9sF64sVq4uLO2uLi9sFK+sVa4uLt/aulW02bgX3dHcVa4uLryuji09ri4vv9zRjBQ74lPfkFWuLi/cE+wSLi6v3JIsFcIYVoXX7ZftldaH3ZfdlBfvp/I8V+ySLi/ckq4uL+wT3BIsF0fdgFaF1+2X7ZXWh92X3ZQX7Cu8Va4uL9wT3BIuLazuLBWv7BBWri4sra4uL6wX3JPckFeuLi2sri4urBfeE/BQV+wSLi6vbi4vbq4sFa/cUFauLiytri4vrBftk+2QV64uLayuLi6sFDviUmxX8lIuL99T4lIuL+9QF/HSrFfhUi4v3lPxUi4v7lAX4dPfUFfvUi4ur+zSLi2tri4vL93SLi2v3tIsFDvg095QV+9SLi/cUq4uLK/eUi4vrq4sFS0sVK4uLy6uLi2uri4urq4sF9zT8NBX8lIuL+JT4NIuLa/wUi4v8VPhUi4v4FKuLBfw0+1QV99SLi2v71IuLqwWLSxX31IuLa/vUi4urBYtLFffUi4tr+9SLi6sFDvgUqxX79IuL+FT39IuL/FQF+9SrFfe0i4v4FPu0i4v8FAW793QV91SLi2v7VIuLqwWLSxX3VIuLa/tUi4urBYtLFfdUi4tr+1SLi6sFi/dUFeuLi2sri4urBfgE/BQV++SLi6v3xIuL+BRsi4uryosFDvck95QV92SLi2v7ZIuLqwWLSxX3ZIuLa/tki4urBYtLFfdki4tr+2SLi6sFi/d0FeuLi2sri4urBffU/BQV/ESLi/hUq4uL/DT4BIuL+FT8JIuLq/hEiwUO95TbFVyLY66DuAj7N4ut95arh237cvcyi4t7BYtoqG6ui66LqKiLrgiLm/cyi233cquPrfuW+zeLBYNeY2hciwj3lCsV/JSLi/ckq4uL+wT4VIuL9wSriwUr6xVri4v3ZPuUi4v7ZGuLi/eE99SLBfuUSxXbi4trO4uLqwWLSxX3VIuLa/tUi4urBYtLFfdUi4tr+1SLi6sFDvg094QV+ySLi/ckq4uL+wT3BIsF0PdfFaF1+1X7VXWh91X3VQX7ifwvFWuLi/cE+wSLi6v3JIsFYXcVoXX7VftVdaH3VfdVBfs690cVa4uL9wT3BIuLazuLBWv7BBWri4sra4uL6wX3JPckFeuLi2sri4urBfgE/JMV+wSLi6vbi4vbq4sFa/cUFauLiytri4vrBftk+2QV64uLayuLi6sFDveU6xVci2Oug7gI+zeLr/ek+FCLr/uk+zeLBYNeY2hciwj7cvcEFfcyi4t7BYtoqG6ui66LqKiLrgiLm/cyi2/3ZPwYi2/7ZAX4cvtkFfyUi4v3JKuLi/sE+FSLi/cEq4sFDvg0axX71IuL+ASri4v75PeUi4v35KuLBfv0yxX4FIuLa/wUi4urBfekaxX7NIuL9wT3NIuL+wQF+xSrFeuLi7sri4tbBXv7BBWri4v7dGuLi/d0BeuLFauLi/t0a4uL93QFDvgEqxX7dIsFO4tLzIvai9rLzNuLCPeEiwXOi8hGi0CLPEtKO4sI+3T3lBVNi1lZi02LTb1ZyYsI93SLBcmLvb2LyYvKWLxeiwj7hIsFe1sVq4uL+xRri4v3FAVbWxX3FIuLa/sUi4urBfdU9zQVa4uLqwWLpaGhpYsIi2sFgouEhIuCCItrBcL7QRWEkoGLhYQIdKIFnp6pi554CHV0BV1eFYKUhpeLmIuYkJeUlAiidAWIiImHi4eLh42HjogIdHQF9yK4FYSSgYuF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) format('woff');
font-weight: normal;
font-style: normal;
}
.icon-stroke-gap {
font-family: 'Stroke-Gap-Icons';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-WorldWide:before {
content: "\e600";
}
.icon-WorldGlobe:before {
content: "\e601";
}
.icon-Underpants:before {
content: "\e602";
}
.icon-Tshirt:before {
content: "\e603";
}
.icon-Trousers:before {
content: "\e604";
}
.icon-Tie:before {
content: "\e605";
}
.icon-TennisBall:before {
content: "\e606";
}
.icon-Telesocpe:before {
content: "\e607";
}
.icon-Stop:before {
content: "\e608";
}
.icon-Starship:before {
content: "\e609";
}
.icon-Starship2:before {
content: "\e60a";
}
.icon-Speaker:before {
content: "\e60b";
}
.icon-Speaker2:before {
content: "\e60c";
}
.icon-Soccer:before {
content: "\e60d";
}
.icon-Snikers:before {
content: "\e60e";
}
.icon-Scisors:before {
content: "\e60f";
}
.icon-Puzzle:before {
content: "\e610";
}
.icon-Printer:before {
content: "\e611";
}
.icon-Pool:before {
content: "\e612";
}
.icon-Podium:before {
content: "\e613";
}
.icon-Play:before {
content: "\e614";
}
.icon-Planet:before {
content: "\e615";
}
.icon-Pause:before {
content: "\e616";
}
.icon-Next:before {
content: "\e617";
}
.icon-MusicNote2:before {
content: "\e618";
}
.icon-MusicNote:before {
content: "\e619";
}
.icon-MusicMixer:before {
content: "\e61a";
}
.icon-Microphone:before {
content: "\e61b";
}
.icon-Medal:before {
content: "\e61c";
}
.icon-ManFigure:before {
content: "\e61d";
}
.icon-Magnet:before {
content: "\e61e";
}
.icon-Like:before {
content: "\e61f";
}
.icon-Hanger:before {
content: "\e620";
}
.icon-Handicap:before {
content: "\e621";
}
.icon-Forward:before {
content: "\e622";
}
.icon-Footbal:before {
content: "\e623";
}
.icon-Flag:before {
content: "\e624";
}
.icon-FemaleFigure:before {
content: "\e625";
}
.icon-Dislike:before {
content: "\e626";
}
.icon-DiamondRing:before {
content: "\e627";
}
.icon-Cup:before {
content: "\e628";
}
.icon-Crown:before {
content: "\e629";
}
.icon-Column:before {
content: "\e62a";
}
.icon-Click:before {
content: "\e62b";
}
.icon-Cassette:before {
content: "\e62c";
}
.icon-Bomb:before {
content: "\e62d";
}
.icon-BatteryLow:before {
content: "\e62e";
}
.icon-BatteryFull:before {
content: "\e62f";
}
.icon-Bascketball:before {
content: "\e630";
}
.icon-Astronaut:before {
content: "\e631";
}
.icon-WineGlass:before {
content: "\e632";
}
.icon-Water:before {
content: "\e633";
}
.icon-Wallet:before {
content: "\e634";
}
.icon-Umbrella:before {
content: "\e635";
}
.icon-TV:before {
content: "\e636";
}
.icon-TeaMug:before {
content: "\e637";
}
.icon-Tablet:before {
content: "\e638";
}
.icon-Soda:before {
content: "\e639";
}
.icon-SodaCan:before {
content: "\e63a";
}
.icon-SimCard:before {
content: "\e63b";
}
.icon-Signal:before {
content: "\e63c";
}
.icon-Shaker:before {
content: "\e63d";
}
.icon-Radio:before {
content: "\e63e";
}
.icon-Pizza:before {
content: "\e63f";
}
.icon-Phone:before {
content: "\e640";
}
.icon-Notebook:before {
content: "\e641";
}
.icon-Mug:before {
content: "\e642";
}
.icon-Mastercard:before {
content: "\e643";
}
.icon-Ipod:before {
content: "\e644";
}
.icon-Info:before {
content: "\e645";
}
.icon-Icecream2:before {
content: "\e646";
}
.icon-Icecream1:before {
content: "\e647";
}
.icon-Hourglass:before {
content: "\e648";
}
.icon-Help:before {
content: "\e649";
}
.icon-Goto:before {
content: "\e64a";
}
.icon-Glasses:before {
content: "\e64b";
}
.icon-Gameboy:before {
content: "\e64c";
}
.icon-ForkandKnife:before {
content: "\e64d";
}
.icon-Export:before {
content: "\e64e";
}
.icon-Exit:before {
content: "\e64f";
}
.icon-Espresso:before {
content: "\e650";
}
.icon-Drop:before {
content: "\e651";
}
.icon-Download:before {
content: "\e652";
}
.icon-Dollars:before {
content: "\e653";
}
.icon-Dollar:before {
content: "\e654";
}
.icon-DesktopMonitor:before {
content: "\e655";
}
.icon-Corkscrew:before {
content: "\e656";
}
.icon-CoffeeToGo:before {
content: "\e657";
}
.icon-Chart:before {
content: "\e658";
}
.icon-ChartUp:before {
content: "\e659";
}
.icon-ChartDown:before {
content: "\e65a";
}
.icon-Calculator:before {
content: "\e65b";
}
.icon-Bread:before {
content: "\e65c";
}
.icon-Bourbon:before {
content: "\e65d";
}
.icon-BottleofWIne:before {
content: "\e65e";
}
.icon-Bag:before {
content: "\e65f";
}
.icon-Arrow:before {
content: "\e660";
}
.icon-Antenna2:before {
content: "\e661";
}
.icon-Antenna1:before {
content: "\e662";
}
.icon-Anchor:before {
content: "\e663";
}
.icon-Wheelbarrow:before {
content: "\e664";
}
.icon-Webcam:before {
content: "\e665";
}
.icon-Unlinked:before {
content: "\e666";
}
.icon-Truck:before {
content: "\e667";
}
.icon-Timer:before {
content: "\e668";
}
.icon-Time:before {
content: "\e669";
}
.icon-StorageBox:before {
content: "\e66a";
}
.icon-Star:before {
content: "\e66b";
}
.icon-ShoppingCart:before {
content: "\e66c";
}
.icon-Shield:before {
content: "\e66d";
}
.icon-Seringe:before {
content: "\e66e";
}
.icon-Pulse:before {
content: "\e66f";
}
.icon-Plaster:before {
content: "\e670";
}
.icon-Plaine:before {
content: "\e671";
}
.icon-Pill:before {
content: "\e672";
}
.icon-PicnicBasket:before {
content: "\e673";
}
.icon-Phone2:before {
content: "\e674";
}
.icon-Pencil:before {
content: "\e675";
}
.icon-Pen:before {
content: "\e676";
}
.icon-PaperClip:before {
content: "\e677";
}
.icon-On-Off:before {
content: "\e678";
}
.icon-Mouse:before {
content: "\e679";
}
.icon-Megaphone:before {
content: "\e67a";
}
.icon-Linked:before {
content: "\e67b";
}
.icon-Keyboard:before {
content: "\e67c";
}
.icon-House:before {
content: "\e67d";
}
.icon-Heart:before {
content: "\e67e";
}
.icon-Headset:before {
content: "\e67f";
}
.icon-FullShoppingCart:before {
content: "\e680";
}
.icon-FullScreen:before {
content: "\e681";
}
.icon-Folder:before {
content: "\e682";
}
.icon-Floppy:before {
content: "\e683";
}
.icon-Files:before {
content: "\e684";
}
.icon-File:before {
content: "\e685";
}
.icon-FileBox:before {
content: "\e686";
}
.icon-ExitFullScreen:before {
content: "\e687";
}
.icon-EmptyBox:before {
content: "\e688";
}
.icon-Delete:before {
content: "\e689";
}
.icon-Controller:before {
content: "\e68a";
}
.icon-Compass:before {
content: "\e68b";
}
.icon-CompassTool:before {
content: "\e68c";
}
.icon-ClipboardText:before {
content: "\e68d";
}
.icon-ClipboardChart:before {
content: "\e68e";
}
.icon-ChemicalGlass:before {
content: "\e68f";
}
.icon-CD:before {
content: "\e690";
}
.icon-Carioca:before {
content: "\e691";
}
.icon-Car:before {
content: "\e692";
}
.icon-Book:before {
content: "\e693";
}
.icon-BigTruck:before {
content: "\e694";
}
.icon-Bicycle:before {
content: "\e695";
}
.icon-Wrench:before {
content: "\e696";
}
.icon-Web:before {
content: "\e697";
}
.icon-Watch:before {
content: "\e698";
}
.icon-Volume:before {
content: "\e699";
}
.icon-Video:before {
content: "\e69a";
}
.icon-Users:before {
content: "\e69b";
}
.icon-User:before {
content: "\e69c";
}
.icon-UploadCLoud:before {
content: "\e69d";
}
.icon-Typing:before {
content: "\e69e";
}
.icon-Tools:before {
content: "\e69f";
}
.icon-Tag:before {
content: "\e6a0";
}
.icon-Speedometter:before {
content: "\e6a1";
}
.icon-Share:before {
content: "\e6a2";
}
.icon-Settings:before {
content: "\e6a3";
}
.icon-Search:before {
content: "\e6a4";
}
.icon-Screwdriver:before {
content: "\e6a5";
}
.icon-Rolodex:before {
content: "\e6a6";
}
.icon-Ringer:before {
content: "\e6a7";
}
.icon-Resume:before {
content: "\e6a8";
}
.icon-Restart:before {
content: "\e6a9";
}
.icon-PowerOff:before {
content: "\e6aa";
}
.icon-Pointer:before {
content: "\e6ab";
}
.icon-Picture:before {
content: "\e6ac";
}
.icon-OpenedLock:before {
content: "\e6ad";
}
.icon-Notes:before {
content: "\e6ae";
}
.icon-Mute:before {
content: "\e6af";
}
.icon-Movie:before {
content: "\e6b0";
}
.icon-Microphone2:before {
content: "\e6b1";
}
.icon-Message:before {
content: "\e6b2";
}
.icon-MessageRight:before {
content: "\e6b3";
}
.icon-MessageLeft:before {
content: "\e6b4";
}
.icon-Menu:before {
content: "\e6b5";
}
.icon-Media:before {
content: "\e6b6";
}
.icon-Mail:before {
content: "\e6b7";
}
.icon-List:before {
content: "\e6b8";
}
.icon-Layers:before {
content: "\e6b9";
}
.icon-Key:before {
content: "\e6ba";
}
.icon-Imbox:before {
content: "\e6bb";
}
.icon-Eye:before {
content: "\e6bc";
}
.icon-Edit:before {
content: "\e6bd";
}
.icon-DSLRCamera:before {
content: "\e6be";
}
.icon-DownloadCloud:before {
content: "\e6bf";
}
.icon-CompactCamera:before {
content: "\e6c0";
}
.icon-Cloud:before {
content: "\e6c1";
}
.icon-ClosedLock:before {
content: "\e6c2";
}
.icon-Chart2:before {
content: "\e6c3";
}
.icon-Bulb:before {
content: "\e6c4";
}
.icon-Briefcase:before {
content: "\e6c5";
}
.icon-Blog:before {
content: "\e6c6";
}
.icon-Agenda:before {
content: "\e6c7";
}@font-face {
font-family: 'themify';
src:url(//aq-technologies.com/wp-content/themes/saasweb/fonts/themify.eot?-fvbane);
src:url(//aq-technologies.com/wp-content/themes/saasweb/fonts/themify.eot?#iefix-fvbane) format('embedded-opentype'),
url(//aq-technologies.com/wp-content/themes/saasweb/fonts/themify.woff?-fvbane) format('woff'),
url(//aq-technologies.com/wp-content/themes/saasweb/fonts/themify.ttf?-fvbane) format('truetype'),
url(//aq-technologies.com/wp-content/themes/saasweb/fonts/themify.svg?-fvbane#themify) format('svg');
font-weight: normal;
font-style: normal;
}
[class^="ti-"], [class*=" ti-"] {
font-family: 'themify';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.ti-wand:before {
content: "\e600";
}
.ti-volume:before {
content: "\e601";
}
.ti-user:before {
content: "\e602";
}
.ti-unlock:before {
content: "\e603";
}
.ti-unlink:before {
content: "\e604";
}
.ti-trash:before {
content: "\e605";
}
.ti-thought:before {
content: "\e606";
}
.ti-target:before {
content: "\e607";
}
.ti-tag:before {
content: "\e608";
}
.ti-tablet:before {
content: "\e609";
}
.ti-star:before {
content: "\e60a";
}
.ti-spray:before {
content: "\e60b";
}
.ti-signal:before {
content: "\e60c";
}
.ti-shopping-cart:before {
content: "\e60d";
}
.ti-shopping-cart-full:before {
content: "\e60e";
}
.ti-settings:before {
content: "\e60f";
}
.ti-search:before {
content: "\e610";
}
.ti-zoom-in:before {
content: "\e611";
}
.ti-zoom-out:before {
content: "\e612";
}
.ti-cut:before {
content: "\e613";
}
.ti-ruler:before {
content: "\e614";
}
.ti-ruler-pencil:before {
content: "\e615";
}
.ti-ruler-alt:before {
content: "\e616";
}
.ti-bookmark:before {
content: "\e617";
}
.ti-bookmark-alt:before {
content: "\e618";
}
.ti-reload:before {
content: "\e619";
}
.ti-plus:before {
content: "\e61a";
}
.ti-pin:before {
content: "\e61b";
}
.ti-pencil:before {
content: "\e61c";
}
.ti-pencil-alt:before {
content: "\e61d";
}
.ti-paint-roller:before {
content: "\e61e";
}
.ti-paint-bucket:before {
content: "\e61f";
}
.ti-na:before {
content: "\e620";
}
.ti-mobile:before {
content: "\e621";
}
.ti-minus:before {
content: "\e622";
}
.ti-medall:before {
content: "\e623";
}
.ti-medall-alt:before {
content: "\e624";
}
.ti-marker:before {
content: "\e625";
}
.ti-marker-alt:before {
content: "\e626";
}
.ti-arrow-up:before {
content: "\e627";
}
.ti-arrow-right:before {
content: "\e628";
}
.ti-arrow-left:before {
content: "\e629";
}
.ti-arrow-down:before {
content: "\e62a";
}
.ti-lock:before {
content: "\e62b";
}
.ti-location-arrow:before {
content: "\e62c";
}
.ti-link:before {
content: "\e62d";
}
.ti-layout:before {
content: "\e62e";
}
.ti-layers:before {
content: "\e62f";
}
.ti-layers-alt:before {
content: "\e630";
}
.ti-key:before {
content: "\e631";
}
.ti-import:before {
content: "\e632";
}
.ti-image:before {
content: "\e633";
}
.ti-heart:before {
content: "\e634";
}
.ti-heart-broken:before {
content: "\e635";
}
.ti-hand-stop:before {
content: "\e636";
}
.ti-hand-open:before {
content: "\e637";
}
.ti-hand-drag:before {
content: "\e638";
}
.ti-folder:before {
content: "\e639";
}
.ti-flag:before {
content: "\e63a";
}
.ti-flag-alt:before {
content: "\e63b";
}
.ti-flag-alt-2:before {
content: "\e63c";
}
.ti-eye:before {
content: "\e63d";
}
.ti-export:before {
content: "\e63e";
}
.ti-exchange-vertical:before {
content: "\e63f";
}
.ti-desktop:before {
content: "\e640";
}
.ti-cup:before {
content: "\e641";
}
.ti-crown:before {
content: "\e642";
}
.ti-comments:before {
content: "\e643";
}
.ti-comment:before {
content: "\e644";
}
.ti-comment-alt:before {
content: "\e645";
}
.ti-close:before {
content: "\e646";
}
.ti-clip:before {
content: "\e647";
}
.ti-angle-up:before {
content: "\e648";
}
.ti-angle-right:before {
content: "\e649";
}
.ti-angle-left:before {
content: "\e64a";
}
.ti-angle-down:before {
content: "\e64b";
}
.ti-check:before {
content: "\e64c";
}
.ti-check-box:before {
content: "\e64d";
}
.ti-camera:before {
content: "\e64e";
}
.ti-announcement:before {
content: "\e64f";
}
.ti-brush:before {
content: "\e650";
}
.ti-briefcase:before {
content: "\e651";
}
.ti-bolt:before {
content: "\e652";
}
.ti-bolt-alt:before {
content: "\e653";
}
.ti-blackboard:before {
content: "\e654";
}
.ti-bag:before {
content: "\e655";
}
.ti-move:before {
content: "\e656";
}
.ti-arrows-vertical:before {
content: "\e657";
}
.ti-arrows-horizontal:before {
content: "\e658";
}
.ti-fullscreen:before {
content: "\e659";
}
.ti-arrow-top-right:before {
content: "\e65a";
}
.ti-arrow-top-left:before {
content: "\e65b";
}
.ti-arrow-circle-up:before {
content: "\e65c";
}
.ti-arrow-circle-right:before {
content: "\e65d";
}
.ti-arrow-circle-left:before {
content: "\e65e";
}
.ti-arrow-circle-down:before {
content: "\e65f";
}
.ti-angle-double-up:before {
content: "\e660";
}
.ti-angle-double-right:before {
content: "\e661";
}
.ti-angle-double-left:before {
content: "\e662";
}
.ti-angle-double-down:before {
content: "\e663";
}
.ti-zip:before {
content: "\e664";
}
.ti-world:before {
content: "\e665";
}
.ti-wheelchair:before {
content: "\e666";
}
.ti-view-list:before {
content: "\e667";
}
.ti-view-list-alt:before {
content: "\e668";
}
.ti-view-grid:before {
content: "\e669";
}
.ti-uppercase:before {
content: "\e66a";
}
.ti-upload:before {
content: "\e66b";
}
.ti-underline:before {
content: "\e66c";
}
.ti-truck:before {
content: "\e66d";
}
.ti-timer:before {
content: "\e66e";
}
.ti-ticket:before {
content: "\e66f";
}
.ti-thumb-up:before {
content: "\e670";
}
.ti-thumb-down:before {
content: "\e671";
}
.ti-text:before {
content: "\e672";
}
.ti-stats-up:before {
content: "\e673";
}
.ti-stats-down:before {
content: "\e674";
}
.ti-split-v:before {
content: "\e675";
}
.ti-split-h:before {
content: "\e676";
}
.ti-smallcap:before {
content: "\e677";
}
.ti-shine:before {
content: "\e678";
}
.ti-shift-right:before {
content: "\e679";
}
.ti-shift-left:before {
content: "\e67a";
}
.ti-shield:before {
content: "\e67b";
}
.ti-notepad:before {
content: "\e67c";
}
.ti-server:before {
content: "\e67d";
}
.ti-quote-right:before {
content: "\e67e";
}
.ti-quote-left:before {
content: "\e67f";
}
.ti-pulse:before {
content: "\e680";
}
.ti-printer:before {
content: "\e681";
}
.ti-power-off:before {
content: "\e682";
}
.ti-plug:before {
content: "\e683";
}
.ti-pie-chart:before {
content: "\e684";
}
.ti-paragraph:before {
content: "\e685";
}
.ti-panel:before {
content: "\e686";
}
.ti-package:before {
content: "\e687";
}
.ti-music:before {
content: "\e688";
}
.ti-music-alt:before {
content: "\e689";
}
.ti-mouse:before {
content: "\e68a";
}
.ti-mouse-alt:before {
content: "\e68b";
}
.ti-money:before {
content: "\e68c";
}
.ti-microphone:before {
content: "\e68d";
}
.ti-menu:before {
content: "\e68e";
}
.ti-menu-alt:before {
content: "\e68f";
}
.ti-map:before {
content: "\e690";
}
.ti-map-alt:before {
content: "\e691";
}
.ti-loop:before {
content: "\e692";
}
.ti-location-pin:before {
content: "\e693";
}
.ti-list:before {
content: "\e694";
}
.ti-light-bulb:before {
content: "\e695";
}
.ti-Italic:before {
content: "\e696";
}
.ti-info:before {
content: "\e697";
}
.ti-infinite:before {
content: "\e698";
}
.ti-id-badge:before {
content: "\e699";
}
.ti-hummer:before {
content: "\e69a";
}
.ti-home:before {
content: "\e69b";
}
.ti-help:before {
content: "\e69c";
}
.ti-headphone:before {
content: "\e69d";
}
.ti-harddrives:before {
content: "\e69e";
}
.ti-harddrive:before {
content: "\e69f";
}
.ti-gift:before {
content: "\e6a0";
}
.ti-game:before {
content: "\e6a1";
}
.ti-filter:before {
content: "\e6a2";
}
.ti-files:before {
content: "\e6a3";
}
.ti-file:before {
content: "\e6a4";
}
.ti-eraser:before {
content: "\e6a5";
}
.ti-envelope:before {
content: "\e6a6";
}
.ti-download:before {
content: "\e6a7";
}
.ti-direction:before {
content: "\e6a8";
}
.ti-direction-alt:before {
content: "\e6a9";
}
.ti-dashboard:before {
content: "\e6aa";
}
.ti-control-stop:before {
content: "\e6ab";
}
.ti-control-shuffle:before {
content: "\e6ac";
}
.ti-control-play:before {
content: "\e6ad";
}
.ti-control-pause:before {
content: "\e6ae";
}
.ti-control-forward:before {
content: "\e6af";
}
.ti-control-backward:before {
content: "\e6b0";
}
.ti-cloud:before {
content: "\e6b1";
}
.ti-cloud-up:before {
content: "\e6b2";
}
.ti-cloud-down:before {
content: "\e6b3";
}
.ti-clipboard:before {
content: "\e6b4";
}
.ti-car:before {
content: "\e6b5";
}
.ti-calendar:before {
content: "\e6b6";
}
.ti-book:before {
content: "\e6b7";
}
.ti-bell:before {
content: "\e6b8";
}
.ti-basketball:before {
content: "\e6b9";
}
.ti-bar-chart:before {
content: "\e6ba";
}
.ti-bar-chart-alt:before {
content: "\e6bb";
}
.ti-back-right:before {
content: "\e6bc";
}
.ti-back-left:before {
content: "\e6bd";
}
.ti-arrows-corner:before {
content: "\e6be";
}
.ti-archive:before {
content: "\e6bf";
}
.ti-anchor:before {
content: "\e6c0";
}
.ti-align-right:before {
content: "\e6c1";
}
.ti-align-left:before {
content: "\e6c2";
}
.ti-align-justify:before {
content: "\e6c3";
}
.ti-align-center:before {
content: "\e6c4";
}
.ti-alert:before {
content: "\e6c5";
}
.ti-alarm-clock:before {
content: "\e6c6";
}
.ti-agenda:before {
content: "\e6c7";
}
.ti-write:before {
content: "\e6c8";
}
.ti-window:before {
content: "\e6c9";
}
.ti-widgetized:before {
content: "\e6ca";
}
.ti-widget:before {
content: "\e6cb";
}
.ti-widget-alt:before {
content: "\e6cc";
}
.ti-wallet:before {
content: "\e6cd";
}
.ti-video-clapper:before {
content: "\e6ce";
}
.ti-video-camera:before {
content: "\e6cf";
}
.ti-vector:before {
content: "\e6d0";
}
.ti-themify-logo:before {
content: "\e6d1";
}
.ti-themify-favicon:before {
content: "\e6d2";
}
.ti-themify-favicon-alt:before {
content: "\e6d3";
}
.ti-support:before {
content: "\e6d4";
}
.ti-stamp:before {
content: "\e6d5";
}
.ti-split-v-alt:before {
content: "\e6d6";
}
.ti-slice:before {
content: "\e6d7";
}
.ti-shortcode:before {
content: "\e6d8";
}
.ti-shift-right-alt:before {
content: "\e6d9";
}
.ti-shift-left-alt:before {
content: "\e6da";
}
.ti-ruler-alt-2:before {
content: "\e6db";
}
.ti-receipt:before {
content: "\e6dc";
}
.ti-pin2:before {
content: "\e6dd";
}
.ti-pin-alt:before {
content: "\e6de";
}
.ti-pencil-alt2:before {
content: "\e6df";
}
.ti-palette:before {
content: "\e6e0";
}
.ti-more:before {
content: "\e6e1";
}
.ti-more-alt:before {
content: "\e6e2";
}
.ti-microphone-alt:before {
content: "\e6e3";
}
.ti-magnet:before {
content: "\e6e4";
}
.ti-line-double:before {
content: "\e6e5";
}
.ti-line-dotted:before {
content: "\e6e6";
}
.ti-line-dashed:before {
content: "\e6e7";
}
.ti-layout-width-full:before {
content: "\e6e8";
}
.ti-layout-width-default:before {
content: "\e6e9";
}
.ti-layout-width-default-alt:before {
content: "\e6ea";
}
.ti-layout-tab:before {
content: "\e6eb";
}
.ti-layout-tab-window:before {
content: "\e6ec";
}
.ti-layout-tab-v:before {
content: "\e6ed";
}
.ti-layout-tab-min:before {
content: "\e6ee";
}
.ti-layout-slider:before {
content: "\e6ef";
}
.ti-layout-slider-alt:before {
content: "\e6f0";
}
.ti-layout-sidebar-right:before {
content: "\e6f1";
}
.ti-layout-sidebar-none:before {
content: "\e6f2";
}
.ti-layout-sidebar-left:before {
content: "\e6f3";
}
.ti-layout-placeholder:before {
content: "\e6f4";
}
.ti-layout-menu:before {
content: "\e6f5";
}
.ti-layout-menu-v:before {
content: "\e6f6";
}
.ti-layout-menu-separated:before {
content: "\e6f7";
}
.ti-layout-menu-full:before {
content: "\e6f8";
}
.ti-layout-media-right-alt:before {
content: "\e6f9";
}
.ti-layout-media-right:before {
content: "\e6fa";
}
.ti-layout-media-overlay:before {
content: "\e6fb";
}
.ti-layout-media-overlay-alt:before {
content: "\e6fc";
}
.ti-layout-media-overlay-alt-2:before {
content: "\e6fd";
}
.ti-layout-media-left-alt:before {
content: "\e6fe";
}
.ti-layout-media-left:before {
content: "\e6ff";
}
.ti-layout-media-center-alt:before {
content: "\e700";
}
.ti-layout-media-center:before {
content: "\e701";
}
.ti-layout-list-thumb:before {
content: "\e702";
}
.ti-layout-list-thumb-alt:before {
content: "\e703";
}
.ti-layout-list-post:before {
content: "\e704";
}
.ti-layout-list-large-image:before {
content: "\e705";
}
.ti-layout-line-solid:before {
content: "\e706";
}
.ti-layout-grid4:before {
content: "\e707";
}
.ti-layout-grid3:before {
content: "\e708";
}
.ti-layout-grid2:before {
content: "\e709";
}
.ti-layout-grid2-thumb:before {
content: "\e70a";
}
.ti-layout-cta-right:before {
content: "\e70b";
}
.ti-layout-cta-left:before {
content: "\e70c";
}
.ti-layout-cta-center:before {
content: "\e70d";
}
.ti-layout-cta-btn-right:before {
content: "\e70e";
}
.ti-layout-cta-btn-left:before {
content: "\e70f";
}
.ti-layout-column4:before {
content: "\e710";
}
.ti-layout-column3:before {
content: "\e711";
}
.ti-layout-column2:before {
content: "\e712";
}
.ti-layout-accordion-separated:before {
content: "\e713";
}
.ti-layout-accordion-merged:before {
content: "\e714";
}
.ti-layout-accordion-list:before {
content: "\e715";
}
.ti-ink-pen:before {
content: "\e716";
}
.ti-info-alt:before {
content: "\e717";
}
.ti-help-alt:before {
content: "\e718";
}
.ti-headphone-alt:before {
content: "\e719";
}
.ti-hand-point-up:before {
content: "\e71a";
}
.ti-hand-point-right:before {
content: "\e71b";
}
.ti-hand-point-left:before {
content: "\e71c";
}
.ti-hand-point-down:before {
content: "\e71d";
}
.ti-gallery:before {
content: "\e71e";
}
.ti-face-smile:before {
content: "\e71f";
}
.ti-face-sad:before {
content: "\e720";
}
.ti-credit-card:before {
content: "\e721";
}
.ti-control-skip-forward:before {
content: "\e722";
}
.ti-control-skip-backward:before {
content: "\e723";
}
.ti-control-record:before {
content: "\e724";
}
.ti-control-eject:before {
content: "\e725";
}
.ti-comments-smiley:before {
content: "\e726";
}
.ti-brush-alt:before {
content: "\e727";
}
.ti-youtube:before {
content: "\e728";
}
.ti-vimeo:before {
content: "\e729";
}
.ti-twitter:before {
content: "\e72a";
}
.ti-time:before {
content: "\e72b";
}
.ti-tumblr:before {
content: "\e72c";
}
.ti-skype:before {
content: "\e72d";
}
.ti-share:before {
content: "\e72e";
}
.ti-share-alt:before {
content: "\e72f";
}
.ti-rocket:before {
content: "\e730";
}
.ti-pinterest:before {
content: "\e731";
}
.ti-new-window:before {
content: "\e732";
}
.ti-microsoft:before {
content: "\e733";
}
.ti-list-ol:before {
content: "\e734";
}
.ti-linkedin:before {
content: "\e735";
}
.ti-layout-sidebar-2:before {
content: "\e736";
}
.ti-layout-grid4-alt:before {
content: "\e737";
}
.ti-layout-grid3-alt:before {
content: "\e738";
}
.ti-layout-grid2-alt:before {
content: "\e739";
}
.ti-layout-column4-alt:before {
content: "\e73a";
}
.ti-layout-column3-alt:before {
content: "\e73b";
}
.ti-layout-column2-alt:before {
content: "\e73c";
}
.ti-instagram:before {
content: "\e73d";
}
.ti-google:before {
content: "\e73e";
}
.ti-github:before {
content: "\e73f";
}
.ti-flickr:before {
content: "\e740";
}
.ti-facebook:before {
content: "\e741";
}
.ti-dropbox:before {
content: "\e742";
}
.ti-dribbble:before {
content: "\e743";
}
.ti-apple:before {
content: "\e744";
}
.ti-android:before {
content: "\e745";
}
.ti-save:before {
content: "\e746";
}
.ti-save-alt:before {
content: "\e747";
}
.ti-yahoo:before {
content: "\e748";
}
.ti-wordpress:before {
content: "\e749";
}
.ti-vimeo-alt:before {
content: "\e74a";
}
.ti-twitter-alt:before {
content: "\e74b";
}
.ti-tumblr-alt:before {
content: "\e74c";
}
.ti-trello:before {
content: "\e74d";
}
.ti-stack-overflow:before {
content: "\e74e";
}
.ti-soundcloud:before {
content: "\e74f";
}
.ti-sharethis:before {
content: "\e750";
}
.ti-sharethis-alt:before {
content: "\e751";
}
.ti-reddit:before {
content: "\e752";
}
.ti-pinterest-alt:before {
content: "\e753";
}
.ti-microsoft-alt:before {
content: "\e754";
}
.ti-linux:before {
content: "\e755";
}
.ti-jsfiddle:before {
content: "\e756";
}
.ti-joomla:before {
content: "\e757";
}
.ti-html5:before {
content: "\e758";
}
.ti-flickr-alt:before {
content: "\e759";
}
.ti-email:before {
content: "\e75a";
}
.ti-drupal:before {
content: "\e75b";
}
.ti-dropbox-alt:before {
content: "\e75c";
}
.ti-css3:before {
content: "\e75d";
}
.ti-rss:before {
content: "\e75e";
}
.ti-rss-alt:before {
content: "\e75f";
}.testimonial-block-five .inner-box .text .banner-section-two_ex{
position:relative;
padding-top:260px;
padding-bottom:0px;
background-size:cover;
}
.banner-section-two_ex:before{
position:absolute;
content:'';
left:0px;
bottom:-1px;
height:206px;
width:100%;
background:url(//aq-technologies.com/wp-content/themes/saasweb/img/pattern-3.png) repeat-x;
background-size:100% 100%;
}
.banner-section-two_ex .content-column{
position:relative;
}
.banner-section-two_ex .content-column .inner-column{
position:relative;
padding-top:110px;
padding-bottom:50px;
}
.banner-section-two_ex .content-column h2{
position: relative;
color: #ffffff;
font-size: 48px;
font-weight: 700;
line-height: 1.3em;
}
.banner-section-two_ex .content-column .text{
position: relative;
color: #ffffff;
font-size: 16px;
font-weight: 400;
line-height: 1.9em;
margin-top:40px;
max-width:375px;
}
.banner-section-two_ex .content-column .link-box{
position:relative;
margin-top:40px;
}
.banner-section-two_ex .content-column .link-box .btn-style-two{
padding: 13px 45px;
border:2px solid #fc0000;
}
.banner-section-two_ex .content-column .link-box .theme-btn{
margin-right:20px;
margin-bottom:15px;
z-index: 1;
transition: all 900ms ease;
}
.banner-section-two_ex .content-column .link-box .theme-btn:before{
position: absolute;
content: '';
background-color: #fff;
border-radius: 5px;
width: 0%;
height: 100%;
left: 0px;
top: 0px;
z-index: -1;
transition: all 500ms ease;
}
.banner-section-two_ex .content-column .link-box .theme-btn:hover:before{
width: 100%;
}
.banner-section-two_ex .content-column .link-box .theme-btn:hover{
background: #fff;
}
.banner-section-two_ex .content-column .link-box .theme-btn:hover,
.banner-section-two_ex .content-column .link-box .theme-btn:hover .txt{
color: #403ab4;
}
.banner-section-two_ex .image-column{
position:relative;
}
.banner-section-two_ex .image-column .inner-column{
position:relative;
z-index:10;
text-align: right;
}
.banner-section-two_ex .image-column .inner-column .image{
position:relative;
display:inline-block;
}
.banner-section-two_ex .image-column .inner-column .image.image-2{
margin-left:-120px;
top:120px;
}
.banner-section-two_ex .pattern-layer{
position:absolute;
content:'';
left:0px;
bottom:-8px;
height:248px;
width:100%;
} .google-btn{
position:relative;
color:#ffffff;
font-weight:700;
font-size:18px;
border-radius:5px;
display:inline-block;
border:1px solid #ffffff;
padding:8px 20px 11px 65px;
transition: all 500ms ease;
}
.google-btn .txt{
font-size:12px;
font-family: 'Ubuntu', sans-serif;
transition: all 500ms ease;
}
.google-btn .icon{
position:absolute;
left:18px;
top:15px;
font-size:34px;
font-weight:400;
line-height:1em;
}
.google-btn:hover{
color:#ffffff;
} .app-btn{
position:relative;
color:#ffffff;
font-weight:700;
font-size:18px;
border-radius:5px;
display:inline-block;
border:1px solid #ffffff;
padding:8px 20px 11px 65px;
}
.app-btn .txt{
font-size:12px;
font-weight:400;
font-family: 'Ubuntu', sans-serif;
}
.app-btn .icon{
position:absolute;
left:18px;
top:15px;
font-size:34px;
font-weight:400;
line-height:1em;
}
.app-btn:hover{
color:#ffffff;
} .services-section-four{
position:relative;
padding:120px 0px 120px;
}
.service-block-three{
position:relative;
z-index:1;
margin-bottom:30px;
}
.service-block-three .inner-box{
position:relative;
}
.service-block-three .inner-box .image{
position:relative;
}
.service-block-three .inner-box h3{
position:relative;
color:#3d415b;
font-size:24px;
line-height:1.3em;
font-weight:700;
margin-top:40px;
margin-bottom:30px;
}
.service-block-three .inner-box h3 a{
position:relative;
color:#3d415b;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
}
.service-block-three .inner-box h3 a:hover{
color:#1028aa;
}
.service-block-three .inner-box .text{
position:relative;
color:#777777;
font-size:16px;
line-height:1.9em;
margin-bottom:25px;
}
.service-block-three .inner-box .read-more{
position:relative;
color:#1028aa;
font-size:16px;
line-height:1.9em;
font-weight:700;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
}
.service-block-three .inner-box .read-more:hover{
color:#3d415b;
} .app-section{
position:relative;
padding:180px 0px 60px;
}
.app-section.style-two{
padding-top:60px;
}
.app-section .pattern-layer{
position:absolute;
content:'';
left:0px;
top:130px;
width:240px;
height:482px;
}
.app-section .title-column{
position:relative;
z-index:1;
margin-bottom:40px;
}
.app-section .title-column .inner-column{
position:relative;
padding-top:45px;
}
.app-section .title-column .inner-column .arrow-icon{
position: relative;
padding:8px 17px 4px;
border-radius:8px;
text-align:center;
display: inline-block;
background-color:#f5f5f5;
}
.app-section .title-column .inner-column .arrow-icon .caret{
position:relative;
color:#3f71ff;
font-size:30px;
margin:0px 2px;
line-height:1em;
}
.app-section .title-column .inner-column .arrow-icon .caret.caret-two{
opacity:0.5;
}
.app-section .title-column .inner-column .arrow-icon .caret.caret-three{
opacity:0.2;
}
.app-section .title-column .inner-column h2{
position:relative;
color:#3d415b;
font-weight:700;
font-size:36px;
line-height:1.3em;
margin-top:40px;
margin-bottom:20px;
}
.app-section .title-column .inner-column .bold-text{
position:relative;
color:#777777;
font-weight:500;
font-size:18px;
line-height:1.4em;
margin-top:32px;
margin-bottom:28px;
}
.app-section .title-column .inner-column .text{
position:relative;
color:#777777;
font-weight:400;
font-size:16px;
line-height:1.7em;
max-width:500px;
margin-bottom:40px;
}
.app-section .content-column{
position:relative;
}
.app-section .content-column .inner-column{
position:relative;
}
.app-section .content-column .inner-column .image{
position:relative;
z-index:1;
}
.app-section .content-column .inner-column .icon-one{
position:absolute;
left:-75px;
top:-20px;
width:26px;
height:26px;
}
.app-section .content-column .inner-column .icon-two{
position:absolute;
right:0px;
bottom:80px;
width:43px;
height:43px;
}
.app-section .content-column .inner-column .pattern-layer-two{
position:absolute;
left:-30px;
top:-210px;
width:790px;
height:801px;
background-repeat:no-repeat;
}
.app-section .content-column .inner-column .pattern-layer-three{
position:absolute;
left:-50px;
top:40px;
width:757px;
height:726px;
background-repeat:no-repeat;
} .app-block{
position:relative;
z-index:1;
margin-bottom:40px;
}
.app-block .inner-box{
position:relative;
overflow: hidden;
padding:40px 40px 0px;
background-color:#ffffff;
border-radius:15px;
max-width:430px;
width:100%;
z-index: 1;
box-shadow:0px 0px 25px rgba(0,0,0,0.10);
}
.app-block .inner-box:before{
position: absolute;
content: '';
background: #403ab4;
width: 100%;
height: 0%;
left: 0px;
top: 0px;
z-index: -1;
transition: all 500ms ease;
}
.app-block .inner-box:hover:before{
height: 100%;
bottom: 0px;
}
.app-block .inner-box .content{
position:relative;
padding-left:88px;
padding-bottom:10px;
}
.app-block .inner-box .content .icon-box{
position:absolute;
left:0px;
top:0px;
width:60px;
height:100%;
color:#ffffff;
text-align:center;
padding-top:24px;
font-size:25px;
border-radius:50px 50px 0px 0px;
background-color:#ed1c24;
}
.app-block .inner-box .content h3{
position:relative;
color:#3d415b;
font-size:18px;
font-weight:700;
transition: all 500ms ease;
}
.app-block .inner-box .content .text{
position:relative;
color:#777777;
font-size:14px;
line-height:1.8em;
margin-top:14px;
transition: all 500ms ease;
}
.app-block .inner-box:hover .content h3,
.app-block .inner-box:hover .content .text{
color: #fff;
}
.app-block:nth-child(2){
margin-left:140px;
}
.app-block:nth-child(2) .inner-box .content .icon-box{
background-color:#47a0e2;
}
.app-block:nth-child(3) .inner-box .content .icon-box{
background-color:#ffb400;
}
.app-section.style-two .title-column .inner-column{
padding-top:140px;
} .app-section-two{
position:relative;
padding:60px 0px 100px;
}
.app-section-two .title-column{
position:relative;
z-index:1;
}
.app-section-two .title-column .inner-column{
position:relative;
padding-top:45px;
padding-left:70px;
}
.app-section-two .title-column .inner-column .arrow-icon{
position: relative;
padding:8px 17px 4px;
border-radius:8px;
text-align:center;
display: inline-block;
background-color:#f5f5f5;
}
.app-section-two .title-column .inner-column .arrow-icon .caret{
position:relative;
color:#3f71ff;
font-size:30px;
margin:0px 2px;
line-height:1em;
}
.app-section-two .title-column .inner-column .arrow-icon .caret.caret-two{
opacity:0.5;
}
.app-section-two .title-column .inner-column .arrow-icon .caret.caret-three{
opacity:0.2;
}
.app-section-two .title-column .inner-column h2{
position:relative;
color:#3d415b;
font-weight:700;
font-size:36px;
line-height:1.3em;
margin-top:35px;
margin-bottom:20px;
}
.app-section-two .title-column .inner-column .bold-text{
position:relative;
color:#777777;
font-weight:500;
font-size:18px;
line-height:1.4em;
margin-top:28px;
margin-bottom:28px;
}
.app-section-two .title-column .inner-column .text{
position:relative;
color:#777777;
font-weight:400;
font-size:16px;
line-height:1.7em;
max-width:500px;
margin-bottom:40px;
}
.app-section-two .title-column .inner-column .theme-btn{
padding:17px 48px;
}
.app-section-two .image-column{
position:relative;
}
.app-section-two .image-column .inner-column{
position:relative;
}
.app-section-two .image-column .inner-column .image{
position:relative;
margin-left:-180px;
}
.app-section-two .image-column .inner-column .icon-one{
position: absolute;
right: 50px;
top: 110px;
width: 26px;
height: 26px;
}
.app-section-two .image-column .inner-column .icon-two{
position:absolute;
left:-140px;
bottom:260px;
width:43px;
height:43px;
z-index:1;
}
.app-section-two .pattern-layer{
position: absolute;
content: '';
right: 0px;
bottom: -150px;
width: 240px;
height: 482px;
} .fluid-section-one{
position:relative;
margin-top:150px;
z-index:1;
}
.fluid-section-one .image-layer{
position:absolute;
left:0px;
top:-150px;
width:100%;
height:898px;
background-repeat:no-repeat;
background-position:left center;
}
.fluid-section-one .outer-container{
position:relative;
}
.fluid-section-one .image-column{
position: absolute;
right: 0px;
top:0px;
width: 50%;
bottom:0px;
float:right;
z-index:1;
background-size: cover;
background-repeat: no-repeat;
}
.fluid-section-one .image-column .inner-column{
position:relative;
margin-left:-130px;
}
.fluid-section-one .image-column .image{
width: 100%;
z-index:1;
}
.fluid-section-one .image-column .image img{
display: block;
max-width: none;
} .fluid-section-one .content-column{
position: relative;
width: 50%;
float:left;
padding:60px 200px 80px 15px;
}
.fluid-section-one .content-column .content-box{
position:relative;
max-width:600px;
float:right;
}
.fluid-section-one .content-column h2{
position:relative;
color:#ffffff;
font-size:42px;
font-weight:700;
line-height:1.3em;
}
.fluid-section-one .content-column .text{
position:relative;
color:#ffffff;
font-size:16px;
font-weight:400;
line-height:1.9em;
margin-top:20px;
margin-bottom:32px;
}
.fluid-section-one .content-column .lower-box{
position:relative;
padding-top:46px;
margin-top:28px;
}
.fluid-section-one .content-column .lower-box:before{
position:absolute;
content:'';
left:0px;
top:0px;
height:4px;
width:100%;
background:url(//aq-technologies.com/wp-content/themes/saasweb/img/line-3.png) no-repeat;
}
.fluid-section-one .content-column .lower-box .author-info{
position:relative;
float:left;
}
.fluid-section-one .content-column .lower-box .author-info .author-inner{
position:relative;
padding-top:15px;
min-height:85px;
padding-left:115px;
}
.fluid-section-one .content-column .lower-box .author-info .image{
position:absolute;
left:0px;
top:0px;
width:85px;
height:85px;
overflow:hidden;
border-radius:50%;
}
.fluid-section-one .content-column .lower-box .author-info h3{
position:relative;
color:#f6ff00;
font-size:24px;
font-weight:700;
text-transform:capitalize;
}
.fluid-section-one .content-column .lower-box .author-info .designation{
position:relative;
color:#ffffff;
font-size:16px;
font-weight:400;
font-style:italic;
margin-top:4px;
text-transform:capitalize;
}
.fluid-section-one .content-column .lower-box .signature{
position:relative;
right:0px;
top:0px;
float:left;
margin-left:50px;
}
.fluid-section-one .content-column .lower-box .signature img{
position:relative;
} .pricing-section-two{
position:relative;
padding:280px 0px 110px;
}
.pricing-section-two .auto-container{
position:relative;
}
.pricing-section-two .outer-container{
position:relative;
}
.pricing-section-two .title-column{
position:relative;
margin-bottom:40px;
width:35%;
float:left;
}
.pricing-section-two .title-column .inner-column{
position:relative;
padding-left:100px;
padding-top:120px;
margin-bottom:20px;
}
.pricing-section-two .title-column .inner-column .sec-title{
margin-bottom:25px;
}
.pricing-section-two .title-column .inner-column .title-text{
position:relative;
color:#777777;
font-size:16px;
z-index:10;
line-height:1.9em;
margin-bottom:60px;
}
.pricing-section-two .price-column{
position:relative;
width:65%;
float:left;
}
.pricing-section-two .price-column .inner-column{
position:relative;
padding-left:40px;
}
.pricing-section-two .price-column .inner-column .dots-style{
position:relative;
text-align:center;
margin-top:50px;
z-index:1;
}
.pricing-section-two .price-column .inner-column .dots-style li{
position:relative;
width:10px;
height:10px;
margin:0px 5px;
cursor:pointer;
border-radius:50px;
display:inline-block;
background-color:#fc0000;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.pricing-section-two .price-column .inner-column .dots-style li.active,
.pricing-section-two .price-column .inner-column .dots-style li:hover{
width:30px;
background-color:#3d415b;
} .pricing-tabs-two{
position:relative;
}
.pricing-tabs-two .tab-buttons{
position:relative;
border-radius:50px;
overflow:hidden;
z-index:1;
display:inline-block;
border:2px solid #fc0000;
}
.pricing-tabs-two .tab-buttons .tab-btn{
position:relative;
color:#fc0000;
font-size:16px;
font-weight:700;
float:left;
cursor:pointer;
padding:14px 37px;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.pricing-tabs-two .tab-buttons .tab-btn:hover,
.pricing-tabs-two .tab-buttons .tab-btn.active-btn{
color:#ffffff;
background-color:#fc0000;
}
.pricing-tabs-two .tabs-content .tab{
position:relative;
display:none;
z-index:1;
}
.btn-alternate{
position:relative;
display:inline-block;
line-height:30px;
padding:10px 40px;
color:#ffffff;
background:#3d415b;
text-transform:capitalize;
border-radius:7px;	
}
.pricing-tabs-two .btn-alternate{
display:inline-block !important;
min-width:164px;
width:auto;
box-sizing:border-box;
}
.pricing-tabs-two .btn-alternate:hover{
color:#ffffff;
}
.pricing-tabs-two .tabs-content .tab.active-tab{
display:block;	
}
.pricing-tabs-two .tabs-content .tab .content{
position:relative;
margin:0 auto;
}
.pricing-tabs-two .tabs-content .ms-layout-partialview .ms-container{
padding-top:10px;
padding-bottom:10px;
}
.pricing-tabs-two .tabs-content .ms-skin-default .ms-nav-next{
right:-150px;
opacity:1 !important;
display:block !important;
background:#f3f1fe;
color:#30333c;
width:44px;
height:44px;
font-size:20px;
line-height:44px;
text-align:center;
padding-left:2px;
border-radius:50%;	
}
.pricing-tabs-two .tabs-content .ms-skin-default .ms-nav-next:before{
font-family: 'Font Awesome 5 Free';
content: "\f105";
display:block;
font-weight:800;
line-height:44px;
}
.pricing-tabs-two .tabs-content .ms-skin-default .ms-nav-prev{
left:-150px;
opacity:1 !important;
display:block !important;
background:#f3f1fe;
color:#30333c;
width:44px;
height:44px;
font-size:20px;
line-height:44px;
text-align:center;
padding-right:2px;
border-radius:50%;	
}
.pricing-tabs-two .tabs-content .ms-skin-default .ms-nav-prev:before{
font-family: 'Font Awesome 5 Free';
content: "\f104";
display:block;
font-weight:800;
line-height:44px;
}
.pricing-tabs-two .tabs-content .ms-skin-default .ms-nav-prev:hover,
.pricing-tabs-two .tabs-content .ms-skin-default .ms-nav-next:hover{
background:#30333c;
color:#ffffff;	
}
.pricing-section-two .pattern-layer {
position: absolute;
right: 0px;
bottom: 0px;
width: 100%;
height: 100%;
background-repeat: no-repeat;
background-position: left bottom;
} .testimonial-section-three{
position:relative;
padding:130px 0px 80px;
}
.testimonial-section-three .authors-column{
position:relative;
z-index:20;
}
.testimonial-section-three .authors-column .inner-column{
position:relative;
min-height:530px;
margin-left:-220px;
}
.testimonial-section-three .image{
position:relative;
width:162px;
height:162px;
border-radius:50%;
overflow:hidden;
}
.testimonial-section-three .big-image{
position:absolute;
right:40px;
top:110px;
width:328px;
height:328px;
border-radius:50%;
overflow:hidden;
box-shadow:0px 0px 22px rgba(0,0,0,0.10);
}
.testimonial-section-three .image-one{
position:absolute;
left:100px;
}
.testimonial-section-three .image-two{
position:absolute;
left:0px;
top:170px;
}
.testimonial-section-three .image-three{
position:absolute;
left:80px;
top:370px;
}
.testimonial-section-three .carousel-column{
position:relative;
margin-bottom:40px;
}
.testimonial-section-three .carousel-column .inner-column{
position:relative;
margin-left:90px;
}
.testimonial-section-three .carousel-column .inner-column:before{
position:absolute;
content:'';
right:100%;
top:0px;
width:10000%;
height:100%;
z-index:2;
margin-right:20px;
background-color:#ffffff;
}
.testimonial-section-three .carousel-column .inner-column .sec-title{
margin-bottom:35px;
}
.testimonial-section-three .testimonial-carousel-three{
max-width: 580px;
width:auto;
margin:0px -21px;
}
.testimonial-section-three .owl-carousel .owl-stage-outer{
padding:21px 0px 21px;
overflow:visible;
}
.testimonial-section-three .testimonial-block-three{
margin:0px 21px;
}
.testimonial-section-three .carousel-column .owl-dots{
display:none;
}
.testimonial-section-three .carousel-column .owl-nav{
position:relative;
margin-left:22px;
}
.testimonial-section-three .carousel-column .owl-nav .owl-prev,
.testimonial-section-three .carousel-column .owl-nav .owl-next{
position:relative;
height:30px;
width:65px;
font-size:20px;
margin-right:24px;
text-align:center;
line-height:28px;
border-radius:3px;
margin-top:24px;
display:inline-block;
color:#0f7bff;
border:1px solid #0f7bff;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.testimonial-section-three .carousel-column .owl-nav .owl-prev:hover,
.testimonial-section-three .carousel-column .owl-nav .owl-next:hover{
color:#ffffff;
border-color:#3d415b;
background-color:#3d415b;
} .testimonial-block-three{
position:relative;
}
.testimonial-block-three .inner-box{
position:relative;
padding:45px 45px;
border-radius:12px;
box-shadow:0px 0px 15px rgba(0,0,0,0.10);
}
.testimonial-block-three .inner-box .text{
position:relative;
color:#777777;
font-size:18px;
line-height:1.8em;
margin-bottom:25px;
}
.testimonial-block-three .inner-box h3{
position:relative;
color:#333333;
font-size:18px;
font-weight:700;
}
.testimonial-block-three .inner-box .designation{
position:relative;
color:#777777;
font-size:14px;
font-weight:400;
margin-top:6px;
}
.testimonial-block-three .inner-box .quote{
position: relative;
color:#fff2f2;
font-size:100px;
line-height:40px;
} .main-footer_ex{
position:relative;
}
.main-footer_ex .pattern-layer{
position:absolute;
right:0px;
bottom:0px;
width:435px;
height:652px;
}
.main-footer_ex .widgets-section{
position:relative;
padding:120px 0px 90px;
}
.main-footer_ex .footer-widget{
position:relative;
z-index:1;
margin-bottom:30px;
}
.main-footer_ex .footer-widget h2{
position:relative;
font-size:24px;
font-weight:700;
color:#3d415b;
margin-bottom:30px;
text-transform:capitalize;
}
.main-footer_ex .logo-widget{
position:relative;
}
.main-footer_ex .logo-widget .logo{
position:relative;
margin-bottom:22px;
}
.main-footer_ex .logo-widget .logo-list{
position:relative;
margin-bottom:25px;
}
.main-footer_ex .logo-widget .logo-list li{
position:relative;
color:#777777;
font-size:16px;
line-height:1.7em;
font-weight:500;
margin-bottom:10px;
}
.main-footer_ex .logo-widget .logo-list li:nth-child(2) a{
color:#777777;
}
.main-footer_ex .logo-widget .logo-list li:last-child{
margin-bottom:0px;
}
.main-footer_ex .logo-widget .logo-list li a{
position:relative;
color:#fc0000;
}
.main-footer_ex.style-two .logo-widget .logo-list li:nth-child(2) a{
color:#777777;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.main-footer_ex .logo-widget .logo-list li a:hover{
color:#fc0000;
}
.main-footer_ex.style-two .logo-widget .logo-list li a{
color:#7362ff;
}
.main-footer_ex.style-two .social-icon-one li a:hover{
color:#7362ff;
border-color:#7362ff;
}
.main-footer_ex.style-two .links-widget .list li a:hover{
color:#7362ff;
}
.main-footer_ex.style-two .newsletter-form .form-group input:focus{
border-color:#7362ff;
} .links-widget .list li{
position:relative;
margin-bottom:16px;
}
.links-widget .list li a{
position:relative;
color:#777777;
font-size:16px;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.links-widget .list li a:hover{
color:#fc0000;
} .newsletter-form{
position:relative;
margin-bottom:30px;
}
.newsletter-form .form-group{
position: relative;
display: block;
z-index:1;
margin-bottom: 0px;
}
.newsletter-form .form-group input[type="text"],
.newsletter-form .form-group input[type="tel"],
.newsletter-form .form-group input[type="email"],
.newsletter-form .form-group textarea {
position: relative;
width: 100%;
line-height: 28px;
padding: 10px 25px;
height: 50px;
color:#777777;
display:inline-block;
font-size: 14px;
background: none;
letter-spacing:1px;
border-radius:50px;
border:1px solid #e1e1e1;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
transition: all 300ms ease;
}
.newsletter-form .form-group input:focus{
border-color:#fc0000;
}
.newsletter-form .form-group input[type="submit"],
.newsletter-form .form-group button {
position: relative;
margin-top:25px;
padding:10px 38px;
} .main-footer_ex .footer-bottom{
position:relative;
}
.main-footer_ex .footer-bottom .bottom-inner{
position:relative;
padding:28px 40px;
}
.main-footer_ex .footer-bottom .bottom-inner:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100000%;
height:100%;
border-radius:50px 0px 0px 50px;
background-color:#eeeeee;
}
.main-footer_ex .footer-bottom .copyright{
position:relative;
color:#3d415b;
font-size:18px;
font-weight:400;
}
.main-footer_ex .footer-bottom .footer-nav{
position:relative;
text-align:right;
}
.main-footer_ex .footer-bottom .footer-nav li{
position:relative;
margin-left:30px;
display:inline-block;
}
.main-footer_ex .footer-bottom .footer-nav li a{
position:relative;
color:#3d415b;
font-size:18px;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
transition: all 300ms ease;
}
.main-footer_ex .footer-bottom .footer-nav li a:hover{
color:#fc0000;
}
.main-footer_ex .footer-bottom.style-two .bottom-inner:before{
display:none;
}
.main-footer_ex .footer-bottom.style-two .bottom-inner{
border-top:2px solid #eeeeee;
padding-left:0px;
padding-right:0px;
}
.main-footer_ex .footer-bottom.style-three{
background-color:#eaf1fb;
}
.main-footer_ex .footer-bottom.style-three .bottom-inner:before{
display:none;
}
.main-footer_ex .footer-bottom.style-three .bottom-inner{
padding-left:0px;
padding-right:0px;
} .banner-section-four_ex{
position:relative;
padding-top:190px;
}
.banner-section-four_ex:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:50%;
background-image: -ms-linear-gradient(top, #F4F9FF 0%, #ffffff 100%);
background-image: -moz-linear-gradient(top, #F4F9FF 0%, #ffffff 100%);
background-image: -o-linear-gradient(top, #F4F9FF 0%, #ffffff 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #F4F9FF), color-stop(100, #ffffff));
background-image: -webkit-linear-gradient(top, #F4F9FF 0%, #ffffff 100%);
background-image: linear-gradient(to bottom, #F4F9FF 0%, #ffffff 100%);
}
.banner-section-four_ex .content-box{
position:relative;
text-align:center;
margin-bottom:75px;
}
.banner-section-four_ex .content-box .text{
position:relative;
color:#777777;
font-size:16px;
line-height:1.6em;
}
.banner-section-four_ex .content-box h2{
position:relative;
color:#3d415b;
font-size:48px;
line-height:1.2em;
font-weight:700;
margin-top:28px;
margin-bottom:35px;
}
.banner-section-four_ex .image{
position:relative;
text-align:center;
} .services-section-six{
position:relative;
z-index:10;
padding:130px 0px 70px;
}
.services-section-six .scrol-icon{
position:relative;
width:30px;
height:60px;
z-index:1;
margin:0 auto;
margin-top:110px;
cursor:pointer;
border-radius:50px;
border:1px solid #7362ff;
background-color:#eaf1fb;
}
.services-section-six .scrol-icon span{
position:absolute;
left:50%;
top:12px;
width:2px;
height:26px;
margin-left:-1px;
background-color:#7362ff;
}
.services-section-six .scrol-icon span:before{
position:absolute;
content:'';
left:50%;
top:100%;
width:2px;
height:3px;
margin-top:4px;
margin-left:-1px;
background-color:#7362ff;
}
.services-section-six .scrol-icon{
-webkit-animation: mover 0.5s infinite  alternate;
animation: mover 0.5s infinite  alternate;
}
.services-section-six .scrol-icon{
-webkit-animation: mover 0.5s infinite  alternate;
animation: mover 0.5s infinite  alternate;
}
@-webkit-keyframes mover {
0% { transform: translateY(0); }
100% { transform: translateY(-10px); }
}
@keyframes mover {
0% { transform: translateY(0); }
100% { transform: translateY(-10px); }
} .service-block-five{
position:relative;
z-index:1;
margin-bottom:30px;
}
.service-block-five .inner-box{
position:relative;
overflow:hidden;
padding:45px 45px;
border-radius:10px;
box-shadow:0px 0px 25px rgba(0,0,0,0.08);
}
.service-block-five .inner-box .shape-one{
content: '';
width: 273px;
height: 273px;
background: #d858f5;
border-radius: 50%;
position: absolute;
top: -148px;
left: -83px;
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
}
.service-block-five .inner-box:hover .shape-one{
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
transition: all .5s linear;
transition-delay: .1s;
}
.service-block-five .inner-box .shape-two{
content: '';
width: 493px;
height: 493px;
background: #c647fe;
border-radius: 50%;
position: absolute;
top: -250px;
left: -180px;
z-index: 1;
-webkit-transform: translate(-50% ,-50%);
-ms-transform: translate(-50% ,-50%);
transform: translate(-50% ,-50%);
opacity: 0;
}
.service-block-five .inner-box:hover .shape-two{
opacity: 0.6;
-webkit-transform: translate(0 ,0);
-ms-transform: translate(0 ,0);
transform: translate(0 ,0);
transition: all .9s linear;
}
.service-block-five .inner-box .shape-three{
content: '';
width: 500px;
height: 500px;
background: #a461e8;
border-radius: 50%;
position: absolute;
top: -200px;
left: -150px;
z-index: 1;
-webkit-transform: translate(-50% ,-50%);
-ms-transform: translate(-50% ,-50%);
transform: translate(-50% ,-50%);
opacity: 0;
}
.service-block-five .inner-box:hover .shape-three{
opacity: 0.4;
-webkit-transform: translate(0 ,0);
-ms-transform: translate(0 ,0);
transform: translate(0 ,0);
transition: all 1.3s linear;
}
.service-block-five .inner-box:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:50%;
height:100%;
opacity:0;
background-color:#5e4eef;
-webkit-transition:all 600ms ease;
-ms-transition:all 600ms ease;
-o-transition:all 600ms ease;
-moz-transition:all 600ms ease;
transition:all 600ms ease;
}
.service-block-five .inner-box:hover::before{
width:100%;
opacity:1;
}
.service-block-five .inner-box .icon-box{
position:relative;
z-index:2;
}
.service-block-five .inner-box .icon-box{
position:relative;
font-size:60px;
line-height:1em;
color:#ff0303;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.service-block-five:nth-child(2) .inner-box .icon-box{
color:#0315ff;
}
.service-block-five:nth-child(1) .inner-box h3 a:hover,
.service-block-five:nth-child(1) .inner-box .read-more:hover{
color:#ffffff;
text-decoration:underline;
}
.service-block-five:nth-child(2) .inner-box h3 a:hover,
.service-block-five:nth-child(2) .inner-box .read-more:hover{
color:#ffffff;
text-decoration:underline;
}
.service-block-five:nth-child(3) .inner-box .icon-box {
color: #0eaf96;
text-decoration: underline;
}
.service-block-five:nth-child(4) .inner-box .icon-box {
color: #03fff5;
text-decoration: underline;
}
.service-block-five:nth-child(5) .inner-box .icon-box {
color: #ff8503;
text-decoration: underline;
}
.service-block-five:nth-child(6) .inner-box .icon-box {
color: #ff2803;
text-decoration: underline;
}
.service-block-five:nth-child(3) .inner-box h3 a:hover,
.service-block-five:nth-child(3) .inner-box .read-more:hover{
color:#ffffff;
text-decoration:underline;
}
.service-block-five .inner-box .icon-box .icon{
position:relative;
}
.service-block-five .inner-box h3{
position:relative;
font-size:24px;
z-index:2;
color:#3d415b;
font-weight:700;
line-height:1.3em;
margin:35px 0px 28px;
}
.service-block-five .inner-box h3 a{
position:relative;
color:#3d415b;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
}
.service-block-five .inner-box h3 a:hover,
.service-block-five .inner-box .read-more:hover{
color:#ff0303;
}
.service-block-five .inner-box .text{
position:relative;
color:#777777;
z-index:2;
font-size:16px;
line-height:1.8em;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.service-block-five .inner-box .read-more{
position:relative;
z-index:2;
color:#3d415b;
font-size:16px;
font-weight:700;
margin-top:28px;
display:inline-block;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
}
.service-block-five .inner-box:hover .icon-box,
.service-block-five .inner-box:hover h3 a,
.service-block-five .inner-box:hover .text,
.service-block-five .inner-box:hover .read-more{
color:#ffffff;
} .fluid-section-two{
position:relative;
z-index:1;
padding:75px 0px 75px;
}
.fluid-section-two .pattern-layer{
position:absolute;
left:0px;
top:-400px;
width:100%;
height:1715px;
background-size:cover;
background-repeat:no-repeat;
background-position:right top;
}
.fluid-section-two .outer-container{
position:relative;
}
.fluid-section-two .image-column{
position: absolute;
left: 0px;
top:0px;
width:100%;
float:left;
z-index:1;
padding-right:15px;
}
.fluid-section-two .image-column .inner-column{
position:relative;
text-align:right;
}
.fluid-section-two .image-column .image{
position:relative;
}
.fluid-section-two .image-column .image img{
} .fluid-section-two .content-column{
position: relative;
width:100%;
float:right;
padding:135px 15px 60px 15px;
}
.fluid-section-two .content-column .content-box{
position:relative;
max-width:550px;
}
.fluid-section-two .content-column h2{
position:relative;
color:#3d415b;
font-size:42px;
font-weight:700;
line-height:1.3em;
}
.fluid-section-two .content-column .text{
position:relative;
color:#777777;
font-size:16px;
font-weight:500;
line-height:1.8em;
margin-top:28px;
margin-bottom:40px;
}
.fluid-section-two .content-column .text p{
position:relative;
color:#777777;
font-size:16px;
font-weight:400;
line-height:1.8em;
margin-top:20px;
margin-bottom:20px;
}
.fluid-section-two .content-column .text p:last-child{
margin-bottom:0px;
}
.fluid-section-two .content-column .list-style-three{
margin-bottom:50px;
}
.fluid-section-two .content-column .content-box .theme-btn{
padding:8px 37px;
}
.fluid-section-two.style-two .content-column{
float:left;
padding-top:20px;
}
.fluid-section-two.style-two .content-column .content-box{
float:right;
padding-top:60px;
}
.fluid-section-two.style-two .image-column{
right:-20px;
left:auto;
} .testimonial-section-five_ex{
position:relative;
padding:120px 0px 70px;
}
.testimonial-section-five_ex .inner-container{
position:relative;
background-position:center center;
background-repeat:no-repeat;
}
.testimonial-section-five_ex .owl-dots{
display:none;
}
.testimonial-section-five_ex .owl-nav{
position:absolute;
left:0px;
top:50%;
width:100%;
}
.testimonial-section-five_ex .owl-nav .owl-prev{
position:absolute;
left:0px;
height:40px;
width:65px;
font-size:26px;
margin-right:24px;
text-align:center;
line-height:40px;
border-radius:3px;
margin-top:24px;
display:inline-block;
color:#1400d9;
border:1px solid #0207b3;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.testimonial-section-five_ex .owl-nav .owl-next{
position:absolute;
right:0px;
height:40px;
width:65px;
font-size:26px;
margin-left:24px;
text-align:center;
line-height:38px;
border-radius:3px;
margin-top:24px;
display:inline-block;
color:#1400d9;
border:1px solid #0207b3;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.testimonial-section-five_ex .owl-nav .owl-prev:hover,
.testimonial-section-five_ex .owl-nav .owl-next:hover{
color:#ffffff;
border-color:#7362ff;
background-color:#7362ff;
}
.testimonial-block-five{
position:relative;
}
.testimonial-block-five .inner-box{
position:relative;
text-align:center;
}
.testimonial-block-five .inner-box .image-outer{
position:relative;
display:inline-block;
}
.testimonial-block-five .inner-box .image-outer .quote-icon{
position:absolute;
right:0px;
bottom:0px;
width:57px;
height:57px;
color:#ffffff;
font-size:28px;
line-height:57px;
text-align:center;
border-radius:50%;
background-color:#7362ff;
}
.testimonial-block-five .inner-box .image-outer .image{
position:relative;
width:170px;
height:170px;
border-radius:50%;
overflow:hidden;
margin:0 auto;
}
.testimonial-block-five .inner-box .text{
position:relative;
color:#777777;
font-size:20px;
line-height:2.2em;
font-style:italic;
margin-top:50px;
margin-left: 150px;
margin-right: 150px;
}
.testimonial-block-five .inner-box h3{
position:relative;
margin-top:40px;
color:#3d415b;
font-size:24px;
font-weight:700;
padding-top:30px;
}
.testimonial-block-five .inner-box h3:before{
position:absolute;
content:'';
left:50%;
top:0px;
height:2px;
width:40px;
margin-left:-20px;
background-color:#fc0000;
}
.testimonial-block-five .inner-box .designation{
position:relative;
margin-top:8px;
color:#7362ff;
font-size:16px;
font-weight:700;
} .faq-fluid-section{
position:relative;
z-index:1;  background-color:#f3f8ff;
}
.faq-fluid-section:before{
position:absolute;
content:'';
left:0px;
top:-160px;   }
.faq-fluid-section .outer-container{
position:relative;
}
.faq-fluid-section .image-column{
position: absolute;
width: 50%;
float:left;
text-align:right;
}
.faq-fluid-section .image-column .inner-column{
position:relative;
padding-right:100px;
}
.faq-fluid-section .image-column .image{
position:relative;
margin-left:-235px;
}
.faq-fluid-section .image-column .image img{
position:relative;
max-width:none;
} .faq-fluid-section .content-column{
position: relative;
width: 100%;
float:right;
padding:0px 15px 0px 15px;
}
.faq-fluid-section .content-column .content-box{
position:relative;
max-width:550px;
} .faq-fluid-section .accordion-box{
position:relative;
}
.faq-fluid-section .accordion-box .block{
position: relative;
margin-bottom:30px;
border-radius:5px;
background-color:#ffffff;
box-shadow:0px 0px 15px rgba(0,0,0,0.05);
}
.faq-fluid-section .accordion-box .block .acc-btn{
position:relative;
font-size:16px;
cursor:pointer;
line-height:34px;
color:#3d415b;
font-weight:700;
padding:13px 30px 13px 65px;
transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
}
.faq-fluid-section .accordion-box .block .acc-btn.active{
color:#f85254;
}
.faq-fluid-section .accordion-box .block .icon-outer{
position:absolute;
left:18px;
top:30px;
font-size:20px;
color: #262626;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.faq-fluid-section .accordion-box .block .icon-outer .icon{
position: absolute;
left: 0px;
width:30px;
height:30px;
color:#3d415b;
font-size: 14px;
text-align: center;
line-height:32px;
}
.faq-fluid-section .accordion-box .block .icon-outer .icon-plus{
opacity:1;
}
.faq-fluid-section .accordion-box .block .icon-outer .icon-minus{
opacity:0;
}
.faq-fluid-section .accordion-box .block .acc-btn.active .icon-outer .icon-minus{
opacity:1;
color:#f85254;
}
.faq-fluid-section .accordion-box .block .acc-btn.active .icon-outer .icon-plus{
opacity:0;
}
.faq-fluid-section .accordion-box .block .acc-content{
position:relative;
display:none;
}
.faq-fluid-section .accordion-box .block .acc-content .content-text{
padding-bottom:6px;
}
.faq-fluid-section .accordion-box .block .acc-content.current{
display:block;	
}
.faq-fluid-section .accordion-box .block .content{
position:relative;
font-size:14px;
padding:0px 30px 30px 30px;
}
.faq-fluid-section .accordion-box .block .content .accordian-text{
line-height:1.9em;
font-size:16px;	
color:#777777;
font-weight:400;
}
.faq-fluid-section .accordion-box .block .content p:last-child{
margin-bottom:0px;	
} .call-to-action-section{
position:relative;
z-index:1;
padding:142px 0px 142px;
background-color:#f5f5f7;
background-position:center center;
background-repeat:no-repeat;
}
.call-to-action-section .icon-one{
position:absolute;
right:140px;
top:130px;
content:'';
width:66px;
height:56px;
}
.call-to-action-section .content{
position:relative;
text-align:center;
}
.call-to-action-section .content h2{
position:relative;
font-weight:700;
color:#3d415b;
font-size:42px;
line-height:1.4em;
margin-bottom:35px;
}
.call-to-action-section.style-two .content h2{
color:#ffffff;
}
.call-to-action-section.style-three{
background-color:#f4f9ff;
background-size:cover;
} .call-to-action-section-two{
position:relative;
z-index:1;
}
.call-to-action-section-two:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:250px;
background-color:#f3f8ff;
}
.call-to-action-section-two .inner-container{
position:relative;
border-radius:10px;
padding:130px 15px 130px;
background-color:#5d3ed9;
background-repeat:no-repeat;
background-position:center center;
}
.call-to-action-section-two .inner-container .content{
position:relative;
text-align:center;
}
.call-to-action-section-two .inner-container .content h2{
position:relative;
font-weight:500;
color:#ffffff;
font-size:42px;
line-height:1.4em;
margin-bottom:35px;
}
.call-to-action-section-two.style-two::before,
.call-to-action-section-two.style-three::before{
display:none;
}
.call-to-action-section-two.style-two{
padding-top:120px;
}
.call-to-action-section-two.style-three{
padding-top:50px;
}
.pricing-section .price-block{
position:relative;
z-index:10;
margin-bottom:30px;
}
.pricing-section .price-block .inner-box{
position:relative;
text-align:center;
overflow:hidden;
background-color:#ffffff;
padding:40px 15px 40px;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
box-shadow:0px 0px 15px rgba(0,0,0,0.10);
}
.pricing-section .price-block .inner-box:hover{
box-shadow:0px 0px 25px rgba(0,0,0,0.10);
}
.pricing-section .price-block .inner-box .line-one{
position:absolute;
left:0px;
top:0px;
right:0px;
bottom:0px;
}
.pricing-section .price-block .inner-box .line-one:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:0px;
height:1px;
background-color:#fc0000;
-webkit-transition:all 600ms ease;
-ms-transition:all 600ms ease;
-o-transition:all 600ms ease;
-moz-transition:all 600ms ease;
transition:all 600ms ease;
}
.pricing-section .price-block .inner-box:hover .line-one:before{
width:100%;
}
.pricing-section .price-block .inner-box .line-one:after{
position:absolute;
content:'';
right:0px;
top:0px;
width:1px;
height:0%;
background-color:#fc0000;
-webkit-transition:all 600ms ease;
-ms-transition:all 600ms ease;
-o-transition:all 600ms ease;
-moz-transition:all 600ms ease;
transition:all 600ms ease;
}
.pricing-section .price-block .inner-box:hover .line-one:after{
height:100%;
-webkit-transition-delay:600ms;
-ms-transition-delay:600ms;
transition-delay:600ms;
} .pricing-section .price-block .inner-box .line-two{
position:absolute;
left:0px;
top:0px;
right:0px;
bottom:0px;
}
.pricing-section .price-block .inner-box .line-two:before{
position:absolute;
content:'';
right:0px;
bottom:0px;
width:0px;
height:1px;
background-color:#fc0000;
-webkit-transition:all 600ms ease;
-ms-transition:all 600ms ease;
-o-transition:all 600ms ease;
-moz-transition:all 600ms ease;
transition:all 600ms ease;
}
.pricing-section .price-block .inner-box:hover .line-two:before{
width:100%;
-webkit-transition-delay:1200ms;
-ms-transition-delay:1200ms;
transition-delay:1200ms;
}
.pricing-section .price-block .inner-box .line-two:after{
position:absolute;
content:'';
left:0px;
bottom:0px;
width:1px;
height:0%;
background-color:#fc0000;
-webkit-transition:all 600ms ease;
-ms-transition:all 600ms ease;
-o-transition:all 600ms ease;
-moz-transition:all 600ms ease;
transition:all 600ms ease;
}
.pricing-section .price-block .inner-box:hover .line-two:after{
height:100%;
-webkit-transition-delay:1800ms;
-ms-transition-delay:1800ms;
transition-delay:1800ms;
}
.pricing-section .price-block .inner-box .icon-box{
position:relative;
width:100px;
height:100px;
margin:0 auto;
font-size:46px;
color:#3d415b;
line-height:80px;
margin-bottom:25px;
border-radius:50%;
border:10px solid #f6f6f6;
background-color:#eeedf7;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.pricing-section .price-block.style-two .inner-box .icon-box{
line-height:100px;
}
.pricing-section .price-block .inner-box:hover .icon-box{
background-color:#fc0000;
color:#ffffff;
}
.pricing-section .price-block .inner-box h3{
position:relative;
color:#333333;
font-size:18px;
font-weight:500;
margin-bottom:25px;
display:inline-block;
padding:0px 42px 22px;
border-bottom:1px solid #e0e0e0;
}
.pricing-section .price-block .inner-box .price-list{
position:relative;
}
.pricing-section .price-block .inner-box .price-list li{
position:relative;
color:#777777;
font-size:16px;
margin-bottom:14px;
}
.pricing-section .price-block .inner-box .price-list li:last-child{
margin-bottom:20px;
}
.pricing-section .price-block .inner-box .price{
position:relative;
color:#fc0000;
font-size:32px;
font-weight:500;
line-height:1.2em;
}
.pricing-section .price-block .inner-box .price sub{
font-size:16px;
top:-2px;
position:relative;
}
.pricing-section .price-block .inner-box .theme-btn{
margin-top:30px;
}
.pricing-section .price-block.alternate .inner-box{
border:1px solid #dcdcdc;
border-radius:6px;
box-shadow:none;
}
.pricing-section .price-block.alternate .inner-box:hover{
border-radius:0px;
box-shadow:0px 0px 15px rgba(0,0,0,0.10);
}
.pricing-section .price-block.alternate .inner-box h3{
padding:0px;
border:none;
}
.pricing-section .price-block .inner-box .btn-box {
position: relative;
margin-bottom: 30px;
}
.pricing-section .price-block .inner-box .btn-box:before {
position: absolute;
content: '';
left: -30px;
top: 50px;
right: -30px;
height: 1px;
background-color: #e0e0e0;
}
.theme-btn.btn-style-nine {
position: relative;
overflow: hidden;
color: #464a62;
font-size: 16px;
font-weight: 700;
padding: 19px 34px;
border-radius: 8px;
display: inline-block;
background-color: #e2eaff;
z-index: 1;
transition: all 500ms ease;
}
.theme-btn.btn-style-nine:before{
position: absolute;
content: '';
background-color: #403ab4;
width: 0%;
height: 100%;
left: 0px;
top: 0px;
z-index: -1;
transition: all 500ms ease;
}
.theme-btn.btn-style-nine:hover:before{
width: 100%;
}
.theme-btn.btn-style-nine:hover {
color: #fff;
}
.list-style-two_ex li {
position: relative;
font-size: 17px;
line-height: 24px;
color: #ffffff;
font-weight: 700;
padding-left: 35px;
margin-bottom: 12px;
}
.list-style-two_ex li:before {
position: absolute;
left: 0px;
top: 0px;
color: #ffffff;
font-size: 14px;
content: "\f17d"; 
font-weight: 600;
font-family: "Flaticon";
}
.theme-btn.btn-style-ten_xx {
position: relative;
display: inline-block;
line-height: 30px;
color: #ffffff;
padding: 13px 29px;
font-weight: 700;
border-radius: 8px;
letter-spacing: 1px;
overflow: hidden;
background: none;
font-size: 18px;
border: 2px solid #ffffff;
text-transform: capitalize;
}
.theme-btn.btn-style-ten_xx:hover {
color: #ffffff;
background: #464a62;
border-color: #464a62;
}
.pr{
margin-top: 250px;
}
.services-section-four .sec-title-three{
margin-bottom: 60px;
}
.main-header.header-style-two .header-upper {
position: relative;
} .timer-area{
position: relative;
display: block;
z-index: 1;
}
.timer-area:before{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url(//aq-technologies.com/wp-content/themes/saasweb/images/pattern/timer-area-bg.jpg);
background-repeat: repeat;
background-size: auto;
background-position: left;
content: "";
z-index: -1;
}
.timer-box {
position: relative;
display: block;
overflow: hidden;
background: #0eaf96;
max-width: 855px;
width: 100%;
margin: 0 auto;
padding: 74px 70px 72px;
z-index: 3;
margin-bottom: 95px;
margin-top: 90px;
}
.timer-box h1{
color: #ffffff;
font-size: 48px;
line-height: 58px;
font-weight: 700;
text-transform: capitalize;
margin: 0 0 47px;
}
.countdown-timer {}
.countdown-timer .default-coundown {}
.countdown-timer .default-coundown .box {
overflow: hidden;
}
.countdown-timer li {
position: relative;
display: inline-block;
float: none;
padding: 0;
text-align: center;
margin: 0 10px;
}
.countdown-timer li:first-child{
margin-left: 0;
}
.countdown-timer li:last-child{
margin-right: 0;
}
.countdown-timer li span.days,
.countdown-timer li span.hours,
.countdown-timer li span.minutes,
.countdown-timer li span.seconds {
position: relative;
display: block;
background: #ffffff;
width: 100px;
height: 100px;
color: #27282c;
font-size: 48px;
line-height: 100px;
font-weight: 600;
text-align: center;
border-radius: 0px;
font-family: 'Poppins', sans-serif;
}
.countdown-timer li span.hours{}
.countdown-timer li span.minutes{}
.countdown-timer li span.seconds{}
.countdown-timer li span.timeRef {
color: #ffffff;
font-size: 20px;
line-height: 20px;
font-weight: 600;
text-transform: capitalize;
margin-top: 17px;
display: block;
font-family: 'Poppins', sans-serif;
}
.countdown-timer li span.timeRef.clr-1{}
.countdown-timer li span.timeRef.clr-2{}
.countdown-timer li span.timeRef.clr-3{}
.timer-box .subscribe-box{
position: relative;
display: block;
margin-top: 39px;
}
.timer-box .subscribe-box .subscribe-form {
position: relative;
display: block;
width: 100%;
}
.timer-box .subscribe-box .subscribe-form input[type="email"]{
position: relative;
display: block;
background: #ffffff;
border: 1px solid #ffffff;
color: #828282;
font-size: 15px;
font-weight: 400;
width: 100%;
height: 60px;
margin-bottom: 0px;
padding: 0 30px;
padding-right: 185px;
transition: all 500ms ease;
}
.timer-box .subscribe-box .subscribe-form input::-webkit-input-placeholder {
color: #e9212e;
}
.timer-box .subscribe-box .subscribe-form input:-moz-placeholder {
color: #e9212e;
}
.timer-box .subscribe-box .subscribe-form input::-moz-placeholder {
color: #e9212e;
}
.timer-box .subscribe-box .subscribe-form input:-ms-input-placeholder {
color: #e9212e;
}
.timer-box .subscribe-box .subscribe-form button {
position: absolute;
top: 0;
right: 0;
color: #27282c;
background: #ffffff;
border-left: 1px solid #ededed;
padding: 0;
width: 170px;
font-family: "Poppins", sans-serif;
font-size: 18px;
font-weight: 500;
padding: 14.5px 0;
transition: .5s ease;
}
.timer-box .subscribe-box .subscribe-form input[type="email"]:focus {
color: #222222;
border: 1px solid #191a1c;
background: #ffffff;
}
.timer-box .subscribe-box .subscribe-form input[type="email"]:focus + button, 
.timer-box .subscribe-box .subscribe-form button:hover {
background: #191a1c;
color: #fff;
}
.timer-box .subscribe-box .subscribe-form button span {
margin-left: 6px;
}
.timer-box .subscribe-box .text{
position: relative;
display: block;
padding-top: 14px;
}
.timer-box .subscribe-box .text p{
color: #ffffff;
font-size: 15px;
margin: 0;
}
.timer-box .subscribe-box .text p span{
font-weight: 600;
}  .icon-one {
animation-name: float_up_down;
animation-duration: 5s;
animation-iteration-count: infinite;
animation-timing-function: linear;
-webkit-animation-name: float_up_down;
-webkit-animation-duration: 5s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: float_up_down;
-moz-animation-duration: 5s;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: float_up_down;
-ms-animation-duration: 5s;
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
-o-animation-name: float_left_right;
-o-animation-duration: 5s;
-o-animation-iteration-count: infinite;
-o-animation-timing-function: linear;
}
.icon-two {
animation-name: rotateme;
animation-duration: 15s;
animation-iteration-count: infinite;
animation-timing-function: linear;
-webkit-animation-name: rotateme;
-webkit-animation-duration: 15s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: rotateme;
-moz-animation-duration: 15s;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: rotateme;
-ms-animation-duration: 15s;
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
-o-animation-name: rotateme;
-o-animation-duration: 15s;
-o-animation-iteration-count: infinite;
-o-animation-timing-function: linear;
}
.testimonial-section-three .image-one {
animation-name: float_left_right_two;
animation-duration: 5s;
animation-iteration-count: infinite;
animation-timing-function: linear;
-webkit-animation-name: float_left_right_two;
-webkit-animation-duration: 5s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: float_left_right_two;
-moz-animation-duration: 5s;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: float_left_right_two;
-ms-animation-duration: 5s;
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
-o-animation-name: float_left_right_two;
-o-animation-duration: 5s;
-o-animation-iteration-count: infinite;
-o-animation-timing-function: linear;
}
.testimonial-section-three .image-two {
animation-name: rotateme;
animation-duration: 15s;
animation-iteration-count: infinite;
animation-timing-function: linear;
-webkit-animation-name: rotateme;
-webkit-animation-duration: 15s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: rotateme;
-moz-animation-duration: 15s;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: rotateme;
-ms-animation-duration: 15s;
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
-o-animation-name: rotateme;
-o-animation-duration: 15s;
-o-animation-iteration-count: infinite;
-o-animation-timing-function: linear;
}
.testimonial-section-three .big-image {
animation-name: zoom-fade-two;
animation-duration: 5s;
animation-iteration-count: infinite;
animation-timing-function: linear;
-webkit-animation-name: zoom-fade-two;
-webkit-animation-duration: 5s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: zoom-fade-two;
-moz-animation-duration: 5s;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: zoom-fade-two;
-ms-animation-duration: 5s;
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
-o-animation-name: zoom-fade-two;
-o-animation-duration: 5s;
-o-animation-iteration-count: infinite;
-o-animation-timing-function: linear;
}
.testimonial-section-three .image-three {
animation-name: zoom-fade-two;
animation-duration: 5s;
animation-iteration-count: infinite;
animation-timing-function: linear;
-webkit-animation-name: zoom-fade-two;
-webkit-animation-duration: 5s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: zoom-fade-two;
-moz-animation-duration: 5s;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: zoom-fade-two;
-ms-animation-duration: 5s;
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
-o-animation-name: zoom-fade-two;
-o-animation-duration: 5s;
-o-animation-iteration-count: infinite;
-o-animation-timing-function: linear;
}
.newex picture {
margin-left: 342px;
}.sm-banner-section {
position: relative;
width: 100%;
padding: 248px 0px 340px 0px;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.sm-banner-section .content-box{
position: relative;
display: block;
margin-right: -15px;
}
.sm-banner-section .content-box:before{
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img/icons/shap-1.png);
width: 288px;
height: 280px;
left: -130px;
top: -100px;
background-repeat: no-repeat;
}
.sm-banner-section .content-box:after{
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/shap-2.png);
width: 150px;
height: 137px;
left: -60px;
top: -30px;
background-repeat: no-repeat;
-webkit-animation: zoom-fade-two 5s infinite linear;
animation: zoom-fade-two 5s infinite linear;
}
.sm-banner-section .content-box h1{
position: relative;
display: block;
font-size: 65px;
line-height: 65px;
font-weight: 700;
color: #fff;
margin-bottom: 43px;
}
.sm-banner-section .content-box .text{
position: relative;
display: block;
font-size: 17px;
line-height: 28px;
font-weight: 400;
color: #fff;
margin-bottom: 54px;
}
.sm-banner-section .image-box{
position: relative;
margin-top: -90px;
padding-left: 50px;
}
.sm-banner-section .image-box img{
position: relative;
max-width: none;
float: left;
}
.float-bob-y{
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
-webkit-animation-name: float_up_down_two;
animation-name: float_up_down_two;
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.float-bob-x{
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
-webkit-animation-name: float_up_down_two;
animation-name: float_up_down_two;
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.anim-icon {
position: absolute;
left: 0;
top: 0;
right: 0;
height: 100%;
width: 100%;
max-width: 1920px;
margin: 0 auto;
}
.anim-icon .icon{
position: absolute;
background-repeat: no-repeat;
}
.sm-banner-section .anim-icon .icon-1 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/Shape-3-1.png) no-repeat;
width: 186px;
height: 81px;
left: 30%;
top: 0px;
animation-name: float_left_right_two;
animation-duration: 5s;
animation-iteration-count: infinite;
animation-timing-function: linear;
-webkit-animation-name: float_left_right_two;
-webkit-animation-duration: 5s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: float_left_right_two;
-moz-animation-duration: 5s;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: float_left_right_two;
-ms-animation-duration: 5s;
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
-o-animation-name: float_left_right_two;
-o-animation-duration: 5s;
-o-animation-iteration-count: infinite;
-o-animation-timing-function: linear;
}
.sm-banner-section .anim-icon .icon-2 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-2.png);
width: 86px;
height: 82px;
right: 80px;
top: 70px;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-banner-section .anim-icon .icon-3 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/Shape-2-1.png) no-repeat;
width: 137px;
height: 132px;
right: 80px;
bottom: 170px;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-banner-section .anim-icon .icon-4 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/Shape-1-1.png) no-repeat;
width: 170px;
height: 165px;
left: 80px;
bottom: 170px;
animation: animationFramesFour 5s alternate infinite cubic-bezier(0.37, 0.35, 0.71, 0.73);
}
.sm-banner-section .btn-style-two {
position: relative;
display: inline-block;
font-size: 17px;
font-family: 'Montserrat', sans-serif;
padding: 15px 30px 14px 31px;
background: #fe721d;
line-height: 26px;
color: #ffffff;
font-weight: 600;
border-radius: 3px;
text-transform: capitalize;
transition: all 500ms ease;
cursor: pointer;
text-align: center;
z-index: 1;
}
.sm-banner-section.style-two{
position: relative;
background: #fff;
padding: 333px 0px 165px 0px;
}
.sm-banner-section.style-two:before{
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/background/banner-shap.png);
width: 1316px;
height: 983px;
top: 0px;
right: 0px;
background-repeat: no-repeat;
}
.sm-banner-section.style-two .content-box:before{
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/shap-9.png);
width: 288px;
height: 267px;
}
.sm-banner-section.style-two .content-box h1{
color: #3b3b3b;
margin-bottom: 28px;
line-height: 75px;
}
.sm-banner-section.style-two .content-box .text{
color: #09092b;
}
.sm-banner-section.style-two .image-box{
padding-left: 80px;
margin-top: -50px;
}
.sm-banner-section.style-two .content-box{
position: relative;
z-index: 1;
}
.sm-banner-section .anim-icon .icon-5 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/shap-11.png);
width: 178px;
height: 363px;
left: 0px;
top: 250px;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-banner-section.style-two .anim-icon .icon-6 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-15.png);
width: 28px;
height: 28px;
left: 30%;
top: 240px;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-banner-section.style-two .anim-icon .icon-7 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-16.png);
width: 28px;
height: 28px;
left: 50%;
top: 50%;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-banner-section.style-two .anim-icon .icon-8 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-17.png);
width: 20px;
height: 20px;
top: 190px;
right: 37%;
background-repeat: no-repeat;
}
.sm-banner-section.style-two .anim-icon .icon-9 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-18.png);
width: 16px;
height: 16px;
top: 235px;
right: 280px;
background-repeat: no-repeat;
}
.sm-banner-section.style-two .anim-icon .icon-10 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-19.png);
width: 28px;
height: 28px;
top: 290px;
right: 190px;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-banner-section.style-two .anim-icon .icon-11 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-20.png);
width: 19px;
height: 31px;
top: 40%;
right: 360px;
background-repeat: no-repeat;
}
.sm-banner-section.style-two .anim-icon .icon-12 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-20.png);
width: 19px;
height: 31px;
left: 250px;
bottom: 150px;
background-repeat: no-repeat;
}
.sm-banner-section.style-two .anim-icon .icon-13 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-18.png);
width: 16px;
height: 16px;
left: 100px;
bottom: 35%;
background-repeat: no-repeat;
}  .sm-feature-section{
position: relative;
display: block;
background: #fff;
padding: 40px 0px 175px 0px;
}
.sm-feature-section:before{
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/background/feature-bg.png);
width: 100%;
height: 1652px;
left: 0px;
top: 0px;
background-size: cover;
background-repeat: no-repeat;
}
.sm-feature-section .feature-block-one{
position: relative;
display: block;
z-index: 1;
}
.sm-feature-section .feature-block-one .inner-box{
position: relative;
display: block;
padding: 70px 30px;
background: transparent;
transition: all 500ms ease;
}
.sm-feature-section .feature-block-one .inner-box:hover{
background: #fff;
box-shadow: 0 23px 50px rgba(176,176,176,.35);
}
.sm-feature-section .feature-block-one .inner-box .icon-box{
position: relative;
display: block;
min-height: 130px;
margin-bottom: 37px;
}
.sm-feature-section .feature-block-one .inner-box .icon-box img{
position: relative;
display: inline-block;
width: auto;
transition: all 500ms ease;
background: #8b49be;
padding: 20px;
border-radius: 5px;
}
.sm-feature-section .feature-block-one:hover .inner-box .icon-box img{
transform: rotateY(180deg);
}
.sm-feature-section .feature-block-one .inner-box h2{
position: relative;
display: block;
font-size: 30px;
line-height: 40px;
color: #09092b;
font-weight: 600;
margin-bottom: 37px;
}
.sm-feature-section .feature-block-one .inner-box h2 a{
position: relative;
display: inline-block;
color: #09092b;
}
.sm-feature-section .feature-block-one .inner-box h2 a:hover{
color: #fe721d;
}
.sm-feature-section .feature-block-one .inner-box .text{
position: relative;
display: block;
font-size: 15px;
line-height: 26px;
margin-bottom: 43px;
}
.sm-feature-section .feature-block-one .icon-box:before {
display: none;
} .sm-about-section{
position: relative;
width: 100%;
background-size: cover;
background-repeat: no-repeat;
padding: 160px 0px 150px 0px;
}
.sm-about-section .content-box .sec-title{
position: relative;
display: block;
margin-bottom: 22px;
}
.sm-about-section .content-box .text{
position: relative;
display: block;
margin-bottom: 27px;
}
.sm-about-section .content-box .list{
position: relative;
display: block;
margin-bottom: 42px;
}
.sm-about-section .content-box .list li{
position: relative;
display: block;
font-size: 16px;
margin-bottom: 6px;
padding: 0px 0px 0px 34px;
}
.sm-about-section .content-box .list li:last-child{
margin-bottom: 0px;
}
.sm-about-section .content-box .list li:before {
position: absolute;
content: "\f00c";
font-family: 'fontawesome';
font-size: 20px;
color: #fe721d;
font-weight: 300;
left: 0px;
top: 0px;
}
.sm-about-section .image-box{
position: relative;
display: block;
margin-left: 300px;
margin-top: -62px;
}
.sm-about-section .image-box:before{
position: absolute;
content: '';
width: 348px;
height: 360px;
left: -185px;
bottom: -54px;
}
.sm-about-section .image-box img{
position: relative;
max-width: none;
float: left;
box-shadow: 0 23px 50px rgba(176,176,176,.35);
} .sm-service-section{
position: relative;
display: block;
padding: 110px 0px 110px 0px;
background: #3b04db;
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/bg-2-1.png);
}
.sm-service-section:after{
position: absolute;
content: '';
width: 396px;
height: 245px;
left: 100px;
top: -47px;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-service-section .anim-icon .icon-1 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-8.png);
width: 19px;
height: 32px;
left: 80px;
top: 350px;
background-repeat: no-repeat;
}
.sm-service-section .anim-icon .icon-2 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-9.png);
width: 28px;
height: 28px;
left: 30%;
top: 160px;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-service-section .anim-icon .icon-3 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-10.png);
width: 16px;
height: 16px;
left: 25%;
top: 400px;
background-repeat: no-repeat;
}
.sm-service-section .anim-icon .icon-4 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-10.png);
width: 16px;
height: 16px;
left: 40%;
top: 200px;
background-repeat: no-repeat;
}
.sm-service-section .anim-icon .icon-5 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-11.png);
width: 16px;
height: 16px;
right: 19%;
top: 350px;
background-repeat: no-repeat;
}
.sm-service-section .anim-icon .icon-6 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-12.png);
width: 28px;
height: 28px;
right: 15%;
top: 450px;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-service-section .anim-icon .icon-7 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-8.png);
width: 19px;
height: 32px;
right: 17%;
top: 57%;
background-repeat: no-repeat;
}
.sm-service-section .anim-icon .icon-8 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-10.png);
width: 16px;
height: 16px;
right: 10%;
bottom: 200px;
background-repeat: no-repeat;
}
.sm-service-section .anim-icon .icon-9 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-9.png);
width: 28px;
height: 28px;
right: 42%;
bottom: 200px;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-service-section .anim-icon .icon-10 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-10.png);
width: 16px;
height: 16px;
left: 48%;
bottom: 250px;
background-repeat: no-repeat;
}
.sm-service-section .anim-icon .icon-11 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-10.png);
width: 16px;
height: 16px;
left: 70px;
bottom: 300px;
background-repeat: no-repeat;
}
.sm-service-section .anim-icon .icon-12 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-13.png);
width: 19px;
height: 32px;
left: 320px;
bottom: 380px;
background-repeat: no-repeat;
}
.sm-service-section .anim-icon .icon-13 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-12.png);
width: 28px;
height: 28px;
left: 260px;
top: 50%;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-service-section .sec-title h4{
color: #b19bf1;
}
.sm-service-section .sec-title h1{
color: #fff;
}
.sm-service-section .sec-title{
position: relative;
display: block;
margin-bottom: 60px;
}
.sm-service-section .service-block-one{
position: relative;
display: block;
background: #1b5ed4;
padding: 82px 30px 70px 65px;
margin-bottom: 30px;
border-radius: 10px;
transition: all 500ms ease;
}
.sm-service-section .service-block-one:before{
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/icon-8.png);
width: 100%;
height: 100%;
left: 0px;
top: 0px;
right: 0px;
border-radius: 10px;
transform: scale(0,0);
background-repeat: no-repeat;
background-size: cover;
transition: all 500ms ease;
}
.sm-service-section .service-block-one:hover:before{
transform: scale(1,1);
}
.sm-service-section .service-block-one .inner-box{
position: relative;
display: block;
padding-left: 97px;
}
.sm-service-section .service-block-one .inner-box .icon-box{
position: absolute;
left: 0px;
top: -7px;
}
.sm-service-section .service-block-one .inner-box .icon-box:before{
position: absolute;
content: '';
background: #663be3;
width: 60px;
height: 60px;
border-radius: 50%;
left: -25px;
bottom: -18px;
transition: all 900ms ease;
}
.sm-service-section .service-block-one:hover .inner-box .icon-box:before{
background: #e8e8e8;
}
.sm-service-section .service-block-one .inner-box .icon-box img{
position: relative;
width: auto;
transition: all 500ms ease;
}
.sm-service-section .service-block-one:hover .inner-box .icon-box img {
-webkit-filter: grayscale(100%) brightness(30%) sepia(100%) hue-rotate(-180deg) saturate(700%) contrast(1);
filter: grayscale(100%) brightness(30%) sepia(100%) hue-rotate(-180deg) saturate(700%) contrast(1);
}
.sm-service-section .service-block-one .inner-box h3{
position: relative;
display: block;
font-size: 24px;
line-height: 32px;
font-weight: 600;
color: #fff;
margin-bottom: 15px;
transition: all 500ms ease;
}
.sm-service-section .service-block-one:hover .inner-box h3,
.sm-service-section .service-block-one:hover .inner-box h3 a{
color: #09092b;
}
.sm-service-section .service-block-one .inner-box h3 a{
position: relative;
display: inline-block;
color: #fff;
}
.sm-service-section .service-block-one .inner-box h3 a:hover,
.sm-service-section .service-block-one .inner-box .link-box a:hover{
color: #fe721d;
}
.sm-service-section .service-block-one .inner-box .text{
position: relative;
display: block;
color: #fff;
margin-bottom: 16px;
transition: all 500ms ease;
}
.sm-service-section .service-block-one:hover .inner-box .text{
color: #848484;
}
.sm-service-section .service-block-one .inner-box .link-box a{
position: relative;
display: inline-block;
font-size: 16px;
font-weight: 500;
color: #fff;
font-family: 'Montserrat', sans-serif;
}
.sm-service-section .service-block-one:hover .inner-box .link-box a{
color: #fe721d;
} .sm-work-section{
position: relative;
display: block;
padding: 230px 0px 150px 0px;
}
.sm-work-section:before{
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/background/work-shap.png);
width: 100%;
height: 1090px;
left: 0px;
top: -140px;
background-repeat: no-repeat;
background-size: cover;
}
.sm-work-section .anim-icon .icon-1 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-3.png);
width: 137px;
height: 132px;
left: 100px;
top: -180px;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-work-section .content-box .count-number{
position: relative;
display: inline-block;
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/icon-10.png);
width: 75px;
height: 75px;
line-height: 75px;
text-align: center;
background-repeat: no-repeat;
font-size: 20px;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
color: #fff;
margin-bottom: 30px;
}
.sm-work-section .content-box h1{
position: relative;
display: block;
font-size: 40px;
font-weight: 600;
line-height: 50px;
margin-bottom: 22px;
}
.sm-work-section .content-box .text{
position: relative;
display: block;
margin-bottom: 27px;
}
.sm-work-section .content-box .list li {
position: relative;
display: block;
font-size: 16px;
margin-bottom: 6px;
padding: 0px 0px 0px 34px;
}
.sm-work-section .content-box .list li:last-child{
margin-bottom: 0px;
}
.sm-work-section .content-box .list li:before {
position: absolute;
content: "\f00c";
font-family: 'fontawesome';
font-size: 20px;
color: #fe721d;
font-weight: 500;
left: 0px;
top: 0px;
}
.sm-work-section .inner-box{
position: relative;
display: block;
margin-bottom: 240px;
}
.sm-work-section .inner-box:last-child{
margin-bottom: 0px;
}
.sm-work-section .image-box{
position: relative;
display: block;
margin-left: 80px;
margin-top: -70px;
}
.sm-work-section .image-box img{
position: relative;
max-width: none;
float: left;
}
.sm-work-section .inner-box:nth-child(2) .image-box{
margin-left: 0px;
margin-right: 80px;
margin-top: -10px;
}
.sm-work-section .inner-box:nth-child(2) .image-box img{
float: right;
}
.sm-work-section .inner-content{
position: relative;
display: block;
}
.sm-work-section .inner-content:before{
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/shap-3.png);
width: 773px;
height: 904px;
top: 380px;
right: 195px;
background-repeat: no-repeat;
} .sm-testimonial-section {
position: relative;
display: block;
width: 100%;
padding: 270px 0px 125px 0px;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
text-align: center;
}
.sm-testimonial-section:before{
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/shap-4.png);
width: 410px;
height: 313px;
left: 60px;
top: 35px;
background-repeat: no-repeat;
}
.sm-testimonial-section:after{
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/Leaf-1.png);
width: 292px;
height: 423px;
right: 0px;
bottom: 0px;
background-repeat: no-repeat;
}
.sm-testimonial-section .owl-dots-none .owl-dots{
display: none !important;
}
.sm-testimonial-section .nav-style-one .owl-nav .owl-prev {
width: 60px;
height: 50px;
position: relative;
display: inline-block;
background: transparent;
top: 0;
left: 15px !important;
cursor: pointer;
transition: all 500ms ease;
}
.sm-testimonial-section .nav-style-one .owl-nav .owl-prev:before {
left: auto;
content: '';
position: absolute;
top: 18.5px;
left: 3px;
width: 12px;
height: 12px;
border-bottom: 2px solid #cccccc;
border-left: 2px solid #cccccc;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transition: .7s cubic-bezier(.2, .96, .34, 1);
-o-transition: .7s cubic-bezier(.2, .96, .34, 1);
transition: .7s cubic-bezier(.2, .96, .34, 1);
right: 6px;
}
.sm-testimonial-section .nav-style-one .owl-nav .owl-prev:after {
content: '';
position: absolute;
top: 50%;
left: 3px;
-webkit-transform: translateY(-50%) scaleX(1);
-ms-transform: translateY(-50%) scaleX(1);
transform: translateY(-50%) scaleX(1);
-webkit-transform-origin: left;
-ms-transform-origin: left;
transform-origin: left;
width: 25px;
height: 2px;
background: #cccccc;
-webkit-transition: .7s cubic-bezier(.2, .96, .34, 1);
-o-transition: .7s cubic-bezier(.2, .96, .34, 1);
transition: .7s cubic-bezier(.2, .96, .34, 1);
}
.sm-testimonial-section .nav-style-one .owl-nav .owl-next {
width: 60px;
height: 50px;
position: relative;
display: inline-block;
background: transparent;
top: 0;
left: -15px !important;
cursor: pointer;
transition: all 500ms ease;
}
.sm-testimonial-section .nav-style-one .owl-nav .owl-next:before {
left: auto;
content: '';
position: absolute;
top: 18.5px;
right: 3px;
width: 12px;
height: 12px;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transition: .7s cubic-bezier(.2, .96, .34, 1);
-o-transition: .7s cubic-bezier(.2, .96, .34, 1);
transition: .7s cubic-bezier(.2, .96, .34, 1);
border-top: 2px solid #cccccc;
border-right: 2px solid #cccccc;
}
.sm-testimonial-section .nav-style-one .owl-nav .owl-next:after {
content: '';
position: absolute;
top: 50%;
right: 3px;
-webkit-transform: translateY(-50%) scaleX(1);
-ms-transform: translateY(-50%) scaleX(1);
transform: translateY(-50%) scaleX(1);
-webkit-transform-origin: right;
-ms-transform-origin: right;
transform-origin: right;
width: 25px;
height: 2px;
background: #cccccc;
-webkit-transition: .7s cubic-bezier(.2, .96, .34, 1);
-o-transition: .7s cubic-bezier(.2, .96, .34, 1);
transition: .7s cubic-bezier(.2, .96, .34, 1);
}
.sm-testimonial-section .nav-style-one .owl-nav .owl-prev:hover {
left: 0px !important;
}
.sm-testimonial-section .nav-style-one .owl-nav .owl-prev:hover:before {
border-color: #fe721d;
}
.sm-testimonial-section .nav-style-one .owl-nav .owl-prev:hover:after {
width: 45px;
background: #fe721d;
}
.sm-testimonial-section .nav-style-one .owl-nav .owl-next:hover {
left: 0px !important;
}
.sm-testimonial-section .nav-style-one .owl-nav .owl-next:hover:before {
border-color: #fe721d;
}
.sm-testimonial-section .nav-style-one .owl-nav .owl-next:hover:after {
width: 45px;
background: #fe721d;
}
.sm-testimonial-section .carousel-content .content-box .client-thumb{
position: relative;
display: inline-block;
width: 133px;
height: 133px;
border-radius: 50%;
margin-bottom: 50px;
}
.sm-testimonial-section .carousel-content .content-box .client-thumb:before{
position: absolute;
content: "\f10e";
font-family: 'Font Awesome 5 Free';
font-size: 20px;
font-weight: 700;
color: #fff;
background: #fe721d;
width: 50px;
height: 50px;
right: 0px;
bottom: -7px;
line-height: 50px;
text-align: center;
border-radius: 50%;
z-index: 1;
}
.sm-testimonial-section .carousel-content .content-box .client-thumb img{
position: relative;
display: inline-block;
width: 100%;
}
.sm-testimonial-section .sec-title{
margin-bottom: 62px;
}
.sm-testimonial-section .inner-content{
position: relative;
display: block;
margin: 0px 170px;
}
.sm-testimonial-section .inner-content:before{
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/shap-5.png);
width: 845px;
height: 374px;
left: 0px;
top: 30px;
background-repeat: no-repeat;
}
.sm-testimonial-section .carousel-content .content-box .text{
position: relative;
display: block;
font-style: italic;
margin-bottom: 36px;
}
.sm-testimonial-section .carousel-content .content-box .author-info h4{
position: relative;
display: block;
font-size: 20px;
line-height: 28px;
font-weight: 600;
margin-bottom: 4px;
}
.sm-testimonial-section .carousel-content .content-box .author-info span{
position: relative;
display: block;
font-size: 15px;
line-height: 24px;
font-family: 'Open Sans', sans-serif;
}
.sm-testimonial-section .sec-title h4{
margin-bottom: 13px;
}
.sm-testimonial-section .carousel-content .content-box .author-info{
position: relative;
display: block;
margin-bottom: 5px;
} .sm-pricing-section{
position: relative;
display: block;
padding: 142px 0px 150px 0px;
}
.sm-pricing-section:before{
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/shap-6.png);
width: 825px;
height: 425px;
left: 0px;
top: 10px;
background-repeat: no-repeat;
}
.sm-pricing-section:after{
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/background/pricing-bg.png);
width: 100%;
height: 100%;
left: 0px;
bottom: 0px;
background-size: cover;
background-repeat: no-repeat;
z-index: -1;
}
.tabs-box .tab{
position:relative;
display:none;
transition: all 900ms ease;
-moz-transition: all 900ms ease;
-webkit-transition: all 900ms ease;
-ms-transition: all 900ms ease;
-o-transition: all 900ms ease;
}
.tabs-box .tab.active-tab{
display:block;  
}
.tabs-box .tab{
transform:scale(0.9,0.9) translateY(0px);
}
.tabs-box .tab.active-tab{
transform:scale(1) translateY(0px);
}
.sm-pricing-section .top-content{
position: relative;
display: block;
margin-bottom: 59px;
}
.sm-pricing-section .top-content .text{
position: relative;
display: block;
padding-top: 52px;
}
.sm-pricing-section .tabs-content {
position: relative;
display: block;
margin: 0px 15px;
text-align: center;
}
.sm-pricing-section .tabs-content .pricing-column{
padding: 0px 0px;
}
.sm-pricing-section .pricing-table{
position: relative;
display: block;
background: #fff;
border: 1px solid #e5e5e5;
border-right: none;
}
.sm-pricing-section .pricing-column:last-child .pricing-table{
border-right: 1px solid #e5e5e5;
}
.sm-pricing-section .pricing-table .table-header h1 {
position: relative;
display: block;
font-size: 48px;
line-height: 55px;
font-weight: 500;
margin-bottom: 19px;
padding: 0px;
border: none;
margin: 0px 0px 19px 0px;
}
.sm-pricing-section .pricing-table .table-header a{
position: relative;
display: inline-block;
font-size: 17px;
font-family: 'Montserrat', sans-serif;
font-weight: 600;
background: #f2f3f6;
color: #09092b;
text-align: center;
width: 157px;
height: 55px;
line-height: 55px;
border-radius: 3px;
margin-bottom: 19px;
}
.sm-pricing-section .pricing-table .table-header a:hover{
color: #fff;
background: #fe721d;
}
.sm-pricing-section .pricing-table .table-header h4{
position: relative;
display: block;
font-size: 20px;
line-height: 28px;
font-weight: 400;
color: #848484
}
.sm-pricing-section .pricing-table .table-header{
position: relative;
display: block;
padding: 46px 15px 43px 15px;
}
.sm-pricing-section .pricing-table .table-content li {
position: relative;
display: block;
padding: 20px 15px;
height: 71px;
font-size: 20px;
color: #2bd55c;
border-top: 1px solid #e5e5e5;
margin-bottom: 0;
}
.sm-pricing-section .tab-btn-box{
position: relative;
display: block;
height: 100%;
}
.sm-pricing-section .tab-btn-box .tab-btns {
position: absolute;
display: block;
background: #f2f3f6;
bottom: 110px;
width: 100%;
left: 0px;
padding-top: 0;
margin-bottom: 0;
}
.sm-pricing-section .tab-btn-box .tab-btn {
position: relative;
display: block;
font-size: 16px;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
color: #848484;
border-bottom: 1px solid #e5e5e5;
padding: 20px 15px 20px 30px;
cursor: pointer;
transition: all 500ms ease;
margin-left: 0;
margin-bottom: 0;
}
.sm-pricing-section .tab-btn-box .tab-btn.active-btn,
.sm-pricing-section .tab-btn-box .tab-btn:hover{
background: #fe721d;
color: #fff;
}
.sm-pricing-section .tab-btn-box .tab-btn:last-child{
border-bottom: none;
}
.sm-pricing-section .lower-content{
position: relative;
display: block;
margin: 0px 15px;
}
.sm-pricing-section .lower-content:before{
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/Leaf-2.png);
width: 348px;
height: 360px;
left: -398px;
bottom: -47px;
background-repeat: no-repeat;
}
.sm-pricing-section .lower-content .btn-column,
.sm-pricing-section .lower-content .content-column{
padding: 0px 0px;
} .sm-subscribe-section{
position: relative;
display: block;
width: 100%;
padding: 143px 0px 365px 0px;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.sm-subscribe-section .sec-title h1 {
color: #fff;
margin-bottom: 50px;
text-align: center;
}
.sm-subscribe-section .inner-content{
position: relative;
display: block;
max-width: 830px;
width: 100%;
margin: 0 auto;
}
.sm-subscribe-section .inner-content .form-group{
position: relative;
display: inline-block;
margin: 0px;
max-width: 305px;
width: 100%;
float: left;
}
.sm-subscribe-section .inner-content .form-group input[type='text'],
.sm-subscribe-section .inner-content .form-group input[type='email']{
position: relative;
display: block;
width: 100%;
height: 60px;
font-size: 14px;
font-family: 'Open Sans', sans-serif;
padding: 10px 30px;
border-right: 1px solid #e5e5e5;
}
.sm-subscribe-section .inner-content .form-group:first-child input{
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
}
.sm-subscribe-section .inner-content .form-group:nth-child(2) input{
border-right: none;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
.sm-subscribe-section .inner-content .form-group:last-child{
position: absolute;
right: 0px;
top: 0px;
max-width: 200px;
width: 100%;
}
.sm-subscribe-section .inner-content .form-group .btn-style-two{
width: 100%;
padding: 17px 30px 17px 31px;
}
.sm-subscribe-section .anim-icon .icon-1 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/Shape-5.png) no-repeat;
width: 100px;
height: 175px;
right: 0px;
bottom: 120px;
}
.sm-subscribe-section .anim-icon .icon-2 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/Shape-4.png) no-repeat;
width: 170px;
height: 165px;
left: 100px;
bottom: 10px;
}
.sm-subscribe-section .anim-icon .icon-3 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-14.png);
width: 30px;
height: 21px;
left: 130px;
top: 160px;
background-repeat: no-repeat;
}
.sm-subscribe-section .anim-icon .icon-4 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-10.png);
width: 16px;
height: 16px;
left: 130px;
top: 50%;
background-repeat: no-repeat;
}
.sm-subscribe-section .anim-icon .icon-5 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-12.png);
width: 28px;
height: 28px;
left: 19%;
top: 65%;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-subscribe-section .anim-icon .icon-6 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-13.png);
width: 19px;
height: 32px;
top: 30%;
left: 20%;
background-repeat: no-repeat;
}
.sm-subscribe-section .anim-icon .icon-7 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-10.png);
width: 16px;
height: 16px;
top: 180px;
left: 30%;
background-repeat: no-repeat;
}
.sm-subscribe-section .anim-icon .icon-8 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-12.png);
width: 28px;
height: 28px;
top: 80px;
left: 38%;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-subscribe-section .anim-icon .icon-9 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-11.png);
width: 16px;
height: 16px;
left: 62%;
top: 70px;
background-repeat: no-repeat;
}
.sm-subscribe-section .anim-icon .icon-10 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-10.png);
width: 16px;
height: 16px;
top: 190px;
right: 20%;
background-repeat: no-repeat;
}
.sm-subscribe-section .anim-icon .icon-11 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-9.png);
width: 28px;
height: 28px;
right: 100px;
top: 40%;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-subscribe-section .anim-icon .icon-12 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-10.png);
width: 16px;
height: 16px;
right: 140px;
bottom: 30%;
background-repeat: no-repeat;
}
.sm-subscribe-section .anim-icon .icon-13 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-8.png);
width: 19px;
height: 32px;
right: 350px;
bottom: 150px;
background-repeat: no-repeat;
}
.sm-subscribe-section .anim-icon .icon-14 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-9.png);
width: 28px;
height: 28px;
right: 38%;
bottom: 200px;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-subscribe-section .anim-icon .icon-15 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-10.png);
width: 16px;
height: 16px;
right: 48%;
bottom: 300px;
background-repeat: no-repeat;
}  .sm-banner-section-two.style-four {
position: relative;
display: block;
padding: 278px 0px 0px 0px;
margin-bottom: 0px;
background-repeat: no-repeat;
}
.sm-banner-section-two.style-four:before{
position: absolute;
content: '';
background: #f7f8fc;
width: 100%;
height: 100%;
left: 0px;
top: 0px;
z-index: -1;
}
.sm-banner-section-two.style-four .content-box:before,
.sm-banner-section-two.style-four .content-box:after{
display: none;
}
.sm-banner-section-two.style-four .content-box h1{
font-size: 70px;
line-height: 80px;
margin-bottom: 27px;
}
.sm-banner-section-two.style-four .content-box .text {
line-height: 30px;
margin-bottom: 41px;
position: relative;
display: block;
font-size: 17px;
font-weight: 400;
color: #fff;
}
.sm-banner-section-two.style-four .content-box .btn-box a{
position: relative;
display: inline-block;
font-size: 18px;
font-weight: 600;
font-family: 'Montserrat', sans-serif;
color: #fff;
background: transparent;
text-align: left;
width: 208px;
line-height: 20px;
padding: 11px 20px 15px 65px;
border: 2px solid #fff;
border-radius: 3px;
z-index: 1;
transition: all 900ms ease;
}
.sm-banner-section-two.style-four .content-box .btn-box a:before{
position: absolute;
content: '';
background-color: #47c1ff;
border-radius: 3px;
width: 0%;
height: 100%;
left: 0px;
top: 0px;
z-index: -1;
transition: all 500ms ease;
}
.sm-banner-section-two.style-four .content-box .btn-box a:hover:before{
width: 100%;
}
.sm-banner-section-two.style-four .content-box .btn-box a:hover{
border-color: #47c1ff;
background: #47c1ff;
}
.sm-banner-section-two.style-four .content-box .btn-box a:first-child{
margin-right: 25px;
}
.sm-banner-section-two.style-four .content-box .btn-box a i{
position: absolute;
left: 28px;
top: 18px;
font-size: 30px;
font-weight: 400;
color: #fff;
}
.sm-banner-section-two.style-four .content-box .btn-box a span{
position: relative;
display: block;
font-size: 13px;
line-height: 20px;
font-family: 'Montserrat', sans-serif;
font-weight: 600;
color: #fff;
}
.sm-banner-section-two.style-four .image-box{
position: relative;
display: block;
padding: 0px;
margin: -110px 0px -40px -145px;
}
.sm-banner-section-two.style-four .content-box h1 {
position: relative;
display: block;
font-size: 59px;
line-height: 65px;
font-weight: 700;
color: #fff;
margin-bottom: 43px;
}
.sm-banner-section-two.style-four .image-box img {
position: relative;
max-width: none;
float: left;
} .sm-service-style-three {
position: relative;
display: block;
padding: 110px 0px 130px 0px;
text-align: center;
background: #f7f8fc;
}
.owl-nav-none .owl-nav{
display: none !important;
}
.sm-service-style-three .sec-title{
position: relative;
display: block;
margin-bottom: 50px;
}
.sm-service-style-three .service-block-three{
position: relative;
display: block;
background: #fff;
padding: 90px 30px 60px 30px;
border-radius: 10px;
}
.sm-service-style-three .service-block-three .icon-box{
position: relative;
display: inline-block;
font-size: 60px;
color: #5d87ff;
line-height: 60px;
margin-bottom: 36px;
transition: all 500ms ease;
z-index: 1;
}
.sm-service-style-three .service-block-three .icon-box:before{
position: absolute;
content: '';
background-image: -webkit-linear-gradient( 45deg, #fefeff 0%, #eae5fd 100%);
width: 80px;
height: 80px;
top: -40px;
right: -40px;
border-radius: 50%;
z-index: -1;
transition: all 500ms ease;
}
.sm-service-style-three .service-block-three:hover .icon-box:before{
width: 60px;
height: 60px;
}
.sm-service-style-three .owl-item:nth-child(2n+1) .inner-box .icon-box{
color: #ff8b45;
}
.sm-service-style-three .owl-item:nth-child(3n+1) .inner-box .icon-box{
color: #29f7ce;
}
.sm-service-style-three .owl-item:nth-child(2n+1) .inner-box .icon-box:before{
background-image: -webkit-linear-gradient( 45deg, #fefeff 0%, #fff0e6 100%);
}
.sm-service-style-three .owl-item:nth-child(3n+1) .inner-box .icon-box:before{
background-image: -webkit-linear-gradient( 45deg, #fefeff 0%, #e2fef8 100%);
}
.sm-service-style-three .service-block-three h4{
position: relative;
display: block;
font-size: 20px;
line-height: 28px;
color: #3b3b3b;
font-weight: 600;
margin-bottom: 29px;
}
.sm-service-style-three .service-block-three h4 a{
position: relative;
display: inline-block;
color: #3b3b3b;
}
.sm-service-style-three .service-block-three h4 a:hover{
color: #fe721d;
}
.sm-service-style-three .service-block-three .text{
position: relative;
display: block;
font-size: 15px;
}
.owl-theme .owl-dots .owl-dot span{
position: relative;
background: #e4e9f5;
border: none;
width: 15px;
height: 15px;
cursor: pointer;
margin: 7px 7px 0px 7px;
transition: all 500ms ease;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot span:hover{
background: #fe721d;
border: none;
}
.sm-service-style-three .owl-dots{
margin-top: 50px;
}
.sm-service-style-three .anim-icon .icon-1 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-16.png);
width: 28px;
height: 28px;
top: 100px;
left: 190px;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-service-style-three .anim-icon .icon-2 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-17.png);
width: 20px;
height: 20px;
top: 130px;
left: 30%;
background-repeat: no-repeat;
}
.sm-service-style-three .anim-icon .icon-3 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-23.png);
width: 19px;
height: 32px;
left: 250px;
top: 50%;
background-repeat: no-repeat;
}
.sm-service-style-three .anim-icon .icon-4 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-23.png);
width: 19px;
height: 32px;
top: 100px;
right: 190px;
background-repeat: no-repeat;
}
.sm-service-style-three .anim-icon .icon-5 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-15.png);
width: 28px;
height: 28px;
right: 420px;
top: 250px;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-service-style-three .anim-icon .icon-6 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-18.png);
width: 16px;
height: 16px;
right: 250px;
top: 45%;
background-repeat: no-repeat;
} .sm-counter-style-two {
position: relative;
display: block;
text-align: center;
}
.sm-counter-style-two .inner-box{
position: relative;
display: block;
padding: 70px 30px 79px 30px;
margin-top: -125px;
margin-bottom: 55px;
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/bg-2.png);
border-radius: 10px;
}
.sm-counter-style-two .counter-block-two .count-outer span{
position: relative;
display: block;
font-size: 60px;
line-height: 70px;
color: #fff;
font-family: 'Montserrat', sans-serif;
font-weight: 600;
margin-bottom: 5px;
}
.sm-counter-style-two .counter-block-two .text{
position: relative;
display: block;
color: #fff;
font-size: 16px;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
} .sm-feature-style-three.home-4 .image-box .image-3{
top: 105px;
right: 60px;
}
.sm-feature-style-three.home-4 .image-box .image-2{
left: -55px;
bottom: 310px;
}
.sm-feature-style-three.home-4 .image-box:before{
left: -130px;
top: 25%;
}
.sm-feature-style-three.home-4{
padding-bottom: 0px;
}
.sm-feature-style-three .anim-icon .icon-1 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-18.png);
width: 16px;
height: 16px;
top: 50px;
left: 360px;
background-repeat: no-repeat;
}
.sm-feature-style-three .anim-icon .icon-2 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-15.png);
width: 28px;
height: 28px;
left: 70px;
top: 35%;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-feature-style-three .anim-icon .icon-3 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-23.png);
width: 19px;
height: 32px;
left: 260px;
top: 30%;
background-repeat: no-repeat;
} .sm-feature-style-three{
position: relative;
display: block;
padding: 90px 0px 274px 0px;
}
.sm-feature-style-three .image-box{
position: relative;
display: block;
}
.sm-feature-style-three .image-box:before{
position: absolute;
content: '';
background: #fe721d;
width: 310px;
height: 310px;
border-radius: 50%;
left: 100px;
top: 35%;
}
.sm-feature-style-three .image-box img{
width: 100%;
}
.sm-feature-style-three .image-box .image-1{
position: relative;
float: left;
margin-left: -130px;
}
.sm-feature-style-three .image-box .image-2{
position: absolute;
left: -155px;
bottom: 220px;
box-shadow: 0 23px 50px rgba(176,176,176,.35);
}
.sm-feature-style-three .image-box .image-3{
position: absolute;
top: 130px;
right: 30px;
box-shadow: 0 23px 50px rgba(176,176,176,.35);
}
.sm-feature-style-three .content-box .icon-box{
position: relative;
display: inline-block;
font-size: 30px;
width: 75px;
height: 75px;
line-height: 75px;
text-align: center;
background: #fe721d;
color: #fff;
border-radius: 50%;
margin-bottom: 30px;
}
.sm-feature-style-three .inner-box:last-child .content-box .icon-box{
background: #6275fd;
}
.sm-feature-style-three .content-box .sec-title{
margin-bottom: 22px;
}
.sm-feature-style-three .content-box .text{
position: relative;
display: block;
margin-bottom: 27px;
}
.sm-feature-style-three .content-box .list{
position: relative;
display: block;
margin-bottom: 33px;
}
.sm-feature-style-three .content-box .list li {
position: relative;
display: block;
font-size: 16px;
margin-bottom: 6px;
padding: 0px 0px 0px 34px;
}
.sm-feature-style-three .content-box .list li:last-child{
margin-bottom: 0px;
}
.sm-feature-style-three .content-box .list li:before {
position: absolute;
content: "\f00c";
font-family: 'fontawesome';
font-size: 20px;
color: #fe721d;
font-weight: 500;
left: 0px;
top: 0px;
}
.sm-feature-style-three .content-box{
position: relative;
display: block;
padding-top: 132px;
}
.sm-feature-style-three .inner-box{
position: relative;
display: block;
margin-bottom: 106px;
}
.sm-feature-style-three .inner-box:last-child{
margin-bottom: 0px;
}
.sm-feature-style-three .inner-box:last-child .image-box:before{
display: none;
}
.sm-feature-style-three .inner-box:last-child .image-box .image-1{
float: none;
margin: 0px -275px 0px 40px;
top: -112px;
box-shadow: 0 23px 50px rgba(176,176,176,.35);
}
.sm-feature-style-three .inner-box:last-child .image-box .image-2{
bottom: 0px;
right: -375px;
left: inherit;
margin-left: 180px;
}
.sm-feature-style-three .inner-box:last-child .image-box{
margin-top: 147px;
} .sm-feature-style-five{
position: relative;
display: block;
padding: 30px 0px 113px 0px;
}
.extra.sm-feature-style-five:after{
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/shap-34.png);
width: 555px;
height: 1280px;
top: -300px;
right: 0px;
background-repeat: no-repeat;
z-index: -1;
}
.sm-feature-style-five .sec-title{
margin-bottom: 120px;
}
.sm-feature-style-five .inner-box .single-item{
position: relative;
display: block;
padding: 0px 0px 0px 150px;
margin-bottom: 104px;
}
.sm-feature-style-five .inner-box .single-item:last-child{
margin-bottom: 0px;
}
.sm-feature-style-five .inner-box .single-item .icon-box {
position: absolute;
left: 0px;
top: 6px;
font-size: 80px;
color: #5d87ff;
line-height: 80px;
margin-bottom: 36px;
transition: all 500ms ease;
z-index: 1;
}
.sm-feature-style-five .inner-box .single-item:nth-child(2) .icon-box{
color: #29f7ce;
}
.sm-feature-style-five .inner-box .single-item:last-child .icon-box{
color: #ff8b45;
}
.sm-feature-style-five .inner-box .single-item .icon-box:before {
position: absolute;
content: '';
background-image: -webkit-linear-gradient( 45deg, #fefeff 0%, #eae5fd 100%);
width: 90px;
height: 90px;
top: -40px;
right: -40px;
border-radius: 50%;
z-index: -1;
transition: all 500ms ease;
}
.sm-feature-style-five .inner-box .single-item:hover .icon-box:before{
width: 70px;
height: 70px;
}
.sm-feature-style-five .inner-box .single-item:nth-child(2) .icon-box:before{
background-image: -webkit-linear-gradient( 45deg, #fefeff 0%, #e2fef8 100%);
}
.sm-feature-style-five .inner-box .single-item:last-child .icon-box:before{
background-image: -webkit-linear-gradient( 45deg, #fefeff 0%, #fff0e6 100%);
}
.sm-feature-style-five .inner-box .single-item h3{
position: relative;
display: block;
font-size: 24px;
line-height: 30px;
font-weight: 600;
color: #3b3b3b;
margin-bottom: 11px;
}
.sm-feature-style-five .inner-box .single-item h3 a{
position: relative;
display: inline-block;
color: #3b3b3b;
}
.sm-feature-style-five .inner-box .single-item h3 a:hover{
color: #fe721d;
}
.sm-feature-style-five .inner-box .single-item .text{
position: relative;
display: block;
font-size: 14px;
color: #666;
}
.sm-feature-style-five .image-box{
position: relative;
display: block;
right: 100px;
margin-top: 157px;
}
.sm-feature-style-five .image-box:before{
position: absolute;
content: '';
width: 464px;
height: 497px;
right: -390px;
bottom: 160px;
background-repeat: no-repeat;
}
.sm-feature-style-five .image-box img{
position: relative;
max-width: none;
float: left;
}
.sm-feature-style-five .anim-icon .icon-1 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-18.png);
width: 16px;
height: 16px;
top: 30px;
right: 30%;
background-repeat: no-repeat;
}
.sm-feature-style-five .anim-icon .icon-2 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-15.png);
width: 28px;
height: 28px;
right: 330px;
top: 170px;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-feature-style-five .anim-icon .icon-3 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-23.png);
width: 19px;
height: 32px;
top: 100px;
right: 70px;
background-repeat: no-repeat;
} .sm-feature-style-six{
position: relative;
display: block;
padding: 70px 0px;
}
.sm-feature-style-six:before{
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/shap-53.png);
width: 1626px;
height: 1323px;
left: 0px;
top: -100px;
background-repeat: no-repeat;
}
.sm-feature-style-six .image-box{
position: relative;
display: block;
margin-left: -375px;
margin-right: 130px;
}
.sm-feature-style-six .image-box .image-1 img{
width: 100%;
}
.sm-feature-style-six .image-box .image-2{
position: absolute;
right: -180px;
bottom: -150px;
}
.sm-feature-style-six .content-box .icon-box {
position: relative;
display: inline-block;
font-size: 30px;
width: 75px;
height: 75px;
line-height: 75px;
text-align: center;
background: #fe721d;
color: #fff;
border-radius: 50%;
margin-bottom: 30px;
}
.sm-feature-style-six .content-box .sec-title {
margin-bottom: 22px;
}
.sm-feature-style-six .content-box .text {
position: relative;
display: block;
margin-bottom: 27px;
}
.sm-feature-style-six .content-box .list {
position: relative;
display: block;
margin-bottom: 33px;
}
.sm-feature-style-six .content-box .list li {
position: relative;
display: block;
font-size: 16px;
margin-bottom: 6px;
padding: 0px 0px 0px 34px;
}
.sm-feature-style-six .content-box .list li:before {
position: absolute;
content: "\f00c";
font-family: 'fontawesome';
font-size: 20px;
color: #fe721d;
font-weight: 500;
left: 0px;
top: 0px;
}
.sm-feature-style-six .content-box{
position: relative;
display: block;
margin-left: 30px;
margin-top: 60px;
}
.sm-feature-style-six .anim-icon .icon-1 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-18.png);
width: 16px;
height: 16px;
top: 200px;
right: 450px;
background-repeat: no-repeat;
}
.sm-feature-style-six .anim-icon .icon-2 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-15.png);
width: 28px;
height: 28px;
right: 130px;
top: 200px;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-feature-style-six .anim-icon .icon-3 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-23.png);
width: 19px;
height: 32px;
top: 0px;
right: 40%;
background-repeat: no-repeat;
}
.sm-feature-style-six .anim-icon .icon-4 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-18.png);
width: 16px;
height: 16px;
right: 300px;
bottom: 50px;
background-repeat: no-repeat;
} .sm-testimonial-style-four{
position: relative;
display: block;
padding: 30px 0px 50px 0px;
}
.sm-testimonial-style-four .sec-title{
margin-bottom: 48px;
}
.sm-testimonial-style-four .inner-box{
position: relative;
display: block;
margin-right: -600px;
}
.sm-testimonial-style-four .three-column-carousel-two .owl-stage-outer .active + .active + .active .content-box {
opacity: .4;
}
.sm-testimonial-style-four .blog-carousel-two .owl-stage-outer .active .content-box {
opacity: 1;
}
.sm-testimonial-style-four .content-box{
position: relative;
display: block;
background: #fff;
padding: 0px 30px 49px 60px;
margin: 50px 30px 50px 0px;
border-radius: 15px;
box-shadow: 0 10px 50px rgba(176,176,176,.35);
}
.sm-testimonial-style-four .content-box:before{
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/shap-36.png);
width: 100%;
height: 100%;
left: 0px;
top: 0px;
border-radius: 15px;
background-repeat: no-repeat;
}
.sm-testimonial-style-four .content-box .client-thumb {
position: relative;
display: inline-block;
width: 100px;
height: 100px;
border-radius: 50%;
margin-bottom: 38px;
margin-top: -35px;
top: -15px;
transition: all 500ms ease;
}
.sm-testimonial-style-four .content-box:hover .client-thumb{
transform: rotateY(180deg);
}
.sm-testimonial-style-four .content-box .client-thumb img {
position: relative;
display: inline-block;
width: 100%;
}
.sm-testimonial-style-four .content-box .text {
position: relative;
display: block;
font-size: 20px;
line-height: 32px;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
color: #3b3b3b;
margin-bottom: 24px;
z-index: 1;
}
.sm-testimonial-style-four .content-box .text:before{
position: absolute;
content: "\f10d";
font-family: 'Font Awesome 5 Free';
font-size: 40px;
font-weight: 600;
left: 20px;
top: -3px;
color: #f0f2f5;
z-index: -1;
}
.sm-testimonial-style-four .content-box .author-info h4 {
position: relative;
display: block;
font-size: 20px;
line-height: 28px;
font-weight: 600;
color: #09092b;
margin-bottom: 4px;
}
.sm-testimonial-style-four .content-box .author-info span {
position: relative;
display: block;
font-size: 15px;
line-height: 24px;
color: #fe721d;
}
.sm-testimonial-style-four .owl-nav{
position: absolute;
top: -95px;
left: 1040px;
}
.gray-bg{
background: #f7f8fc;
}
.sm-testimonial-style-four .anim-icon .icon-1 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-23.png);
width: 19px;
height: 32px;
left: 50px;
top: 250px;
background-repeat: no-repeat;
}
.sm-testimonial-style-four .anim-icon .icon-2 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-16.png);
width: 28px;
height: 28px;
top: 50px;
left: 150px;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-testimonial-style-four .anim-icon .icon-3 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-15.png);
width: 28px;
height: 28px;
right: 30%;
top: 80px;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-testimonial-style-four .anim-icon .icon-4 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-23.png);
width: 19px;
height: 32px;
top: 30px;
right: 160px;
background-repeat: no-repeat;
} .sm-pricing-style-three{
position: relative;
display: block;
padding-top: 110px;
}
.sm-pricing-style-three .sec-title{
margin-bottom: 49px;
}
.sm-pricing-style-three .tabs-box{
position: relative;
display: block;
z-index: 1;
}
.sm-pricing-style-three .tab-btn-box{
position: relative;
display: block;
margin-bottom: 60px;
}
.sm-pricing-style-three .tab-btn-box li{
position: relative;
display: inline-block;
font-size: 17px;
line-height: 55px;
font-family: 'Montserrat', sans-serif;
font-weight: 600;
color: #3b3b3b;
width: 186px;
height: 55px;
text-align: center;
border: 2px solid #e0e1e4;
border-radius: 5px;
cursor: pointer;
margin: 0px 13px;
transition: all 500ms ease;
}
.sm-pricing-style-three .tab-btn-box li.active-btn,
.sm-pricing-style-three .tab-btn-box li:hover{
background: #fe721d;
border-color: #fe721d;
color: #fff;
}
.sm-pricing-style-three .anim-icon .icon-4 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-16.png);
width: 28px;
height: 28px;
top: 100px;
left: 130px;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-pricing-style-three .anim-icon .icon-5 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-17.png);
width: 20px;
height: 20px;
top: 180px;
left: 30%;
background-repeat: no-repeat;
}
.sm-pricing-style-three .anim-icon .icon-6 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-23.png);
width: 19px;
height: 32px;
top: 150px;
right: 250px;
background-repeat: no-repeat;
} .sm-pricing-style-two {
position: relative;
display: block; background-size: cover;
background-repeat: no-repeat;
text-align: center;
padding-bottom: 80px;
}
.sm-pricing-style-three .tabs-box .tab-btns .tab-btn.active-btn,
.sm-pricing-style-three .tabs-box .tab-btns .tab-btn:hover{
background: #fe721d;
border-color: #fe721d;
color: #fff;
}
.sm-pricing-style-three .tabs-box .tab-btns .tab-btn {
position: relative;
display: inline-block;
font-size: 17px;
line-height: 55px;
font-family: 'Montserrat', sans-serif;
font-weight: 600;
color: #3b3b3b;
width: 186px;
height: 55px;
text-align: center;
border: 2px solid #e0e1e4;
border-radius: 5px;
cursor: pointer;
margin: 0px 13px;
transition: all 500ms ease;
}
.sm-pricing-style-two:after {
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/background/price-patten.png);
width: 100%;
height: 977px;
right: 0px;
bottom: 0px;
background-repeat: no-repeat;
background-size: cover;
z-index: -1;
}
.sm-pricing-style-two .sec-title{
position: relative;
display: block;
margin-bottom: 57px;
}
.sm-pricing-style-two .pricing-table{
position: relative;
display: block;
background: #fff;
padding: 63px 60px 55px 60px;
box-shadow: 0 23px 50px rgba(176,176,176,.35);
border-radius: 15px;
min-height: 631px;
}
.sm-pricing-style-two .pricing-table:before{
position: absolute;
content: '';
background: #3b04db;
width: 100%;
height: 100%;
left: 0px;
top: 0px;
right: 0px;
transform: scale(0,0);
border-radius: 15px;
transition: all 500ms ease;
}
.sm-pricing-style-two .pricing-table:hover:before{
transform: scale(1,1);
}
.sm-pricing-style-two .pricing-table .table-header h1 {
position: relative;
display: block;
font-size: 48px;
line-height: 60px;
font-family: 'Montserrat', sans-serif;
font-weight: 500;
color: #3b3b3b;
margin-bottom: 17px;
transition: all 500ms ease;
padding: 0px 0px;
border: none;
margin: 0px 0px 17px 0px;
}
.sm-pricing-style-two .pricing-table:hover .table-header h1{
color: #fff;
}
.sm-pricing-style-two .pricing-table .table-header a{
position: relative;
display: inline-block;
font-size: 17px;
font-family: 'Montserrat', sans-serif;
font-weight: 600;
background: transparent;
border: 2px solid #fe721d;
color: #3b3b3b;
text-align: center;
width: 157px;
height: 55px;
line-height: 55px;
border-radius: 3px;
margin-bottom: 19px;
}
.sm-pricing-style-two .pricing-table:hover .table-header a{
color: #fff;
background: #fe721d;
}
.sm-pricing-style-two .pricing-table .table-header h4{
position: relative;
display: block;
font-size: 27px;
line-height: 38px; font-weight: 800;
color: #0eaf96;
transition: all 500ms ease;
}
.sm-pricing-style-two .pricing-table:hover .table-header h4{
color: #fff;
}
.sm-pricing-style-two .pricing-table .table-header{
position: relative;
display: block;
padding-bottom: 47px;
border-bottom: 1px solid #e5e5e5;
margin-bottom: 36px;
transition: all 500ms ease;
}
.sm-pricing-style-two .pricing-table:hover .table-header{
border-color: #4f65c5;
}
.sm-pricing-style-two .pricing-table .table-content li{
position: relative;
display: block;
font-size: 16px;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
color: #848484;
padding: 10px 0px;
margin-bottom: 5px;
transition: all 500ms ease;
}
.sm-pricing-style-two .pricing-table:hover .table-content li{
color: #fff;
}
.sm-pricing-style-two .pricing-table .table-content li:last-child{
margin-bottom: 0px;
}
.sm-pricing-style-two .inner-content{
position: relative;
}
.sm-pricing-style-two .inner-content:before{
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/leaf.png);
width: 348px;
height: 360px;
left: -160px;
bottom: -47px;
background-repeat: no-repeat;
}
.sm-pricing-style-two .anim-icon .icon-1 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-19.png);
width: 28px;
height: 28px;
right: 140px;
top: 150px;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-pricing-style-two .anim-icon .icon-2 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-18.png);
width: 16px;
height: 16px;
right: 290px;
top: 60%;
background-repeat: no-repeat;
}
.sm-pricing-style-two .anim-icon .icon-3 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-23.png);
width: 19px;
height: 32px;
left: 180px;
top: 40%;
background-repeat: no-repeat;
}
.sm-pricing-style-two .tabs-box .tab-btns {
padding-top: 0;
}
.owl-dots-none .owl-dots{
display: none !important;
}
.nav-style-one .owl-nav .owl-prev {
width: 60px;
height: 50px;
position: relative;
display: inline-block;
background: transparent;
top: 0;
left: 15px !important;
cursor: pointer;
transition: all 500ms ease;
}
.nav-style-one .owl-nav .owl-prev:before {
left: auto;
content: '';
position: absolute;
top: 18.5px;
left: 3px;
width: 12px;
height: 12px;
border-bottom: 2px solid #cccccc;
border-left: 2px solid #cccccc;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transition: .7s cubic-bezier(.2, .96, .34, 1);
-o-transition: .7s cubic-bezier(.2, .96, .34, 1);
transition: .7s cubic-bezier(.2, .96, .34, 1);
right: 6px;
}
.nav-style-one .owl-nav .owl-prev:after {
content: '';
position: absolute;
top: 50%;
left: 3px;
-webkit-transform: translateY(-50%) scaleX(1);
-ms-transform: translateY(-50%) scaleX(1);
transform: translateY(-50%) scaleX(1);
-webkit-transform-origin: left;
-ms-transform-origin: left;
transform-origin: left;
width: 25px;
height: 2px;
background: #cccccc;
-webkit-transition: .7s cubic-bezier(.2, .96, .34, 1);
-o-transition: .7s cubic-bezier(.2, .96, .34, 1);
transition: .7s cubic-bezier(.2, .96, .34, 1);
}
.nav-style-one .owl-nav .owl-next {
width: 60px;
height: 50px;
position: relative;
display: inline-block;
background: transparent;
top: 0;
left: -15px !important;
cursor: pointer;
transition: all 500ms ease;
}
.nav-style-one .owl-nav .owl-next:before {
left: auto;
content: '';
position: absolute;
top: 18.5px;
right: 3px;
width: 12px;
height: 12px;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transition: .7s cubic-bezier(.2, .96, .34, 1);
-o-transition: .7s cubic-bezier(.2, .96, .34, 1);
transition: .7s cubic-bezier(.2, .96, .34, 1);
border-top: 2px solid #cccccc;
border-right: 2px solid #cccccc;
}
.nav-style-one .owl-nav .owl-next:after {
content: '';
position: absolute;
top: 50%;
right: 3px;
-webkit-transform: translateY(-50%) scaleX(1);
-ms-transform: translateY(-50%) scaleX(1);
transform: translateY(-50%) scaleX(1);
-webkit-transform-origin: right;
-ms-transform-origin: right;
transform-origin: right;
width: 25px;
height: 2px;
background: #cccccc;
-webkit-transition: .7s cubic-bezier(.2, .96, .34, 1);
-o-transition: .7s cubic-bezier(.2, .96, .34, 1);
transition: .7s cubic-bezier(.2, .96, .34, 1);
}
.nav-style-one .owl-nav .owl-prev:hover {
left: 0px !important;
}
.nav-style-one .owl-nav .owl-prev:hover:before {
border-color: #fe721d;
}
.nav-style-one .owl-nav .owl-prev:hover:after {
width: 45px;
background: #fe721d;
}
.nav-style-one .owl-nav .owl-next:hover {
left: 0px !important;
}
.nav-style-one .owl-nav .owl-next:hover:before {
border-color: #fe721d;
}
.nav-style-one .owl-nav .owl-next:hover:after {
width: 45px;
background: #fe721d;
} .sm-cta-section {
position: relative;
display: block;
padding: 140px 0px 150px 0px;
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/bg-3.png);
text-align: center;
}
.sm-cta-section .inner-box .btn-box a{
position: relative;
display: inline-block;
font-size: 18px;
font-weight: 600;
font-family: 'Montserrat', sans-serif;
color: #fff;
background: transparent;
text-align: left;
width: 208px;
margin: 0px 12px;
line-height: 20px;
padding: 11px 20px 15px 65px;
border: 2px solid #fff;
border-radius: 3px;
z-index: 1;
transition: all 900ms ease;
}
.sm-cta-section .inner-box .btn-box a:before{
position: absolute;
content: '';
background-color: #47c1ff;
border-radius: 3px;
width: 0%;
height: 100%;
left: 0px;
top: 0px;
z-index: -1;
transition: all 500ms ease;
}
.sm-cta-section .inner-box .btn-box a:hover:before{
width: 100%;
}
.sm-cta-section .inner-box .btn-box a:hover{
border-color: #47c1ff;
background-color: #47c1ff;
}
.sm-cta-section .inner-box .btn-box a i{
position: absolute;
left: 28px;
top: 18px;
font-size: 30px;
font-weight: 400;
color: #fff;
}
.sm-cta-section .inner-box .btn-box a span{
position: relative;
display: block;
font-size: 13px;
line-height: 20px;
font-family: 'Montserrat', sans-serif;
font-weight: 600;
color: #fff;
}
.sm-cta-section .inner-box h1{
position: relative;
display: block;
font-size: 48px;
line-height: 60px;
color: #fff;
font-weight: 600;
margin-bottom: 29px;
}
.sm-cta-section .inner-box .text{
position: relative;
display: block;
font-size: 17px;
line-height: 30px;
color: #fff;
margin-bottom: 41px;
}
.sm-cta-section .anim-icon .icon-1 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/Shape-4-1.png) no-repeat;
width: 170px;
height: 165px;
left: 70px;
top: -68px;
}
.sm-cta-section .anim-icon .icon-2 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/Shape-5-1.png) no-repeat;
width: 100px;
height: 175px;
right: 0px;
bottom: 30px;
} .sm-news-section {
position: relative;
display: block;
padding: 110px 0px 08px 0px;
text-align: center;
}
.sec-title h1 {
position: relative;
display: block;
font-size: 40px;
line-height: 50px;
font-weight: 600;
color: #3b3b3b;
}
.sec-title h4 {
position: relative;
display: block;
font-size: 15px;
line-height: 30px;
font-weight: 500;
color: #0eaf96;
text-transform: uppercase;
margin-bottom: 21px;
}
.sm-news-section:after {
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/shap-21.png);
width: 410px;
height: 410px;
left: 100px;
top: -200px;
background-repeat: no-repeat;
z-index: -1;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-news-section .top-content{
position: relative;
display: block;
margin-bottom: 57px;
}
.sm-news-section .top-content .btn-box{
position: relative;
margin-top: 40px;
}
.sm-news-section .news-block-one{
position: relative;
display: block;
}
.sm-news-section .news-block-one .image-box{
position: relative;
display: block;
overflow: hidden;
}
.sm-news-section .news-block-one .lower-content {
position: relative;
display: block;
padding: 33px 10px 20px 0px;
text-align: left;
box-shadow: none;
}
.sm-news-section .news-block-one .lower-content .post-date{
position: relative;
display: block;
margin-bottom: 8px;
}
.sm-news-section .news-block-one .lower-content h3{
position: relative;
display: block;
font-size: 24px;
font-weight: 600;
line-height: 28px;
color: #3b3b3b;
margin-bottom: 21px;
}
.sm-news-section .news-block-one .lower-content h3 a{
position: relative;
display: inline-block;
color: #3b3b3b;
}
.sm-news-section .news-block-one .lower-content h3 a:hover{
color: #fe721d;
}
.sm-news-section .news-block-one .lower-content .text{
position: relative;
display: block;
font-size: 15px;
line-height: 26px;
}
.sm-news-section .overlay-style{
position: absolute;
left: 0px;
bottom: 0px;
right: 0px;
top: 0px;
z-index: 2;
opacity: 0;
transition: all 900ms ease;    
}
.sm-news-section .overlay-style:before{
position: absolute;
content: '';
top: 0px;
left: 0px;
width: 100%;
height: 50%;
display: block;
opacity: 0;
text-align: center;
transform: perspective(400px) rotateX(-90deg);
transform-origin: top;
transition: all 0.5s;
background-color: rgba(0, 0, 0, 0.80);
}
.sm-news-section .overlay-style:after{
position: absolute;
content: '';
left: 0px;
bottom: 0px;
width: 100%;
height: 50%;
display: block;
opacity: 0;
text-align: center;
transform: perspective(400px) rotateX(90deg);
transform-origin: bottom;
transition: all 0.5s;
background-color: rgba(0, 0, 0, 0.80);
}
.sm-news-section .news-block-one:hover .overlay-style{
opacity: 1;
}
.sm-news-section .news-block-one:hover .overlay-style:before{
opacity: 1;
transform: perspective(400px) rotateX(0deg);
transition: all 700ms ease 100ms; 
}
.sm-news-section .news-block-one:hover .overlay-style:after{
opacity: 1;
transform: perspective(400px) rotateX(0deg);
transition: all 700ms ease 300ms; 
}
.sm-news-section .news-block-one img {
width: 100%;
transform: scale(1.01);
transition: all 700ms ease;
}
.sm-news-section .news-block-one:hover img {
transform:scale(1.2) rotate(2deg);  
}
.sm-news-section .news-block-one .overlay {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
z-index: 10;
transform: translate3d(0px, -100%, 0px);
transition: all 700ms ease 300ms;
}
.sm-news-section .news-block-one:hover .overlay{
transition: all 700ms ease 500ms;
transform: translate3d(0px, 0px, 0px);      
}
.sm-news-section .news-block-one .overlay .box{
display: table;
width: 100%;
height: 100%;
}
.sm-news-section .news-block-one .overlay .box .link-icon{
display: table-cell;
vertical-align: middle;
text-align: center;
}
.sm-news-section .news-block-one .overlay .box .link-icon a i:before{
display: inline-block;
color: #ffffff;
font-size: 35px;
line-height: 35px;
transition: all 500ms ease;
}
.sm-news-section .news-block-one .overlay .box .link-icon a:hover i:before{
color: #fe721d;    
}
.sm-news-section .anim-icon .icon-1 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-23.png);
width: 19px;
height: 32px;
left: 230px;
top: 160px;
background-repeat: no-repeat;
}
.sm-news-section .anim-icon .icon-2 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-17.png);
width: 20px;
height: 20px;
left: 50%;
top: 80px;
background-repeat: no-repeat;
}
.sm-news-section .anim-icon .icon-3 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-18.png);
width: 16px;
height: 16px;
right: 70px;
top: 280px;
background-repeat: no-repeat;
}
.sm-news-section .anim-icon .icon-4 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-19.png);
width: 28px;
height: 28px;
right: 260px;
top: 50%;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-news-section .anim-icon .icon-5 {
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-2/icons/anim-icon-16.png);
width: 28px;
height: 28px;
left: 50px;
top: 50%;
background-repeat: no-repeat;
-webkit-animation: zoom-fade 5s infinite linear;
animation: zoom-fade 5s infinite linear;
}
.sm-service-style-three .owl-theme .owl-dots .owl-dot span{
position: relative;
background: #e4e9f5;
border: none;
width: 15px;
height: 15px;
cursor: pointer;
margin: 7px 7px 0px 7px;
transition: all 500ms ease;
}
.sm-service-style-three .owl-theme .owl-dots .owl-dot.active span,
.sm-service-style-three .owl-theme .owl-dots .owl-dot span:hover{
background: #fe721d;
border: none;
}
.sm-service-style-three .owl-dots{
margin-top: 50px;
}
.owl-dot {
display: inline-block;
}
.sm-service-style-three .owl-dots {
margin-top: 50px;
overflow: visible;
z-index: 900000000000;
display: none;
}
.sm-testimonial-style-four .owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
display: block !important;
} .filter-tabs {
margin: 0;
margin-bottom: 40px;
}
.filter-tabs li {
padding: 0;
margin: 0px 7px 10px;
}
.filter-tabs li.active {}
.filter-tabs li span {
color: #464646;
font-size: 16px;
font-weight: 400;
line-height: 26px;
padding: 8px 40px;
border-radius: 21px;
font-family: 'Poppins', sans-serif;
display: block;
cursor: pointer;
transition: .5s ease;
}
.filter-tabs li:last-child span {
border-right: 0px;
}
.filter-tabs li:hover span,
.filter-tabs li.active span {
color: #000000;
background: #f7f7f7;
border-color: #0a0a0a;
transition: .5s ease;
}
.filter-tabs li span i {
font-size: 14px;
margin-right: 5px;
}
.projects-block-one.mix {
display: none;
} .projects-block-one {
position: relative;
margin-bottom: 30px;
}
.projects-block-one .inner-box {
position: relative;
}
.projects-block-one .image {
position: relative;
overflow: hidden;
}
.projects-block-one .image img {
width: 100%;
transition: .5s ease;
transform: scale(1.05);
}
.projects-block-one:hover .image img {
transform: scale(1);
}
.projects-block-one .image::before {
background: #1e2125;
bottom: 0px;
content: "";
left: 0px;
opacity: 0;
position: absolute;
right: 0px;
top: 0px;
z-index: 9;
transition: all 0.4s ease-in-out 0s;
}
.projects-block-one:hover .image::before {
opacity: 0.8;
}
.projects-block-one .overlay a {
background: rgba(255, 255, 255, 0.25) none repeat scroll 0 0;
border-radius: 50%;
color: #fff;
font-size: 20px;
height: 60px;
margin: 0 5px;
line-height: 60px;
opacity: 0;
display: inline-block;
text-align: center;
transform: translateX(0%) translateY(-30%) scale(0.5);
transition: all 0.4s ease 0s;
width: 60px;
}
.projects-block-one .overlay a:hover {
background: rgba(255, 255, 255, .8) none repeat scroll 0 0;
color: #000;
}
.projects-block-one:hover .overlay a {
opacity: 1;
transform: translateX(0) translateY(0%) scale(1);
}
.projects-block-one .overlay {
left: 0;
opacity: 0;
position: absolute;
right: 0;
text-align: center;
top: 50%;
transform: translateY(-50%);
transition: all 0.5s ease 0s;
z-index: 10;
}
.projects-block-one:hover .overlay {
opacity: 1;
}
.projects-block-one .caption-title {
bottom: 20px;
left: 20px;
opacity: 0;
position: absolute;
transition: all 0.3s ease-in-out 0s;
z-index: 12;
}
.projects-block-one:hover .caption-title {
opacity: 1;
}
.projects-block-one .caption-title h4 {
color: #fff;
font-size: 20px;
font-weight: 600;
text-transform: capitalize;
transform: translateY(15px);
transition: all 0.4s ease-in-out 0s;
font-family: 'Poppins', sans-serif;
}
.projects-block-one .caption-title h4 a {
color: #fff;
}
.projects-block-one:hover .caption-title h4,
.projects-block-one:hover .caption-title span {
transform: translateX(0px);
}
.projects-block-one .caption-title span {
color: #fff;
display: inline-block;
font-size: 15px;
line-height: 16px;
transform: translateY(15px);
transition: all 0.4s ease-in-out 0s;
text-transform: capitalize;
}
.projects-block-one .caption-title-two {
padding-top: 20px;
padding-left:  30px;
padding-bottom:  20px;
border: 1px solid #ecf0f6;
}
.projects-block-one .caption-title-two h4 {
font-family: 'Poppins', sans-serif;
}
.projects-block-one .caption-title-two h4 a {
color: #222;
font-size: 20px;
font-weight: 600;
text-transform: capitalize;
}
.projects-block-one .caption-title-two span {
font-size: 15px;
line-height: 16px;
font-weight: 500;
text-transform: capitalize;
} .projects-block-two {
position: relative;
padding: 0;
}
.projects-block-two .inner-box {
position: relative;
}
.projects-block-two .image img {
width: 100%;
}
.projects-block-two .image::before {
background: #1e2125;
bottom: 0px;
content: "";
left: 0px;
opacity: 0;
position: absolute;
right: 0px;
top: 0px;
z-index: 9;
transition: all 0.4s ease-in-out 0s;
}
.projects-block-two:hover .image::before {
opacity: 0.8;
}
.projects-block-two .image {
position: relative;
overflow: hidden;
}
.projects-block-two .image img {
transition: .5s ease;
}
.projects-block-two:hover .image img {
transform: translateX(0%) translateY(-90px) scale(1);
}
.projects-block-two .overlay a {
background: rgba(255, 255, 255, 0.25) none repeat scroll 0 0;
border-radius: 50%;
color: #fff;
font-size: 20px;
height: 60px;
margin: 0 5px;
line-height: 60px;
opacity: 0;
display: inline-block;
text-align: center;
transform: translateX(0%) translateY(-30%) scale(0.5);
transition: all 0.4s ease 0s;
width: 60px;
}
.projects-block-two .overlay a:hover {
background: rgba(255, 255, 255, .8) none repeat scroll 0 0;
color: #000;
}
.projects-block-two:hover .overlay a {
opacity: 1;
transform: translateX(0) translateY(0%) scale(1);
}
.projects-block-two .overlay {
left: 0;
opacity: 0;
position: absolute;
right: 0;
text-align: center;
top: 50%;
margin-top: -46.5px;
transform: translateY(-50%);
transition: all 0.5s ease 0s;
z-index: 10;
}
.projects-block-two:hover .overlay {
opacity: 1;
}
.projects-block-two .caption-title {
bottom: 0;
left: 0;
opacity: 0;
position: absolute;
transition: all 0.3s ease-in-out 0s;
z-index: 12;
background-color: white;
width:  100%;
padding: 16px 30px 20px;
}
.projects-block-two:hover .caption-title {
opacity: 1;
}
.projects-block-two .caption-title h4 {
color: #222;
font-size: 20px;
font-weight: 600;
text-transform: capitalize;
transform: translateY(15px);
transition: all 0.4s ease-in-out 0s;
font-family: 'Poppins', sans-serif;
}
.projects-block-two .caption-title h4 a {
color: #222;
}
.projects-block-two:hover .caption-title h4,
.projects-block-two:hover .caption-title span {
transform: translateX(0px);
}
.projects-block-two .caption-title span {
color: #848484;
display: inline-block;
font-size: 15px;
line-height: 16px;
transform: translateY(15px);
transition: all 0.4s ease-in-out 0s;
text-transform: capitalize;
} .projects-block-three {
position: relative;
margin-bottom: 30px;
}
.projects-block-three .inner-box {
position: relative;
}
.projects-block-three .image img {
width: 100%;
transition:  .5s ease;
}
.projects-block-three:hover .image img {
transform: scale(1.1);
}
.projects-block-three .image::before {
background: #1e2125;
bottom: 0px;
content: "";
left: 0px;
opacity: 0;
position: absolute;
right: 0px;
top: 0px;
z-index: 9;
transition: all 0.4s ease-in-out 0s;
}
.projects-block-three:hover .image::before {
opacity: 0.8;
}
.projects-block-three .image {
position: relative;
overflow:  hidden;
}
.projects-block-three .overlay a {
background: rgba(255, 255, 255, 0.25) none repeat scroll 0 0;
border-radius: 50%;
color: #fff;
font-size: 20px;
height: 60px;
margin: 0 5px;
line-height: 60px;
opacity: 0;
display: inline-block;
text-align: center;
transform: translateX(0%) translateY(-30%) scale(0.5);
transition: all 0.4s ease 0s;
width: 60px;
}
.projects-block-three .overlay a:hover {
background: rgba(255, 255, 255, .8) none repeat scroll 0 0;
color: #000;
}
.projects-block-three:hover .overlay a {
opacity: 1;
transform: translateX(0) translateY(0%) scale(1);
}
.projects-block-three .overlay {
left: 0;
opacity: 0;
position: absolute;
right: 0;
text-align: center;
margin-top: -40px;
top: 50%;
transform: translateY(-50%);
transition: all 0.5s ease 0s;
z-index: 10;
}
.projects-block-three:hover .overlay {
opacity: 1;
}
.projects-block-three .caption-title {
bottom: 50%;
margin-bottom: -65px;
left: 0;
width:  100%;
text-align:  center;
opacity: 0;
position: absolute;
transition: all 0.3s ease-in-out 0s;
z-index: 12;
}
.projects-block-three:hover .caption-title {
opacity: 1;
}
.projects-block-three .caption-title h4 {
color: #fff;
font-size: 20px;
font-weight: 600;
text-transform: capitalize;
transform: translateY(15px);
transition: all 0.4s ease-in-out 0s;
font-family: 'Poppins', sans-serif;
}
.projects-block-three .caption-title h4 a {
color: #fff;
}
.projects-block-three:hover .caption-title h4,
.projects-block-three:hover .caption-title span {
transform: translateX(0px);
}
.projects-block-three .caption-title span {
color: #fff;
display: inline-block;
font-size: 15px;
line-height: 16px;
transform: translateY(15px);
transition: all 0.4s ease-in-out 0s;
text-transform: capitalize;
} .projects-block-four {
position: relative;
margin-bottom: 35px;
}
.projects-block-four .inner-box {
position: relative;
}
.projects-block-four .image {
position: relative;
overflow: hidden;
}
.projects-block-four .image img {
width: 100%;
transition: .5s ease;
}
.projects-block-four:hover .image img {
transform: rotateX(20deg) scale(1.1);
}
.projects-block-four .image::before {
background: #1e2125;
bottom: 0px;
content: "";
left: 0px;
opacity: 0;
position: absolute;
right: 0px;
top: 0px;
z-index: 9;
transition: all 0.4s ease-in-out 0s;
}
.projects-block-four:hover .image::before {
opacity: 0.8;
}
.projects-block-four .overlay a {
background: rgba(255, 255, 255, 0.25) none repeat scroll 0 0;
border-radius: 50%;
color: #fff;
font-size: 20px;
height: 60px;
margin: 0 5px;
line-height: 60px;
opacity: 0;
display: inline-block;
text-align: center;
transform: translateX(0%) translateY(-30%) scale(0.5);
transition: all 0.4s ease 0s;
width: 60px;
}
.projects-block-four .overlay a:hover {
background: rgba(255, 255, 255, .8) none repeat scroll 0 0;
color: #000;
}
.projects-block-four:hover .overlay a {
opacity: 1;
transform: translateX(0) translateY(0%) scale(1);
}
.projects-block-four .overlay {
left: 0;
opacity: 0;
position: absolute;
right: 0;
text-align: center;
top: 50%;
transform: translateY(-50%);
transition: all 0.5s ease 0s;
z-index: 10;
}
.projects-block-four:hover .overlay {
opacity: 1;
}
.projects-block-four .caption-title {
bottom: 20px;
left: 20px;
width: 100%;
opacity: 0;
position: absolute;
transition: all 0.3s ease-in-out 0s;
z-index: 12;
}
.projects-block-four:hover .caption-title {
opacity: 1;
}
.projects-block-four .caption-title h4 {
color: #fff;
font-size: 20px;
font-weight: 600;
text-transform: capitalize;
transform: translateY(15px);
transition: all 0.4s ease-in-out 0s;
font-family: 'Poppins', sans-serif;
}
.projects-block-four .caption-title h4 a {
color: #fff;
}
.projects-block-four:hover .caption-title h4,
.projects-block-four:hover .caption-title span {
transform: translateX(0px);
}
.projects-block-four .caption-title span {
color: #fff;
display: inline-block;
font-size: 15px;
line-height: 16px;
transform: translateY(15px);
transition: all 0.4s ease-in-out 0s;
text-transform: capitalize;
}
.projects-block-four .read-more {
position:  absolute;
right: 50px;
bottom: 10px;
} .projects-block-five {
position: relative;
}
.projects-block-five .inner-box {
position: relative;
}
.projects-block-five .image {
position: relative;
overflow: hidden;
}
.projects-block-five .image img {
position: relative;
width: 100%;
transition: .5s ease;
}
.projects-block-five:hover .image img {
transform: rotateY(20deg) scale(1.1) translate(-10px, -10px);
}
.projects-block-five .caption-title {
bottom: 70px;
left: 75px;
position: absolute;
z-index: 12;
}
.projects-block-five .caption-title h4 a {
font-size: 40px;
font-weight: 700;
color: #fff;
margin-bottom: 25px;
display:  inline-block;
}
.projects-block-five .caption-title .text {
color: #fff;
margin-bottom: 10px;
max-width: 580px;
}
.projects-block-five .read-more span {
color: #fff;
} .projects-block-six {
position: relative;
padding: 0px;
}
.projects-block-six .inner-box {
position: relative;
}
.projects-block-six .image img {
width: 100%;
transition:  .5s ease;
}
.projects-block-six:hover .image img {
transform: scale(1.1);
}
.projects-block-six .image::before {
background: #1e2125;
bottom: 0px;
content: "";
left: 0px;
opacity: 0;
position: absolute;
right: 0px;
top: 0px;
z-index: 9;
transition: all 0.4s ease-in-out 0s;
}
.projects-block-six:hover .image::before {
opacity: 0.8;
}
.projects-block-six .image {
position: relative;
overflow:  hidden;
}
.projects-block-six .overlay a {
background: rgba(255, 255, 255, 0.25) none repeat scroll 0 0;
border-radius: 50%;
color: #fff;
font-size: 20px;
height: 60px;
margin: 0 5px;
line-height: 60px;
opacity: 0;
display: inline-block;
text-align: center;
transform: translateX(0%) translateY(-30%) scale(0.5);
transition: all 0.4s ease 0s;
width: 60px;
}
.projects-block-six .overlay a:hover {
background: rgba(255, 255, 255, .8) none repeat scroll 0 0;
color: #000;
}
.projects-block-six:hover .overlay a {
opacity: 1;
transform: translateX(0) translateY(0%) scale(1);
}
.projects-block-six .overlay {
left: 0;
opacity: 0;
position: absolute;
right: 0;
text-align: center;
margin-top: -40px;
top: 50%;
transform: translateY(-50%);
transition: all 0.5s ease 0s;
z-index: 10;
}
.projects-block-six:hover .overlay {
opacity: 1;
}
.projects-block-six .caption-title {
bottom: 50%;
margin-bottom: -65px;
left: 0;
width:  100%;
text-align:  center;
opacity: 0;
position: absolute;
transition: all 0.3s ease-in-out 0s;
z-index: 12;
}
.projects-block-six:hover .caption-title {
opacity: 1;
}
.projects-block-six .caption-title h4 {
color: #fff;
font-size: 20px;
font-weight: 600;
text-transform: capitalize;
transform: translateY(15px);
transition: all 0.4s ease-in-out 0s;
font-family: 'Poppins', sans-serif;
}
.projects-block-six .caption-title h4 a {
color: #fff;
}
.projects-block-six:hover .caption-title h4,
.projects-block-six:hover .caption-title span {
transform: translateX(0px);
}
.projects-block-six .caption-title span {
color: #fff;
display: inline-block;
font-size: 15px;
line-height: 16px;
transform: translateY(15px);
transition: all 0.4s ease-in-out 0s;
text-transform: capitalize;
} .owlnav-style-one .owl-nav {
position:  absolute;
right:  0;
font-size: 20px;
}
.owlnav-style-one .owl-nav .owl-prev {
display:  inline-block;
padding: 0 10px;
border-right: 1px solid #a4a4a4;
}
.owlnav-style-one .owl-nav .owl-next {
display:  inline-block;
padding: 0 10px;
} .portfolio-style-two .row {
margin: 0 -1px;
}
.portfolio-style-two .projects-block-one {
padding: 1px;
margin: 0;
} .gallery-section .filter-list{
position:relative;
display:block;
min-height:100px;   
}
.gallery-section .outer-box{
position:relative;  
}
.gallery-section .filters{
position:relative;
margin-bottom:40px;
}
.gallery-section .filters li{
position:relative;
display:inline-block;
padding:0px 0px;
line-height:24px;
color:#333333;
cursor:pointer;
text-transform:uppercase;
letter-spacing:1px;
background:none;
font-size:14px;
font-weight:700;
margin:0px 20px 10px;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
}
.gallery-section .filters li:first-child {
margin-left: 0px;
}
.gallery-section .filters li:before{
content:'';
position:absolute;
left: 0;
top: 11px;
width: 0%;
height: 2px;
background: #000000;
opacity:0;
transition: all 500ms ease;
}
.gallery-section .filters li.active:before,
.gallery-section .filters li:hover:before{
opacity: 0.5;
width: 100%;
}
.default-portfolio-item{
position:relative;
margin-bottom:30px;
}
.default-portfolio-item.mix{
display:none;
}
.masonry-gallery .items-container{
position:relative;
}
.masonry-gallery .masonry-item{
position:relative;
}
.default-portfolio-item .inner-box{
position:relative;
display:block;
width:100%;
overflow:hidden;
}
.default-portfolio-item .image-box{
position:relative;
display:block;  
}
.default-portfolio-item .image-box img{
position:relative;
display:block;
width:100%;
}
.default-portfolio-item .overlay-box{
position:absolute;
left:0px;
top:0px;
right:0px;
bottom:0px;
padding:0px;
opacity:0;
text-align:center;
color:#333333;
transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transform:scaleX(0);
-ms-transform:scaleX(0);
-o-transform:scaleX(0);
-moz-transform:scaleX(0);
transform:scaleX(0);
z-index:10;
}
.default-portfolio-item:hover .overlay-box{
top:0px;
opacity:1;
-webkit-transform:scaleX(1);
-ms-transform:scaleX(1);
-o-transform:scaleX(1);
-moz-transform:scaleX(1);
transform:scaleX(1);    
}
.default-portfolio-item .overlay-inner{
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
display:table;
vertical-align:middle;
padding: 20px 20px;
background: rgba(0, 0, 0, 0.65);
}
.default-portfolio-item .overlay-inner .overlay-content{
position:relative;
display:table-cell;
vertical-align:middle;
box-shadow: 0 0 20px #00000014;
}
.default-portfolio-item .overlay-inner .content-box{
position:relative;
padding: 15px 15px;
}
.default-portfolio-item .overlay-inner h3{
position:relative;
font-size:16px;
font-weight:700;
text-transform:uppercase;
color:#333333;
line-height:1.4em;
}
.default-portfolio-item .overlay-inner h3 a{
color: #ffffff;
}
.default-portfolio-item .overlay-inner .text{
position:relative;
line-height:1.8em;
font-size:13px;
margin-top:5px;
color: #eee;
}
.gallery-section .view-all{
position:relative;
text-align:center;  
}
.gallery-section .view-all .theme-btn{
padding-left:50px;
padding-right:50px;
font-weight: 600;
}
.fancybox-next span,
.fancybox-prev span{
background-image:none !important;
width:44px !important;
height:44px !important;
line-height:44px !important;
text-align:center;
}
.fancybox-next span:before,
.fancybox-prev span:before{
content:'';
position:absolute;
font-family: 'FontAwesome';
left:0px;
top:0px;
font-size:12px;
width:44px !important;
height:44px !important;
line-height:44px !important;
background-color:rgba(28,28,28,0.40) !important;
color:#ffffff;
visibility:visible;
transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
-moz-transition: all 500ms ease;
}
.fancybox-next span:before{
content:'\f178';
}
.fancybox-prev span:before{
content:'\f177';
}
.fancybox-next:hover span:before,
.fancybox-prev:hover span:before{
background-color:#ffffff !important;
color:#000000;  
}
.fancybox-type-image .fancybox-close{
right:0px;
top:0px;
width:45px;
height:45px;
background:url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/icon-cross.png) center center no-repeat;
background-color:rgba(17,17,17,0.50) !important;    
}
.fancybox-type-image .fancybox-close:hover{
background-color:#000000 !important;    
}
.fancybox-type-image .fancybox-skin {
padding:0px !important; 
}
.gallery-section .outer-box {
max-width: 1500px;
margin: 0 auto;
} .project-information {
position: relative;
border: 1px solid #e5e9f2;
padding: 40px 30px;
}
.project-information h4 {
font-size: 22px;
color: #222;
margin-bottom: 30px;
}
.project-information ul li {
font-size: 14px;
font-family: 'Poppins', sans-serif;
color: #848484;
margin-bottom: 12px;
}
.project-information ul li b {
color: #222;
}
.sm-pricing-section .pricing-table .table-content ul {
margin-bottom: 0;
} .sm-service-details {
position: relative;
}
.sm-service-details h1 {
font-size: 40px;
font-weight: 700;
margin-bottom: 20px;
}
.sm-service-details h3 {
font-size: 26px;
font-weight: 700;
margin-bottom: 20px;
}
.sm-service-details img {
width: 100%;
}
.sm-service-details .top-content {
position: relative;
margin-bottom: 60px;
}
.sm-service-details .middile-content {
position: relative;
margin-bottom: 60px;
} .sm-service-details .sidebar .request-callback-widget {
position: relative;
background-color: #3648b2;
}
.sm-service-details .sidebar .request-callback-widget:before {
position: absolute;
content: '';
bottom: 0px;
right: 0;
width: 164px;
height: 292px;
background: url(//aq-technologies.com/wp-content/themes/saasweb/img/pattern-4.png) no-repeat center;
}
.sm-service-details .sidebar .request-callback-widget .inner-box {
position: relative;
padding: 30px 30px 40px;
margin-bottom: 0;
}
.sm-service-details .sidebar .request-callback-widget .text {
color: rgba(255, 255, 255, .7);
margin-bottom: 15px;
line-height: 26px;
}
.sm-service-details .sidebar .request-callback-widget ul {
margin-bottom: 25px;
}
.sm-service-details .sidebar .request-callback-widget ul li {
color: #fff;
font-size: 17px;
font-weight: 600;
font-family: 'Muli', sans-serif;
margin-bottom: 5px;
}
.sm-service-details .sidebar .request-callback-widget ul li span {
margin-right: 10px;
position: relative;
top: 1px;
color: #0faa97;
} .sm-service-details .sidebar .brochure-widget {
position: relative;
border: 1px solid #f2f2f2;
padding: 20px 30px 5px;
}
.sm-service-details .sidebar .brochure-widget a {
position: relative;
padding: 0px 40px;
font-size: 13px;
font-weight: 400;
font-family: 'Muli', sans-serif;
color: #222;
line-height: 18px;
display: block;
margin-bottom: 10px;
padding-bottom: 12px;
border-bottom: 1px solid #f2f2f2;
}
.sm-service-details .sidebar .brochure-widget a:last-child {
border-bottom: 0px;
}
.sm-service-details .sidebar .brochure-widget a strong {
font-size: 16px;
font-weight: 600;
}
.sm-service-details .sidebar .brochure-widget a span {
position: absolute;
left: 0;
top: 2px;
margin-right: 20px;
color: #0eaf96;
font-size: 32px;
} .sm-service-details .sidebar .category-widget-two {
}
.sm-service-details .sidebar .category-widget-two li {
position: relative;
margin-bottom: 10px;
}
.sm-service-details .sidebar .category-widget-two li:last-child {
margin-bottom: 0px;
}
.sm-service-details .sidebar .category-widget-two li a {
position: relative;
font-size: 16px;
font-weight: 600;
font-family: 'Muli', sans-serif;
display: block;
color: #1a224d;
background: #fff;
border: 1px solid #e6e6e6;
padding: 13px 22px;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
}
.sm-service-details .sidebar .category-widget-two li.active a {
border-color: #3648b2;
border-left: 3px solid #ff4747;
background: #3648b2;
color: #fff !important;
}
.sm-service-details .sidebar .category-widget-two li a:hover {
color: #ff4747;
} .sm-service-details .sidebar .author-widget {
position: relative;
}
.sm-service-details .sidebar .author-widget .inner-box {
position: relative;
border: 1px solid #e6e6e6;
padding: 50px 30px;
text-align: center;
}
.sm-service-details .sidebar .author-widget .inner-box:before {
position: absolute;
content: '';
background: #3648b2;
left: 0;
top: 0;
width: 100%;
height: 120px;
}
.sm-service-details .sidebar .author-widget .image {
margin-bottom: 30px;
}
.sm-service-details .sidebar .author-widget .image img {
position: relative;
border-radius: 50%;
}
.sm-service-details .sidebar .author-widget h4 {
font-size: 21px;
font-weight: 600;
margin-bottom: 8px;
}
.sm-service-details .sidebar .author-widget .text {
margin-bottom: 5px;
} .sm-service-details .sidebar .news-widget {
position: relative;
}
.sm-service-details .sidebar .news-widget .inner-box {
position: relative;
padding-left: 120px;
padding-bottom: 40px;
margin-bottom: 20px;
border-bottom: 1px solid #e6e6e6;
}
.sm-service-details .sidebar .news-item:last-child .inner-box {
padding-bottom: 0px;
margin-bottom: 0px;
border-bottom: 0px;
}
.sm-service-details .sidebar .news-widget .inner-box .image {
position: absolute;
left: 0;
top: 0;
}
.sm-service-details .sidebar .news-widget .inner-box .date {
font-size: 14px;
position: relative;
margin-top: 5px;
display: inline-block;
}
.sm-service-details .sidebar .news-widget .inner-box h4 {
font-size: 18px;
font-weight: 700;
line-height: 26px;
}
.sm-service-details .sidebar .news-widget .inner-box h4 a {
color: #1a224d;
transition: .5s ease;
}
.sm-service-details .sidebar .news-widget .inner-box h4 a:hover {
color: #ff4747;
} .sm-service-details .sidebar .call-out-widget .inner-box {
position: relative;
padding: 110px 40px;
background-size: cover;
}
.sm-service-details .sidebar .call-out-widget .inner-box h3 {
color: #fff;
font-size: 24px;
font-weight: 600;
margin-bottom: 30px;
} .sm-service-details .sidebar .social-link-widget {
position: relative;
}
.sm-service-details .sidebar .social-icon-one {
margin: 0 -4px;
}
.sm-service-details .sidebar .social-icon-one li {
margin: 0 4px 10px;
}
.sm-service-details .sidebar .social-link-widget li a {
font-size: 18px;
color: #1a224d;
border: 1px solid #e6e6e6;
width: 80px;
height: 80px;
line-height: 80px;
text-align: center;
display: inline-block;
}
.sm-service-details .mb-50 {
margin-bottom: 50px !important;
}
.sm-service-details .text {
font-size: 15px;
color: #808080;
}
.sm-service-details .mb-80 {
margin-bottom: 80px !important;
}
.sm-service-details .mb-30 {
margin-bottom: 30px !important;
} .sm-service-details .list-style-one {
position: relative;
}
.sm-service-details .list-style-one li {
position: relative;
color: #111;
font-size: 18px;
font-weight: 400;
padding-left: 28px;
margin-bottom: 15px;
}
.sm-service-details .list-style-one li:before {
position: absolute;
content: "\f058";
left: 0px;
top: 0px;
font-size: 16px;
color: #3648b2;
font-family: 'Font Awesome 5 Free';
}
.sidebar-widget.category-widget {
background: #f5f5f7;
padding: 30px;
}
.category-widget ul li {
position: relative;
margin-bottom: 10px;
}
.category-widget ul li a {
position: relative;
font-size: 17px;
font-weight: 700;
display: block;
color: #1a224d;
background: #fff;
border-left: 3px solid #fff;
padding: 13px 22px;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
}
.category-widget ul li.active a {
border-color: #0eaf96;
background: #3648b2;
color: #fff !important;
}
.theem-btn.ex_btn-style-two {
position: relative;
padding: 16px 55px;
border-radius: 0px;
line-height: 24px;
color: #403ab4;
text-align: center;
display: inline-block;
font-size: 17px;
font-weight: 700;
background: #ffffff;
letter-spacing: 1px;
text-transform: capitalize;
border: 2px solid #ffffff;
}
.theem-btn.ex_btn-style-two:hover {
color: #ffffff;
background: #101010 !important;
border-color: #101010 !important;
outline: 1px dashed #ffffff;
outline-offset: -5px;
}
.sidebar-title.light h3 {
color: #fff;
}
.up{
padding: 0px 0 80px!important;
}
.dw {
padding: 110px 0 0px!important;
}
.mr{
padding: 0px 0 0px!important;
}
.darkpricing .pricing-table {
position: relative;
display: block;
padding: 63px 60px 55px 60px;
box-shadow: 0 23px 50px rgba(34, 34, 34, 0.35);
border-radius: 15px;
min-height: 631px;
}
@media screen and (max-width: 1600px) {
.banner-section-two_ex .content-column .inner-column {
padding-bottom: 300px !important;
}
.banner-section-one .content-box {
max-width: 100% !important;
padding: 250px 0 200px !important;
}
.banner-section-one .layer-outer {
top: 0 !important;
width: 100% !important;
}
.banner-section-one .video-box .video-link {
right: unset !important;
left: 0 !important;
z-index: 1;
}
.banner-section-one .layer-outer {
right: -40px !important;
bottom: 120px !important;
width: 100% !important;
}
.sm-banner-section-two.style-four .image-box {
margin: 0;
}
}
@media screen and (max-width: 991px) {
#text-4 {
left: 0 !important;
}
#text-5 {
left: 0 !important;
}
.fluid-section-two .image-column {
position: relative;
width: 100%;
}
.fluid-section-two .content-column {
width: 100%;
}
.fluid-section-two .content-column .content-box {
max-width: 100%;
padding-top: 0 !important;
}
.fluid-section-two {
padding-bottom: 0;
padding-top: 0;
}
.pricing-section.style-three .pricing-tabs .tabs-content .tab .price-block:nth-child(2) {
transform: translateY(-0px) !important;
}
.faq-fluid-section .image-column {
position: relative;
width: 100%;
padding: 0px 15px;
}
.faq-fluid-section .content-column {
width: 100%;
}
.faq-fluid-section .content-column .content-box {
max-width: 100%;
}
.faq-fluid-section .image-column .image {
margin-left: 0;
}
.faq-fluid-section .image-column .inner-column {
padding-right: 0;
}
.faq-fluid-section .image-column .image img {
max-width: 100%;
}
.features-section-ten .sec-title {
text-align: left !important;
}
.anim-icon, .banner-section .content-box:before, .banner-section .content-box:after, .testimonial-style-three:before {
display: none !important;
}
.sm-banner-section-two {
padding-bottom: 200px !important;
}
.sm-banner-section-two .image-box {
display: none !important;
}
.sm-feature-style-three.home-4 .image-box .image-2 {
left: 0;
bottom: 0;
position: relative;
}
.sm-feature-style-three.home-4 .image-box .image-3 {
top: 0;
right: 0;
position: relative;
}
.sm-feature-style-three .image-box {
margin-bottom: 50px;
}
.sm-feature-style-three .image-box .image-1 {
float: none !important;
}
.sm-feature-style-three .image-box:before {
display: none;
}
.sm-feature-style-five .image-box img {
float: none !important;
max-width: 100%;
}
.sm-feature-style-six .image-box {
margin: 0px;
}
.sm-feature-style-five .image-box {
right: 0 !important;
}
.sm-feature-style-six .image-box .image-2 {
position: relative;
right: 0px;
bottom: 0px;
margin-top: 30px;
text-align: center;
}
.sm-feature-style-six {
padding-top: 0;
}
.sm-about-section .image-box {
margin-left: 0;
margin-top: 50px;
}
.sm-about-section .image-box:before {
display: none;
}
.sm-pricing-section .tab-btn-box .tab-btns {
position: relative;
bottom: 0;
left: 0px;
padding-top: 0;
margin-bottom: 70px;
margin-top: 0;
}
.sm-pricing-section .sec-title {
position: relative;
margin-bottom: 0;
}
.sm-pricing-section .lower-content:before {
display: none;
}
.sm-subscribe-section .inner-content .form-group {
position: relative !important;
max-width: 100% !important;
margin-bottom: 15px;
float: none;
}
.sm-testimonial-section .inner-content {
margin: 0px 0px;
}
.banner-section-four {
padding: 100px 0 0px !important;
}
.banner-section-two_ex .image-2 img {
margin-top: 0;
}
.banner-section-two_ex .image-column .inner-column {
margin-right: 0;
}
.banner-section-two_ex .image-column .inner-column .image.image-2 {
margin-left: 0;
}
.app-block:nth-child(2) {
margin-left: 0 !important;
}
.services-section-four {
padding: 180px 0px 0px !important;
}
.app-section-two .image-column .inner-column .image {
margin-left: 0;
}
.app-section-two .title-column .inner-column {
padding-top: 60px !important;
padding-left: 0 !important;
}
.app-section.style-two .title-column .inner-column {
padding-top: 0 !important;
}
.app-section-two {
padding-bottom: 0 !important;
}
.fluid-section-one .content-column {
width: 100% !important;
}
.fluid-section-one .content-column .content-box {
max-width: 100% !important;
}
.fluid-section-one .image-column {
position: relative !important;
width: 100% !important;
}
.fluid-section-one .image-column .inner-column {
margin-left: 0 !important;
}
.testimonial-section-three .authors-column .inner-column {
margin-left: 0 !important;
}
.testimonial-section-three .image-two {
left: 300px !important;
}
.testimonial-section-three .carousel-column .inner-column {
margin-left: 0 !important;
padding-top: 100px;
}
.fluid-section-one .image-column .image img {
max-width: 100% !important;
}
.banner-section-two_ex .image-column {
display: none;
}
.fluid-section-one .content-column {
padding: 15px 15px 15px 15px !important;
}
.pricing-section {
margin-top: 100px;
}
.app-info-section {
padding-bottom: 150px !important;
}
.filter-tabs li span {
padding: 0 !important;
}
.banner-section-one .content-box {
max-width: 100% !important;
padding: 250px 0 200px !important;
}
.banner-section-one .layer-outer {
top: 0 !important;
width: 100% !important;
}
.banner-section-one .video-box .video-link {
right: unset !important;
left: 0 !important;
}
.banner-section-one .layer-outer {
right: -40px !important;
bottom: 120px !important;
width: 100% !important;
}
.fullwidth.mm.portfolio-section {
padding-top: 120px !important;
}
.about-section-three .sec-title {
margin-bottom: 60px;
text-align: left !important;
}
.about-section-two.curve-border-bottom {
padding-top: 0;
}
.clients-section.style-two {
padding-top: 0;
}
.kc-row-container.kc-container.dd .kc-elm {
width: 100%;
}
.kc-row-container.kc-container.dd .kc-elm {
width: 100%;
}
.dw.sm-service-details.sp-two {
padding-top: 0 !important;
}
.mm.portfolio-section {
padding-top: 120px !important;
}
.sm-banner-section-two.style-four {
padding: 150px 0px 200px 0px !important;
}
}
@media screen and (max-width: 767px) {
.app-screenshots-section .slide figure.image {
width: 100% !important;
margin: 0 auto;
text-align: center;
}
.sm-banner-section .image-box {
display: none;
}
.dark .filter-tabs li span {
padding: 0px 0px;
background: transparent !important;
}
.banner-section-two_ex {
padding-top: 60px !important;
padding-bottom: 60px !important;
}
.testimonial-block-five .inner-box .text {
margin-left: 0 !important;
margin-right: 0 !important;
}
.testimonial-section-five_ex .owl-nav {
display: none;
}
.timer-box .subscribe-box .subscribe-form button {
position: relative !important;
top: 10px !important;
}
.timer-box .subscribe-box .subscribe-form input[type="email"] {
padding-right: 15px !important;
padding-left: 15px !important;
}
.sm-testimonial-style-four .content-box {
margin: 60px 30px !important;
}
.sm-testimonial-style-four .inner-box {
margin-right: 0 !important;
}
}
@media only screen and (max-width: 599px){
.sm-banner-section-two.style-four .content-box h1 {
font-size: 40px;
line-height: 45px;
}
.fluid-section-one .image-layer {
top: -50px !important;
}
.sm-pricing-style-three .tabs-box .tab-btns .tab-btn {
margin-bottom: 15px;
}
.sm-cta-section .inner-box .btn-box a {
margin-bottom: 15px;
}
}
@media only screen and (max-width: 499px){
.sm-banner-section-two.style-four .content-box .btn-box a:first-child {
margin-bottom: 15px;
}
}
#categories-2 li a {
width: 80% !important;
}
#saasweb_gallery-4 {
margin-bottom: 40px;
}
.up.features-section-six {
position: relative;
padding: 0px 0 120px!important;
}
.dw.features-section-six {
position: relative;
padding: 150px 0 0px!important;
}
.sm-feature-style-six .image-box .image-1{
animation: none !important;
transform: translate(0px) !important;
}
.sm-feature-style-six .image-box{
margin: 0px !important;
}
.two.services-section-six .scrol-icon.scroll-to-target {
display: none;
}[data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="50"],body[data-aos-delay="50"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"],body[data-aos-delay="150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"],body[data-aos-delay="200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"],body[data-aos-delay="250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"],body[data-aos-delay="300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"],body[data-aos-delay="350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"],body[data-aos-delay="450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"],body[data-aos-delay="500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"],body[data-aos-delay="550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"],body[data-aos-delay="650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"],body[data-aos-delay="700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"],body[data-aos-delay="750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"],body[data-aos-delay="800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"],body[data-aos-delay="850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"],body[data-aos-delay="900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"],body[data-aos-delay="1000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"],body[data-aos-delay="1050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"],body[data-aos-delay="1100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"],body[data-aos-delay="1150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"],body[data-aos-delay="1200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"],body[data-aos-delay="1250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"],body[data-aos-delay="1300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"],body[data-aos-delay="1350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"],body[data-aos-delay="1400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"],body[data-aos-delay="1450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"],body[data-aos-delay="1500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"],body[data-aos-delay="1550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"],body[data-aos-delay="1600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"],body[data-aos-delay="1650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"],body[data-aos-delay="1700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"],body[data-aos-delay="1750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"],body[data-aos-delay="1800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"],body[data-aos-delay="1850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"],body[data-aos-delay="1900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"],body[data-aos-delay="1950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"],body[data-aos-delay="2000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"],body[data-aos-delay="2050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"],body[data-aos-delay="2100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"],body[data-aos-delay="2150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"],body[data-aos-delay="2200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"],body[data-aos-delay="2250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"],body[data-aos-delay="2300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"],body[data-aos-delay="2350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"],body[data-aos-delay="2400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"],body[data-aos-delay="2450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"],body[data-aos-delay="2500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"],body[data-aos-delay="2550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"],body[data-aos-delay="2600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"],body[data-aos-delay="2650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"],body[data-aos-delay="2700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"],body[data-aos-delay="2750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"],body[data-aos-delay="2800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"],body[data-aos-delay="2850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"],body[data-aos-delay="2900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"],body[data-aos-delay="2950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"],body[data-aos-delay="3000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(.25,.25,.75,.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos][data-aos][data-aos-easing=ease-in-back],body[data-aos-easing=ease-in-back] [data-aos]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-aos][data-aos][data-aos-easing=ease-out-back],body[data-aos-easing=ease-out-back] [data-aos]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-aos][data-aos][data-aos-easing=ease-in-out-back],body[data-aos-easing=ease-in-out-back] [data-aos]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-aos][data-aos][data-aos-easing=ease-in-sine],body[data-aos-easing=ease-in-sine] [data-aos]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-aos][data-aos][data-aos-easing=ease-out-sine],body[data-aos-easing=ease-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-aos][data-aos][data-aos-easing=ease-in-out-sine],body[data-aos-easing=ease-in-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-aos][data-aos][data-aos-easing=ease-in-quad],body[data-aos-easing=ease-in-quad] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quad],body[data-aos-easing=ease-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quad],body[data-aos-easing=ease-in-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-cubic],body[data-aos-easing=ease-in-cubic] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-cubic],body[data-aos-easing=ease-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],body[data-aos-easing=ease-in-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-quart],body[data-aos-easing=ease-in-quart] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quart],body[data-aos-easing=ease-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quart],body[data-aos-easing=ease-in-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,transform}[data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;transform:translateZ(0)}[data-aos=fade-up]{transform:translate3d(0,100px,0)}[data-aos=fade-down]{transform:translate3d(0,-100px,0)}[data-aos=fade-right]{transform:translate3d(-100px,0,0)}[data-aos=fade-left]{transform:translate3d(100px,0,0)}[data-aos=fade-up-right]{transform:translate3d(-100px,100px,0)}[data-aos=fade-up-left]{transform:translate3d(100px,100px,0)}[data-aos=fade-down-right]{transform:translate3d(-100px,-100px,0)}[data-aos=fade-down-left]{transform:translate3d(100px,-100px,0)}[data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,transform}[data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;transform:translateZ(0) scale(1)}[data-aos=zoom-in]{transform:scale(.6)}[data-aos=zoom-in-up]{transform:translate3d(0,100px,0) scale(.6)}[data-aos=zoom-in-down]{transform:translate3d(0,-100px,0) scale(.6)}[data-aos=zoom-in-right]{transform:translate3d(-100px,0,0) scale(.6)}[data-aos=zoom-in-left]{transform:translate3d(100px,0,0) scale(.6)}[data-aos=zoom-out]{transform:scale(1.2)}[data-aos=zoom-out-up]{transform:translate3d(0,100px,0) scale(1.2)}[data-aos=zoom-out-down]{transform:translate3d(0,-100px,0) scale(1.2)}[data-aos=zoom-out-right]{transform:translate3d(-100px,0,0) scale(1.2)}[data-aos=zoom-out-left]{transform:translate3d(100px,0,0) scale(1.2)}[data-aos^=slide][data-aos^=slide]{transition-property:transform}[data-aos^=slide][data-aos^=slide].aos-animate{transform:translateZ(0)}[data-aos=slide-up]{transform:translate3d(0,100%,0)}[data-aos=slide-down]{transform:translate3d(0,-100%,0)}[data-aos=slide-right]{transform:translate3d(-100%,0,0)}[data-aos=slide-left]{transform:translate3d(100%,0,0)}[data-aos^=flip][data-aos^=flip]{backface-visibility:hidden;transition-property:transform}[data-aos=flip-left]{transform:perspective(2500px) rotateY(-100deg)}[data-aos=flip-left].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-right]{transform:perspective(2500px) rotateY(100deg)}[data-aos=flip-right].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-up]{transform:perspective(2500px) rotateX(-100deg)}[data-aos=flip-up].aos-animate{transform:perspective(2500px) rotateX(0)}[data-aos=flip-down]{transform:perspective(2500px) rotateX(100deg)}[data-aos=flip-down].aos-animate{transform:perspective(2500px) rotateX(0)}.bg-shape_ix {
position: relative;
}
.bg-shape_ix:after {
position: absolute;
content: '';
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/img-3/bg-shape.png);
background-position:  center;
background-size:  cover;
left: 0;
bottom: -1px;
width: 100%;
height: 90px;
z-index: 8;
}
.bg-shape-two_ix {
position: relative;
}
.bg-shape-two_ix:after {
position: absolute;
content: '';
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/img-3/bg-shape2.png);
background-position:  center;
background-size:  cover;
left: 0;
top: -1px;
width: 100%;
height: 90px;
z-index: 8;
} .sec-title_ix{
position:relative;
margin-bottom: 45px;
padding-bottom: 25px;
margin-top: -10px;
}
.sec-title_ix span {
position: relative;
color: #7432d9;
font-size: 12px;
}
.sec-title_ix span:before {
position: absolute;
content: '';
background: #ff00c6;
height: 2px;
width: 20px;
top: 50%;
margin-top: -1px;
left: -30px;
}
.sec-title_ix span:after {
position: absolute;
content: '';
background: #ff00c6;
height: 2px;
width: 20px;
top: 50%;
margin-top: -1px;
right: -30px;
}
.sec-title_ix:after {
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-3/icons/decor.png);
bottom: 0;
height: 7px;
width: 37px;
left: 0;
}
.sec-title_ix.center:after {
left: 50%;
margin-left: -18.5px;
}
.sec-title_ix.small{
margin-bottom: 40px;
}
.sec-title_ix h1{
font-size:48px;
color:#000;
font-weight:900;
padding-bottom: 8px;
padding-top: 3px;
letter-spacing: 2px;
line-height:1.1em;
}
.sec-title_ix h5{
font-size:14px;
color:#e4007d;
font-weight:500;
text-transform: uppercase;
padding-bottom:10px;
}
.sec-title_ix.light h2{
color:#ffffff;
}
.sec-title_ix.center{
text-align:center;
}
.sec-title_ix.small h2{
font-size:24px;
}
.sec-title_ix .text {
letter-spacing: 1px;
color: #666666;
font-size:  16px;
font-weight:  700;
}
.sec-title_ix .icon-box {
color: #7432d9;
font-size: 40px;
margin-bottom: 30px;
}
.grey-bg_ix {
background-color:#f7f7f7 !important;
}
.grey-deep-bg_ix {
background-color:#f4f6ff !important;
}
.black-bg_ix {
background-color:#111 !important;
}
.theme-bg_ix {
background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
} .sp-one_ix{
padding: 100px 0;
}
.sp-two_ix {
padding: 100px 0 70px;
}
.sp-three_ix {
padding: 100px 0 50px;
}
.sp-four_ix {
padding: 100px 0 0px;
}
.sp-five_ix {
padding: 0px 0 100px;
}
.sp-six_ix {
padding: 0px 0 50px;
} .btn-style-one_ix {
position:relative;
padding: 11px 40px;
line-height:24px;
color:#ffffff;
text-align:center;
display: inline-block;
font-size:14px;
font-weight:700;
background:#1e4398;
letter-spacing:1px;
text-transform:uppercase;
border:2px solid #1e4398;
}
.btn-style-one_ix.with-gradient {
border: 0px;
padding: 13px 42px;
background-image: -moz-linear-gradient( -55deg, rgb(211,22,40) 0%, rgb(255,28,50) 100%);
background-image: -webkit-linear-gradient( -55deg, rgb(211,22,40) 0%, rgb(255,28,50) 100%);
background-image: -ms-linear-gradient( -55deg, rgb(211,22,40) 0%, rgb(255,28,50) 100%);
}
.btn-style-one_ix:hover {
color:#ffffff;
background:#101010;
border-color:#101010;
} .btn-style-two_ix {
position:relative;
overflow: hidden;
padding: 11px 40px;
border-radius: 25px;
line-height:24px;
color:#ffffff;
text-align:center;
display: inline-block;
font-size:14px;
font-weight:700;
background:#1e4398;
letter-spacing:1px;
text-transform:uppercase;
border:2px solid #1e4398;
z-index: 1;
transition: all 500ms ease;
}
.btn-style-two_ix.with-gradient {
border: 0px;
padding: 13px 42px;
background-image: -moz-linear-gradient( -55deg, rgb(211,22,40) 0%, rgb(255,28,50) 100%);
background-image: -webkit-linear-gradient( -55deg, rgb(211,22,40) 0%, rgb(255,28,50) 100%);
background-image: -ms-linear-gradient( -55deg, rgb(211,22,40) 0%, rgb(255,28,50) 100%);
}
.btn-style-two_ix:hover {
color:rgb(211,22,40);
}
.btn-style-two_ix:before{
position: absolute;
content: '';
background-color: #fff;
border-radius: 25px;
width: 0%;
height: 100%;
left: 0px;
top: 0px;
z-index: -1;
transition: all 500ms ease;
}
.btn-style-two_ix:hover:before{
width: 100%;
} .btn-style-three_ix {
position:relative;
padding: 11px 40px;
line-height:24px;
color:#1e4398;
text-align:center;
display: inline-block;
font-size:14px;
font-weight:700;
background:none;
letter-spacing:1px;
text-transform:uppercase;
border:2px solid #1e4398;
}
.btn-style-three_ix:hover {
color:#ffffff;
border-color:#1e4398;
background-color:#1e4398;
} .btn-style-four_ix {
position:relative;
padding: 11px 40px;
line-height:24px;
border-radius: 25px;
color:#1e4398;
text-align:center;
display: inline-block;
font-size:14px;
font-weight:700;
background:none;
letter-spacing:1px;
text-transform:uppercase;
border:2px solid #1e4398;
}
.btn-style-four_ix:hover {
color:#ffffff;
border-color:#1e4398;
background-color:#1e4398;
} .btn-style-five_ix {
position:relative;
padding: 11px 40px;
line-height:24px;
color: #1e4398;
text-align:center;
display: inline-block;
font-size:14px;
font-weight:700;
background: #ffffff;
letter-spacing:1px;
text-transform:uppercase;
border: 2px solid #ffffff;
}
.btn-style-five_ix:hover {
color:#ffffff;
background: #1e4398;
border-color: #1e4398;
} .btn-style-six_ix {
position:relative;
padding: 11px 40px;
line-height:24px;
color:#1e4398;
text-align:center;
border-radius: 25px;
display: inline-block;
font-size:14px;
font-weight:700;
background:#fff;
letter-spacing:1px;
text-transform:uppercase;
border: 2px solid #ffffff;
}
.btn-style-six_ix:hover {
color:#ffffff;
background: #1e4398;
border-color: #1e4398;
} .btn-style-seven_ix {
position:relative;
padding: 11px 40px;
line-height:24px;
color:#fff;
text-align:center;
display: inline-block;
font-size:14px;
font-weight:700;
background:none;
letter-spacing:1px;
text-transform:uppercase;
border:2px solid #fff;
}
.btn-style-seven_ix:hover {
color:#ffffff;
border-color:#1e4398;
background-color:#1e4398;
} .btn-style-eight_ix {
position:relative;
overflow: hidden;
padding: 11px 40px;
line-height:24px;
border-radius: 25px;
color:#fff;
text-align:center;
display: inline-block;
font-size:14px;
font-weight:700;
background:none;
letter-spacing:1px;
text-transform:uppercase;
border:2px solid #fff;
z-index: 1;
transition: all 900ms ease;
}
.btn-style-eight_ix:before{
position: absolute;
content: '';
background-color: #fff;
border-radius: 25px;
width: 0%;
height: 100%;
left: 0px;
top: 0px;
z-index: -1;
transition: all 500ms ease;
}
.btn-style-eight_ix:hover:before{
width: 100%;
}
.btn-style-eight_ix:hover {
color:rgb(255,28,50);
background: #fff;
} .btn-style-nine_ix {
position:relative;
padding: 11px 40px;
line-height:24px;
color: #1e4398;
text-align:center;
display: inline-block;
font-size:14px;
font-weight:700;
background: #f7f7f7;
letter-spacing:1px;
text-transform:uppercase;
border: 2px solid #f7f7f7;
}
.btn-style-nine_ix:hover {
color:#ffffff;
background: #1e4398;
border-color: #1e4398;
} .btn-style-ten_ix {
position:relative;
padding: 11px 40px;
line-height:24px;
color:#1e4398;
text-align:center;
border-radius: 25px;
display: inline-block;
font-size:14px;
font-weight:700;
background:#f7f7f7;
letter-spacing:1px;
text-transform:uppercase;
border: 2px solid #f7f7f7;
}
.btn-style-ten_ix:hover {
color:#ffffff;
background: #1e4398;
border-color: #1e4398;
} .btn-style-eleven_ix {
position:relative;
padding: 11px 40px;
line-height:24px;
color:#fff;
text-align:center;
display: inline-block;
font-size:14px;
font-weight:700;
background:none;
letter-spacing:1px;
text-transform:uppercase;
border:2px solid rgba(255, 255, 255, 0.5);
}
.btn-style-eleven_ix:hover {
color:#ffffff;
border-color:#1e4398;
background-color:#1e4398;
} .btn-style-twelve_ix {
position:relative;
padding: 11px 40px;
line-height:24px;
border-radius: 25px;
color:#fff;
text-align:center;
display: inline-block;
font-size:14px;
font-weight:700;
background:none;
letter-spacing:1px;
text-transform:uppercase;
border:2px solid rgba(255, 255, 255, 0.5);
}
.btn-style-twelve_ix:hover {
color:#ffffff;
border-color:#1e4398;
background-color:#1e4398;
} .btn-style-thirteen_ix {
position:relative;
padding: 11px 40px;
line-height:24px;
color:#222;
text-align:center;
display: inline-block;
font-size:14px;
font-weight:700;
background:none;
letter-spacing:1px;
text-transform:uppercase;
border:1px solid #e8e8e8;
}
.btn-style-thirteen_ix:hover {
color:#ffffff;
border-color:#e4007d;
background-color:#e4007d;
} .btn-style-fourteen_ix {
position:relative;
padding: 11px 40px;
line-height:24px;
border-radius: 25px;
color:#222;
text-align:center;
display: inline-block;
font-size:14px;
font-weight:700;
background:none;
letter-spacing:1px;
text-transform:uppercase;
border:1px solid #666;
}
.btn-style-fourteen_ix:hover {
color:#ffffff;
border-color:#7439c1;
background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
} .btn-style-fifteen_ix {
position:relative;
padding: 0px 12px;
line-height:25px;
color:#ffffff;
text-align:center;
display: inline-block;
font-size:12px;
font-weight:600;
background:#e4007d;
border-radius: 12px;
letter-spacing:1px;
text-transform:uppercase;
border:2px solid #1e4398;
}
.btn-style-fifteen_ix:hover {
color:#e4007d;
background: transparent;
border-color:#e4007d;
} .btn-style-sixteen_ix {
position:relative;
padding: 9px 38px 18px;
padding-left: 82px;
border-radius: 38px;
background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
line-height:24px;
color:#fff;
display: inline-block;
font-size: 22px;
font-weight:700;
letter-spacing:1px;
text-transform: capitalize;
}
.btn-style-sixteen_ix:after {
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-3/icons/apple.png);
background-repeat:  no-repeat;
left: 37px;
top: 20px;
width: 31px;
height: 36px;
}
.btn-style-sixteen_ix p {
font-size: 14px;
color: #fff;
text-transform: capitalize;
margin: 0;
position:  relative;
top: 4px;
}
.btn-style-sixteen_ix span {
position: relative;
}
.btn-style-sixteen_ix:hover {
color: #fff;
background-image: -moz-linear-gradient( 0deg, rgb(175,72,209) 0%, rgb(80,48,183) 100%);
background-image: -webkit-linear-gradient( 0deg, rgb(175,72,209) 0%, rgb(80,48,183) 100%);
background-image: -ms-linear-gradient( 0deg, rgb(175,72,209) 0%, rgb(80,48,183) 100%);
transition: .5s ease;
} .btn-style-seventeen_ix {
position:relative;
padding: 9px 38px 18px;
padding-left: 82px;
border-radius: 38px;
background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
line-height:24px;
color:#000;
display: inline-block;
font-size: 22px;
font-weight:700;
letter-spacing:1px;
text-transform: capitalize;
transition: .5s ease;
}
.btn-style-seventeen_ix:before {
position: absolute;
content: '';
background: #fff;
left: 3px;
top: 3px;
bottom: 3px;
right: 3px;
border-radius: 36px;
transition:  .5s ease;
}
.btn-style-seventeen_ix:hover:before {
transition:  .5s ease;
left:  100%;
opacity:  0;
}
.btn-style-seventeen_ix:after {
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-3/icons/google-play.png);
background-repeat:  no-repeat;
left: 37px;
top: 20px;
width: 31px;
height: 36px;
transition:  .5s ease;
}
.btn-style-seventeen_ix:hover:after {
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-3/icons/google-play2.png);
transition:  .5s ease;
}
.btn-style-seventeen_ix p {
font-size: 14px;
color: #666;
text-transform: capitalize;
margin: 0;
position:  relative;
top: 4px;
transition:  .5s ease;
}
.btn-style-seventeen_ix:hover p {
color: #fff;
transition:  .5s ease;
}
.btn-style-seventeen_ix span {
position: relative;
}
.btn-style-seventeen_ix:hover {
color: #fff;
} .btn-style-eighteen_ix {
position:relative;
padding: 7px 36px 16px;
padding-left: 82px;
border-radius: 38px;
border: 2px solid #fff;
line-height:24px;
color:#fff;
display: inline-block;
font-size: 22px;
font-weight:700;
letter-spacing:1px;
text-transform: capitalize;
}
.btn-style-eighteen_ix:after {
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-3/icons/google-play2.png);
background-repeat:  no-repeat;
left: 37px;
top: 20px;
width: 31px;
height: 36px;
}
.btn-style-eighteen_ix p {
font-size: 14px;
color: #fff;
text-transform: capitalize;
margin: 0;
position:  relative;
top: 4px;
}
.btn-style-eighteen_ix span {
position: relative;
}
.btn-style-eighteen_ix:hover {
color: #fff;
} .btn-style-ninteen_ix {
position:relative;
padding: 7px 36px 16px;
padding-left: 82px;
border-radius: 38px;
border: 2px solid #fff;
line-height:24px;
color:#fff;
display: inline-block;
font-size: 22px;
font-weight:700;
letter-spacing:1px;
text-transform: capitalize;
}
.btn-style-ninteen_ix:after {
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-3/icons/apple.png);
background-repeat:  no-repeat;
left: 37px;
top: 20px;
width: 31px;
height: 36px;
}
.btn-style-ninteen_ix p {
font-size: 14px;
color: #fff;
text-transform: capitalize;
margin: 0;
position:  relative;
top: 4px;
}
.btn-style-ninteen_ix span {
position: relative;
}
.btn-style-ninteen_ix:hover {
color: #fff;
} .list-style-one_ix{
position:relative;
}
.list-style-one_ix li{
position:relative;
color:#848484;
font-size:16px;
font-weight:300;
padding-left:28px;
margin-bottom:10px;
}
.list-style-one_ix li:before{
position:absolute;
content:'\f046';
left:0px;
top:0px;
font-size:16px;
color:#1e4398;
font-family: 'FontAwesome';
} .list-style-two_ix{
position:relative;
margin-bottom:30px;
}
.list-style-two_ix li{
position:relative;
color:#848484;
font-size:16px;
font-weight:300;
padding-left:20px;
margin-bottom:6px;
}
.list-style-two_ix li:before{
position:absolute;
content: '';
left:0px;
top: 10px;
height: 5px;
width: 5px;
background: #1e4398;
font-family: 'FontAwesome';
transform: rotate(-45deg);
} .list-style-three_ix{
position:relative;
margin-bottom:30px;
}
.list-style-three_ix li{
position:relative;
color:#848484;
font-size:16px;
font-weight:300;
padding-left:20px;
margin-bottom:6px;
}
.list-style-three_ix li:before{
position:absolute;
content:'';
left:0px;
top:10px;
width:7px;
height:7px;
border-radius:50%;
background-color:#1e4398;
font-family: 'FontAwesome';
}
.list-style-three_ix li:nth-child(2):before{
background-color:#fd5075;
}
.list-style-three_ix li:nth-child(3):before{
background-color:#11e6a2;
} .list-style-four_ix{
position:relative;
}
.list-style-four_ix li{
position:relative;
color: #222;
font-size:16px;
font-weight:300;
padding-left:28px;
margin-bottom: 5px;
}
.list-style-four_ix li:before{
position:absolute;
content:'\f178';
left:0px;
top:0px;
font-size:16px;
color:#7432d9;
font-family: 'FontAwesome';
} .banner-section-one_ix{
padding: 100px 0 200px;
position:relative;
background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
}
.banner-section-one_ix:after {
position: absolute;
content: '';
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/img-3/bg-shape.png);
background-position: center;
background-size: cover;
left: 0;
bottom: -1px;
width: 100%;
height: 90px;
z-index: 8;
}
.banner-section-one_ix .content-column .inner-column{
position: relative;
}
.banner-section-one_ix .content-box{
position:relative;
max-width: 600px;
width: 100%;
padding: 190px 0 100px;
}
.banner-section-one_ix .content-box .title{
position: relative;
display: block;
font-size: 16px;
line-height: 26px;
color: #fff;
font-weight: 600;
letter-spacing: 5px;
margin-bottom: 10px;
text-transform: uppercase;
}
.banner-section-one_ix .content-box h1{
position:relative;
color: #fff;
font-size: 48px;
line-height:58px;
font-weight: 600;
margin-bottom:28px;
}
.banner-section-one_ix .content-box .text{
position:relative;
display: block;
font-size: 18px;
line-height:30px;
margin-bottom: 50px;
color: #fff;
}
.banner-section-one_ix .content-box .btn-box{
position: relative;
margin: 0 -17px;
}
.banner-section-one_ix .content-box .btn-box a{
margin: 0 17px;
box-shadow: none;
}
.banner-section-one_ix .image-column .image {
position: relative;
margin-top: 100px;
}  .services-block-one_ix{
position:relative;
z-index:99;
}
.services-block-one_ix .inner-box{
position:relative;
margin: 20px 0 0;
padding-bottom: 30px;
}
.services-block-one_ix .inner-box .icon-box img{
transition: all 500ms ease;
}
.services-block-one_ix .inner-box:hover .icon-box img{
transform: scale(1.2);
}
.services-block-one_ix .inner-box .image-box{
position:relative;
margin-bottom:20px;
}
.services-block-one_ix .inner-box h3{
position:relative;
font-size: 18px;
color: #000;
font-weight:700;
margin-bottom: 15px;
margin-top: 25px;
}
.services-block-one_ix .inner-box .text{
position:relative;
color: #222;
font-size: 16px;
font-weight:300;
line-height:1.6em;
} .services-block-two_ix {
position: relative;
padding-bottom: 33px;
border-bottom: 1px solid #ddd;
margin-top: 35px;
}
.services-block-two_ix:last-child {
border-bottom: 0px;
}
.services-block-two_ix h4 {
font-weight: 700;
color: #000;
font-size: 18px;
}
.services-block-two_ix .link a {
color: #666;
font-size: 16px;
}
@media (min-width: 992px) {
.services-block-two_ix:nth-child(2) {
margin-left: 80px;
}
.services-block-two_ix:nth-child(3) {
margin-left: 150px;
}
.services-block-two_ix:nth-child(4) {
margin-left: 220px;
}
} .services-block-three_ix{
position:relative;
}
.services-block-three_ix .inner{
position:relative;
padding-left: 95px;
padding-bottom:40px;
}
.services-block-three_ix .inner .icon-box{
position:absolute;
left:0px;
top:0px;
width: 75px;
height: 75px;
background: #f4f6ff;
color: #000;
font-size: 30px;
text-align:center;
line-height: 75px;
border-radius:50%;
transition: .5s ease;
}
.services-block-three_ix .inner .icon-box span {
position: relative;
}
.services-block-three_ix:hover .inner .icon-box {
color: #fff;
transition: .5s ease;
}
.services-block-three_ix .inner .icon-box:before {
position: absolute;
content: '';
background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
left: 0;
top: 0;
width: 100%;
height: 100%;
transform: scale(0,0);
transition: .5s ease;
border-radius: 50%;
}
.services-block-three_ix:hover .inner .icon-box:before {
transform: scale(1,1);
transition: .5s ease;
}
.services-block-three_ix .inner:after {
position: absolute;
content: '';
background: #ff00c6;
left: 0;
bottom: 0;
width: 0%;
height: 1px;
transition: .5s ease;
border-radius: 50%;
}
.services-block-three_ix:hover .inner:after {
width: 100%;
transition: .5s ease;
}
.services-block-three_ix .inner .text{
position:relative;
font-weight: 400;
padding-top: 10px;
} .services-block-four_ix{
position:relative;
z-index:99;
}
.services-block-four_ix .inner-box{
position:relative;
margin: 20px 0 0;
padding-bottom: 30px;
padding-left: 65px;
}
.services-block-four_ix .inner-box .icon-box{
position:absolute;
left: 0;
top: 5px;
}
.services-block-four_ix .inner-box h3{
position:relative;
font-size: 18px;
color: #000;
font-weight:700;
margin-bottom: 15px;
margin-top: 25px;
}
.services-block-four_ix .inner-box .text{
position:relative;
color: #222;
font-size: 16px;
font-weight:300;
line-height:1.6em;
} .services-block-five_ix{
position:relative;
z-index:99;
}
.services-block-five_ix .inner-box{
position:relative;
margin: 20px 0 0;
padding-bottom: 30px;
padding-right: 65px;
text-align: right;
}
.services-block-five_ix .inner-box .icon-box{
position:absolute;
right: 0;
top: 5px;
}
.services-block-five_ix .inner-box h3{
position:relative;
font-size: 18px;
color: #000;
font-weight:700;
margin-bottom: 15px;
margin-top: 25px;
}
.services-block-five_ix .inner-box .text{
position:relative;
color: #222;
font-size: 16px;
font-weight:300;
line-height:1.6em;
} .mockup-one_ix {
display:  block;
position:  relative;
min-height: 465px;
}
.mockup-one_ix .image-box {
position: relative;
left: -190px;
margin-top: -100px;
margin-bottom: -261px;
z-index: 9;
}
.mockup-one_ix .image-box img {
width: auto;
display:  block;
max-width: inherit;
}
.about-us_ix .link-btn {
margin-top: 60px;
}
.about-us_ix .link-btn .btn-style-seventeen {
margin-right: 15px;
}
.mockup-two_ix {
display:  block;
position:  relative;
min-height: 465px;
}
.mockup-two_ix .image-box {
position: relative;
left: 0;
z-index: 9;
}
.mockup-two_ix .image-box img {
width: auto;
display:  block;
max-width: inherit;
} .video-image-box_ix .image {
position: relative;
margin: 30px 0 25px;
}
.video-image-box_ix img {
display: block;
width: 100%;
}
.video-image-box_ix .image .overlay-link {
position: relative;
font-size: 40px;
align-items: center;
color: #ffffff;
text-align: center;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
}
.video-image-box_ix .image .overlay-link:hover {
}
.video-image-box_ix .image .overlay-link .icon {
position: absolute;
left: 50%;
top: 50%;
margin-top: -30px;
margin-left: -30px;
width: 60px;
background: #fff;
height: 60px;
border-radius: 50%;
line-height: 60px;
font-size: 29px;
color: #1e4398;
padding-left: 5px;
}
.video-column_ix {
position: relative;
text-align: center;
padding-bottom: 40px;
}
.video-column_ix h1 {
color: #fff;
font-size: 48px;
line-height: 50px;
font-weight: 900;
padding-bottom: 40px;
margin-bottom: 20px;
}
.video-column_ix h1:after {
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-3/icons/decor.png);
bottom: 0;
height: 7px;
width: 37px;
left: 50%;
margin-left: -18.5px;
}
.video-column_ix .text {
color: #fff;
}
.mockup-three_ix {
position: absolute;
right: -90px;
bottom: -140px;
z-index: 9;
} .counter-column_ix .inner {
text-align: center;
margin-bottom: 50px;
}
.counter-column_ix .count-box {
position: relative;
font-size: 90px;
font-weight: 700;
color: #000;
line-height: 124px;
}
.counter-column_ix .count-box:before {
position: absolute;
content: '';
width: 1px;
top: 150px;
bottom: -30px;
right: 0;
background: #ddd;
}
.counter-column_ix:last-child .count-box:before {
display: none;
}
.counter-column_ix .counter-title {
font-size: 16px;
font-weight: 400;
color: #222;
}
.counter-column_ix .count-box .image {
margin-bottom: 20px;
} .screenshot-section_ix {
position: relative;
}
.screenshot-section_ix .auto-container {
max-width: 1230px;
}
.screenshot-section_ix .screenshot-column {
margin: 0 15px;
}
.screenshot-section_ix .mb-50 {
margin-bottom: 50px;
}
.screenshot-column .image img {
box-shadow: 0 0 19px 3px #0000002b;
margin: 20px 0;
}
.screenshot-section_ix .owl-nav-style-one .owl-nav {
margin-top: 50px;
}
.screenshot-section_ix .owl-nav-style-one .owl-nav .owl-next, 
.screenshot-section_ix .owl-nav-style-one .owl-nav .owl-prev {
border: 0px;
width: 30px;
color: #ccc;
}
.screenshot-section_ix .owl-nav-style-one .owl-nav .owl-next:hover, 
.screenshot-section_ix .owl-nav-style-one .owl-nav .owl-prev:hover {
color: #7432d9;
} .call-to-action_ix {
position: relative;
}
.call-to-action_ix .action-text {
margin-bottom: 90px;
}
.call-to-action_ix .text {
color: #fff;
font-weight: 400;
margin-left: 60px;
}
.call-to-action_ix .text:after {
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-3/icons/decor.png);
top: 12px;
height: 7px;
width: 37px;
left: 16px;
}
.call-to-action_ix h1 {
color: #fff;
font-size: 48px;
font-weight: 300;
line-height: 50px;
margin-bottom: 40px;
margin-top: 10px;
}
.mockup-four_ix {
position: absolute;
right: -30px;
top: -152px;
z-index: 9;
} .testimonial-block-one_ix {
position: relative;
text-align: center;
}
.testimonial-block-one_ix .text {
position: relative;
max-width: 930px;
margin:  0 auto;
}
.testimonial-block-one_ix .quote {
color: #7432d9;
font-size: 200px;
margin-top: 100px;
position:  relative;
bottom: -10px;
}
.testimonial-block-one_ix .author {
color: #000;
font-size: 14px;
font-weight: 700;
text-transform: uppercase;
}
.testimonial-block-one_ix .designation {
font-size: 16px;
color: #999;
} .pricingTable{
text-align: center;
background: #fff;
padding-bottom: 30px;
}
.pricingTable:before{
position: absolute;
content: '';
left: 0px;
top: 0px;
width: 100%;
height: 100%;
opacity: 0;
-webkit-transform-origin: top;
-ms-transform-origin: top;
transform-origin: top;
-webkit-transform: scale(.9) translateY(20px);
-ms-transform: scale(.9) translateY(20px);
transform: scale(.9) translateY(20px);
background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
transition: all 500ms ease;
}
.pricingTable:hover:before{
opacity: 1;
-webkit-transform: scale(1) translateY(0px);
-ms-transform: scale(1) translateY(0px);
transform: scale(1) translateY(0px);
-webkit-transition: 1s;
-o-transition: 1s;
transition: 1s;
}
.pricingTable.active {
position: relative;
z-index: 5;
top: -30px;
margin-bottom: -30px;
padding-bottom: 50px;
background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%); }
.pricingTable.active:before{
display: none;
}
.pricing-section_ix sp-four_ix grey-deep-bg_ix bg-shape_ix.o-hidden .sec-title_ix{
margin-top: 50px;
}
.pricingTable:hover .btn-block,
.pricingTable:hover .price-value{
}
.pricingTable > .pricingTable-header{
color:#333333;
padding-top: 30px;
}
.pricingTable-header > .price-value{
position: relative;
display: block;
padding: 25px 0 0;
border-radius: 50%;
font-size: 50px;
color: #000;
transition: all 0.5s ease 0s;
font-weight: 700;
}
.price-value > .mo{
position: relative;
display: block;
font-size: 12px;
margin-top: 15px;
font-weight:  300;
color:  #666;
text-transform:  uppercase;
transition: all 0.5s ease 0s;
}
.pricingTable-header > .heading{
display: block;
padding-top: 20px;
}
.heading > h3{
position: relative;
margin: 0;
text-transform: uppercase;
font-size: 14px;
color:  #ff1c32;
font-weight:  300;
transition: all 0.5s ease 0s;
}
.pricingTable > .pricingContent{
margin-top: 25px;
}
.pricingTable > .pricingContent > ul{
list-style: none;
padding: 0;
margin-bottom: 0;
}
.pricingTable > .pricingContent > ul > li{
position: relative;
padding: 6px 0;
transition: all 0.5s ease 0s;
}
.pricingTable-sign-up{
padding: 40px 0 60px;
}
.pricingTable-sign-up > .btn-block{
width: 50%;
margin: 0 auto;
padding: 10px 0;
border-radius: 0px;
background: #ff5722;
color:#fff;
text-transform: uppercase;
font-size: 17px;
border: 0px none;
transition: all 0.4s ease 0s;
}
.mid .price-value,
.mid .btn-block{
background: #ffa000;
}
@media screen and (max-width: 990px){
.pricingTable{
margin-bottom: 20px;
}
}
.pricingTable.active .heading > h3,
.pricingTable:hover .heading > h3{
color: #fff;
}
.pricingTable.active .price-value > .mo,
.pricingTable:hover .price-value > .mo{
color: #fff;
}
.pricingTable.active .pricingTable-header > .price-value,
.pricingTable:hover .pricingTable-header > .price-value{
color: #fff;
}
.pricingTable.active .pricingContent > ul > li,
.pricingTable:hover .pricingContent > ul > li{
color: #fff;
}
.pricingTable.active .pricingTable-header {
padding-top: 50px;
} .pricingTable-two{
text-align: center;
background: #fff;
padding-bottom: 30px;
margin-top: 60px;
}
.pricingTable-two.active {
position: relative;
z-index: 5;
top: -30px;
margin-bottom: -30px;
padding-bottom: 50px;
box-shadow: 0px 15px 45px 0px rgba(0, 0, 0, 0.35);
}
.pricingTable-two.active:before {
position: absolute;
content: '';
background: #7432d9;
left: 0;
top: 0;
height: 3px;
width: 100%;
}
.pricingTable-two.active .pricingTable-header{
position: relative;
overflow: hidden;
}
.pricingTable-two.active .pricingTable-header:before {
position: absolute;
content: '';
right: 0;
top: 0;
border: 24px solid transparent;
border-right-color: #7432d9;
border-top-color: #7432d9;
}
.pricingTable-two.active .pricingTable-header:after {
position: absolute;
content: "\f107";
font-size: 16px;
font-family: flaticon;
color: #efce4a;
right: 6px;
top: 2px;
cursor: pointer;
}
.pricingTable-two:hover .btn-block,
.pricingTable-two:hover .price-value{
}
.pricingTable-two > .pricingTable-two-header{
color:#333333;
padding-top: 30px;
}
.pricingTable-two-header > .price-value{
display: block;
padding: 25px 0 0;
border-radius: 50%;
font-size: 50px;
color: #000;
transition: all 0.4s ease 0s;
font-weight: 700;
}
.price-value > .mo{
position: relative;
display: block;
font-size: 12px;
margin-top: 15px;
font-weight:  300;
color:  #666;
text-transform:  uppercase;
}
.pricingTable-two-header > .heading{
display: block;
padding-top: 20px;
}
.heading > h3{
margin: 0;
text-transform: uppercase;
font-size: 14px;
color:  #ff1c32;
font-weight:  300;
}
.pricingTable-two > .pricingContent{
margin-top: 25px;
}
.pricingTable-two > .pricingContent > ul{
list-style: none;
padding: 0;
margin-bottom: 0;
}
.pricingTable-two > .pricingContent > ul > li{
padding: 6px 0;
}
.pricingTable-two-sign-up{
padding: 40px 0;
}
.pricingTable-two-sign-up > .btn-block{
width: 50%;
margin: 0 auto;
padding: 10px 0;
border-radius: 0px;
background: #ff5722;
color:#fff;
text-transform: uppercase;
font-size: 17px;
border: 0px none;
transition: all 0.4s ease 0s;
}
.mid .price-value,
.mid .btn-block{
background: #ffa000;
}
@media screen and (max-width: 990px){
.pricingTable-two{
margin-bottom: 20px;
}
} .news-block-one_ix {
position: relative;
transition: .5s ease-in-out;
margin-bottom: 50px;
}
.news-block-one_ix .image {
display: block;
position: relative;
margin: 0;
}
.news-block-one_ix .image picture{
position: relative;
display: block;
overflow: hidden;
}
.news-block-one_ix .image picture img{
width: 100%;
transition: all 1500ms ease;
}
.news-block-one_ix:hover .image picture img{
transform: scale(1.2);
}
.news-block-one_ix .lower-content{
position:relative;
padding-top: 35px;
}
.news-block-one_ix .date {
position: absolute;
right: 30px;
bottom: -10px;
height: 70px;
width: 70px;
background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
line-height: 20px;
padding-top: 13px;
z-index: 9;
color: #fff;
text-align: center;
}
.news-block-one_ix .lower-content .text p{
margin-bottom: 10px;
}
.news-block-one_ix .lower-content h4 {
color:#222;
font-weight: 400;
font-size: 24px;
margin-bottom: 10px;
}
.news-block-one_ix .lower-content h4 a{
color:#222;
transition: all 300ms ease;
font-size: 22px;
}
.news-block-one_ix .lower-content h4 a:hover{
color:#ff00c6;
transition: all 300ms ease;
}
.news-block-one_ix .lower-content .link {
margin-top: 30px;
}
.news-block-one_ix .lower-content .link a {
color: #666;
font-weight: 700;
font-size: 16px;
} .download-app_ix {
position: relative;
}
.download-app_ix .action-text {
margin-bottom: 5px;
}
.download-app_ix .text span {
position: relative;
color: #ffffff;
font-size: 12px;
margin-left: 30px;
}
.download-app_ix .text span:before {
position: absolute;
content: '';
background: #ff00c6;
height: 2px;
width: 20px;
top: 50%;
margin-top: -1px;
left: -30px;
}
.download-app_ix .text span:after {
position: absolute;
content: '';
background: #ff00c6;
height: 2px;
width: 20px;
top: 50%;
margin-top: -1px;
right: -30px;
}
.download-app_ix h1 {
color: #fff;
font-size: 48px;
font-weight: 300;
line-height: 50px;
margin-bottom: 20px;
margin-top: 10px;
}
.download-app_ix .text {
color: #fff;
}
.download-app_ix .link-btn {
margin-top: 50px;
}
.download-app_ix .btn-style-eighteen {
margin-right: 15px;
}
.mockup-five_ix {
position: absolute;
left: -350px;
top: -190px;
z-index: 9;
}
.mockup-five_ix img {
max-width: none;
} .map-section_ix .google-map {
height: 680px;
} .contact-form_ix h2{
position:relative;
}
.contact-form_ix .form-group:last-child{
margin-bottom:0px;
}
.contact-form_ix input[type="text"],
.contact-form_ix input[type="email"],
.contact-form_ix input[type="password"],
.contact-form_ix select,
.contact-form_ix textarea{
display:block;
width:100%;
height:55px;
font-size:16px;
color:#848484;
line-height:30px;
padding:12px 25px;
font-weight:300;
background-color:#ffffff;
border:1px solid #ececec;
transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;   
}
.contact-form_ix input:focus,
.contact-form_ix select:focus,
.contact-form_ix textarea:focus{
border-color: #1e4398;
}
.contact-form_ix textarea{
height:150px;
resize:none;
padding:12px 25px;  
}
.contact-form_ix button{
font-size:14px;
padding:10px 41px 10px;
cursor: pointer;
}
.contact-form_ix input.error,
.contact-form_ix select.error,
.contact-form_ix textarea.error{
border-color:#ff0000 !important;    
}
.contact-form_ix label.error{
display:block;
line-height:24px;
padding:5px 0px 0px;
margin:0px;
text-transform:uppercase;
font-size:11px;
color:#ff0000;
font-weight:500;    
} .contact_form_area_ix {
position: relative;
}
.contact-form_ix.style-four h4 {
color: #000;
margin-bottom: 10px;
}
.contact-form_ix.style-four {
position: absolute;
max-width: 450px;
right:  0;
bottom: -40px;
background:  #fff;
padding: 40px 50px 50px;
box-shadow:  0px 15px 45px 0px rgba(0, 0, 0, 0.25);
z-index: 9;
}
.contact-form_ix.style-four .form-group {
margin-bottom: 20px;
}
.contact-form_ix.style-four .form-group .btn-style-two {
margin-top: 20px;
}
.contact-form_ix.style-four input[type="text"], 
.contact-form_ix.style-four input[type="email"], 
.contact-form_ix.style-four input[type="password"], 
.contact-form_ix.style-four select, 
.contact-form_ix.style-four textarea {
padding: 0px;
border: none;
border-bottom: 1px solid #ddd;
height: 45px;
}
.contact-form_ix.style-four textarea {
height: 190px;   
} .info-box-one_ix{
position:relative;
min-height:56px;
font-size:13px;
color:#777777;
border: 1px solid #ddd;
text-transform:uppercase;
padding: 30px 0px 30px 95px;
}
.info-box-one_ix .icon-box{
position:absolute;
left: 40px;
top: 36px;
color: #7432d9;
font-size: 40px;
text-align:left;
line-height:1.2em;
-moz-transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
transition:all 300ms ease;
}
.info-box-one_ix li{
position:relative;
line-height:28px;
color:#000;
font-size:22px;
margin-bottom:3px;
font-weight:400;
text-transform:capitalize;
}
.info-box-one_ix p {
font-weight:400;
color:#222222;
font-size:14px;
margin:  0;
} .footer-top_ix .flex-box {
display: flex;
justify-content: center;
flex-direction: row;
flex-wrap: wrap;
}
@media (min-width: 1500px) {
.footer-top_ix .flex-box li {
width: 16.6666666%;
}
}
.footer-top_ix .flex-box li {
text-align: center;
background: #2a2a2a;
color: #fff;
padding: 17px 40px;
}
.footer-top_ix .flex-box li a {
color: #fff;
}
.footer-top_ix .flex-box li span {
color: #ff1c32;
font-size: 16px;
margin-right: 5px;
}
.footer-top_ix .flex-box li.bg-two {
background: #333;
} .footer-bottom_ix {
position: relative;
padding: 36px 0;
color: #999;
}
.footer-bottom_ix .footer-copyright a {
color: #fff;
}
.footer-bottom_ix .footer-menu li {
display: inline-block;
}
.footer-bottom_ix .footer-menu li a {
color: #848484;
}
.grey-bg {
background-color:#f7f7f7 !important;
}
.grey-deep-bg {
background-color:#f4f6ff !important;
}
.black-bg {
background-color:#111 !important;
}
.theme-bg {
background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
} .parallax-bg {
position: relative;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
.parallax-bg:before {
position: absolute;
content: '';
background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
width: 100%;
height: 100%;
left: 0;
top: 0;
opacity: .9;
}
.mockup-four {
position: absolute;
right: -30px;
top: -152px;
z-index: 9;
}
.theme-btn.btn-style-two.with-gradient {
overflow: hidden;
border: 0px;
padding: 13px 42px;
background-image: -moz-linear-gradient( -55deg, rgb(211,22,40) 0%, rgb(255,28,50) 100%);
background-image: -webkit-linear-gradient( -55deg, rgb(211,22,40) 0%, rgb(255,28,50) 100%);
background-image: -ms-linear-gradient( -55deg, rgb(211,22,40) 0%, rgb(255,28,50) 100%);
border-radius: 25px;
box-shadow:none!important;
}
.btn-style-eighteen {
position: relative;
padding: 7px 36px 16px;
padding-left: 82px;
border-radius: 38px;
border: 2px solid #fff;
line-height: 24px; 
color: #fff;
display: inline-block;
font-size: 22px;
font-weight: 700;
letter-spacing: 1px;
text-transform: capitalize;
}
.btn-style-ninteen {
position: relative;
padding: 7px 36px 16px;
padding-left: 82px;
border-radius: 38px;
border: 2px solid #fff;
line-height: 24px;
color: #fff;
display: inline-block;
font-size: 22px;
font-weight: 700;
letter-spacing: 1px;
text-transform: capitalize;
}
.btn-style-eighteen p {
font-size: 14px;
color: #fff;
text-transform: capitalize;
margin: 0;
position: relative;
top: 4px;
}
.btn-style-ninteen p {
font-size: 14px;
color: #fff;
text-transform: capitalize;
margin: 0;
position: relative;
top: 4px;
}
.btn-style-eighteen:after {
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-3/icons/google-play2.png);
background-repeat: no-repeat;
left: 37px;
top: 20px;
width: 31px;
height: 36px;
}
.btn-style-ninteen:after {
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/img-3/icons/apple.png);
background-repeat: no-repeat;
left: 37px;
top: 20px;
width: 31px;
height: 36px;
}
.separator {
border-bottom: 1px solid #ddd;
}.single-testimonial-carousel .testimonial-text-box .review-box .fa{
margin:0px 2px;
}
.clear, .woocommerce .woocommerce-breadcrumb::after, .woocommerce .woocommerce-error::after, .woocommerce .woocommerce-info::after, .woocommerce .woocommerce-message::after {
clear: both;
margin-top:20px;
}
.woocommerce div.product form.cart .reset_variations, .woocommerce form .form-row label.hidden {
visibility: hidden;
}
@keyframes spin {
100% {
transform: rotate(360deg);
}
}
@keyframes spin {
100% {
transform: rotate(360deg);
}
}
@keyframes spin {
100% {
transform: rotate(360deg);
}
}
p.demo_store {
background-color: #0eaf96;
box-shadow: 0 1px 1em rgba(0, 0, 0, 0.2);
color: #fff;
font-size: 1em;
left: 0;
margin: 0;
padding: 1em 0;
position: fixed;
right: 0;
text-align: center;
top: 0;
width: 100%;
z-index: 99998;
}
p.demo_store a {
color: #fff;
}
.admin-bar p.demo_store {
top: 32px;
}
.woocommerce .blockUI.blockOverlay {
position: relative;
}
.woocommerce .blockUI.blockOverlay::before, .woocommerce .loader::before {
animation: 1s ease-in-out 0s normal none infinite running spin;
background: rgba(0, 0, 0, 0) url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/loader.svg) repeat scroll center center / cover ;
color: rgba(0, 0, 0, 0.75);
content: "";
display: block;
font-size: 2em;
height: 1em;
left: 50%;
line-height: 1;
margin-left: -0.5em;
margin-top: -0.5em;
position: absolute;
text-align: center;
top: 50%;
width: 1em;
}
.woocommerce a.remove {
border: 0 none;
border-radius: 100%;
color: #444 !important;
display: block;
font-size: 1.5em;
font-weight: 700;
height: 1em;
line-height: 1;
text-align: center;
text-decoration: none;
width: 1em;
}
.woocommerce a.remove:hover {
background: #0eaf96  none repeat scroll 0 0;
color: #fff !important;
}
.woocommerce .woocommerce-error, .woocommerce .woocommerce-info, .woocommerce .woocommerce-message {
background-color: #f7f6f7;
border-top: 3px solid #0eaf96  !important;
color: #515151;
list-style: outside none none !important;
margin: 0 0 !important;
overflow-wrap: break-word;
padding: 2em 2em 0em 2em !important;
position: relative;
width: auto;
}
.woocommerce .woocommerce-error::after, .woocommerce .woocommerce-error::before, .woocommerce .woocommerce-info::after, .woocommerce .woocommerce-info::before, .woocommerce .woocommerce-message::after, .woocommerce .woocommerce-message::before {
content: " ";
display: table;
}
.woocommerce .woocommerce-error::before, .woocommerce .woocommerce-info::before, .woocommerce .woocommerce-message::before {
content: "";
display: inline-block;
font-family: WooCommerce;
left: 1.5em;
position: absolute;
top: 1em;
}
.woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-message .button {
float: right;
}
.woocommerce .woocommerce-error li, .woocommerce .woocommerce-info li, .woocommerce .woocommerce-message li {
list-style: outside none none !important;
margin-left: 0 !important;
padding-left: 0 !important;
}
.woocommerce .woocommerce-message::before {
color: #0eaf96 ;
content: "";
}
.woocommerce .woocommerce-info {
border-top-color: #43c3ea;
}
.woocommerce .woocommerce-info a {
color: #0eaf96 ;
}
.woocommerce .woocommerce-info::before {
color: #0eaf96 ;
}
.woocommerce .woocommerce-error {
border-top-color: #b81c23;
}
.woocommerce .woocommerce-error::before {
color: #b81c23;
content: " ";
}
.woocommerce small.note {
color: #777;
display: block;
font-size: 0.857em;
margin-top: 10px;
}
.woocommerce .woocommerce-breadcrumb {
color: #777;
font-size: 0.92em;
margin: 0 0 1em;
padding: 0;
}
.woocommerce .woocommerce-breadcrumb::after, .woocommerce .woocommerce-breadcrumb::before {
content: " ";
display: table;
}
.woocommerce .woocommerce-breadcrumb a {
color: #777;
}
.woocommerce .quantity .qty {
text-align: center;
width: 3.631em;
}
.woocommerce div.product .product_title,
.woocommerce div.product h1,
.woocommerce .related-products .inner-title h4 {
color: #333333;
font-size: 24px;
font-weight: 600;
line-height: 1.4em;
margin: 0 0 15px;
}
.woocommerce .related-products .sec-title{
margin-top:60px;
margin-bottom:60px;
}
.woocommerce .related-products .sec-title .inner-title::before{
top:-50px;
}
.woocommerce-review-link {
font-size: 13px;
font-weight: 700;
padding-left: 15px;
text-transform: capitalize;
}
.woocommerce #reviews #comments .add_review::after, .woocommerce .products ul::after, .woocommerce div.product form.cart::after, .woocommerce div.product p.cart::after, .woocommerce nav.woocommerce-pagination ul, .woocommerce ul.products::after {
clear: both;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce div.product .price ins span {
color: #fff;
font-size: 15px !important;
font-weight: 500; line-height: 15px;
display: inline-block;
}
.info-column .item-price {
margin:10px 0px;	
}
.info-column .details-header .item-price .price {
color: #0eaf96;
font-size: 24px;
font-weight: 400;
letter-spacing: 1px;
line-height: 24px;
}
.tab-btns li.active a {
color: #0eaf96;
}
.tab-btns .tab-btn.reviews_tab a {
color: #222222;
}
.tab-btns .tab-btn.reviews_tab a:hover {
color: #0eaf96 !important;
}
.woocommerce-Price-currencySymbol {
font-weight:700 !important;
}
.woocommerce div.product p.stock {
font-size: 0.92em;
}
.woocommerce div.product .stock {
color: #77a464;
}
.woocommerce div.product .out-of-stock {
color: red;
}
.woocommerce div.product .woocommerce-product-rating {
margin-bottom:0;
}
.woocommerce div.product div.images, .woocommerce div.product div.summary {
margin-bottom: 2em;
}
.woocommerce div.product div.images img {
box-shadow: none;
display: block;
height: auto;
width: 100%;
margin-bottom:10px;
}
.woocommerce div.product div.images div.thumbnails {
padding-top: 1em;
}
.woocommerce div.product div.social {
margin: 0 0 1em;
text-align: right;
}
.woocommerce div.product div.social span {
margin: 0 0 0 2px;
}
.woocommerce div.product div.social span span {
margin: 0;
}
.woocommerce div.product div.social span .stButton .chicklets {
padding-left: 16px;
width: 0;
}
.woocommerce div.product div.social iframe {
float: left;
margin-top: 3px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
position: relative;
margin:0;
padding:0;
z-index: 1;
border-bottom: 1px solid #ebebeb;
}
.woocommerce div.product .woocommerce-tabs ul.tabs:before{
border-bottom:none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
border-radius:0;
margin-right:10px;
padding:0;
border:none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
margin-right: 15px;
background-color:#ffffff;
color: #666666;
float: left;
font-size: 14px;
font-weight: 400;
line-height: 24px;
padding: 10px 0 11px;
position: relative;
text-transform: uppercase;
top: 1px;
}
.woocommerce div.product form.cart::after,
.woocommerce div.product form.cart::before,
.woocommerce div.product p.cart::after,
.woocommerce div.product p.cart::before {
content: " ";
display: table;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:after,
.woocommerce div.product .woocommerce-tabs ul.tabs li:before {
border:none;
box-shadow: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active:before {
box-shadow: 2px 2px 0 #fff;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active:after {
box-shadow: -2px 2px 0 #fff;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
margin: 0px;
}
.woocommerce div.product .woocommerce-tabs .panel {
margin: 0 0 2em;
padding: 0;
}
.woocommerce div.product form.cart, .woocommerce div.product p.cart {
margin-bottom: 0px;
}
#tab-reviews, #tab-description {
background:#fff !important;
margin-top: 0px;
padding: 30px;
border: 1px solid #ececec;
}
#tab-description h2 {
color: #3d3d3d;
font-size: 16px;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 15px;
}
.woocommerce-Reviews-title {
color: #272727;
font-size: 24px;
line-height: 1.4em;
margin: 0 0 20px;
}
.woocommerce div.product form.cart div.quantity {
float: left;
margin: 0 4px 0 0;
}
.woocommerce div.product form.cart table {
border-width: 0 0 1px;
}
.woocommerce div.product form.cart table td {
padding-left: 0;
}
.woocommerce div.product form.cart table div.quantity {
float: none;
margin: 0;
}
.woocommerce div.product form.cart table small.stock {
display: block;
float: none;
}
.woocommerce div.product form.cart .variations {
border: 0 none;
margin-bottom: 1em;
}
.woocommerce div.product form.cart .variations td, .woocommerce div.product form.cart .variations th {
border: 0 none;
}
.woocommerce div.product form.cart .variations label {
font-weight: 700;
}
.woocommerce div.product form.cart .variations select {
float: left;
width: 100%;
border:1px solid #eaeaea;
padding:10px;
}
.woocommerce div.product form.cart .variations td.label {
padding-right: 1em;
}
.woocommerce div.product form.cart .variations td {
vertical-align: top;
}
.woocommerce div.product form.cart .woocommerce-variation-description p {
margin-bottom: 1em;
}
.woocommerce div.product form.cart .wc-no-matching-variations {
display: none;
}
.woocommerce div.product form.cart .button {
float: left;
vertical-align: middle;
}
.woocommerce div.product form.cart .group_table td.label {
padding-left: 1em;
padding-right: 1em;
}
.woocommerce div.product form.cart .group_table td {
border: 0 none;
padding-bottom: 0.5em;
vertical-align: top;
}
.woocommerce .products ul, .woocommerce ul.products {
clear: both;
list-style: outside none none;
margin: 0 0 1em;
padding: 0;
}
.woocommerce .products ul::after, .woocommerce .products ul::before, .woocommerce ul.products::after, .woocommerce ul.products::before {
content: " ";
display: table;
}
.woocommerce .products ul li, .woocommerce ul.products li {
list-style: outside none none;
}
.woocommerce ul.products li.product .onsale {
left: auto;
margin: -0.5em -0.5em 0 0;
right: 0;
top: 0;
}
.woocommerce ul.products li.product h3 {
font-size: 1em;
margin: 0;
padding: 0.5em 0;
}
.woocommerce ul.products li.product a {
text-decoration: none;
}
.woocommerce ul.products li.product a img {
box-shadow: none;
display: block;
height: auto;
margin: 0 0 1em;
width: 100%;
}
.woocommerce ul.products li.product strong {
display: block;
}
.woocommerce ul.products li.product .star-rating {
font-size: 0.857em;
}
.woocommerce ul.products li.product .button {
margin-top: 1em;
}
.woocommerce ul.products li.product .price {
color: #77a464;
display: block;
font-size: 0.857em;
font-weight: 400;
margin-bottom: 0.5em;
}
.woocommerce ul.products li.product .price del {
color: inherit;
display: block;
opacity: 0.5;
}
.woocommerce ul.products li.product .price ins {
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
font-weight: 700;
}
.woocommerce ul.products li.product .price .from {
color: rgba(132, 132, 132, 0.5);
font-size: 0.67em;
margin: -2px 0 0;
text-transform: uppercase;
}
.woocommerce nav.woocommerce-pagination ul {
border:none !important;
}
.woocommerce nav.woocommerce-pagination ul li {
position:relative;
display:inline-block;
margin:0px 5px 7px 0px;
border-right:0;
}
.woocommerce #respond input#submit.loading, .woocommerce a.button.loading, .woocommerce button.button.loading, .woocommerce input.button.loading {
opacity: 0.25;
padding-right: 2.618em;
}
.woocommerce #respond input#submit.loading::after, .woocommerce a.button.loading::after, .woocommerce button.button.loading::after, .woocommerce input.button.loading::after {
animation: 2s linear 0s normal none infinite running spin;
content: "ÃƒÆ’Ã‚Â®ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
font-family: WooCommerce;
font-weight: 400;
position: absolute;
right: 1em;
top: 0.618em;
vertical-align: top;
}
.woocommerce #respond input#submit.added::after, .woocommerce a.button.added::after, .woocommerce button.button.added::after, .woocommerce input.button.added::after {
content: "ÃƒÆ’Ã‚Â®ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â";
font-family: WooCommerce;
margin-left: 0.53em;
vertical-align: bottom;
}
.woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt[disabled]:disabled, .woocommerce #respond input#submit.alt[disabled]:disabled:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt[disabled]:disabled, .woocommerce a.button.alt[disabled]:disabled:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt[disabled]:disabled, .woocommerce button.button.alt[disabled]:disabled:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt[disabled]:disabled, .woocommerce input.button.alt[disabled]:disabled:hover {
background-color: #0eaf96;
color: #fff;
}
.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit[disabled]:disabled, .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button[disabled]:disabled, .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button[disabled]:disabled, .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button[disabled]:disabled {
color: inherit;
cursor: not-allowed;
opacity: 0.5;
} .woocommerce .cart .button, .woocommerce .cart input.button {
position: relative;
line-height: 24px;
color: #0eaf96;
font-size: 16px;
font-weight: 600;
background: none;
display: inline-block;
padding: 7px 29px !important;
border: 2px solid #0eaf96;
}
.woocommerce input.button:disabled, .woocommerce input.button[disabled]:disabled {
color: #0eaf96 !important;
}
.woocommerce a.added_to_cart {
display: inline-block;
padding-top: 0.5em;
white-space: nowrap;
}
.woocommerce #reviews #comments .add_review::after, .woocommerce #reviews #comments .add_review::before, .woocommerce #reviews #comments ol.commentlist li .comment-text::after, .woocommerce #reviews #comments ol.commentlist li .comment-text::before, .woocommerce #reviews #comments ol.commentlist::after, .woocommerce #reviews #comments ol.commentlist::before {
content: " ";
display: table;
}
.woocommerce #reviews h2 small {
color: #777;
float: right;
font-size: 15px;
margin: 10px 0 0;
}
.woocommerce #reviews h2 small a {
color: #777;
text-decoration: none;
}
.woocommerce #reviews h3 {
color: #292929;
font-size: 16px;
font-weight:400;
text-transform: capitalize;
margin: 0px;
padding:20px 0px 15px;
}
.woocommerce #reviews #respond {
border: 0 none;
margin: 0;
padding: 0;
}
.woocommerce #reviews #comment {
height: 75px;
}
.woocommerce #reviews #comments h2 {
color: #3d3d3d;
font-size: 16px;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 15px;
}
.woocommerce #review_form #respond::after, .woocommerce #reviews #comments ol.commentlist li .comment-text::after, .woocommerce #reviews #comments ol.commentlist::after, .woocommerce .woocommerce-product-rating::after, .woocommerce td.product-name dl.variation::after {
clear: both;
}
.woocommerce #reviews #comments ol.commentlist {
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
list-style: outside none none;
margin: 0;
width: 100%;
}
.woocommerce #reviews #comments ol.commentlist li {
background: rgba(0, 0, 0, 0) none repeat scroll 0 center;
border: 0 none;
margin: 0 0 20px;
padding: 0;
position: relative;
}
.woocommerce #reviews #comments ol.commentlist li .meta {
color: #777;
font-size: 0.75em;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar {
background: #ebe9eb none repeat scroll 0 0;
border: 1px solid #e4e1e3;
box-shadow: none;
float: left;
height: auto;
left: 0;
margin: 0;
padding: 3px;
position: absolute;
top: 0;
width: 32px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
border: 1px solid #e4e1e3;
border-radius: 4px;
margin: 0 0 0 50px;
padding: 1em 1em 0;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p {
margin: 0 0 1em;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
font-size: 0.83em;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong {
color: #272727;
font-size: 14px;
}
.woocommerce #reviews #comments ol.commentlist ul.children {
list-style: outside none none;
margin: 20px 0 0 50px;
}
.woocommerce #reviews #comments ol.commentlist ul.children .star-rating {
display: none;
}
.woocommerce #reviews #comments ol.commentlist #respond {
border: 1px solid #e4e1e3;
border-radius: 4px;
margin: 20px 0 0 50px;
padding: 1em 1em 0;
}
.woocommerce #reviews #comments .commentlist > li::before {
content: "";
}
.woocommerce .item_description .item_price {
margin: 0 0 15px !important;
}
.woocommerce .star-rating {
float: none;
font-family: star;
font-size: 14px;
height: 1em;
line-height: 1;
overflow: hidden;
position: relative;
width: 5.4em;
}
.woocommerce .star-rating::before {
color: #0eaf96;
content: "sssss";
float: left;
left: 0;
position: absolute;
top: 0;
}
.woocommerce .star-rating span {
color:#0eaf96;
float: left;
left: 0;
overflow: hidden;
padding-top: 1.5em;
position: absolute;
margin-right: 5px;
top: 0;
}
.woocommerce .woocommerce-product-rating {
display: block;
line-height: 2;
}
.woocommerce table.shop_attributes td, .woocommerce table.shop_attributes th {
border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
border-top: 0 none;
line-height: 1.5;
margin: 0;
}
.woocommerce .feedback {
display: inline-block;
background: #f7f7f7;
padding: 14px 15px !important;
position: relative;
top: 3px;
}
.woocommerce .feedback li {
display: inline-block;
margin-right: 3px;
}
.woocommerce .feedback li a {
color:#fa6f1c;
} .woocommerce #review_form #respond {
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
border: 0 none;
margin: 0;
padding: 0;
position: static;
width: auto;
}
.woocommerce #review_form #respond::after, .woocommerce #review_form #respond:before {
content: " ";
display: table;
}
.woocommerce #review_form #respond p {
margin:0;
}
.woocommerce #review_form #respond .form-submit input {
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
display: inline-block;
transition: all 0.3s ease-in-out;
padding: 11px 35px 9px;
border: 2px solid #0eaf96;
background-color: #0eaf96;
color: #ffffff;
margin-top:20px;
border-radius: 0px;
}
.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout a:hover, .woocommerce .woocommerce-cart-form .coupon .button:hover, .woocommerce .woocommerce-cart-form .actions .button:hover, .woocommerce .woocommerce-checkout-payment .place-order #place_order:hover {
background-color: transparent !important;
color: #222 !important;
border: 2px solid #0eaf96;
}
.woocommerce #review_form #respond .form-submit input:hover {
background-color: #fff;
color: #0eaf96;
border-color: #0eaf96;
}
.woocommerce #review_form #respond label {
color: #272727;
}
.woocommerce #review_form #respond input[type="text"], .woocommerce #review_form #respond input[type="email"] {
background:none;
border: 1px solid #e0e0e0;
color: #222222;
display: block;
height: 46px;
line-height: 22px;
padding: 11px 20px;
position: relative;
transition: all 300ms ease 0s;
width: 100%;
}
.woocommerce #review_form #respond textarea {
border: 1px solid #e0e0e0;
color: #222222;
display: block;
height: 120px;
line-height: 22px;
padding: 12px 20px;
position: relative;
resize: none;
transition: all 300ms ease 0s;
width: 100%;
}
.woocommerce table.shop_attributes {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
border-color: rgba(0, 0, 0, 0.1) -moz-use-text-color -moz-use-text-color;
border-image: none;
border-style: dotted none none;
border-width: 1px 0 0;
margin-bottom: 1.618em;
width: 100%;
}
.woocommerce table.shop_attributes th {
font-weight: 700;
padding: 8px;
width: 150px;
text-align: left;
}
.woocommerce table.shop_attributes td {
font-style: italic;
padding: 0;
text-align: right;
}
.woocommerce table.shop_attributes td p {
margin: 0;
padding: 8px 0;
}
.woocommerce table.shop_attributes .alt td, .woocommerce table.shop_attributes .alt th {
background: rgba(0, 0, 0, 0.024) none repeat scroll 0 0;
}
.woocommerce table.shop_table {
border:0;
border-collapse: separate;
border-radius: 5px;
margin: 0 -1px 24px 0;
text-align: left;
width: 100%;
}
.woocommerce table.shop_table thead {
background: #f5f5f5 url(//aq-technologies.com/wp-content/themes/saasweb/img/resources/texture/strip.png) repeat scroll 0 0;
border-radius: 7px;
color: #222222;
font-size: 18px;
position: relative;
text-transform: uppercase;
width: 100%;
}
.woocommerce table.shop_table th {
color: #272727;
font-size: 14px;
font-weight: 700;
line-height: 35px;
padding-left: 28px;
text-transform: uppercase;
}
.woocommerce table.shop_table td {
border-top:1px solid #f7f7f7;
color: #9e9e9e;
font-size: 16px;
font-weight: 700;
padding: 27px 7px 28px 35px;
}
.woocommerce table.shop_table td small {
font-weight: 400;
}
.woocommerce table.shop_table tbody:first-child tr:first-child td, .woocommerce table.shop_table tbody:first-child tr:first-child th {
border-top: 0 none;
}
.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
border-top: 1px solid rgba(0, 0, 0, 0.1);
font-weight: 700;
}
.woocommerce table.my_account_orders {
font-size: 0.85em;
}
.woocommerce table.my_account_orders td, .woocommerce table.my_account_orders th {
padding: 4px 8px;
vertical-align: middle;
}
.woocommerce table.my_account_orders .button {
white-space: nowrap;
}
.woocommerce table.my_account_orders .order-actions {
text-align: right;
}
.woocommerce table.my_account_orders .order-actions .button {
margin: 0.125em 0 0.125em 0.25em;
}
.woocommerce td.product-name dl.variation {
margin: 0.25em 0;
}
.woocommerce td.product-name dl.variation::after, .woocommerce td.product-name dl.variation::before {
content: " ";
display: table;
}
.woocommerce td.product-name dl.variation dd, .woocommerce td.product-name dl.variation dt {
display: inline-block;
float: left;
margin-bottom: 1em;
}
.woocommerce td.product-name dl.variation dt {
clear: left;
font-weight: 700;
margin: 0 4px 0 0;
padding: 0 0 0.25em;
}
.woocommerce ul.cart_list li dl::after, .woocommerce ul.cart_list li::after, .woocommerce ul.product_list_widget li dl::after, .woocommerce ul.product_list_widget li::after {
clear: both;
}
.woocommerce td.product-name dl.variation dd {
padding: 0 0 0.25em;
}
.woocommerce td.product-name dl.variation dd p:last-child {
margin-bottom: 0;
}
.woocommerce td.product-name p.backorder_notification {
font-size: 0.83em;
}
.woocommerce td.product-quantity {
min-width: 80px;
}
.woocommerce ul.cart_list, .woocommerce ul.product_list_widget {
list-style: outside none none;
margin: 0;
padding: 0;
}
.woocommerce div.product {
margin-bottom: 35px;
position: relative;
}
.woocommerce ul.cart_list li, .woocommerce ul.product_list_widget li {
list-style: outside none none;
margin: 0;
padding: 15px 0;
}
.product_list_widget .product-title {
color: #121212;
}
.widget_product_tag_cloud {
margin-top:20px;
}
.woocommerce ul.cart_list li::after, .woocommerce ul.cart_list li::before, .woocommerce ul.product_list_widget li::after, .woocommerce ul.product_list_widget li::before {
content: " ";
display: table;
}
.woocommerce ul.cart_list li a, .woocommerce ul.product_list_widget li a {
display: block;
font-weight: 700;
}
.woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img {
box-shadow: none;
float: right;
height: auto;
margin-left: 4px;
width: 32px;
}
.woocommerce ul.cart_list li dl, .woocommerce ul.product_list_widget li dl {
border-left: 2px solid rgba(0, 0, 0, 0.1);
margin: 0;
padding-left: 1em;
}
.woocommerce ul.cart_list li dl::after, .woocommerce ul.cart_list li dl::before, .woocommerce ul.product_list_widget li dl::after, .woocommerce ul.product_list_widget li dl::before {
content: " ";
display: table;
}
.woocommerce ul.cart_list li dl dd, .woocommerce ul.cart_list li dl dt, .woocommerce ul.product_list_widget li dl dd, .woocommerce ul.product_list_widget li dl dt {
display: inline-block;
float: left;
margin-bottom: 1em;
}
.woocommerce ul.cart_list li dl dt, .woocommerce ul.product_list_widget li dl dt {
clear: left;
font-weight: 700;
margin: 0 4px 0 0;
padding: 0 0 0.25em;
}
.woocommerce .order_details::after, .woocommerce .widget_layered_nav ul li::after, .woocommerce .widget_shopping_cart .buttons::after, .woocommerce-account .addresses .title::after, .woocommerce-cart .wc-proceed-to-checkout::after, .woocommerce.widget_shopping_cart .buttons::after {
clear: both;
}
.woocommerce ul.cart_list li dl dd, .woocommerce ul.product_list_widget li dl dd {
padding: 0 0 0.25em;
}
.woocommerce ul.cart_list li dl dd p:last-child, .woocommerce ul.product_list_widget li dl dd p:last-child {
margin-bottom: 0;
}
.woocommerce ul.cart_list li .star-rating, .woocommerce ul.product_list_widget li .star-rating {
float: none;
}
.woocommerce .widget_shopping_cart .total, .woocommerce.widget_shopping_cart .total {
border-top: 3px double #ebe9eb;
padding: 4px 0 0;
}
.woocommerce .widget_shopping_cart .total strong, .woocommerce.widget_shopping_cart .total strong {
display: inline-block;
min-width: 40px;
}
.woocommerce .widget_shopping_cart .cart_list li, .woocommerce.widget_shopping_cart .cart_list li {
padding-left: 2em;
padding-top: 0;
position: relative;
}
.woocommerce .widget_shopping_cart .cart_list li a.remove, .woocommerce.widget_shopping_cart .cart_list li a.remove {
left: 0;
position: absolute;
top: 0;
}
.woocommerce .widget_shopping_cart .buttons::after, .woocommerce .widget_shopping_cart .buttons::before, .woocommerce.widget_shopping_cart .buttons::after, .woocommerce.widget_shopping_cart .buttons::before {
content: " ";
display: table;
}
.woocommerce form .form-row {
margin: 0 0 6px;
padding: 3px;
}
.woocommerce form .form-row label {
color: #272727;
display: block;
font-size: 14px;
font-weight: 400;
margin-bottom: 7px;
text-transform: capitalize;
}
.woocommerce form .form-row label.inline {
display: inline;
}
.woocommerce form .form-row select {
cursor: pointer;
margin: 0;
}
.woocommerce form .form-row .required {
border: 0 none;
color: red;
font-weight: 700;
}
.woocommerce form .form-row .input-checkbox {
display: inline;
margin: -2px 8px 0 0;
text-align: center;
vertical-align: middle;
position:relative;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
box-sizing: border-box;
line-height: 1;
margin: 0;
outline: 0 none;
width: 100%;
}
.woocommerce form .form-row textarea {
box-shadow: none;
display: block;
height: 4em;
line-height: 1.5;
}
.woocommerce form .form-row .select2-container {
line-height: 2em;
width: 100%;
}
.woocommerce form .form-row.woocommerce-invalid .select2-container, .woocommerce form .form-row.woocommerce-invalid input.input-text, .woocommerce form .form-row.woocommerce-invalid select {
border-color: #a00;
}
.woocommerce form .form-row.woocommerce-validated .select2-container, .woocommerce form .form-row.woocommerce-validated input.input-text, .woocommerce form .form-row.woocommerce-validated select {
border-color: #69bf29;
}
.woocommerce form .form-row *:-moz-placeholder {
line-height: normal;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
border: 1px solid #d3ced2;
border-radius: 5px;
margin: 2em 0;
padding: 20px;
text-align: left;
}
.woocommerce ul#shipping_method {
list-style: outside none none;
margin: 0;
padding: 0;
}
.woocommerce ul#shipping_method li {
list-style: outside none none;
margin: 0;
padding: 0.25em 0 0.25em 22px;
text-indent: -22px;
}
.woocommerce ul#shipping_method .amount {
font-weight: 700;
}
.woocommerce p.woocommerce-shipping-contents {
margin: 0;
}
.woocommerce .order_details {
list-style: outside none none;
margin: 0 0 1.5em;
}
.woocommerce .order_details::after, .woocommerce .order_details::before {
content: " ";
display: table;
}
.woocommerce .order_details li {
border-right: 1px dashed #d3ced2;
float: left;
font-size: 0.715em;
line-height: 1;
margin-left: 0;
margin-right: 2em;
padding-left: 0;
padding-right: 2em;
text-transform: uppercase;
}
.woocommerce .order_details li strong {
display: block;
font-size: 1.4em;
line-height: 1.5;
text-transform: none;
}
.woocommerce .order_details li:last-of-type {
border: medium none;
}
.woocommerce .widget_layered_nav ul {
border: 0 none;
list-style: outside none none;
margin: 0;
padding: 0;
}
.woocommerce .widget_layered_nav ul li {
list-style: outside none none;
padding: 0 0 1px;
}
.woocommerce .widget_layered_nav ul li::after, .woocommerce .widget_layered_nav ul li::before {
content: " ";
display: table;
}
.woocommerce .widget_layered_nav ul li.chosen a::before, .woocommerce .widget_layered_nav_filters ul li a::before {
color: #a00;
content: "ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â®ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
font-family: WooCommerce;
font-variant: normal;
font-weight: 400;
line-height: 1;
text-decoration: none;
text-transform: none;
}
.woocommerce .widget_layered_nav ul li a, .woocommerce .widget_layered_nav ul li span {
padding: 1px 0;
}
.woocommerce .widget_layered_nav ul li.chosen a::before {
margin-right: 0.618em;
}
.woocommerce .widget_layered_nav_filters ul {
border: 0 none;
list-style: outside none none;
margin: 0;
overflow: hidden;
padding: 0;
}
.woocommerce .widget_layered_nav_filters ul li {
float: left;
list-style: outside none none;
padding: 0 1px 1px 0;
}
.woocommerce .widget_layered_nav_filters ul li a {
text-decoration: none;
}
.woocommerce .widget_layered_nav_filters ul li a::before {
margin-right: 0.618em;
}
.woocommerce .widget_price_filter .price_slider {
margin-bottom: 1em;
}
.woocommerce .widget_price_filter .price_slider_amount {
font-size: 0.8751em;
line-height: 2.4;
text-align: right;
}
.woocommerce .widget_price_filter .price_slider_amount .button {
padding: 4px 20px;
border-radius: 0px;
font-size: 12px;
font-weight: 400;
margin-top: 20px;
text-transform: uppercase;
background-color: #1c1c1c;
color: #fff;
border: 2px solid #1c1c1c;
}
.woocommerce .widget_price_filter .price_slider_amount .button:hover {
background-color: #ffffff;
color: #1c1c1c;
}
.woocommerce .widget_price_filter .ui-slider {
margin-left: 0.5em;
margin-right: 0.5em;
position: relative;
text-align: left;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
background-color: #0eaf96;
border-radius: 1em;
cursor: ew-resize;
height: 1em;
margin-left: -0.5em;
outline: 0 none;
position: absolute;
top: -0.3em;
width: 1em;
z-index: 2;
}
.ui-state-default, .ui-widget-content .ui-state-default {
border: 1px solid #0eaf96;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
background-color: #0eaf96;
border: 0 none;
border-radius: 1em;
display: block;
font-size: 0.7em;
position: absolute;
z-index: 1;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
background-color: #0eaf96;
border: 0 none;
border-radius: 1em;
}
.woocommerce .widget_price_filter .ui-slider-horizontal {
height: 0.5em;
}
.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range {
height: 100%;
top: 0;
}
.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-min {
left: -1px;
}
.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-max {
right: -1px;
}
.woocommerce-account .addresses .title::after, .woocommerce-account .addresses .title::before {
content: " ";
display: table;
}
.woocommerce-account .addresses .title h3 {
float: left;
}
.woocommerce-account .addresses .title .edit, .woocommerce-account ul.digital-downloads li .count {
float: right;
}
.woocommerce-account ol.commentlist.notes li.note p.meta {
font-weight: 700;
margin-bottom: 0;
}
.woocommerce-account ol.commentlist.notes li.note .description p:last-child {
margin-bottom: 0;
}
.woocommerce-account ul.digital-downloads {
margin-left: 0;
padding-left: 0;
}
.woocommerce-account ul.digital-downloads li {
list-style: outside none none;
margin-left: 0;
padding-left: 0;
}
.woocommerce-account ul.digital-downloads li::before {
content: "ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â®ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â ";
font-family: WooCommerce;
font-variant: normal;
font-weight: 400;
line-height: 1;
margin-right: 0.618em;
text-decoration: none;
text-transform: none;
}
.woocommerce-cart table.cart .product-thumbnail {
min-width: 32px;
}
.woocommerce-cart table.cart img {
box-shadow: none;
width: 80px;
}
.woocommerce-cart table.cart td, .woocommerce-cart table.cart th {
vertical-align: middle;
}
.woocommerce-cart table.cart td.actions .coupon .input-text {
background: #ffffff none repeat scroll 0 0;
border: 1px solid #dddddd;
display: block;
line-height: 24px;
padding: 10px;
width: 260px;
}
.woocommerce-cart .wc-proceed-to-checkout::after, .woocommerce-cart .wc-proceed-to-checkout::before {
content: " ";
display: table;
}
.cart_totals h2 {
color: #272727;
font-size: 24px;
font-weight: 600;
margin-bottom: 30px;
}
.total-cart {
width: 100%;
}
.total-cart tr th, .total-cart tr td {
border: 1px solid #e0e0e0;
padding: 10px 15px;
width: 50% !important;
}
.total-cart tr td {
border-top: 0 none;
text-align: right;
}
.woocommerce-cart .cart-collaterals .shipping_calculator .button {
display: block;
float: none;
width: 100%;
}
.woocommerce-cart .cart-collaterals .shipping_calculator .shipping-calculator-button::after {
content: "ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â®ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢";
font-family: WooCommerce;
font-variant: normal;
font-weight: 400;
line-height: 1;
margin-left: 0.618em;
text-decoration: none;
text-transform: none;
}
.woocommerce-cart .cart-collaterals .cart_totals p small {
color: #777;
font-size: 0.83em;
}
.woocommerce-cart .cart-collaterals .cross-sells ul.products li.product {
margin-top: 0;
}
.woocommerce-checkout .checkout .col-2 h3#ship-to-different-address {
clear: none;
float: left;
}
.woocommerce-checkout .checkout .col-2 .form-row-first, .woocommerce-checkout .checkout .col-2 .notes {
clear: left;
}
.woocommerce-checkout .checkout .create-account small {
color: #777;
font-size: 11px;
font-weight: 400;
}
.woocommerce-checkout .checkout div.shipping-address {
clear: left;
padding: 0;
width: 100%;
}
.single-product .twentythirteen p.stars, .woocommerce-checkout #payment ul.payment_methods::after, .woocommerce-checkout .checkout .shipping_address {
clear: both;
}
.woocommerce-checkout #payment {
background: #ebe9eb none repeat scroll 0 0;
border-radius: 5px;
}
.woocommerce-checkout #payment ul.payment_methods {
border-bottom: 1px solid #d3ced2;
list-style: outside none none;
margin: 0;
padding: 1em;
text-align: left;
}
.woocommerce-checkout #payment ul.payment_methods::after, .woocommerce-checkout #payment ul.payment_methods::before {
content: " ";
display: table;
}
.woocommerce-checkout #payment ul.payment_methods li {
font-weight: 400;
line-height: 2;
margin: 0;
text-align: left;
}
.woocommerce-checkout #payment ul.payment_methods li input {
margin: 0 1em 0 0;
display:inline-block;
}
.woocommerce-checkout #payment ul.payment_methods li img {
box-shadow: none;
margin: -2px 0 0 0.5em;
padding: 0;
position: relative;
vertical-align: middle;
}
.woocommerce-checkout #payment ul.payment_methods li img + img {
margin-left: 2px;
}
.woocommerce-checkout #payment div.form-row {
padding: 1em;
}
.woocommerce-checkout #payment div.payment_box {
background-color: #dfdcde;
border-radius: 2px;
color: #515151;
font-size: 0.92em;
line-height: 1.5;
margin: 1em 0;
padding: 1em 2%;
position: relative;
width: 96%;
}
.woocommerce-checkout #payment div.payment_box input.input-text, .woocommerce-checkout #payment div.payment_box textarea {
border-color: #bbb3b9 #c7c1c6 #c7c1c6;
}
.woocommerce-checkout #payment div.payment_box *:-moz-placeholder {
color: #bbb3b9;
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc, .woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry, .woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number {
background-position: right center;
background-repeat: no-repeat;
font-size: 1.5em;
padding: 8px;
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.visa, .woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.visa, .woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.visa {
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/credit-cards/visa.png);
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard, .woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard, .woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.mastercard {
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/credit-cards/mastercard.png);
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.laser, .woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.laser, .woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.laser {
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/credit-cards/laser.png);
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub, .woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub, .woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.dinersclub {
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/credit-cards/diners.png);
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.maestro, .woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.maestro, .woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.maestro {
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/credit-cards/maestro.png);
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.jcb, .woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.jcb, .woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.jcb {
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/credit-cards/jcb.png);
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.amex, .woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.amex, .woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.amex {
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/credit-cards/amex.png);
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.discover, .woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.discover, .woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.discover {
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/credit-cards/discover.png);
}
.woocommerce-checkout #payment div.payment_box span.help {
color: #777;
font-size: 0.857em;
font-weight: 400;
}
.woocommerce-checkout #payment div.payment_box .form-row {
margin: 0 0 1em;
}
.woocommerce-checkout #payment div.payment_box p:last-child {
margin-bottom: 0;
}
.woocommerce-checkout #payment div.payment_box::after {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
border-color: transparent transparent #dfdcde;
border-image: none;
border-style: solid;
border-width: 8px;
content: "";
display: block;
left: 0;
margin: -1em 0 0 2em;
position: absolute;
top: -3px;
}
.woocommerce-checkout #payment .payment_method_paypal .about_paypal {
float: right;
font-size: 0.83em;
line-height: 52px;
}
.woocommerce-checkout #payment .payment_method_paypal img {
max-height: 52px;
vertical-align: middle;
}
#content.twentyeleven .woocommerce-pagination a {
font-size: 1em;
line-height: 1;
}
.single-product .twentythirteen #reply-title, .single-product .twentythirteen #respond #commentform, .single-product .twentythirteen .entry-summary {
padding: 0;
}
.twentythirteen .woocommerce-breadcrumb {
padding-top: 40px;
}
.twentyfourteen ul.products li.product {
margin-top: 0 !important;
}
.single-rating .star-rating {
color: #fc7625;
display: block;
float: left;
font-size: 13px;
margin: 10px 0 15px;
}
.cart .quantity input.input-text {
background-color:#f7f7f7 !important;
background-image:none;
display: inline-block;
height: 48px !important;
margin-right: 10px;
margin-bottom:0px;
vertical-align: middle;
width: 90px !important;
padding:0;
border-radius: 0 !important;
border:1px solid #ebebeb;
}
.cart-table .cart_item td {
border-bottom: 2px solid #e9e9e9;
padding: 30px 0 !important;
}
.cart-table .cart_item .product-name a {
color: #272727;
font-size: 18px;
font-weight: 700;
margin-bottom: 5px;
}
.actions {
margin-bottom: 50px;
}
#comments .comment-form .form-box {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
border-color: #e0e0e0 -moz-use-text-color -moz-use-text-color;
border-image: none;
border-style: solid none none;
border-width: 1px 0 0;
}
.info-column .other-options .btn-style-one {
padding: 7px 48px 8px;
}
.woocommerce-EditAccountForm.edit-account input[type="text"], .woocommerce-EditAccountForm.edit-account input[type="email"], .woocommerce-EditAccountForm.edit-account input[type="password"], .login input[type="text"], .login input[type="password"], .woocommerce-ResetPassword.lost_reset_password input[type="text"], .checkout.woocommerce-checkout input[type="text"], .checkout.woocommerce-checkout input[type="email"], .checkout.woocommerce-checkout input[type="tel"], .checkout.woocommerce-checkout .select2-choice, .checkout.woocommerce-checkout textarea, .woocommerce form .form-row input.input-text, .woocommerce form .form-row .select2-choice {
background: #ffffff none repeat scroll 0 0;
border: 1px solid #e0e0e0;
display: block;
height: 48px;
line-height: 30px;
padding: 8px 20px;
position: relative;
transition: all 300ms ease 0s;
width: 100%;
}
.woocommerce-EditAccountForm.edit-account legend, .woocommerce-billing-fields h3, .woocommerce-shipping-fields h3, h3#order_review_heading, .woocommerce-account .addresses .title h3, .woocommerce-MyAccount-content h3 {
color: #222222;
font-size: 20px;
font-weight: 400;
line-height: 1.4em;
margin: 0 0 20px;
}
.woocommerce-EditAccountForm.edit-account legend {
border: medium none;
margin-top: 40px;
}
#ship-to-different-address label {
font-weight: 400 !important;
}
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
width:100%;
}
.product_details .product_top_section .item_description > div span {
line-height: 15px;
}
.commentlist {
padding:0;
}
.add_your_review {
margin: 81px 0 75px;
} .woocommerce .shop-page .meta-info p.woocommerce-result-count{
float:left;
}
.woocommerce .shop-page .woocommerce-ordering{
margin:0px;
}
.woocommerce .shop-page .woocommerce-ordering select{
background:none;
border: 1px solid #f7f7f7;
border-radius: 0;
color: #999999;
font-size: 14px;
outline: medium none !important;
padding: 12px 15px;
text-transform: capitalize;
-moz-appearance: none;
-webkit-appearance:none;
-ms-appearance:none;
z-index:20;
position:relative;
cursor:pointer;
}
.woocommerce .shop-page .woocommerce-ordering{
position:relative;
background: #f7f7f7 none repeat scroll 0 0;
}
.woocommerce .shop-page .woocommerce-ordering:before{
content:'\f107';
position:absolute;
top:11px;
right:10px;
font-family:'FontAwesome';
font-size:14px;
cursor:pointer;
color:#999999;
z-index:1;
}
.woocommerce .shop-page .single-shop-item{
min-height:440px;
}
.woocommerce .shop-page .single-shop-item .text-box .title a {
color: #333333;
font-size: 16px;
line-height: 24px;
margin: -6px 0 0;
transition: color 0.4s ease 0s;
}
.woocommerce .products .star-rating{
font-size:15px;
color: #f1a400;
display:inline-block;
}
.woocommerce .shop-page .single-shop-item .price{
color: #3563a9;
font-size: 16px;
font-style: normal;
line-height: 24px;
}
.woocommerce .shop-page .single-shop-item .price del > span{
text-decoration:line-through;
margin-right:10px;
} .woocommerce div.product div.images, .woocommerce div.product div.summary,.single-shop-page .single-shop-item .fetr-box .img-box{
margin:0px;
padding:0px;
}
.woocommerce .single-shop-page .single-shop-item{
margin-bottom:40px;
}
.woocommerce .single-shop-page .single-shop-item .woocommerce-product-rating{
margin-bottom:0px !important;
}
.woocommerce .single-shop-page .star-rating::before{
color:#ffffff !important;
}
.woocommerce .single-shop-page .star-rating{
height:20px;
line-height:18px;
width:7.4em;
}
.woocommerce .single-shop-page .star-rating span{
color:#3563a9;
font-size:12px;
}
.woocommerce .single-shop-page .quantity .qty{
width:80px;
height:45px;
border:none;
border-radius:3px;
}
.single-product.woocommerce .price ins span.woocommerce-Price-amount.amount,
.single-product.woocommerce .price ins span.woocommerce-Price-amount.amount .woocommerce-Price-currencySymbol {
font-size:18px !important;
} .woocommerce div.product .woocommerce-tabs{
margin:60px 0px 0px;
padding:0 15px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before{
border-bottom:none;
}
.woocommerce #reviews #comments ol.commentlist{
padding:0px;
margin-top:10px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::after, .woocommerce div.product .woocommerce-tabs ul.tabs li::before{
display:none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs{
padding:0px !important;
margin:0px 0 0px !important;
border:none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:hover a,	
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
background: #ffffff;
color: #121212;
border-left-color: #ececec;
border-top-color: #ececec;
border-right-color: #ececec;
}
.woocommerce div.product .woocommerce-tabs .panel{
padding:30px;
background:#fbfbfb;
box-shadow:none;
border:none;
border-radius:0px;
}
.woocommerce div.product .woocommerce-tabs .panel h2{
color: #1a1a1a;
font-weight:500;
font-size: 18px;
text-transform: capitalize;
margin-bottom:15px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
display: block;
float: left;
margin-bottom: -1px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
border: 1px solid #222222;
display: block;
margin-right: 1px;
padding: 11px 30px 9px;
color: #222222;
font-size: 16px;
font-weight: 600;
text-transform: capitalize;
transition: all 500ms ease;
}
.woocommerce textarea{
border:1px solid #ebebeb;
}
.woocommerce p.stars a.star-1{
width:1em;
}
.woocommerce p.stars a.star-1, .woocommerce p.stars a.star-2, .woocommerce p.stars a.star-3, .woocommerce p.stars a.star-4, .woocommerce p.stars a.star-5{
border:none;
}
.woocommerce p.stars a {
color: #0eaf96;
font-weight: 400;
} .woocommerce .shop_table thead{
background:#f7f7f7;
}
.woocommerce table.shop_table th{
color: #222222;
font-size: 14px;
font-weight: 400;
line-height: 35px;
text-transform: uppercase;
padding-left: 28px;
}
.woocommerce .shop_table tbody tr.cart_item td{
padding:27px 7px 28px 35px;
border-bottom: 1px solid #f3f3f3;
color: #777777;
font-size: 16px;
font-weight: 700;
}
.woocommerce .shop_table tbody td.product-subtotal{
color:#6aaf08;
}
.woocommerce-cart table.cart img{
width:auto;
}
.woocommerce .shop_table tbody tr td.actions{
padding:20px !important;
}
.woocommerce .shop_table tbody tr td.actions .coupon{
display:inline-block;
}
.woocommerce-cart table.cart td.actions .coupon .input-text{
border: 2px solid #f3f3f3;
font-weight: 700;
height: 45px;
margin-right: 19px;
padding-left: 15px;
width: 225px;
}
.woocommerce .woocommerce-message::before{
color:#0eaf96 ;
}
.woocommerce .woocommerce-message{
border-top-color:#0eaf96  ;
}
.product-name > a {
color: rgba(18, 18, 18, 0.7);
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #place_order {
position: relative;
line-height: 24px;
color: #0eaf96;
font-size: 16px;
font-weight: 600;
background: none;
display: inline-block;
padding: 7px 29px;
border: 2px solid #0eaf96;
}
.charitable-form-field.charitable-submit-field button {
background-color: #0eaf96;
color: #ffffff;
padding: 15px 45px 13px;
border-radius: 4px;
}
.charitable-form-field.charitable-submit-field button:hover {
background-color:#ff8a44;
}  .woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit[disabled]:disabled, .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button[disabled]:disabled, .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button[disabled]:disabled, .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button[disabled]:disabled{
opacity:1;
color:#ffffff;
} .woocommerce .cart_shipping{
padding: 15px;
}
.woocommerce .cart_totals {
border: 1px solid #ebebeb;
padding: 15px;
}
.woocommerce .cart_shipping p {
margin-top: 10px;
}
.woocommerce .cart_shipping input{
border: 2px solid #f6f4f4;
display: block;
height: 40px;
padding: 0 15px;
position: relative;
width: 100%;
}
.woocommerce-cart .cart-collaterals .cart_totals table{
margin:0px;
}
.woocommerce .cart_totals{
padding:0px !important;
}
.woocommerce .cart_totals h2 {
background: #f9f9f9 none repeat scroll 0 0;
border-bottom: 1px solid #ebebeb;
font-size: 14px;
margin: 0;
padding: 20px;
}
.woocommerce .cart_totals tr{
border-bottom: 1px solid #ebebeb !important;
}
.woocommerce .cart_totals tr th {
padding:14px 20px !important;
border-right:1px solid #ebebeb;
}
.woocommerce .cart_totals td {
padding: 14px 20px !important;
text-align: right;
}
.woocommerce-cart .wc-proceed-to-checkout{
padding:20px;
text-align: right;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button{
position: relative;
line-height: 24px;
color: #0eaf96;
font-size: 16px;
font-weight: 600;
background: none;
display: inline-block;
padding: 7px 29px !important;
border: 2px solid #0eaf96;
margin-bottom: 0px;
} .woocommerce-cart .cart-collaterals .cart_totals table{
border-collapse:collapse !important;
width:100%;
} .woocommerce form .form-row select, .woocommerce form input[type="text"], .woocommerce form input[type="email"], .woocommerce form input[type="password"], .woocommerce form input[type="tel"] {
padding: 10px !important;
border:1px solid #e3e0dc;
width:100%;
}
.woocommerce .checkout_coupon p {
display: inline-block;
}
.woocommerce .checkout_coupon p #coupon_code{
height:45px !important;
border:1px solid #e3e0dc;
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
float: left;
width: 48%;
}
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
float: right;
width: 48%;
}
.shop_sidebar .shop_aside{
margin-top:0px;
}
#order_review_heading{
color: #262626;
font-size: 15px;
font-weight: 700;
letter-spacing: 2px;
margin-bottom: 30px;
padding-top: 20px;
position: relative;
text-transform: uppercase;
}
.woocommerce .img-holder .thumbnails.columns-3 a.zoom {
display:inline-block !important;
width:31.65% !important;
margin-left:10px;
}
.woocommerce .img-holder .thumbnails.columns-3 a.zoom:first-child{
margin-left:0px;
}
.contact_info ul li{
border-bottom:none !important;
line-height: 1.8em !important;
padding:0px !important;
}
.contact_info ul a::after{
content:'' !important;
}
.contact_info ul a{
display:inline-block !important;
color:#93b300 !important;
}
.woocommerce-pagination ul{
border-top: 1px solid #f7f7f7 !important;
margin-top: -10px;
padding-top: 30px !important;
}
.woocommerce-pagination ul li {
display: inline-block !important;
margin: 0 3px !important;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span{
background: #fff none repeat scroll 0 0;
border: 2px solid #f4f4f4;
color: #777;
display: block !important;
font-size: 18px !important;
font-weight: 700;
padding: 16px 0 !important;
line-height:23px !important;
transition: all 500ms ease 0s;
width: 55px;
}
.woocommerce-pagination ul li a:hover, .woocommerce-pagination ul li span,.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
color: #fff !important;
background-color: #0eaf96;
border-color: #0eaf96;
}
.woocommerce .f-shop-detail .summary .star-rating{
color:#3563a9 !important;
}
.search-widget input{
padding-left:15px;
width:70% !important;
border:none !important;
}
.widget_bunch_external_links ul li a::before{
display:none;
}
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
line-height:0px !important;	
}
.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover {
border: 1px solid #0eaf96 ;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
color: #fff !important;
}
.woocommerce nav.woocommerce-pagination ul {
float:left;	
}
.shop-details .single-product-details .info .woocommerce-review-link {
color: #0eaf96;
font-size: 16px;
font-weight: normal;
line-height: 32px;
margin: 0;
padding-left: 0;
text-transform: none;
width: 130px;
}
.shop-details .single-product-details .info .woocommerce-review-link:hover {
background:#fff;
}
.lower-content .pull-right .rating {
color: #0eaf96;
}
.woocommerce a.button:hover {
background-color: #ffffff;
}
.woocommerce input.button {
border-radius: 0px;
}
.woocommerce-cart table.cart img {
width: 100px;
height: 100px;
}
.wooccommerce .cart-collaterals .cross-sells, .woocommerce-page .cart-collaterals .cross-sells,
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals{
width:33.33333%;
}
.woocommerce .cart-collaterals .cross-sells, .woocommerce-page .cart-collaterals .cross-sells{
padding:0 15px;
width: 66.666%;
}
.woocommerce .cart-collaterals .cross-sells h2{
font-size:15px;
font-weight:500;
position: relative;
z-index: 9;
margin-bottom: 15px;
}
.woocommerce .cart-collaterals .cross-sells .shop-item{
width:48%;
padding:0 5px;
}
.woocommerce .sp-product-details .up-sells{
padding:0 15px;
}
.woocommerce .sp-product-details .up-sells h2{
color: #333333;
font-size: 24px;
font-weight: 600;
line-height: 50px;
margin-bottom:15px;
}
.woocommerce div.product form.cart .variations label{
color:#303030;
font-size:15px;
margin-top:10px;
}
.woocommerce .woocommerce-variation-price{
margin-bottom:20px;
}
.woocommerce-review-link {
color: #0eaf96;
}
.woocommerce button.button[disabled]:disabled{
color:#0eaf96 !important;
} .shop-section .items-sorting{
position:relative;
margin-bottom:20px;	
}
.shop-section .items-sorting .results-column,
.shop-section .items-sorting .select-column{
margin-bottom:20px;	
}
.shop-section .items-sorting .results-column h4{
font-size:14px;
font-weight:400;
color:#666666;
line-height:24px;
padding:13px 0px;
}
.shop-section .items-sorting .form-group{
margin-bottom:0px;	
}
.shop-section .items-sorting select{
position:relative;
display:block;
width:100%;
line-height:24px;
padding:9px 5px 9px;
height:50px;
font-size:14px;
border-bottom:2px solid #dddddd;
cursor:pointer;
-moz-appearance:none;
-webkit-appearance:none;
-ms-appearance:none;
-o-appearance:none;
background:url(//aq-technologies.com/wp-content/themes/saasweb/css/images/icons/icon-select.png) right center no-repeat;
color:#666666;
transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;	
}
.shop-section .items-sorting select option{
text-indent:15px;	
} .shop-item{
position:relative;
margin-bottom:40px;
}
.shop-item .inner-box{
position:relative;
outline:15px solid #ffffff;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.shop-item .inner-box:hover .image .overlay-box {
opacity: 1;
transition: all 700ms ease;
}
.shop-item .inner-box .image {
position: relative;
z-index: 11;
text-align: center;
background-color: #f8f8f8;
overflow: hidden;
}
.shop-item .inner-box .image .sale{
position:absolute;
left:20px;
top:20px;
font-size:11px;
font-weight:700;
color:#ffffff;
z-index:12;
padding:5px 8px;
line-height:1em;
text-transform:uppercase;
background-color:#0eaf96;
}
.shop-item .inner-box .image .overlay-box{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
opacity:0;
text-align:center;
background-color:rgba(255,255,255,0.60);
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.shop-item .inner-box .image .overlay-box .cart-option{
position:relative;
top:50%;
margin-top:-25px;
}
.shop-item .inner-box .image .overlay-box .cart-option li{
position:relative;
margin:0px 3px;
color:#ffb200;
display:inline-block;
}
.shop-item .inner-box .image .overlay-box .cart-option li a{
position:relative;
width:40px;
height:40px;
color:#ffffff;
font-size:14px;
display:block;
line-height:40px;
background-color:#042038;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.shop-item .inner-box .image .overlay-box .cart-option li a:hover{
background-color: #0eaf96;
color:#ffffff;
}
.shop-item .inner-box .image .overlay-box .cart-option li a:hover{
color:#ffffff;
}
.shop-item .inner-box .image img { display: inline-block;
}
.shop-item .inner-box .lower-content{
position:relative;
z-index:11;
text-align:center;
padding:20px;
}
.shop-item .inner-box .lower-content h3{
position: relative;
display: block;
font-size: 16px;
line-height: 22px;
font-weight: 600;
padding: 0 0 3px;
}
.shop-item .inner-box .lower-content h3 a{
color: #27282c;
transition: all 500ms ease;
font-weight: 600 !important;
}
.shop-section .shop-item .sp-section .price {
margin-bottom: 0px!important;
color: #828282;
}
.shop-item .inner-box .lower-content .price li {     position: relative;
display: inline-block;  text-align: center; }
.shop-section .shop-item .sp-section .price span { color: #828282;
}
.shop-item .inner-box .lower-content h3 a:hover{
color:#aaaaaa;
}
.shop-item .inner-box .lower-content .price{
position:relative;
}
.shop-item .inner-box .lower-content .price li{
position:relative;
color:#666666;
font-size:14px;
font-weight:400;
display:inline-block;
}
.shop-item .inner-box .lower-content .price li.discount{
position:relative;
color:#0eaf96;
margin-right:8px;
text-decoration:line-through;
}
.shop-single-section{
position:relative;
} .product-details .basic-details{
position:relative;
}
.product-details .image-column .image-carousel{
background-color:#eeeeee;
border-radius:4px;
}
.product-details .info-column .add-to-cart{
padding:10px 43px;
font-size:14px;
margin-bottom:10px;
margin-right:10px;
}
.product-details .image-column .image-box img{
position:relative;
display:block;
width:100%;
}
.product-details .image-column .thumbs-carousel{
margin-top:20px;
}
.product-details .image-column .thumbs-carousel li{
background-color:#f2f2f2;
text-align:center;
padding:0px 0px;
cursor:pointer;
}
.product-details .image-column .thumbs-carousel li img{
width:100%;
display:block;
border:1px solid #e0e0e0;
}
.product-details .image-column .owl-dots,
.product-details .image-column .owl-nav{
display:none;	
}
.product-details .basic-details .details-header{
position:relative;
margin-bottom:0px;	
}
.product-details .basic-details .details-header h4{
font-size:36px;
font-weight:700;
margin:0px 0px;
line-height:1.4em;
color:#222222;
margin-bottom:8px;
}
.product-details .basic-details .details-header h4 a{
color:#333333;	
}
.product-details .basic-details .details-header .rating{
font-size:16px;
display:inline-block;
}
.product-details .basic-details .details-header .rating span{
color:#0eaf96;
}
.product-details .basic-details .details-header .rating .fa{
display:inline-block;
margin-right:1px;	
}
.product-details .basic-details .details-header .rating .fa.light{
color:#dadada;
}
.product-details .basic-details .details-header .item-price{
position:relative;
font-size:24px;
font-weight:400;
color:#222222;
line-height:24px;
letter-spacing:1px;
margin-bottom:20px;
}
.product-details .basic-details .text{
position:relative;
color:#666666;
font-size:14px;
line-height:1.8em;
margin-bottom:40px;
}
.product-details .basic-details .availablity{
position:relative;
float:left;
padding-right:40px;
line-height:32px;
margin-bottom:27px;
font-size:13px;
font-weight:500;
letter-spacing:1px;
color:#777777;
}
.product-details .basic-details .availablity strong{
font-size:14px;
letter-spacing:2px;
color:#11da61;
font-weight:600;
text-transform:uppercase;
}
.product-details .basic-details .item-quantity{
position:relative;
float:left;
width:120px;
margin-bottom:15px;
margin-right:20px;
border:1px solid #eae8e8;
}
.product-details .basic-details .btns-box{
position:relative;
}
.product-details .basic-details .quantity-spinner,
.cart-section input.quantity-spinner{
line-height:24px;
padding:10px 15px !important;
height:54px !important;
box-shadow:none !important;	
}
.product-details .basic-details .bootstrap-touchspin .input-group-btn-vertical > .btn,
.cart-section .bootstrap-touchspin .input-group-btn-vertical > .btn{
padding:13px 10px;
background:#f4f5f6;	
}
.product-details .bootstrap-touchspin .input-group-btn-vertical i,
.cart-section .bootstrap-touchspin .input-group-btn-vertical i{
top:6px;	
}
.shop-list{
position:relative;
margin-top:20px;
}
.shop-list li{
position:relative;
color:#666666;
font-size:14px;
margin-bottom:10px;
}
.shop-list li strong{
color:#222222;
font-size:16px;
margin-right:5px;
text-transform:uppercase;
}
.shop-list li a{
position:relative;
color:#0eaf96;
font-size:14px;
font-weight:700;
margin-top:20px;
display:inline-block;
} .shop-page .prod-tabs{
position:relative;	
}
.shop-page .prod-tabs .tab-btns{
position:relative;
text-align:center;
margin-bottom:40px;
}
.shop-page .prod-tabs .tab-btns .tab-btn{
position:relative;
margin-right:8px;
font-size:16px;
background:none;
color:#222222;
border:1px solid #222222;
text-transform:capitalize;
font-weight:700;
line-height:24px;
cursor:pointer;
display:inline-block;
padding:12px 40px 10px;
transition:all 500ms ease;
}
.shop-page .prod-tabs .tab-btns .tab-btn:hover,
.shop-page .prod-tabs .tab-btns .tab-btn.active-btn{
background:#f9f3e9;
border-color:#f9f3e9;
}
.shop-page .prod-tabs .tabs-content{
position:relative;	
}
.shop-page .prod-tabs .tabs-content .tab{
position:relative;
display:none;
}
.shop-page .prod-tabs .tabs-content .tab.active-tab{
display:block;	
}
.shop-page .prod-tabs .tabs-content .tab p{
font-size:14px;
line-height:2em;
color:#666666;
margin-bottom:20px;
}
.shop-page .prod-tabs .tabs-content .tab p:last-child{
margin-bottom:0px;
}
.shop-page .prod-tabs .tabs-content .tab h3,
.shop-page .prod-tabs .tabs-content .tab h4,
.shop-page .prod-tabs .tabs-content .tab h5,
.shop-page .prod-tabs .tabs-content .tab h6{
margin-bottom:15px;	
}
.shop-page .prod-tabs .tabs-content .tab h4{
font-size:16px;
font-weight:700;
text-transform:uppercase;
color:#222222;
}
.shop-page .prod-tabs .reviews-container{
position:relative;
padding-bottom:1px;	
}
.shop-page .prod-tabs .reviews-container .review-box{
position:relative;
margin-bottom:30px;
padding-left:120px;
min-height:130px;
padding-bottom:30px;
border-bottom:1px solid #f0f0f0;
}
.shop-page .prod-tabs .reviews-container .review-box:last-child{
margin-bottom:0px;
padding-bottom:0px;
border:none;
}
.shop-page .prod-tabs .reviews-container .rev-thumb{
position:absolute;
left:0px;
top:5px;
width:100px;
height:100px;
background:#ffffff;
border-radius:3px;
margin-bottom:20px;
}
.shop-page .prod-tabs .reviews-container .rev-thumb img{
display:block;
width:100%;
border-radius:3px;
}
.shop-page .prod-tabs .reviews-container .rev-content{
position:relative;
background:#ffffff;	
}
.shop-page .prod-tabs .reviews-container .rev-header{
position:relative;
}
.shop-page .prod-tabs .reviews-container .rev-header h4{
float:left;
line-height:30px;
font-size:16px;
color:#222222;
text-transform:uppercase;
font-weight:700;
margin-bottom:10px;	
}
.shop-page .prod-tabs .reviews-container .rev-header .rating{
position:relative;
float:left;
margin-left:40px;
color:#0eaf96;
line-height:30px;
font-size:14px;
}
.shop-page .prod-tabs .reviews-container .rev-header .rating .fa{
margin-right:3px;
}
.shop-page .prod-tabs .reviews-container .rev-header .time{
position:relative;
float:right;
color:#000000;
line-height:30px;
font-size:14px;
}
.shop-page .prod-tabs .reviews-container .rev-option{
font-size:14px;
color:#9e9e9e;
}
.shop-page .prod-tabs .reviews-container .rev-option a{
font-size:14px;
text-transform:uppercase;
font-weight:700;	
}
.shop-page .prod-tabs .reviews-container .rev-text{
font-size:14px;
color:#9e9e9e;
line-height:1.8em;
margin-bottom:15px;
} .shop-page .prod-tabs .add-review{
position:relative;
margin:30px 0px 20px;
font-size:14px;
}
.shop-page .prod-tabs .add-review h2{
color:#000000;
}
.shop-page .prod-tabs .add-review .rating{
position:relative;
padding-top:8px;	
}
.shop-page .prod-tabs .add-review .rating .rate-box{
position:relative;
display:inline-block;
margin-right:10px;
font-size:14px;
color:#555555;	
}
.shop-page .prod-tabs .add-review .rating .rate-box:hover,
.shop-page .prod-tabs .add-review .rating .rate-box:focus,
.shop-page .prod-tabs .add-review .rating .rate-box:active{
color:#0eaf96;
}
.shop-page .prod-tabs .add-review label{
position:relative;
display:block;
font-size:14px;
margin-bottom:5px;
font-weight:400;
color:#303030;	
}
.shop-page .prod-tabs .add-review h3{
margin-bottom:20px;	
}
.shop-page .prod-tabs .add-review .form-group{
position:relative;
margin-bottom:20px;	
}
.shop-page .prod-tabs .add-review .form-group input[type="text"],
.shop-page .prod-tabs .add-review .form-group input[type="password"],
.shop-page .prod-tabs .add-review .form-group input[type="tel"],
.shop-page .prod-tabs .add-review .form-group input[type="email"],
.shop-page .prod-tabs .add-review .form-group select{
position:relative;
display:block;
width:100%;
line-height:22px;
padding:9px 15px;
color:#222222;
border:1px solid #e0e0e0;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
}
.shop-page .prod-tabs .add-review .form-group textarea{
position:relative;
display:block;
width:100%;
line-height:22px;
padding:8px 15px;
color:#222222;
border:1px solid #e0e0e0;
height:150px;
resize:none;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
}
.shop-page .prod-tabs .add-review button{
padding:8px 35px;
}
.related-products{
position:relative;
} .cart-section{
position:relative;
padding:0px 0px 120px;
}
.cart-section .cart-outer{
position:relative;	
}
.cart-section .table-outer{
position:relative;
width:100%;
overflow-x:	auto;
}
.cart-section .cart-table{
width:100%;
min-width:900px;
border:1px solid #eeeeee;
}
.cart-section .cart-table tbody tr{
border-bottom:1px solid #eeeeee;
}
.cart-table .cart-header{
position:relative;
width:100%;
text-transform:uppercase;
font-size:16px;
border-radius:0px;
background:#f9f3e9;
color:#1f1f1f;
}
.cart-table thead tr th{
line-height:24px;
padding:20px 15px;
min-width:120px;
font-weight:700;
color:#222222;
font-size:16px;
text-transform:capitalize;
}
.cart-table thead tr th.prod-column{
text-align:left;
padding-left:40px;	
}
.cart-table tbody tr td{
line-height:24px;
padding:40px 40px 40px;
min-width:100px;
}
.cart-table tbody tr .qty{
width:90px;
padding-right:40px;
padding-left:10px;
}
.cart-table tbody tr .qty .quantity-spinner{
background:#f5f5f5;	
}
.cart-table tbody tr .prod-column .column-box{
position:relative;
min-height:100px;
padding-left:130px;
padding-top:40px;
text-align:left;
}
.column.default-column .cart-table tbody tr .qty{
width:110px;
padding-right:20px;	
}
.cart-table tbody tr .prod-column .column-box .prod-thumb{
position:absolute;
width:100px;
left:0px;
top:0px;	
}
.cart-table tbody tr .prod-column .column-box .prod-thumb img{
display:block;
max-width:100%;
}
.cart-table tbody tr .prod-column .column-box h3{
font-size:16px;
color:#222222;
font-weight:500;
margin-bottom:5px;	
}
.cart-table tbody tr .sub-total{
font-weight:400;
color:#222222;	
font-size:18px;
padding-left:20px;
}
.cart-table tbody tr .remove-btn{
position:relative;
font-size:18px;
color:#0eaf96;
display:inline-block;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.cart-table tbody tr .remove-btn .fa{
position:relative;
top:2px;
font-size:10px;
line-height:14px;
width:14px;
height:14px;
margin-right:8px;
background:#f0f0f0;
color:#ffffff;
text-align:center;
overflow:hidden;
text-indent:100px;
}
.cart-table tbody tr .remove{
}
.cart-table tbody tr .remove-btn:hover{
}
.cart-table tbody tr .remove-btn:hover .fa{
text-indent:0px;
background:#fa9928;
}
.cart-table tbody tr td{
vertical-align:middle;	
}
.cart-table tbody tr td.price{
font-size:18px;
font-weight:400;
color:#222222;
padding-left:10px;
}
.cart-table tbody tr td .quantity-spinner{
padding:5px 0px 5px 20px;
line-height:24px;
height:34px;
display:block;
width:100%;
position:relative;
}
.cart-table tbody .available-info{
position:relative;
padding-left:50px;
color: #727272;
font-size: 16px;
}
.cart-table tbody .available-info .icon{
position:absolute;
left:0px;
top:5px;
width:40px;
height:40px;
line-height:40px;
text-align:center;
font-size:18px;
color:#ffffff;
background:#3e4494;
border-radius:50%;
}
.cart-section .coupon-outer{
position:relative;
margin:80px 0px 70px ;
}
.cart-section .coupon-outer .cart-btn{
font-size:14px;
padding:10px 43px;
font-weight:400;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.cart-section .apply-coupon{
position:relative;
}
.cart-section .apply-coupon .form-group{
position:relative;
float:left;
margin-right:20px;	
}
.cart-section .apply-coupon .form-group .coupon-btn{
padding:11px 28px;
line-height:30px;
}
.cart-section .apply-coupon .form-group input[type="text"]{
display:block;
line-height:26px;
padding:12px 0px;
border-bottom:2px solid #222222;
height:54px;
width:230px;
background:none;
font-size:14px;
}
.cart-section .estimate-form{
position:relative;
}
.cart-section .sec-title{
margin-bottom:25px;
}
.cart-section .sec-title h2{
font-size:26px;
color:#222222;
}
.cart-section .estimate-form .row{
margin-left:-7px;
margin-right:-7px;	
}
.cart-section .estimate-form .row .form-group{
padding:0px 7px !important;
margin-bottom:30px;
}
.cart-section .cart-note{
position:relative;
margin-bottom:50px;
padding:16px 20px;
text-align:center;
border:1px dashed #b2dd4c;
background:#f4f4f4;
line-height:1.7em;
}
.product-details .basic-details .item-quantity input[type="text"],
.cart-table tbody tr .qty input[type="text"]{
position:relative;
line-height:46px;
height:46px;
background:#f4f4f4;	
}
.bootstrap-touchspin .input-group-btn-vertical > .btn{
height:24px;
background:#e9e9e9;	
}
.bootstrap-touchspin .input-group-btn-vertical i{
left:6px;
top:6px;	
}
.cart-total-box{
position:relative;
max-width:490px;
margin-bottom:40px;
padding:40px 40px 30px;
background-color:#f4f4f4;
}
.cart-total-box h2{
position:relative;
color:#222222;
font-size:30px;
font-weight:700;
line-height:1.4em;
margin-bottom:25px;
}
.totals-table{
position:relative;
}
.totals-table li{
position:relative;
color:#222222;
font-weight:500;
font-size:18px;
margin-bottom:8px;
}
.totals-table li .col{
float:right;
}
.totals-table li .col-title{
font-weight:600;
float:left;
}
.totals-table li.total{
margin-top:25px;
padding-top:30px;
border-top:1px solid #cccccc;
}
.checkout-btn{
color:#ffffff;
font-size:14px;
font-weight:400;
padding:12px 43px;
text-transform:uppercase;
background-color:#0eaf96;
} .checkout-page{
position:relative;
padding:0px 0px 80px;
}
.checkout-page .default-links{
position:relative;
margin-bottom:40px;	
}
.checkout-page .default-links li{
margin-bottom:15px;
line-height:24px;
padding:18px 28px;
background:#f9f9f9;
color:#797979;
font-size:17px;
font-weight:600;
border:1px solid #ebebeb;
}
.checkout-page .default-links li a{
color:#0eaf96;
text-decoration:underline;
}
.shop-form .billing-inner{
position:relative;
padding-right:100px;
}
.shop-form .sec-title h2{
font-size:26px;
top:0px;
}
.shop-form .form-group{
position:relative;
margin-bottom:20px;	
}
.billing-details .shop-form .sec-title{
margin-bottom:20px;	
}
.billing-details .shop-form .form-group.sec-title{
margin-bottom:10px;
padding-bottom:30px;
margin-top:20px;
}
.shop-form .form-group .field-label{
display:block;
line-height:24px;
margin-bottom:8px;
color:#797979;	
font-size:15px;
font-weight:500;
text-transform:capitalize;
}
.shop-form .form-group .field-label sup{
position:relative;
top:0px;
color:#797979;	
font-size:16px;
}
.shop-form input[type="text"],
.shop-form input[type="email"],
.shop-form input[type="password"],
.shop-form input[type="tel"],
.shop-form input[type="number"],
.shop-form input[type="url"],
.shop-form select,
.shop-form textarea{
position:relative;
display:block;
width:100%;
background:#ffffff;
line-height:16px;
padding:10px 15px;
height:38px;
border:1px solid #eeeeee;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
}
.shop-form input.address-two{
margin-top:12px;
}
.shop-form input::-webkit-input-placeholder,
.shop-form select::-webkit-input-placeholder,
.shop-form textarea-webkit-input-placeholder{
color:#c6c6c6;
}
.shop-form select{
-webkit-appearance:none;
-ms-appearance:none;
-moz-appearance:none;
-o-appearance:none;
background:#ffffff url(//aq-technologies.com/wp-content/themes/saasweb/css/images/icons/icon-select.png) right center no-repeat;
cursor:pointer;
}
.shop-form select option{
text-indent:15px;	
}
.shop-form textarea{
resize:none;
height:100px !important;
overflow:hidden;	
}
.shop-form input:focus,
.shop-form select:focus,
.shop-form textarea:focus{
border-color:#0eaf96;	
} .shop-order-box{
position:relative;
padding:20px 28px 50px;
border:1px solid #d9d9d9;
background-color:#fdfdfd;
}
.shop-order-box .order-list{
position:relative;
}
.shop-order-box .order-list li{
position:relative;
color:#797979;
font-size:15px;
font-weight:500;
margin-bottom:12px;
text-transform:uppercase;
}
.shop-order-box .order-list li span{
float:right;
width:35%;
text-align:left;
font-size:17px;
text-transform:capitalize;
}
.shop-order-box .order-list li span.dark{
color:#242424;
}
.shop-order-box .order-list li.total{
padding:8px 0px;
border-top:1px solid #e2e2e2;
border-bottom:1px solid #e2e2e2;
}
.payment-options{
position:relative;
margin-top:20px;
margin-bottom:20px;	
}
.checkout-page .payment-options li{
position:relative;
margin-bottom:15px;	
}
.checkout-page .payment-options li .radio-option{
position:relative;		
}
.checkout-page .payment-options li .radio-option label{
position:relative;
display:block;
padding-left:30px;
font-weight:600 !important;
text-transform:capitalize;
letter-spacing:1px;
color:#797979;
cursor:pointer;
font-size:15px;
}
.checkout-page .payment-options li .radio-option label strong{
font-weight:500;
display: inline-block;
color:#797979;
font-size:15px;
}
.checkout-page .payment-options li .radio-option input[type="radio"]{
position:absolute;
left:0px;
top:3px;	
}
.checkout-page .payment-options li .radio-option #payment-3{
top:9px;
}
.checkout-page .payment-options li .what-paypall{
font-size:13px;
font-weight:500;
margin-left:15px;
color:#4349d9;
}
.checkout-page .payment-options li .radio-option label .small-text{
position:relative;
display:none;
padding:18px 26px;
letter-spacing:0px;
text-transform:none;
font-weight:normal;
font-size:15px;
color:#8e8d8d;
border-radius:4px;
line-height:20px;
line-height:1.8em;
margin-top:20px;
margin-left:-30px;
background-color:#ececec;
}
.checkout-page .payment-options li .radio-option label .small-text:before{
position:absolute;
content:'';
left:24px;
top:-10px;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 15px solid #ececec;
}
.checkout-page .payment-options li .radio-option input[type="radio"]:checked + label .small-text{
display: block;
}
.checkout-page .payment-options li .radio-option label img{
position:relative;
top:-3px;
display:inline-block;
max-width:100%;
padding-left:30px;	
}
.checkout-page .payment-options li .radio-option label img{
position:relative;
display:inline-block;
max-width:100%;
padding-left:30px;	
}
.shop-order-box .place-order .theme-btn{
border-radius:50px;
font-size:16px;
padding:6px 30px;
text-transform:capitalize;
}
.popup-container{
margin-top:100px;
max-width:700px;
width:100%;
}
#login-box .close {
display: block;
float:none;
opacity: 1;
text-shadow:none;
width:40px;
line-height: 40px;
color:#000000;
font-size: 20px;
text-align: center;
position: absolute;
top:10px;
right:10px;
z-index:10;
}
.modal-backdrop{
opacity:1 !important;
background-color:rgba(0,0,0,0.85);
}
.login-form-box{
position:relative;
}
.login-form-box .inner-container{
position:relative;
padding:85px 90px 60px;
background-color:#f4f4f4;
}
.login-form-box .inner-container h2{
position:relative;
color:#222222;
font-size:24px;
font-weight:400;
margin-bottom:50px;
}
.login-form-box .inner-container .register{
position:relative;
color:#222222;
font-size:18px;
font-weight:500;
margin-top:20px;
}
.login-form-box .inner-container .register a{
color:#0eaf96;
}
.login-form{
position:relative;	
}
.login-form .form-group{
position:relative;
margin-bottom:30px;
font-size:16px;
color:#848484;
}
.login-form .form-group .check-box label{
position:relative;
padding:0px;
font-size:14px;
}
.login-form .form-group .field-label{
position:relative;
display:block;
color:#272727;
text-transform:capitalize;
font-size:16px;
margin-bottom:7px;
font-weight:400;
}
.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"],
.login-form input[type="tel"],
.login-form input[type="number"],
.login-form input[type="url"],
.login-form select,
.login-form textarea{
position:relative;
display:block;
width:100%;
background:none;
line-height:30px;
padding:20px 10px;
height:60px;
border-bottom:1px solid #dddddd;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
}
.login-form .form-group .theme-btn{
margin-top:10px;
padding:10px 62px 10px;
}
.login-form .form-group .forgot{
position:relative;
margin-top:25px;
color:#666666;
font-size:14px;
margin-left:30px;
display:inline-block;
}
.product-details .basic-details .details-header .rating span.count, .woocommerce-review-link {
color: #0eaf96;
}
.sp-product-details{
padding-top: 120px;
}
.shop-section{
padding-top: 0px!important;
}
.select2-hidden-accessible {
width: 100% !important;
}
span.woocommerce-input-wrapper {
width: 100%;
}
.select2-container .select2-selection--single {
height: 50px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
line-height: 50px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
height: 47px;
right: 10px;
}
.shop-item .inner-box .lower-content {
background: #403ab4!important;
}
.shop-section .shop-item .sp-section .price{
margin-bottom: 0px!important;
}
.shop-item .inner-box .lower-content:before  {
position: absolute;
left: 10px;
top: 12px;
height: 60px;
width: 45px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/shop.png);
background-repeat: no-repeat;
background-position: center;
content: "";
display: none;
}
.shop-item .inner-box .lower-content {
position: relative;
padding: 25px;
background-color: #403ab4;
border-left: 5px solid #0eaf96;
position: relative;
padding: 25px;
background-color: #fff !important;
border-left: transparent;
position: relative;
display: block;
background: #ffffff;
padding: 17px 0 13px !important;
-webkit-box-shadow: 0px 3px 8px 2px #f9f9f9;
box-shadow: 0px 3px 8px 2px #f9f9f9;
margin-left: 20px;
margin-right: 20px;
margin-top: -30px;
margin-bottom: 15px;
z-index: 99;
}
.sp-product-details div.product p.price {
color: #403ab4!important;
}
.sp-product-details div.product .price ins span {
color: #403ab4!important;
}
.woocommerce .btn-style-one {
position: relative;
display: inline-block;
font-size: 15px;
line-height: 30px;
color: #ffffff;
padding: 10px 30px;
font-weight: 600;
overflow: hidden;
border-radius: 3px;
background-color: #403ab4;
text-transform: uppercase;
}
.single-product.woocommerce .price ins span.woocommerce-Price-amount.amount, .single-product.woocommerce .price ins span.woocommerce-Price-amount.amount .woocommerce-Price-currencySymbol {
font-size: 16px !important;
color: #fff !important;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
-webkit-font-smoothing: antialiased;
}
.woocommerce .lower-content {
padding-top: 0px!important;
}
.woocommerce .lower-content h3 a {
position: relative;
display: block;
font-size: 16px!important;
line-height: 1.2em;
color: #222222;
font-weight: 500!important;
margin-bottom: 10px;
}
.woocommerce .lower-content {
position: relative;
padding: 7px!important;
background-color: #403ab4;
border-left: 5px solid #f8e751;
}
.woocommerce .lower-content h3 a {
margin-top: 15px!important;
}
.product-details .info-column .add-to-cart {
position: relative;
padding: 10px 60px;
line-height: 24px;
color: #fff;
text-align: center;
display: inline-block;
font-size: 16px;
font-weight: 600;
cursor: pointer;
background: #0eaf96;
letter-spacing: 1px;
border: 2px solid #0eaf96;
font-family: 'Poppins', sans-serif;    
border-radius: 0px;
}
.product-details .info-column .add-to-cart:hover {
background: transparent;
color: #0eaf96;
border: 2px solid #0eaf96;
}
.page-numbers li a {
width: 55px;
height: 55px;
line-height: 55px;
display: inline-block;
border-radius: 0px;
border: 1px solid rgba(229, 229, 229, 0.57);
text-align: center;
color: #848484;
font-size: 18px;
transition: all 700ms ease;
}
.page-numbers li{
display: inline-block;
margin: 0 4px;
}
.page-numbers li:hover a{
width: 55px;
height: 55px;
line-height: 55px;
display: inline-block;
border-radius: 0px;
border: 1px solid rgba(229, 229, 229, 0.57);
text-align: center;
color: #848484;
font-size: 18px;
color: #fff;
background: #0eaf96;
}
.page-numbers li span.current {
width: 55px;
height: 55px;
line-height: 55px;
display: inline-block;
border-radius: 0px;
border: 1px solid rgba(229, 229, 229, 0.57);
text-align: center;
color: #848484;
font-size: 18px;
color: #fff;
background: #0eaf96;
transition: all 700ms ease;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
background-color: #0eaf96;
color: #fff;
-webkit-font-smoothing: antialiased;
border-radius: 0px;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
background-color: #ffffff;
color: #0eaf96;
transition: all 700ms ease;
}
.shop-section {
padding-top: 120px;
padding-bottom: 120px;
} .shop-section .items-sorting{
position:relative;
margin-bottom:40px;
padding-bottom:10px;
border-bottom:1px solid #e2e8f0;
}
.shop-section .items-sorting .results-column,
.shop-section .items-sorting .select-column{
margin-bottom:20px;	
}
.shop-section .items-sorting .results-column h4{
font-size:18px;
font-weight:400;
color:#222222;
line-height:24px;
padding:13px 0px;
text-align:right;
}
.shop-section .items-sorting .form-group{
margin-bottom:0px;	
}
.shop-section .items-sorting select{
position:relative;
display:block;
width:100%;
line-height:24px;
padding:9px 15px 9px;
height:50px;
font-size:16px;
border:1px solid #eeeeee;
border-radius: 25px;
cursor:pointer;
-moz-appearance:none;
-webkit-appearance:none;
-ms-appearance:none;
-o-appearance:none;
background:url(//aq-technologies.com/wp-content/themes/saasweb/css/images/icons/icon-select.png) right center no-repeat;
color:#999999;
transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.shop-section .items-sorting select option{
text-indent:15px;	
}
.shop-section .styled-pagination{
margin-top:20px;
}
.shop-section .items-sorting select {
position: relative;
display: block;
width: 100%;
line-height: 24px;
padding: 9px 15px 9px;
height: 50px;
font-size: 16px;
border: 1px solid #eeeeee;
border-radius: 25px;
cursor: pointer;
-moz-appearance: none;
-webkit-appearance: none;
-ms-appearance: none;
-o-appearance: none;
background: url(//aq-technologies.com/wp-content/themes/saasweb/images/icon-select.png) right center no-repeat;
color: #999999;
transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
}
aside.sidebar.default-sidebar {
padding-top: 120px;
}
aside.sidebar.default-sidebar .sidebar-search-box .search-form {
position: relative;
display: block;
margin-bottom: 60px;
}
aside.sidebar.default-sidebar .sidebar-search-box .search-form input[type="text"] {
position: relative;
display: block;
background: #ffffff;
border: 1px solid #8888;
color: #83888d;
font-size: 16px;
font-weight: 400;
height: 60px;
width: 100%;
padding-left: 70px !important;
padding-right: 10px !important;
border-radius: 0px;
transition: all 500ms ease 0s;
}
aside.sidebar.default-sidebar .search-form button {
position: absolute;
top: 0;
left: 0;
bottom: 0;
display: block;
background: transparent;
color: #83888d;
font-size: 14px;
height: 60px;
width: 60px;
border: 0px solid #fec144;
line-height: 60px;
text-align: center;
border-radius: 0px;
transition: all 500ms ease 0s;
margin: 0;
}
aside.sidebar.default-sidebar .search-form button:before {
position: absolute;
top: 20px;
right: 0px;
bottom: 20px;
width: 1px;
background: #d1dce3;
content: "";
}
.related-products {}
.related-products .shop-item .inner-box {}
.related-products .shop-item .inner-box .lower-content {
background: #fff !important;
border-left: 5px solid transparent;
position: relative;
display: block;
overflow: hidden;
border-top: 1px solid #edf2f7;
padding: 0 39px !important;
}
.related-products .shop-item .inner-box .lower-content .sp-heading {
position: relative;
display: block;
border-bottom: 1px solid #edf2f7;
}
.related-products .shop-item .inner-box .lower-content .sp-heading h3 {
position: relative;
display: block;
border-bottom: 1px solid #edf2f7;
padding: 5px 0 5px;
}
.related-products .shop-item .inner-box .lower-content .sp-heading h3 a {
color: #203260;
transition: all 500ms ease;
font-size: 20px !important;
line-height: 26px;
font-weight: 700 !important;
font-family: 'Roboto', sans-serif;
}
.related-products .shop-item .inner-box .lower-content .sp-section {
padding: 10px 0px;
}
.related-products .shop-item .inner-box .lower-content .sp-section ul {}
.related-products .shop-item .inner-box .lower-content .sp-section ul li {}
.related-products .shop-item .inner-box .lower-content .sp-section ul li span {
color: #b8babc;
font-size: 18px !important;
font-weight: 500;
line-height: 20px;
margin: 0;
}
.related-products .shop-item .inner-box .lower-content .sp-section ul li span del {
color: #b8babc;
}
.related-products .shop-item .inner-box .lower-content .sp-section ul li span ins span {
color: #3398fd !important;
}
.related-products .shop-item .inner-box:hover {
-webkit-box-shadow: 0px 3px 8px 1px #f2f2f2;
box-shadow: 0px 3px 8px 1px #f2f2f2;
transition: all 700ms ease;
}
.related-products .shop-item .inner-box {
transition: all 700ms ease;
position: relative;
display: block; margin-bottom: 30px;
overflow: hidden;
}
.related-products .shop-item .inner-box .image img {
width: 100%;
display: inline-block;
}
.related-products .shop-item .inner-box .image {
background-color: transparent;
overflow: hidden;
}
.related-products .shop-item .inner-box:hover .image img {
transition: all 700ms ease;
transform: scale(1.1);
}
.related-products .shop-item .inner-box .image img {
transition: all 700ms ease;
transform: scale(1.0);
}
.products.row.clearfix .row {
margin: 0px 0px;
}
.woocommerce .related-products .sec-title {
margin-bottom: 0;
padding-bottom: 30px;
}
.products.row.clearfix .row {
width: 100%;
}
.shop-section .shop-item .inner-box {
overflow: hidden;
}
.shop-section .shop-item .inner-box:hover .image img {
transform: scale(1.1);
transition: all 700ms ease;
}
.shop-section .shop-item .inner-box:hover .image img {
transform: scale(1.1);
transition: all 700ms ease;
}
.shop-item .inner-box .image img { display: inline-block;
transition: all 700ms ease;
}
.related-products {
width: 100%;
}button,
input,
textarea {
box-shadow: none;
outline: 0
}
.our-project .project-item .hover-valina .zoom:hover .svg path,
.project-with-sidebar .project-item .img-box a .svg:hover path,
.theme-Ecommerce-menu .right-content .user-profile-action .dropdown-menu ul li a:hover .icon path {
fill: #ff3612
}
.ctn-preloader {
align-items: center;
-webkit-align-items: center;
display: flex;
display: -ms-flexbox;
height: 100%;
justify-content: center;
-webkit-justify-content: center;
position: fixed;
left: 0;
top: 0;
width: 100%;
z-index: 100;
background: #fff
}
.ctn-preloader .animation-preloader {
position: absolute;
z-index: 100
}
.ctn-preloader .animation-preloader .spinner {
animation: spinner 1s infinite linear;
border-radius: 50%;
border: 3px solid rgba(255, 57, 70, .15);
border-top-color: #ff3946;
height: 170px;
margin: 0 auto 45px;
width: 170px
}
.ctn-preloader .animation-preloader .txt-loading {
text-align: center;
user-select: none
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
animation: letters-loading 4s infinite;
color: #ff3946;
content: attr(data-text-preloader);
left: 0;
opacity: 0;
top: 0;
line-height: 70px;
position: absolute
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading {
font-family: Lato, sans-serif;
font-weight: 700;
letter-spacing: 15px;
display: inline-block;
color: rgba(255, 57, 70, .15);
position: relative;
font-size: 70px;
line-height: 70px
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
animation-delay: .2s
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
animation-delay: .4s
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
animation-delay: .6s
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
animation-delay: .8s
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
animation-delay: 1s
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
animation-delay: 1.2s
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
animation-delay: 1.4s
}
.ctn-preloader .loader-section {
background-color: #fff;
height: 100%;
position: fixed;
top: 0;
width: calc(50% + 1px)
}
.loaded .animation-preloader {
opacity: 0;
transition: .3s ease-out
}
@keyframes spinner {
to {
transform: rotateZ(360deg)
}
}
@keyframes letters-loading {
0%,
100%,
75% {
opacity: 0;
transform: rotateY(-90deg)
}
25%,
50% {
opacity: 1;
transform: rotateY(0)
}
}
@media screen and (max-width:767px) {
.ctn-preloader .animation-preloader .spinner {
height: 8em;
width: 8em
}
}
@media screen and (max-width:500px) {
.ctn-preloader .animation-preloader .spinner {
height: 7em;
width: 7em
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading {
font-size: 40px;
letter-spacing: 10px
}
}
.scroll-top {
width: 25px;
height: 25px;
position: fixed;
bottom: 10px;
right: 5px;
z-index: 99;
text-align: center;
color: #fff;
font-size: 18px;
display: none;
cursor: pointer;
border-radius: 3px
}
.scroll-top:after,
body .theme-button-one:before {
z-index: -1;
content: ''
}
.scroll-top:after {
position: absolute;
top: 100%;
left: 5%;
height: 10px;
width: 90%;
opacity: 1;
background: radial-gradient(ellipse at center, rgba(0, 0, 0, .25) 0, rgba(0, 0, 0, 0) 80%)
} #theme-banner-one .main-wrapper .main-title,
#theme-banner-two .main-title,
body .dark-button-one,
body .theme-button-one {
font-family: CircularStdmed
}
.main-page-wrapper {
overflow-x: hidden
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
margin: 0;
padding: 0
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
color: #233D63;
font-weight: 400
}
.h1,
h1 {
font-size: 60px
}
.h2,
h2 {
font-size: 48px
}
.h3,
h3 {
font-size: 40px
}
.h4,
h4 {
font-size: 30px
}
.h5,
h5 {
font-size: 22px
}
.h6,
h6 {
font-size: 18px
}
p {
line-height: 28px
}
ul {
list-style-type: none
}
body a {
text-decoration: none;
display: inline-block
}
button, img { }
a:focus,
a:hover,
a:visited {
text-decoration: none;
outline: 0
}
img {
max-width: 100%
}
button {
border: none;
padding: 0;
cursor: pointer;
background: 0 0
}
body .solid-button-one,
body .theme-button-one {
border-width: 2px;
border-style: solid;
text-align: center
}
button:focus {
outline: 0
}
input,
textarea {
transition: all .3s ease-in-out
}
.full-width-container {
padding-left: 60px;
padding-right: 60px
}
.demo-container-900 {
max-width: 900px;
margin: 0 auto
}
.demo-container-1100 {
max-width: 1100px;
margin: 0 auto
}
.p0 {
padding: 0!important
}
.pt-15 {
padding-top: 15px
}
.pt-50 {
padding-top: 50px
}
.pt-90 {
padding-top: 90px
}
.pt-150 {
padding-top: 150px
}
.pb-30 {
padding-bottom: 30px
}
.pb-70 {
padding-bottom: 70px
}
.pb-100 {
padding-bottom: 100px
}
.pb-150 {
padding-bottom: 150px
}
.pb-200 {
padding-bottom: 200px
}
.mt-95 {
margin-top: 95px
}
.mt-150 {
margin-top: 150px
}
.mt-200 {
margin-top: 200px
}
.mb-80 {
margin-bottom: 80px
}
.mb-150 {
margin-bottom: 150px
}
.mb-170 {
margin-bottom: 170px
}
.mb-200 {
margin-bottom: 200px
}
.m0 {
margin: 0!important
}
.row.gutter-80 {
margin: 0 -40px
}
.row.gutter-80 [class*=col-] {
padding: 0 40px
}
.row.gutter-50 {
margin: 0 -25px
}
.row.gutter-50 [class*=col-] {
padding: 0 25px
}
body .solid-button-one {
min-width: 188px;
line-height: 48px;
border-radius: 30px;
padding: 0 35px;
color: #fff;
text-transform: capitalize;
box-shadow: 0 13px 27px 0 rgba(163, 48, 53, .25)
}
body .solid-button-one:hover {
background: #fff;
box-shadow: none
}
body .solid-button-one .icon-right {
vertical-align: -1px;
margin-left: 5px
}
body .solid-button-one .icon-left {
vertical-align: -1px;
margin-right: 5px
}
body .video-button-one {
font-size: 18px;
line-height: 55px;
color: #57667E
}
body .video-button-one i {
font-size: 50px;
color: #D8D8D8;
vertical-align: middle
}
body .video-button-one .icon-right {
margin-left: 10px
}
body .video-button-one .icon-left {
margin-right: 10px
}
body .theme-button-one {
width: 220px;
line-height: 56px;
font-size: 19px;
border-radius: 30px;
position: relative
}
body .theme-button-one:before {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
border-radius: 30px;
transform: scale(0, 1)
}
body .theme-button-one:hover {
color: #fff;
border-color: #fff
}
body .theme-button-one:hover:before {
transform: scale(1, 1)
}
body .theme-button-two {
text-transform: capitalize;
text-align: center;
font-size: 18px;
color: #fff;
line-height: 50px;
padding: 0 40px;
position: relative;
z-index: 1
}
body .line-button-one,
body .line-button-two {
line-height: 48px;
padding: 0 35px;
min-width: 180px;
text-transform: capitalize;
text-align: center
}
body .theme-button-two:before {
content: '';
position: absolute;
top: 4px;
right: 4px;
bottom: 4px;
left: 4px;
border: 1px solid #fff;
opacity: 0
}
body .theme-button-two:hover:before {
opacity: 1
}
body .theme-button-two .icon-right {
vertical-align: -1px;
margin-left: 5px
}
body .theme-button-two .icon-left {
vertical-align: -1px;
margin-right: 5px
}
body .line-button-one {
border-style: solid;
border-width: 2px;
border-radius: 30px
}
body .line-button-one:hover {
box-shadow: 0 13px 27px 0 rgba(163, 48, 53, .25);
color: #fff
}
body .line-button-two {
border: 1px solid #E0E9EF;
border-radius: 25px;
font-size: 18px;
color: #233D63
}
.agn-our-pricing .table-wrapper .pr-column:hover .line-button-two,
body .line-button-two:hover {
color: #fff;
box-shadow: 0 13px 28px 0 rgba(163, 48, 53, .25)
}
body .white-shdw-button {
text-transform: capitalize;
line-height: 55px;
display: block;
text-align: center;
font-size: 18px;
box-shadow: 0 10px 25px 0 rgba(123, 147, 171, .15);
border-radius: 3px;
padding: 0 33px;
background: #fff
}
body .white-shdw-button .icon {
font-size: 25px;
vertical-align: middle;
margin-left: 10px
}
body .white-shdw-button:hover {
color: #fff;
box-shadow: 0 13px 28px 0 rgba(163, 48, 53, .25)
}
body .dark-button-one {
line-height: 50px;
padding: 0 40px;
font-size: 16px;
color: #fff;
text-transform: uppercase;
background: #3b3b3b
}
#contact-form .form-group .help-block,
#eCommerce-carousel .color-tab ul li a,
#eCommerce-carousel .inner-item-wrapper .button-group .details-info-button,
#eCommerce-carousel .inner-item-wrapper .button-group .shop-now,
#isotop-gallery-wrapper .isotop-item .hover-jojo,
#isotop-gallery-wrapper .isotop-item .hover-jojo ul li,
#isotop-gallery-wrapper .isotop-item .hover-jojo ul li a,
#theme-banner-four .main-wrapper .button-group .more-button,
#theme-banner-two .main-wrapper .button-group .contact-button,
#theme-banner-two .main-wrapper .button-group .more-button,
.about-me-portfo .inner-content .button-group li a,
.agn-our-gallery .main-wrapper .img-box .hover-content,
.agn-our-gallery .main-wrapper .view-gallery,
.agn-what-we-do .single-block .more-button,
.blog-details .post-tag-area .share-icon li a,
.blog-details .post-tag-area .tags li a,
.blog-details .user-comment-area .single-comment .reply,
.blog-details-fg .blog-fg-data .video-banner-blog .video-button,
.btn,
.cart-list-form .table .product-info .product-name,
.cart-list-form .table .remove-product,
.checkout-form .checkbox-list li label:before,
.checkout-toggle-area p button,
.contact-address-two .address-block a,
.contact-us-section .contact-info ul li a,
.dark-button-one,
.eCommerce-hero-section .carousel-indicators li,
.eCommerce-hero-section .social-share li a,
.eCommerce-side-menu .main-menu-list>ul .sub-menu a,
.eCommerce-side-menu .main-menu-list>ul>li>a,
.faq-page .faq-search-form button,
.faq-page .submit-faq button,
.faq-tab-wrapper-four .faq-panel .panel .panel-heading .panel-title a i,
.form-style-three .send-button,
.gallery-sidebar .sidebar-icon ul li a,
.gallery-sidebar .sidebar-list li a,
.isotop-menu-wrapper li,
.nav-tabs .nav-link,
.navbar-nav .nav-item .nav-link,
.our-blog .img-holder .video-button,
.our-blog .post-data .date,
.our-blog .post-data .read-more,
.our-feature-app .text-wrapper .explore-button,
.our-feature-sass .down-arrow,
.our-feature-sass .single-feature-block .text-box .read-more,
.our-project .project-item .hover-valina,
.our-project-portfo .text-content .gallery-button,
.our-service .service-block .read-more,
.our-service-app .main-content .down-arrow,
.our-service-app .main-content .more-button,
.our-service-portfo .service-block .read-more,
.our-service-sass .service-block .detail-button,
.our-service-sass .service-block .icon-s,
.our-service-sass .service-block p,
.our-service-seo .single-block .more-button,
.our-service-seo .single-block p,
.our-team .single-team-member .hover-content,
.our-team .single-team-member .hover-content ul li a,
.our-team .single-team-member .info-meta,
.owl-theme .owl-nav [class*=owl-],
.page-breadcrumbs li a,
.panel .panel-heading .panel-title a:before,
.pd-footer .theme-pager,
.pd-footer .theme-pager span,
.portfo-footer .copyright-text .social-icon li a,
.portfo-footer form .input-group label,
.portfo-footer form button,
.product-details-modal .main-bg-wrapper .close-button,
.product-details-modal .main-bg-wrapper .next,
.product-details-modal .main-bg-wrapper .prev,
.product-showcase .single-product-case,
.product-showcase .single-product-case .info .cart-button span,
.product-showcase .single-product-case .info .cart-button:after,
.product-showcase .single-product-case .info .cart-button:before,
.product-showcase .single-product-case .info .name,
.project-details .share-icon li a,
.project-minimal-style .share-icon li a,
.project-with-sidebar .project-item .img-box a,
.sass-contact-banner .subscribe-button,
.sass-faq-section .down-button,
.sass-faq-section .sub-heading a,
.sass-our-pricing .single-pr-table .trial-button,
.sass-our-pricing .single-pr-table .upgrade-button,
.sass-our-pricing .single-pr-table .upgrade-button:before,
.seo-contact-banner .contact-button,
.seo-our-goal .text-wrapper .request-button,
.seo-our-pricing .single-pr-table .pr-footer .plan-button,
.seo-our-pricing .single-pr-table .pr-footer .plan-button:before,
.seo-our-pricing .single-pr-table .pr-footer .trial-button,
.seo-what-we-do .single-block .wrapper,
.service-standard .service-block:before,
.shop-demo-filter .selectize-dropdown .option,
.shop-details .procuct-details .product-info .cart-button,
.shop-details .procuct-details .product-info .wishlist-button,
.shop-details .product-review-tab .nav-tabs li a:before,
.svg path,
.theme-Ecommerce-menu .right-content .cart-action-wrapper .button-group a,
.theme-Ecommerce-menu .right-content .user-profile-action .dropdown-menu ul li a,
.theme-action-banner-two .banner-button,
.theme-footer-four .bottom-footer ul li a,
.theme-footer-four .footer-list ul li a,
.theme-footer-four .social-icon li a,
.theme-footer-one .bottom-footer ul li a,
.theme-footer-one .top-footer .footer-information ul li a,
.theme-footer-one .top-footer .footer-list ul li a,
.theme-footer-three .social-icon li a,
.theme-footer-two ul li a,
.theme-main-menu .header-right-widget,
.theme-menu-one .header-right-widget .call-us a,
.theme-menu-one .header-right-widget .language-switcher .dropdown-menu ul li a,
.theme-menu-one .logo,
.theme-menu-one .navbar-nav .login-button a,
.theme-menu-one.d-align-item .navbar-nav .login-button-two a,
.theme-menu-three .header-right-widget .social-icon li a,
.theme-menu-two .logo,
.theme-menu-two .quote-button,
.theme-pagination-one ul li a,
.theme-sidebar-widget .color-filter li a,
.theme-sidebar-widget .keywords-tag li a,
.theme-sidebar-widget .list-item li .sub-menu a,
.theme-sidebar-widget .list-item li a,
.theme-sidebar-widget .sidebar-popular-product .info a,
.theme-sidebar-widget .sidebar-search button,
.theme-sidebar-widget .size-filter li a,
.tran3s,
body .line-button-one,
body .line-button-two,
body .solid-button-one,
body .theme-button-one,
body .theme-button-one:before,
body .theme-button-two:before,
body .video-button-one,
body .video-button-one i,
body .white-shdw-button,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
transition: all .3s ease-in-out
}
.our-project .project-item .hover-valina .zoom,
.our-project .project-item .hover-valina:after,
.our-project .project-item .hover-valina:before,
.our-project .project-item p,
.our-project-portfo #isotop-gallery-wrapper .isotop-item .effect-zoe img,
.our-service-portfo .service-block:after,
.our-service-portfo .service-block:before,
.our-team .img-box img,
.service-standard .service-block .hover-content p,
.theme-main-menu,
.tran4s {
transition: all .4s ease-in-out
}
#contact-form .form-group .help-block li:before,
.agn-counter-section .counter-wrapper .single-counter-box .icon,
.agn-counter-section .counter-wrapper .single-counter-box .number,
.agn-our-pricing .table-wrapper .pr-column .pr-header .price,
.agn-what-we-do .single-block .more-button,
.b-wh-text .page-breadcrumbs li a:hover,
.blog-details .post-tag-area .share-icon li a:hover,
.breadcrumbs-two .page-breadcrumbs li a:hover,
.cart-list-form .table .product-info .product-name:hover,
.cart-list-form .table .remove-product:hover,
.checkout-toggle-area form .lost-passw:hover,
.checkout-toggle-area p button:hover,
.contact-address-two .address-block p a:hover,
.contact-address-two .address-block ul li a:hover,
.eCommerce-hero-section .social-share li a:hover,
.eCommerce-side-menu .main-menu-list>ul .sub-menu a:hover,
.eCommerce-side-menu .main-menu-list>ul>li:hover>a,
.faq-page .faq-search-form button:hover,
.faq-page .submit-faq button:hover,
.faq-tab-wrapper .faq-panel .panel .panel-heading.active-panel .panel-title a:before,
.faq-tab-wrapper-four .faq-panel .panel .panel-heading .panel-title a i,
.faq-tab-wrapper-two .faq-panel .panel .panel-heading.active-panel .panel-title a:before,
.faq-tab-wrapper.faq-page .faq-panel .panel .panel-heading.active-panel .panel-title a:before,
.gallery-sidebar .sidebar-icon ul li a:hover,
.gallery-sidebar .sidebar-list li a:hover,
.gallery-sidebar .sidebar-list li.active a,
.navbar .mega-dropdown-list li a:hover,
.navbar .navbar-toggler,
.our-blog .single-blog-post:hover .post-data .title a,
.our-project .isotop-menu-wrapper li.is-checked,
.pd-footer .theme-pager:hover,
.pd-footer .theme-pager:hover span,
.product-details-modal .main-bg-wrapper .close-button:hover,
.product-showcase .single-product-case:hover .info .name,
.project-minimal-style .owl-theme .owl-nav [class*=owl-]:hover,
.project-with-sidebar .project-item .hover-coco .title a:hover,
.realated-product .owl-theme .owl-nav [class*=owl-]:hover,
.related-project .owl-theme .owl-nav [class*=owl-]:hover,
.sass-faq-section .sub-heading a:hover,
.seo-our-goal .text-wrapper .request-button:hover,
.seo-our-pricing .single-pr-table .pr-footer .trial-button:hover,
.seo-our-pricing .single-pr-table .pr-header .price,
.service-minimal .service-block:hover .read-more,
.service-modren .service-block .service-info:hover .read-more,
.service-standard .service-block .hover-content .read-more:hover,
.shop-details .procuct-details .product-info .cart-button:hover,
.shop-details .procuct-details .product-info .price,
.solid-inner-banner .page-breadcrumbs li a:hover,
.team-classic .wrapper .hover-content li a:hover,
.team-minimal .single-team-member .hover-content ul li a:hover,
.team-standard .single-team-member .hover-content ul li a:hover,
.theme-Ecommerce-menu .right-content .user-profile-action .dropdown-menu ul li a:hover,
.theme-counter-three .single-counter-box .icon,
.theme-counter-three .single-counter-box .number,
.theme-footer-four .bottom-footer ul li a:hover,
.theme-footer-four .footer-list ul li a:hover,
.theme-footer-four .phone,
.theme-footer-four.light-v .bottom-footer ul li a:hover,
.theme-footer-four.light-v .footer-list ul li a:hover,
.theme-footer-one .about-widget .phone,
.theme-footer-one .bottom-footer ul li a:hover,
.theme-footer-one .top-footer .footer-list ul li a:hover,
.theme-footer-three .phone,
.theme-footer-two .social-icon li a:hover,
.theme-list-item li .color-style,
.theme-menu-one .header-right-widget .call-us a,
.theme-menu-one .header-right-widget .language-switcher .dropdown-menu ul li a:hover,
.theme-menu-one .navbar-nav .nav-item.active .nav-link,
.theme-menu-one .navbar-nav .nav-item:hover .nav-link,
.theme-pagination-one ul li a:hover,
.theme-pagination-one ul li.active a,
.theme-sidebar-widget .list-item li .sub-menu a:hover,
.theme-sidebar-widget .list-item li:hover a,
.theme-sidebar-widget .recent-news-item li:hover .rn-title a,
.theme-sidebar-widget .sidebar-popular-product li:hover .info a,
.theme-sidebar-widget .sidebar-search button:hover,
.theme-title-one .upper-title,
body .line-button-one,
body .solid-button-one:hover,
body .theme-button-one,
body .video-button-one:hover,
body .video-button-one:hover i,
body .white-shdw-button {
color: #FF3A46
}
#contact-form .form-group .help-block,
#eCommerce-carousel .inner-item-wrapper .button-group .details-info-button:hover,
#eCommerce-carousel .inner-item-wrapper .button-group .shop-now:hover,
#isotop-gallery-wrapper .isotop-item .hover-jojo ul li a:hover,
#theme-banner-two .main-wrapper .button-group .contact-button:hover,
.agn-home-blog .single-blog-post .flip-box-back,
.agn-our-gallery .main-wrapper .view-gallery:hover,
.agn-our-pricing .table-wrapper .pr-column:hover .line-button-two,
.blog-details .user-comment-area .single-comment .reply:hover,
.blog-details-fg .blog-fg-data .video-banner-blog .video-button:hover,
.btn-white:hover,
.contact-us-section .contact-info ul li a:hover,
.dark-button-one:hover,
.faq-page .submit-faq button,
.faq-tab-wrapper-four .faq-panel .panel .panel-heading.active-panel .panel-title a,
.faq-tab-wrapper-three .faq-panel .panel .panel-heading.active-panel .panel-title a,
.form-style-three .send-button:hover,
.gallery-sidebar .sidebar-title:before,
.ln-home-demo .single-page-demo .new,
.ln-inner-page-demo .inner-wrapper .single-page a .new,
.navbar .dropdown-menu .dropdown-item span,
.navbar .mega-dropdown-list li a span,
.newsletter-section.agn-theme .main-wrapper form button,
.newsletter-section.agn-theme .theme-title-one.upper-bar:before,
.our-blog .single-blog-post:hover .img-holder .video-button,
.product-details-modal .main-bg-wrapper .cart-button,
.product-showcase .single-product-case .info .cart-button span,
.project-details .side-block .block-title:before,
.scroll-top,
.seo-contact-banner .contact-button:hover,
.seo-what-we-do .single-block:nth-child(1) .wrapper .icon-box,
.shop-demo-filter .selectize-dropdown .active,
.shop-demo-filter .selectize-dropdown .option:hover,
.shop-details .procuct-details .product-info .cart-button,
.shop-details .procuct-details .product-info .wishlist-button:hover,
.shop-details .product-review-tab .tab-content .list-item li:before,
.theme-Ecommerce-menu .right-content .cart-action-wrapper .button-group a:hover,
.theme-action-banner-two .banner-button:hover,
.theme-footer-four .social-icon li a:hover,
.theme-footer-one .top-footer .footer-information ul li a:hover,
.theme-footer-three .social-icon li a:hover,
.theme-menu-two .quote-button:hover,
.theme-sidebar-widget .keywords-tag li a:hover,
.theme-sidebar-widget .price-ranger .ui-slider .ui-slider-range,
.theme-sidebar-widget .size-filter li a:hover,
.video-action-banner-one .video-button,
.video-action-banner-one .video-button:before,
body .line-button-one:hover,
body .line-button-two:hover,
body .solid-button-one,
body .theme-button-one:before,
body .theme-button-two,
body .white-shdw-button:hover {
background: #FF3A46
}
#isotop-gallery-wrapper .isotop-item .hover-jojo ul li a:hover,
#theme-banner-two .main-wrapper .button-group .contact-button:hover,
.agn-our-gallery .main-wrapper .view-gallery:hover,
.agn-our-pricing .table-wrapper .pr-column:hover .line-button-two,
.blog-details .user-comment-area .single-comment .reply:hover,
.contact-us-section .contact-info ul li a:hover,
.faq-page .submit-faq button,
.form-style-three .send-button:hover,
.our-project .isotop-menu-wrapper li.is-checked,
.seo-contact-banner .contact-button:hover,
.shop-details .procuct-details .product-info .cart-button,
.shop-details .procuct-details .product-info .wishlist-button:hover,
.theme-Ecommerce-menu .right-content .cart-action-wrapper .button-group a:hover,
.theme-action-banner-two .banner-button:hover,
.theme-footer-four .social-icon li a:hover,
.theme-footer-one .top-footer .footer-information ul li a:hover,
.theme-footer-three .social-icon li a:hover,
.theme-sidebar-widget .keywords-tag li a:hover,
.theme-sidebar-widget .size-filter li a:hover,
body .line-button-one,
body .line-button-two:hover,
body .solid-button-one,
body .theme-button-one {
border-color: #FF3A46
}
.theme-title-one,
.theme-title-two {
position: relative
}
.theme-title-one .upper-title {
font-size: 18px;
text-transform: uppercase;
padding-bottom: 15px
}
.theme-title-one .main-title {
font-size: 48px;
line-height: 60px;
color: #233D63
}
.theme-title-one.title-underline .main-title {
text-decoration: underline
}
.theme-title-one .bottom-title {
font-size: 20px;
color: #546886;
padding-top: 20px
}
.theme-title-one.upper-bar {
padding-top: 22px
}
.theme-title-one.upper-bar:before {
content: '';
width: 50px;
height: 4px;
border-radius: 5px;
background: #ff7300;
position: absolute;
top: 0;
left: 0
}
.theme-title-one.upper-bar.text-center:before {
left: 50%;
margin-left: -25px
}
.theme-title-one .icon-box {
display: inline-block;
margin-bottom: 25px;
position: relative
}
.theme-title-one .icon-box .bg-shape {
transform: rotate(-90deg);
transition: all 1s ease-out
}
.theme-title-one .icon-box.show-pr .bg-shape {
transform: rotate(0)
}
.theme-title-one .icon-box .icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%)
}
.theme-title-two {
position: relative;
font-size: 144px;
color: #fff
}
.theme-title-two:first-letter {
text-transform: uppercase;
font-size: 300px;
text-shadow: 2px -.9px 0 rgba(225, 163, 76, 1);
color: #1d2046;
padding-right: 15px
}
.theme-title-two span {
color: #e1a34c
}
.theme-title-three {
padding: 0 145px
}
.theme-title-three .title {
font-size: 48px;
line-height: 60px;
color: #3e3e3e
}
.theme-title-three p {
font-size: 24px;
line-height: 40px;
color: #798598;
padding-top: 45px
}
.theme-pagination-one ul {
display: inline-block;
margin: 0 -10px
}
.theme-pagination-one ul li {
float: left;
padding: 0 10px
}
.theme-pagination-one ul li a {
font-size: 24px;
color: #4f4f4f;
line-height: 40px
}
.theme-pagination-one ul li a .icon {
font-size: 30px
}
.theme-pagination-one ul li.active a {
cursor: default
}
.theme-main-menu {
position: absolute;
top: 0;
width: 100%;
left: 0;
z-index: 99;
padding: 65px 0 0
}
.theme-menu-one .logo {
position: absolute;
top: -1px;
left: 0;
z-index: 3
}
.theme-menu-one .logo a {
display: block
}
.theme-menu-one .navbar-nav .nav-item .nav-link {
color: #64697A
}
.theme-menu-one .navbar-nav .nav-item:first-child .nav-link {
margin-left: 0
}
.theme-menu-one .header-right-widget {
position: absolute;
top: 52px;
right: 60px;
z-index: 1
}
.theme-menu-one .header-right-widget>ul>li {
display: inline-block;
vertical-align: middle
}
.theme-menu-one .header-right-widget .language-switcher button {
background: 0 0;
height: 55px;
text-transform: uppercase;
color: #233D63;
font-size: 16px;
margin: 0 45px 0 40px
}
.theme-menu-one .header-right-widget .language-switcher .dropdown-menu {
background: #fff
}
.theme-menu-one .header-right-widget .language-switcher .dropdown-menu ul li a {
display: block;
padding: 0 15px;
font-size: 15px;
color: #767a89;
line-height: 32px;
text-transform: uppercase
}
.skiptranslate {
display: none!important
}
.theme-menu-one .header-right-widget .language-switcher .dropdown-menu ul li a:hover {
padding-left: 20px
}
.theme-menu-one .header-right-widget .language-switcher .dropdown-toggle::after {
color: #233D63
}
.theme-menu-one .header-right-widget .call-us {
font-size: 20px;
color: #A2ADBD
}
.theme-menu-one .header-right-widget .call-us a {
font-size: 24px;
margin-left: 15px
}
.theme-menu-one.d-align-item .navbar .dropdown-item:focus,
.theme-menu-one.d-align-item .navbar .dropdown-item:hover,
.theme-menu-one.d-align-item .navbar .dropdown-submenu.dropdown:hover>.dropdown-item,
.theme-menu-one.d-align-item .navbar .mega-dropdown-list li a:hover,
.theme-menu-one.d-align-item .navbar .navbar-toggler,
.theme-menu-one.d-align-item .navbar-nav .nav-item.active .nav-link,
.theme-menu-one.d-align-item .navbar-nav .nav-item:hover .nav-link {
color: #f569f8
}
.theme-menu-one.d-align-item .navbar-nav .nav-item .nav-link {
padding-bottom: 0
}
.theme-menu-one.d-align-item .navbar-nav .nav-item .nav-link:before {
content: '';
width: 0;
height: 2px;
position: absolute;
left: 1px;
bottom: 5px;
z-index: -1;
background: #f569f8;
transition: width .3s ease-out
}
.theme-menu-one.d-align-item .header-right-widget .call-us a {
color: #bebebe;
margin-left: 0
}
.theme-menu-one.d-align-item .header-right-widget .call-us a:hover {
color: #f569f8
}
.theme-menu-one.d-align-item .navbar-nav .nav-item .nav-link:hover:before,
.theme-menu-one.d-align-item .navbar-nav .nav-item.active .nav-link:before {
width: 100%
}
.theme-menu-one.d-align-item #mega-menu-holder {
margin-right: 125px
}
.theme-menu-one.d-align-item .header-right-widget {
right: auto;
left: 15%
}
.theme-menu-one.d-align-item .logo {
top: 45px;
left: 75px;
width: 63px
}
.theme-menu-one.d-align-item .navbar-nav .login-button a {
width: 150px;
line-height: 50px;
background: #fef9da;
border-radius: 3px;
font-size: 18px;
color: #ead24c;
text-align: center;
margin-top: -12px
}
.theme-menu-one.d-align-item .navbar-nav .login-button a:hover {
background: #f569f8;
color: #fff
}
.theme-menu-one.d-align-item .navbar-nav .login-button-two a {
width: 150px;
line-height: 48px;
border: 1px solid #fff;
border-radius: 3px;
font-size: 18px;
color: #fff;
text-align: center;
margin-top: -12px
}
.theme-menu-one.d-align-item .navbar-nav .login-button-two a:hover {
background: #fff;
color: #614ef9
}
.theme-menu-one.d-align-item.color-white .header-right-widget .call-us a,
.theme-menu-one.d-align-item.color-white .header-right-widget .language-switcher .dropdown-toggle::after,
.theme-menu-one.d-align-item.color-white .header-right-widget .language-switcher button,
.theme-menu-one.d-align-item.color-white .navbar-nav .nav-item .nav-link {
color: #fff
}
.theme-menu-one.d-align-item.color-white .navbar-nav .nav-item .nav-link:before {
background: #fff
}
.theme-menu-two {
padding-left: 90px;
padding-right: 90px
}
.theme-menu-two .logo {
position: absolute;
top: 50px;
left: 90px;
width: 63px;
z-index: 2
}
.theme-menu-two .quote-button {
width: 160px;
line-height: 50px;
border-radius: 3px;
background: #fff;
font-size: 18px;
color: #3d3d3d;
text-align: center;
position: absolute;
right: 90px;
top: 55px;
z-index: 1
}
.theme-menu-two .quote-button:hover {
color: #fff
}
.theme-menu-two #mega-menu-holder {
margin-right: 265px
}
.theme-menu-three .logo {
position: absolute;
top: -1px;
left: 0;
z-index: 3
}
.theme-menu-three .logo a {
display: block
}
.theme-menu-three .navbar-nav .nav-item {
padding-bottom: 15px
}
.theme-menu-three .navbar-nav .nav-item .nav-link {
color: #fff;
position: relative;
padding: 0
}
.theme-menu-three .navbar-nav .nav-item .nav-link:before {
content: '';
width: 0;
height: 5px;
position: absolute;
left: 1px;
bottom: 7px;
z-index: -1;
background: #e1a34c;
transition: width .3s ease-out
}
.theme-menu-three .navbar-nav .nav-item .nav-link:hover:before,
.theme-menu-three .navbar-nav .nav-item.active .nav-link:before {
width: 91%
}
.theme-menu-three #mega-menu-holder {
margin-right: 255px
}
.theme-menu-three .header-right-widget {
position: absolute;
top: 57px;
right: 65px;
z-index: 1
}
.theme-menu-three .header-right-widget .social-icon li {
display: inline-block
}
.theme-menu-three .header-right-widget .social-icon li a {
width: 45px;
height: 45px;
text-align: center;
line-height: 45px;
border: 2px solid rgba(255, 255, 255, .8);
font-size: 20px;
color: rgba(255, 255, 255, .8);
border-radius: 50%;
margin-left: 5px
}
.theme-menu-three .header-right-widget .social-icon li a:hover {
color: #fff;
background: #cd9a53;
border-color: #cd9a53
}
.theme-menu-three .navbar .dropdown-item:focus,
.theme-menu-three .navbar .dropdown-item:hover,
.theme-menu-three .navbar .dropdown-submenu.dropdown:hover>.dropdown-item,
.theme-menu-three .navbar .mega-dropdown-list li a:hover {
color: #e1a34c
}
.theme-menu-one.d-align-item.app-menu .navbar .dropdown-item:focus,
.theme-menu-one.d-align-item.app-menu .navbar .dropdown-item:hover,
.theme-menu-one.d-align-item.app-menu .navbar .dropdown-submenu.dropdown:hover>.dropdown-item,
.theme-menu-one.d-align-item.app-menu .navbar .mega-dropdown-list li a:hover {
color: #614ef9
}
@-webkit-keyframes menu_sticky {
0% {
margin-top: -120px;
opacity: 0
}
50% {
margin-top: -64px;
opacity: 0
}
100% {
margin-top: 0;
opacity: 1
}
}
@keyframes menu_sticky {
0% {
margin-top: -120px;
opacity: 0
}
50% {
margin-top: -64px;
opacity: 0
}
100% {
margin-top: 0;
opacity: 1
}
}
.theme-main-menu.fixed {
position: fixed;
background: #fff;
box-shadow: 0 13px 35px -12px rgba(35, 35, 35, .15);
animation: menu_sticky .6s ease-in-out
}
.theme-menu-one.d-align-item.fixed .logo {
width: 63px
}
.theme-menu-one.fixed.d-align-item .logo {
top: 5px
}
.theme-menu-one.fixed .navbar-nav .nav-item .nav-link,
.theme-menu-two.fixed .navbar-nav .nav-item .nav-link {
padding-bottom: 20px
}
.theme-menu-one.fixed,
.theme-menu-two.fixed {
padding: 20px 0 0
}
.theme-menu-one.fixed .logo,
.theme-menu-three.fixed .logo {
width: 70px
}
.theme-menu-one.fixed .header-right-widget,
.theme-menu-two.fixed .logo {
top: 7px
}
.theme-menu-two.fixed .quote-button {
top: 9px
}
.theme-main-menu.theme-menu-two.fixed,
.theme-menu-one.d-align-item.color-white.fixed {
background: #1b1d3d
}
.theme-main-menu.theme-menu-three.fixed {
padding: 20px 0 5px;
background: rgba(29, 31, 66, .98);
border-bottom: 1px solid rgba(255, 255, 255, .03)
}
.theme-menu-three.fixed .header-right-widget {
top: 14px
}
.theme-menu-one.d-align-item.fixed .navbar-nav .nav-item .nav-link {
padding-bottom: 0
}
.theme-menu-one.d-align-item.fixed {
padding-bottom: 12px
}
#theme-banner-one {
background: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/1.png) top right no-repeat;
position: relative
}
#theme-banner-one .main-wrapper {
padding: 235px 0 155px
}
#theme-banner-one .main-wrapper .slogan {
display: inline-block;
background: #FBFBFF;
border: 1px solid #E9E9E9;
line-height: 32px;
padding: 0 20px;
font-size: 15px;
color: #677180;
border-radius: 3px
}
#theme-banner-one .main-wrapper .slogan span {
color: #FF605E
}
#theme-banner-one .main-wrapper .main-title {
font-size: 70px;
line-height: 80px;
padding: 25px 0 35px
}
#theme-banner-one .main-wrapper .sub-title {
font-size: 20px;
line-height: 32px;
color: #8b8e92;
padding-bottom: 28px
}
#theme-banner-one .main-wrapper .button-group li {
display: inline-block;
vertical-align: middle;
margin-top: 5px;
line-height: 55px
}
#theme-banner-one .main-wrapper .button-group .more-button {
margin-right: 30px
}
#theme-banner-one .illustration {
position: absolute;
right: 12%;
top: 27%
}
#theme-banner-one .illustration .shape-one {
position: absolute;
top: -28px;
right: -63px
}
#theme-banner-one .illustration .shape-two {
position: absolute;
bottom: 0;
right: -25px
}
#theme-banner-one .oval-one {
position: absolute;
right: -3%;
top: 26%;
animation: jump 8s infinite linear
}
#theme-banner-one .shape-three {
position: absolute;
top: 21%;
right: 22%;
animation: animationFramesTwo 13s infinite linear
}
#theme-banner-one .shape-four {
position: absolute;
top: 27%;
left: 7%;
animation: animationFramesFour 25s alternate infinite linear
}
#theme-banner-one .shape-five {
position: absolute;
top: 50%;
left: 50%;
animation: animationFramesThree 35s alternate infinite linear
}
#theme-banner-one .shape-six {
position: absolute;
top: 70%;
right: 3%;
animation: animationFramesFour 20s alternate infinite linear
}
#theme-banner-one .shape-seven {
position: absolute;
bottom: 2%;
right: 28%;
animation: animationFramesOne 15s infinite linear
}
#theme-banner-one .shape-eight {
position: absolute;
bottom: 3%;
left: 38%;
animation: animationFramesFour 20s alternate infinite linear
}
#theme-banner-one .shape-nine {
position: absolute;
bottom: 4%;
left: 4%;
animation: animationFramesOne 17s infinite linear
}
#theme-banner-one .shape-ten {
position: absolute;
top: 60%;
left: 4%;
animation: animationFramesOne 20s alternate infinite linear
}
#theme-banner-one .shape-eleven {
position: absolute;
top: 22%;
left: 41%;
animation: animationFramesOne 15s infinite linear
}
#theme-banner-two {
background: linear-gradient(-120deg, #8758ff 0, #614ef9 100%);
position: relative;
overflow: hidden
}
#theme-banner-two:before {
content: '';
position: absolute;
width: 100%;
height: 753px;
background: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/bg4.png) left top no-repeat;
bottom: -1px;
left: 0;
z-index: 2
}
#theme-banner-two .main-wrapper {
padding: 285px 0 300px;
position: relative;
z-index: 9
}
#theme-banner-two .bg-round-one {
width: 690px;
height: 690px;
background: rgba(255, 255, 255, .04);
border-radius: 50%;
position: absolute;
top: -170px;
left: -281px;
z-index: 1
}
#theme-banner-two .bg-round-two {
width: 690px;
height: 690px;
background: rgba(255, 255, 255, .02);
border-radius: 50%;
position: absolute;
bottom: 0;
left: -464px;
z-index: 1
}
#theme-banner-two .bg-round-four,
#theme-banner-two .bg-round-three {
background: rgba(255, 255, 255, .02);
border-radius: 0 0 0 85px;
top: -87px;
right: -98px;
transform: rotate(-9deg);
position: absolute;
z-index: 1
}
#theme-banner-two .bg-round-three {
width: 400px;
height: 400px
}
#theme-banner-two .bg-round-four {
width: 250px;
height: 250px
}
#theme-banner-two .bg-round-five {
width: 650px;
height: 650px;
background: linear-gradient(-90deg, #8557ff 0, #805cff 100%);
border-radius: 50%;
position: absolute;
bottom: -90px;
right: -205px;
z-index: 1
}
#theme-banner-two .illustration {
position: absolute;
right: 10%;
top: 28%;
z-index: 1;
max-width: 47%
}
#theme-banner-two .main-title {
font-size: 60px;
line-height: 72px;
color: #fff;
text-decoration: underline
}
#theme-banner-two .sub-title {
font-size: 20px;
line-height: 32px;
color: #fff;
padding: 40px 0 35px
}
#theme-banner-two .main-wrapper .button-group li {
display: inline-block;
vertical-align: middle;
margin-top: 5px;
line-height: 50px
}
#theme-banner-two .main-wrapper .button-group .more-button {
width: 165px;
line-height: 50px;
border: 1px solid transparent;
text-align: center;
border-radius: 3px;
font-size: 18px;
color: #fff;
background: linear-gradient(-180deg, #00ebac 0, #00d1f4 100%);
margin-right: 18px
}
#theme-banner-two .main-wrapper .button-group .more-button i {
vertical-align: -1px
}
#theme-banner-two .main-wrapper .button-group .more-button:hover {
background: 0 0;
border-color: #fff
}
#theme-banner-two .main-wrapper .button-group .contact-button {
width: 170px;
line-height: 48px;
border: 1px solid #fff;
border-radius: 3px;
text-align: center;
font-size: 18px;
color: #fff
}
#particles,
.partical-bg {
width: 100%;
height: 100%
}
#theme-banner-three {
position: relative;
padding: 320px 0
}
.partical-bg {
position: fixed;
top: 0;
left: 0;
z-index: 0
}
#theme-banner-three .main-title {
font-family: CircularStdbld;
font-size: 140px;
color: #fff;
text-decoration: underline
}
#theme-banner-three .main-title span,
#theme-banner-three .main-title span b {
text-decoration: underline;
line-height: 160px
}
#theme-banner-three .main-title i {
color: #e1a34c;
font-style: normal
}
#theme-banner-three:before {
content: '';
background: -webkit-radial-gradient(50% 50%, circle closest-side, #23265b 0, #1b1d3d 100%);
position: absolute;
width: 2285px;
height: 2285px;
border-radius: 50%;
left: 50%;
top: -500px;
transform: translateX(-50%);
z-index: -1
}
#theme-banner-four {
position: relative
}
#theme-banner-four .main-wrapper {
padding: 290px 0 260px;
position: relative;
z-index: 5
}
#theme-banner-four .screen-one {
position: absolute;
right: 0;
top: 12%;
z-index: 1;
width: 35%
}
#theme-banner-four .screen-two {
position: absolute;
right: 24%;
top: 27%;
z-index: 1;
width: 22%
}
#theme-banner-four .shape-one {
position: absolute;
right: 0;
top: 145px;
z-index: 0;
opacity: .65
}
#theme-banner-four .shape-two {
position: absolute;
bottom: 12%;
left: 31%;
animation: rotated 20s infinite linear
}
#theme-banner-four .shape-three {
position: absolute;
bottom: 19%;
right: 4%;
z-index: -1;
animation: rotated 50s infinite linear
}
#theme-banner-four .shape-four {
position: absolute;
top: 17%;
right: 37%;
z-index: -1;
animation: rotatedHalf 30s infinite linear
}
#theme-banner-four .round-shape-one {
width: 20px;
height: 20px;
border: 3px solid #fe8f8f;
border-radius: 50%;
position: absolute;
top: 15%;
left: 36%;
animation: animationFramesOne 15s infinite linear
}
#theme-banner-four .round-shape-two {
width: 7px;
height: 7px;
background: #d5eeff;
border-radius: 50%;
position: absolute;
top: 23%;
left: 8%;
animation: animationFramesTwo 13s infinite linear
}
#theme-banner-four .round-shape-three {
position: absolute;
width: 8px;
height: 8px;
border: 2px solid #a3eead;
border-radius: 50%;
bottom: 42%;
left: 6%;
animation: animationFramesTwo 15s infinite linear
}
#theme-banner-four .round-shape-four {
position: absolute;
right: 26%;
bottom: 20%;
width: 350px;
height: 350px;
border-radius: 50%;
border: 1px solid #fbfbfb;
animation: rotated 10s infinite linear
}
#theme-banner-four .round-shape-four:before {
content: "";
width: 10px;
height: 10px;
position: absolute;
top: 50%;
left: -5px;
background: #ddabf6;
border-radius: 50%
}
#theme-banner-four .main-wrapper .slogan {
display: inline-block;
background: #FBFBFF;
border: 1px solid #E9E9E9;
line-height: 32px;
padding: 0 20px;
font-size: 15px;
color: #677180;
border-radius: 18px
}
#theme-banner-four .main-wrapper .slogan span {
color: #FF605E
}
#theme-banner-four .main-wrapper .main-title {
font-family: CircularStdmed;
font-size: 70px;
line-height: 80px;
padding: 25px 0 35px
}
#theme-banner-four .main-wrapper .sub-title {
font-size: 20px;
line-height: 32px;
color: #8b8e92;
padding-bottom: 28px
}
#theme-banner-four .main-wrapper .button-group li {
display: inline-block;
vertical-align: middle;
margin-top: 5px;
line-height: 55px
}
#theme-banner-four .main-wrapper .button-group .more-button {
width: 185px;
line-height: 50px;
text-align: center;
border-radius: 3px;
color: #fff;
box-shadow: 0 10px 40px 0 rgba(150, 57, 57, .25);
background: linear-gradient(-135deg, #bf6cff 0, #9041ff 100%);
margin-right: 30px
}
#theme-banner-four .main-wrapper .button-group .more-button:hover {
box-shadow: none
}
#theme-banner-four .main-wrapper .button-group .more-button i {
vertical-align: -1px;
margin-left: 5px
}
#theme-banner-four .main-wrapper .button-group .video-button:hover,
#theme-banner-four .main-wrapper .button-group .video-button:hover i {
color: #f569f8
}
#theme-banner-five {
background: linear-gradient(145deg, #8400fc 0, #11def4 100%);
position: relative;
z-index: 5
}
#theme-banner-five .bg-shape-holder {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: -1;
overflow: hidden
}
#theme-banner-five .bg-shape-holder .big-round-one {
position: absolute;
width: 662px;
height: 662px;
background: rgba(255, 255, 255, .04);
top: -346px;
left: -75px;
border-radius: 50%
}
#theme-banner-five .bg-shape-holder .big-round-two {
position: absolute;
width: 1372px;
height: 1372px;
background: rgba(255, 255, 255, .04);
top: -689px;
left: -368px;
border-radius: 50%;
z-index: -1
}
#theme-banner-five .bg-shape-holder .big-round-three {
position: absolute;
width: 2242px;
height: 2242px;
background: rgba(255, 255, 255, .04);
top: -1161px;
left: -779px;
border-radius: 50%;
z-index: -3
}
#theme-banner-five .bg-shape-holder .shape-one {
width: 7px;
height: 7px;
border-radius: 50%;
background: rgba(213, 238, 255, .29);
position: absolute;
top: 18%;
left: 14%;
animation: animationFramesTwo 13s infinite linear
}
#theme-banner-five .bg-shape-holder .shape-two {
width: 25px;
height: 25px;
border-radius: 50%;
border: 5px solid rgba(255, 255, 255, .16);
position: absolute;
top: 16%;
left: 41%;
animation: animationFramesOne 15s infinite linear
}
#theme-banner-five .bg-shape-holder .shape-three {
position: absolute;
bottom: 15%;
left: 35%;
animation: animationFramesFour 15s infinite linear alternate
}
#theme-banner-five .bg-shape-holder .shape-four {
width: 10px;
height: 10px;
border-radius: 50%;
background: rgba(213, 238, 255, .29);
position: absolute;
bottom: 12%;
right: 30%;
animation: animationFramesFive 15s infinite linear alternate
}
#theme-banner-five .mobile-screen-one {
position: absolute;
right: -3%;
top: 145px;
z-index: -1;
width: 29%
}
#theme-banner-five .mobile-screen-two {
position: absolute;
right: 20%;
top: 260px;
z-index: -1;
width: 29%
}
#theme-banner-five .mobile-screen-two .search-box {
position: absolute;
top: 31%;
right: 28%;
width: 68%
}
#theme-banner-five .main-wrapper {
padding: 300px 0 215px 15%
}
#theme-banner-five .main-title {
font-family: CircularStdmed;
font-size: 60px;
line-height: 72px;
color: #fff
}
#theme-banner-five .sub-title {
font-size: 20px;
line-height: 32px;
color: #fff;
padding: 40px 0 35px
}
#theme-banner-five .main-wrapper .button-group li {
display: inline-block;
vertical-align: middle;
margin-top: 5px
}
#theme-banner-five .main-wrapper .button-group li a {
width: 213px;
border: 2px solid #fff;
border-radius: 3px;
padding: 9px 0 9px 70px;
position: relative;
font-size: 20px;
color: #fff
}
#theme-banner-five .main-wrapper .button-group li a span {
display: block;
font-size: 13px;
margin-bottom: -5px
}
#theme-banner-five .main-wrapper .button-group li a.google-button {
margin-right: 22px
}
#theme-banner-five .main-wrapper .button-group li a img {
position: absolute;
left: 30px;
top: 50%;
transform: translateY(-50%);
width: 30px
}
.agn-what-we-do {
position: relative
}
.agn-what-we-do .shape-one {
position: absolute;
top: 19%;
left: 0
}
.agn-what-we-do .shape-two {
position: absolute;
top: 25%;
right: 11%
}
.agn-what-we-do .theme-title-one {
padding-bottom: 50px
}
.agn-what-we-do .single-block .icon {
position: relative;
height: 98px
}
.agn-what-we-do .single-block .icon .bg {
animation: rotated 25s infinite linear
}
.agn-what-we-do .single-block .icon .shape {
position: absolute;
top: 35px;
left: 10px;
z-index: 1
}
.agn-what-we-do .single-block .title {
font-size: 22px;
color: #244574;
padding: 35px 0
}
.agn-what-we-do .single-block p {
padding-right: 90px
}
.agn-what-we-do .single-block .more-button {
font-size: 15px;
text-decoration: underline;
margin-top: 20px
}
.agn-what-we-do .single-block .more-button:hover {
text-decoration: overline
}
.agn-what-we-do .single-block {
padding-top: 60px
}
.seo-what-we-do {
position: relative;
padding: 150px 0 100px
}
.seo-what-we-do .theme-title-one {
padding-bottom: 60px
}
.seo-what-we-do .single-block {
margin-top: 40px
}
.seo-what-we-do .single-block .wrapper {
background: #fff;
border-radius: 4px;
text-align: center;
padding: 50px 10px 60px
}
.seo-what-we-do .single-block .wrapper:hover,
.seo-what-we-do .single-block.active .wrapper {
box-shadow: 0 20px 70px 0 rgba(4, 7, 18, .06)
}
.seo-what-we-do .single-block .wrapper .title {
display: block;
font-size: 20px;
color: #233d63;
margin-top: 30px
}
.seo-what-we-do .single-block .wrapper .icon-box {
position: relative;
width: 100px;
height: 100px;
border-radius: 50%;
margin: 0 auto;
z-index: 5
}
.seo-what-we-do .single-block .wrapper .icon-box img {
position: relative;
margin: 0 auto;
top: 50%;
transform: translateY(-50%)
}
.seo-what-we-do .single-block:nth-child(2) .wrapper .icon-box {
background: #00ebac
}
.seo-what-we-do .single-block:nth-child(3) .wrapper .icon-box {
background: #9657f6
}
.seo-what-we-do .single-block:nth-child(4) .wrapper .icon-box {
background: #ff930e
}
.seo-what-we-do .single-block .wrapper .icon-box:after,
.seo-what-we-do .single-block .wrapper .icon-box:before {
content: '';
position: absolute;
border-radius: 50%;
z-index: -1;
top: 0;
right: 0;
bottom: 0;
left: 0
}
.seo-what-we-do .single-block:nth-child(1) .wrapper .icon-box:after,
.seo-what-we-do .single-block:nth-child(1) .wrapper .icon-box:before {
background: rgba(255, 58, 70, .5)
}
.seo-what-we-do .single-block:nth-child(2) .wrapper .icon-box:after,
.seo-what-we-do .single-block:nth-child(2) .wrapper .icon-box:before {
background: rgba(0, 235, 172, .5)
}
.seo-what-we-do .single-block:nth-child(3) .wrapper .icon-box:after,
.seo-what-we-do .single-block:nth-child(3) .wrapper .icon-box:before {
background: rgba(150, 87, 246, .5)
}
.seo-what-we-do .single-block:nth-child(4) .wrapper .icon-box:after,
.seo-what-we-do .single-block:nth-child(4) .wrapper .icon-box:before {
background: rgba(255, 147, 14, .5)
}
.seo-what-we-do .single-block .wrapper:hover .icon-box:after,
.seo-what-we-do .single-block.active .wrapper .icon-box:after {
-webkit-animation: hvr-ripple-out 1.5s linear infinite;
animation: hvr-ripple-out 1.5s linear infinite
}
.seo-what-we-do .single-block .wrapper:hover .icon-box:before,
.seo-what-we-do .single-block.active .wrapper .icon-box:before {
-webkit-animation: hvr-ripple-out-two 1.5s linear infinite;
animation: hvr-ripple-out-two 1.5s linear infinite
}
.agn-about-us {
position: relative;
padding: 135px 0 0
}
.agn-about-us .shape-one {
position: absolute;
left: 52%;
top: 2%;
animation: animationFramesOne 35s alternate infinite linear
}
.agn-about-us .shape-two {
position: absolute;
right: 0;
top: -15%
}
.agn-about-us .shape-three {
position: absolute;
left: 0;
top: 20%;
z-index: -1
}
.agn-about-us .shape-four {
position: absolute;
left: 50%;
bottom: -16%;
animation: animationFramesTwo 25s alternate infinite linear
}
.agn-about-us .theme-title-one {
padding-bottom: 35px
}
.agn-about-us .img-box {
position: relative;
padding-left: 85px
}
.agn-about-us .img-box .main-img {
border-radius: 5px
}
.agn-about-us .img-box:before {
content: '';
width: 188px;
height: 196px;
background: #614ef9;
border-radius: 5px;
position: absolute;
top: -100px;
left: 0;
z-index: -1
}
.agn-about-us .text-wrapper .quote {
font-size: 20px;
line-height: 34px;
color: #233D63;
padding: 45px 0 35px
}
.agn-about-us .text-wrapper .author {
position: relative;
padding-left: 35px;
margin-bottom: 35px;
font-size: 16px;
color: #808C9F
}
.agn-about-us .text-wrapper .author .name {
font-family: CircularStdmed;
font-size: 20px;
color: #233D63
}
.agn-about-us .text-wrapper .author:before {
content: '';
width: 20px;
height: 2px;
position: absolute;
left: 0;
top: 14px;
background: #233D63
}
.agn-about-us .learn-more {
font-size: 20px;
width: 230px;
line-height: 70px;
position: absolute;
bottom: 0;
right: 0
}
.agn-about-us:before {
content: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/2.png);
position: absolute;
top: 0;
left: 0;
z-index: -1
}
.agn-counter-section {
position: relative;
margin: 250px 0 185px
}
.agn-counter-section .shape-one {
position: absolute;
left: 9%;
top: 28%;
animation: animationFramesFour 25s alternate infinite linear
}
.agn-counter-section .shape-two {
position: absolute;
right: 14%;
top: 13%;
animation: animationFramesFour 35s alternate infinite linear
}
.agn-counter-section .shape-three {
position: absolute;
bottom: 4%;
right: 8%;
animation: rotated 20s infinite linear
}
.agn-counter-section .main-wrapper {
background: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/map.png) bottom center no-repeat;
padding-bottom: 115px;
position: relative
}
.agn-counter-section .main-wrapper .theme-title-one {
padding-bottom: 80px
}
.agn-counter-section .counter-wrapper .single-counter-box {
text-align: center;
padding-top: 35px
}
.agn-counter-section .counter-wrapper .single-counter-box .icon {
font-size: 60px;
margin-bottom: 10px
}
.agn-counter-section .counter-wrapper .single-counter-box .number {
font-size: 84px
}
.agn-counter-section .counter-wrapper .single-counter-box p {
font-size: 20px
}
.agn-counter-section .bottom-banner {
border: 1px solid #E6E6E6;
border-radius: 5px;
margin: 50px 100px 0;
padding: 45px 60px 28px
}
.agn-counter-section .bottom-banner .text {
float: left
}
.agn-counter-section .bottom-banner .text .title {
font-size: 27px;
padding-bottom: 2px
}
.agn-counter-section .bottom-banner .text p {
font-size: 18px
}
.agn-counter-section .bottom-banner .contact {
float: right;
line-height: 46px
}
.agn-counter-section.fix-bg-position .main-wrapper {
padding: 95px 0 155px
}
.agn-our-gallery {
position: relative;
padding: 100px 0 195px
}
.agn-our-gallery .shape-one {
position: absolute;
top: 0;
left: 45%;
animation: animationFramesOne 25s infinite linear
}
.agn-our-gallery .shape-two {
position: absolute;
top: 15%;
right: 10%;
animation: animationFramesFour 25s alternate infinite linear
}
.agn-our-gallery .shape-three {
position: absolute;
bottom: 12%;
right: 40%;
animation: rotated 20s infinite linear
}
.agn-our-gallery:before {
content: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/3.png);
position: absolute;
top: 0;
right: 0;
z-index: -1
}
.agn-our-gallery .main-wrapper {
position: relative;
margin: 0 auto;
padding: 50px 35px 0
}
.agn-our-gallery .main-wrapper .item {
margin: 0 30px
}
.agn-our-gallery .main-wrapper .img-box {
position: relative;
margin: 50px 0;
overflow: hidden;
border-radius: 5px;
box-shadow: 0 20px 50px 0 rgba(46, 65, 90, .1)
}
.agn-our-gallery .main-wrapper .img-box img {
width: 100%;
border-radius: 5px;
transition: all .4s ease-in-out
}
.agn-our-gallery .main-wrapper .img-box .hover-content {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: rgba(26, 26, 26, .5);
text-align: center;
border-radius: 5px;
transform: scale(.5);
opacity: 0
}
.agn-our-gallery .main-wrapper .img-box .hover-content .icon {
position: relative;
top: 50%;
transform: translateY(-50%);
font-size: 60px;
color: #fff
}
.agn-our-gallery .main-wrapper .img-box:hover .hover-content {
transform: scale(1);
opacity: 1
}
.agn-our-gallery .main-wrapper .view-gallery {
width: 190px;
line-height: 55px;
text-align: center;
border-radius: 4px;
border: 2px solid rgba(151, 151, 151, .3);
font-size: 18px;
color: #233D63;
position: absolute;
top: 0;
right: 150px
}
.agn-our-gallery .main-wrapper .view-gallery:hover {
color: #fff;
box-shadow: 0 13px 28px 0 rgba(163, 48, 53, .25)
}
.agn-our-gallery .owl-theme .owl-nav [class*=owl-] {
background: 0 0;
margin: 0 10px;
padding: 0;
font-size: 30px;
color: rgba(0, 0, 0, .4)
}
.agn-our-gallery .owl-theme .owl-nav {
position: absolute;
top: -50px;
right: 365px
}
.agn-our-gallery .owl-theme .owl-nav [class*=owl-]:hover {
color: #233D63
}
.agn-our-pricing {
position: relative
}
.agn-our-pricing .shape-one {
position: absolute;
top: 20%;
left: 10%
}
.agn-our-pricing .shape-two {
animation: animationFramesOne 15s infinite linear;
position: absolute;
top: 18%;
right: 14%
}
.agn-our-pricing .shape-three {
position: absolute;
bottom: 10%;
left: 10%;
animation: animationFramesOne 15s infinite linear
}
.agn-our-pricing .shape-four {
position: absolute;
bottom: 5%;
left: 50%;
animation: animationFramesOne 25s infinite linear
}
.agn-our-pricing .shape-five {
position: absolute;
bottom: 5%;
right: 5%
}
.agn-our-pricing .table-wrapper {
max-width: 1245px;
margin: 100px auto 0;
padding: 0 15px
}
.agn-our-pricing .table-wrapper .inner-table {
position: relative;
padding-left: 215px
}
.agn-our-pricing .table-wrapper .inner-table .pr-list-text {
width: 215px;
position: absolute;
left: 0;
top: 230px
}
.agn-our-pricing .table-wrapper .inner-table .pr-list-text li {
font-size: 17px;
padding: 25px 0 25px 25px;
color: #233D63;
border-top: 1px solid #E0E9EF;
border-left: 1px solid #E0E9EF
}
.agn-our-pricing .table-wrapper .inner-table .pr-list-text li:last-child {
border-bottom: 1px solid #E0E9EF
}
.agn-our-pricing .table-wrapper .inner-table .pr-column {
float: left;
width: 33.333333%;
border: 1px solid #E0E9EF;
border-right: none;
text-align: center
}
.agn-our-pricing .table-wrapper .inner-table .pr-column:last-child {
border-right: 1px solid #E0E9EF
}
.agn-our-pricing .table-wrapper .pr-column .pr-header {
padding: 40px 0 43px;
border-bottom: 1px solid #E0E9EF
}
.agn-our-pricing .table-wrapper .pr-column .pr-header .price {
font-size: 44px
}
.agn-our-pricing .table-wrapper .pr-column .pr-header .price span {
font-size: 18px
}
.agn-our-pricing .table-wrapper .pr-column .pr-header .title {
font-size: 32px;
color: #233D63;
padding: 5px 0 12px
}
.agn-our-pricing .table-wrapper .pr-column .pr-header .package {
font-size: 18px;
text-transform: uppercase;
color: rgba(35, 61, 99, .35)
}
.agn-our-pricing .table-wrapper .pr-column .pr-body li {
border-bottom: 1px solid #E0E9EF;
padding: 25px 0
}
.agn-our-pricing .table-wrapper .pr-column .pr-body li .pr-text {
font-size: 16px;
color: rgba(35, 61, 99, .45);
padding-bottom: 3px;
display: none
}
.agn-our-pricing .table-wrapper .pr-column .pr-body li .icon {
font-size: 16px
}
.agn-our-pricing .table-wrapper .pr-column .pr-body li .none {
color: rgba(151, 151, 151, .75)
}
.agn-our-pricing .table-wrapper .pr-column .pr-body li .available {
color: #00e953
}
.agn-our-pricing .table-wrapper .pr-column .pr-footer {
padding: 48px 0 45px
}
.agn-our-pricing .table-wrapper .pr-column .pr-footer p {
font-size: 17px;
color: rgba(35, 61, 99, .5);
padding-top: 15px
}
.pricing-app .theme-title-one.upper-bar:before {
background: #63e8ce
}
.agn-our-pricing.pricing-app .table-wrapper .pr-column .pr-header .price {
font-size: 58px;
color: #9285ff
}
.agn-our-pricing.pricing-app .table-wrapper .pr-column .pr-header .price sup {
font-size: 24px;
top: -23px
}
.agn-our-pricing.pricing-app .table-wrapper .pr-column .pr-header .title {
font-size: 18px;
color: rgba(35, 61, 99, .45);
padding: 0
}
.agn-our-pricing.pricing-app .table-wrapper .pr-column .pr-header {
padding-bottom: 39px
}
.agn-our-pricing.pricing-app .table-wrapper .pr-column .pr-header .package {
color: #202020
}
.agn-our-pricing.pricing-app .table-wrapper .pr-column .pr-body li .icon {
display: block;
font-size: 14px;
width: 27px;
height: 27px;
border-radius: 50%;
text-align: center;
line-height: 27px;
margin: 0 auto
}
.agn-our-pricing.pricing-app .table-wrapper .pr-column .pr-body li .available {
background: #4cdd75;
color: #fff
}
.agn-our-pricing.pricing-app .table-wrapper .pr-column .pr-body li {
padding: 24px 0
}
.agn-our-pricing.pricing-app .table-wrapper .pr-column .pr-footer .choose-button {
border-radius: 4px
}
.agn-our-pricing.pricing-app .table-wrapper .pr-column:hover .pr-footer .choose-button {
background: #614ef9;
border-color: #614ef9;
box-shadow: none
}
.seo-our-pricing {
position: relative
}
.seo-our-pricing.section-bg {
background: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/bg2.png) center top no-repeat;
background-size: cover;
padding: 185px 0 280px
}
.seo-our-pricing .theme-title-one {
padding-bottom: 45px
}
.seo-our-pricing .single-pr-table {
background: #fff;
box-shadow: 0 10px 40px 0 rgba(60, 67, 113, .05);
position: relative;
text-align: center;
border-radius: 5px 5px 0 0;
margin-top: 50px;
overflow: hidden
}
.seo-our-pricing .single-pr-table:after,
.seo-our-pricing .single-pr-table:before {
content: '';
height: 6px;
border-radius: 5px 5px 0 0;
position: absolute;
top: 0;
transition: all .8s ease-out;
background: #fff;
z-index: 1
}
.seo-our-pricing .single-pr-table:before {
width: 50px;
left: -50px
}
.seo-our-pricing .single-pr-table:after {
width: 100%;
left: calc(-100% - 100px)
}
.seo-our-pricing .single-pr-table:hover:after {
left: 100%
}
.seo-our-pricing .single-pr-table:hover:before {
opacity: 1;
left: 100%
}
.seo-our-pricing .single-pr-table .pr-header {
position: relative;
z-index: 1;
padding: 40px 0 32px;
border-bottom: 1px solid #e8e8e8
}
.seo-our-pricing .single-pr-table.subway .pr-header {
border-top: 6px solid #00e1ce
}
.seo-our-pricing .single-pr-table.sandwich .pr-header {
border-top: 6px solid #ffcd63
}
.seo-our-pricing .single-pr-table.burger .pr-header {
border-top: 6px solid #9f4aff
}
.seo-our-pricing .single-pr-table .pr-header .title {
font-size: 18px;
text-transform: uppercase;
color: #202020
}
.seo-our-pricing .single-pr-table .pr-header .price {
font-size: 60px;
margin: -12px 0 -5px
}
.seo-our-pricing .single-pr-table .pr-header .price sup {
font-size: 24px;
top: -20px
}
.seo-our-pricing .single-pr-table .pr-header .package {
font-size: 15px;
text-transform: uppercase;
color: #b9b9b9
}
.seo-our-pricing .single-pr-table .pr-header .icon {
opacity: .18;
position: absolute;
left: -60px;
top: 17%;
z-index: -1
}
.seo-our-pricing .single-pr-table:hover .pr-header .icon {
transform: scale(1.3) translateX(80px)
}
.seo-our-pricing .single-pr-table .pr-body {
padding: 42px 0 40px
}
.seo-our-pricing .single-pr-table .pr-body .slogan {
font-size: 24px;
padding-bottom: 12px;
color: #2f3442
}
.seo-our-pricing .single-pr-table .pr-body ul li {
line-height: 45px;
font-size: 17px;
color: rgba(35, 61, 99, .7)
}
.seo-our-pricing .single-pr-table .pr-footer {
border-top: 1px solid #e8e8e8;
padding: 40px 0
}
.seo-our-pricing .single-pr-table .pr-footer .plan-button {
position: relative;
z-index: 5;
margin: 0 auto
}
.seo-our-pricing .single-pr-table .pr-footer .plan-button:before {
content: ' ';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: linear-gradient(-105deg, #00e9b0 0, #00d4ed 100%);
z-index: -1;
border-radius: 25px;
transform: scaleX(0);
opacity: 0
}
.seo-our-pricing .single-pr-table:hover .pr-footer .plan-button {
color: #fff
}
.seo-our-pricing .single-pr-table:hover .pr-footer .plan-button:before {
transform: scaleX(1);
opacity: 1
}
.seo-our-pricing .single-pr-table .pr-footer .plan-button:hover {
border-color: transparent;
box-shadow: none;
background: #fff
}
.seo-our-pricing .single-pr-table .pr-footer .trial-button {
font-size: 17px;
color: rgba(35, 61, 99, .45);
margin-top: 20px;
display: block
}
.agn-testimonial {
position: relative;
padding: 85px 0 125px
}
.agn-testimonial .main-content {
max-width: 600px;
float: right;
position: relative;
z-index: 1
}
.agn-testimonial .main-content .theme-title-one {
padding-bottom: 40px
}
.agn-testimonial .main-content .agn-testimonial-slider p {
font-size: 20px;
color: #76797e;
line-height: 37px;
padding: 0 80px 50px 0
}
.agn-testimonial .main-content .agn-testimonial-slider .author-info .author-img {
width: 50px;
height: 50px;
border-radius: 50%;
float: left
}
.agn-testimonial .main-content .agn-testimonial-slider .author-info .name-info {
float: left;
padding-left: 20px
}
.agn-testimonial .main-content .agn-testimonial-slider .author-info .name-info .name {
font-size: 20px
}
.agn-testimonial .main-content .agn-testimonial-slider .author-info .name-info span {
color: #c7c7c7;
font-size: 16px
}
.agn-testimonial .owl-theme .owl-nav [class*=owl-] {
background: 0 0;
margin: 0 10px;
padding: 0;
font-size: 30px;
color: rgba(0, 0, 0, .4)
}
.agn-testimonial .owl-theme .owl-nav {
text-align: left;
margin-top: 35px
}
.agn-testimonial .owl-theme .owl-nav [class*=owl-]:hover {
color: #233D63
}
.agn-testimonial .shape-box {
position: absolute;
top: 0;
left: 0;
width: 38%;
height: 100%
}
.agn-testimonial .shape-box .people {
position: absolute;
border-radius: 50%;
width: 110px;
height: 110px;
box-shadow: 0 10px 20px 0 rgba(20, 44, 56, .25);
z-index: 1
}
.agn-testimonial .shape-box .people:nth-child(2) {
top: 37%;
right: 41%;
animation: scale-up-one 14s infinite linear
}
.agn-testimonial .shape-box .people:nth-child(3) {
top: 47%;
right: 22%;
animation: scale-up-two 9s infinite linear
}
.agn-testimonial .shape-box .people:nth-child(4) {
top: 16%;
right: 29%;
animation: scale-up-three 8s infinite linear
}
.agn-testimonial .shape-box .people:nth-child(5) {
top: 24%;
right: 66%;
animation: scale-up-two 10s infinite linear
}
.agn-testimonial .shape-box .people:nth-child(6) {
top: 52%;
right: 69%;
animation: scale-up-three 11s infinite linear
}
.agn-testimonial .shape-box .people:nth-child(7) {
top: 61%;
right: 40%;
animation: scale-up-one 12s infinite linear
}
.agn-testimonial .shape-box .shape-one {
position: absolute;
left: -30%;
top: 28%;
animation: rotated 2s infinite linear
}
.agn-testimonial .shape-two {
position: absolute;
right: 0;
bottom: 11%
}
.portfo-testimonial.section-portfo {
border-bottom: none;
padding-bottom: 270px
}
.portfo-testimonial:before {
content: '';
background: -webkit-radial-gradient(50% 50%, circle closest-side, #23265b 0, #1b1d3d 100%);
position: absolute;
width: 2366px;
height: 2366px;
border-radius: 50%;
left: 50%;
top: -600px;
transform: translateX(-50%);
z-index: -1
}
.portfo-testimonial .theme-title-two {
padding-bottom: 95px
}
.portfo-testimonial .inner-title {
font-family: CircularStdmed;
color: #fff;
font-size: 48px;
line-height: 65px;
text-decoration: underline
}
.portfo-testimonial .slider-wrapper {
position: relative;
padding-left: 80px
}
.portfo-testimonial .slider-wrapper:before {
content: "\f111";
font-family: Flaticon;
position: absolute;
color: #2d3061;
font-size: 115px;
top: -93px;
left: 80px
}
.portfo-testimonial .slider-wrapper .item p {
font-size: 26px;
line-height: 50px;
color: rgba(255, 255, 255, .8);
font-style: italic;
padding-bottom: 50px
}
.portfo-testimonial .slider-wrapper .author-info .author-img {
width: 50px;
height: 50px;
border-radius: 50%;
float: left
}
.portfo-testimonial .slider-wrapper .author-info .name-info {
float: left;
padding-left: 20px
}
.portfo-testimonial .slider-wrapper .author-info .name-info .name {
font-size: 24px;
color: #fff
}
.portfo-testimonial .slider-wrapper .author-info .name-info span {
color: #797a96;
font-size: 18px
}
.portfo-testimonial .owl-theme .owl-nav [class*=owl-] {
background: 0 0;
margin: 0 10px;
padding: 0;
font-size: 30px;
color: rgba(255, 255, 255, .6)
}
.portfo-testimonial .owl-theme .owl-nav {
text-align: left;
margin-top: 35px
}
.portfo-testimonial .owl-theme .owl-nav [class*=owl-]:hover {
color: #e1a34c
}
.sass-testimonial-section {
position: relative;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
padding: 115px 0 272px;
background: linear-gradient(90deg, #f3ffe7 0, #defff0 100%);
overflow: hidden
}
.sass-testimonial-section:before {
content: 'D';
font-family: CircularStdblck;
font-size: 400px;
color: #FAFFFD;
position: absolute;
right: -109px;
bottom: -272px;
transform: rotate(180deg)
}
.sass-testimonial-section .main-content {
position: relative;
background: #fff;
border-radius: 20px;
box-shadow: 0 16px 25px 0 rgba(0, 0, 0, .03);
padding: 80px 70px 55px;
z-index: 5
}
.sass-testimonial-section .main-content:before {
content: url(//aq-technologies.com/wp-content/themes/saasweb/images/icon/icon28.svg);
position: absolute;
top: 50px;
left: 50%;
transform: translateX(-50%);
opacity: .04
}
.sass-testimonial-section .inner-container {
width: 69%;
margin: 60px auto 0;
position: relative;
z-index: 1;
text-align: center
}
.sass-testimonial-section .inner-container:before {
content: '';
position: absolute;
bottom: -30px;
left: 35px;
right: 35px;
height: 200px;
background: #fff;
border-radius: 20px;
box-shadow: 0 15px 23px 0 rgba(35, 49, 64, .09);
z-index: -1
}
.sass-testimonial-section .inner-container:after {
content: '';
position: absolute;
bottom: -55px;
left: 80px;
right: 80px;
height: 200px;
background: #fff;
border-radius: 20px;
box-shadow: 0 14px 21px 0 rgba(0, 0, 0, .03);
z-index: -3
}
.sass-testimonial-section .inner-container p {
font-size: 24px;
line-height: 40px;
color: #303858
}
.sass-testimonial-section .inner-container .name {
font-family: CircularStdmed;
font-size: 18px;
text-transform: uppercase;
color: #303858;
padding: 45px 0 4px
}
.sass-testimonial-section .inner-container .designation {
font-size: 17px;
color: #9fa4b8
}
.sass-testimonial-section .owl-theme .owl-nav {
position: absolute;
width: 100%;
left: 0;
bottom: -228px
}
.sass-testimonial-section .owl-theme .owl-nav [class*=owl-] {
background: 0 0;
margin: 0 10px;
padding: 0;
font-size: 35px;
color: #5fa775;
opacity: .5
}
.sass-testimonial-section .owl-theme .owl-nav [class*=owl-]:hover {
opacity: 1
}
.sass-testimonial-section .people {
position: absolute;
border-radius: 50%;
width: 110px;
height: 110px;
box-shadow: 0 10px 20px 0 rgba(20, 44, 56, .25)
}
.sass-testimonial-section .people:nth-child(1) {
top: 12%;
left: 13%;
animation: scale-up-one 14s infinite linear
}
.sass-testimonial-section .people:nth-child(2) {
top: 44%;
left: 4%;
animation: scale-up-two 9s infinite linear
}
.sass-testimonial-section .people:nth-child(3) {
bottom: 7%;
left: 10%;
animation: scale-up-three 8s infinite linear
}
.sass-testimonial-section .people:nth-child(4) {
top: 12%;
right: 19%;
animation: scale-up-two 10s infinite linear
}
.sass-testimonial-section .people:nth-child(5) {
top: 42%;
right: 2%;
animation: scale-up-three 11s infinite linear
}
.sass-testimonial-section .people:nth-child(6) {
bottom: 7%;
right: 10%;
animation: scale-up-one 12s infinite linear
}
.apps-testimonial {
background: #f8faff;
position: relative;
padding: 190px 0 20px;
overflow: hidden
}
.apps-testimonial.bg-white {
background: #fff
}
.apps-testimonial .theme-title-one.upper-bar:before {
background: #fee341
}
.apps-testimonial .theme-title-one {
padding-bottom: 78px;
display: inline-block
}
.apps-testimonial .customer-block {
padding: 72px 40px 50px 45px;
position: relative;
background: #fff;
border-radius: 5px;
box-shadow: 0 10px 30px 0 rgba(244, 245, 249, .8);
margin: 10px 15px 30px
}
.apps-testimonial .customer-block:before {
content: url(//aq-technologies.com/wp-content/themes/saasweb/images/icon/icon35.svg);
position: absolute;
top: 50px;
left: 45px
}
.apps-testimonial.bg-white .customer-slider:before {
opacity: .45
}
.apps-testimonial .customer-block p {
font-size: 20px;
line-height: 35px;
padding-bottom: 45px
}
.apps-testimonial .customer-block .customer-img {
width: 60px;
height: 60px;
border-radius: 50%;
float: left
}
.apps-testimonial .customer-block .customer-info {
padding-left: 25px;
float: left
}
.apps-testimonial .customer-block .customer-info .name {
font-size: 20px;
color: #303858;
padding: 5px 0 2px
}
.apps-testimonial .customer-block .customer-info span {
color: #ACB0BD
}
.apps-testimonial .owl-theme .owl-nav {
position: absolute;
right: 0;
top: -140px
}
.apps-testimonial .owl-theme .owl-nav [class*=owl-] {
background: 0 0;
margin: 0 6px;
padding: 0;
font-size: 35px;
color: #d3d3d3
}
.apps-testimonial .owl-theme .owl-nav [class*=owl-]:hover {
color: #45ebff
}
.apps-testimonial .d-shape,
.apps-testimonial .u-shape {
font-family: CircularStdblck;
line-height: 420px;
color: #fff;
position: absolute
}
.apps-testimonial .customer-slider:before {
content: url(//aq-technologies.com/wp-content/themes/saasweb/images/icon/icon36.svg);
position: absolute;
right: 0;
top: -278px;
z-index: -1
}
.apps-testimonial .d-shape {
font-size: 600px;
bottom: -60px;
left: -192px
}
.apps-testimonial .u-shape {
font-size: 705px;
right: -199px;
top: -190px
}
.apps-testimonial .trusted-partner {
margin-top: 130px
}
.apps-testimonial .shape-one {
position: absolute;
top: 10%;
left: 5%;
animation: animationFramesFive 20s infinite linear alternate
}
.apps-testimonial .shape-two {
position: absolute;
top: 50%;
left: 5%;
animation: animationFramesFive 18s infinite linear alternate
}
.apps-testimonial .shape-three {
position: absolute;
top: 25%;
left: 50%;
animation: animationFramesOne 15s infinite linear alternate
}
.apps-testimonial .shape-four {
position: absolute;
top: 50%;
right: 5%;
animation: animationFramesFive 18s infinite linear alternate
}
.agn-home-blog {
position: relative;
padding: 200px 0
}
.agn-home-blog .shape-one {
position: absolute;
top: 20%;
left: 9%;
animation: animationFramesOne 25s infinite linear
}
.agn-home-blog .shape-two {
position: absolute;
top: 17%;
right: 13%;
animation: animationFramesFour 50s alternate infinite linear
}
.agn-home-blog .shape-three {
position: absolute;
bottom: 12%;
right: 6%;
animation: rotated 18s infinite linear
}
.agn-home-blog .shape-four {
position: absolute;
bottom: 9%;
left: 25%;
animation: animationFramesFour 50s alternate infinite linear
}
.agn-home-blog .theme-title-one {
padding-bottom: 100px
}
.agn-home-blog .single-blog-post {
position: relative;
overflow: hidden;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0)
}
.agn-home-blog .single-blog-post .flip-box-front {
border: 1px solid #f1f1f1;
padding: 50px 15px 50px 35px;
border-radius: 3px
}
.agn-home-blog .single-blog-post .flip-box-front .author-img {
width: 60px;
height: 60px;
border-radius: 50%;
float: left
}
.agn-home-blog .single-blog-post .flip-box-front .author-info {
float: left;
padding-left: 22px
}
.agn-home-blog .single-blog-post .author-info .name {
font-size: 20px;
color: #233d63;
padding-top: 7px
}
.agn-home-blog .single-blog-post .author-info .date {
font-size: 16px;
color: #838b98
}
.agn-home-blog .single-blog-post .title {
font-size: 24px;
line-height: 32px;
color: #233d63;
margin: 28px 0 20px
}
.agn-home-blog .single-blog-post p {
color: rgba(87, 102, 126, .8)
}
.agn-home-blog .single-blog-post .flip-box-back {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1;
border-radius: 3px;
padding: 50px 15px 50px 35px;
-webkit-transform: scaleY(0);
transform: scaleY(0);
-webkit-transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition-duration: .4s;
transition-duration: .4s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out
}
.agn-home-blog .single-blog-post .flip-box-back .author-info .date,
.agn-home-blog .single-blog-post .flip-box-back .author-info .name,
.agn-home-blog .single-blog-post .flip-box-back .title {
color: #fff
}
.agn-home-blog .single-blog-post .flip-box-back .author-info .name {
padding: 0 0 5px
}
.agn-home-blog .single-blog-post .flip-box-back .more {
color: #fff;
font-size: 40px;
position: absolute;
left: 35px;
bottom: 10px
}
.agn-home-blog .single-blog-post:hover .flip-box-back {
transform-origin: center top;
-webkit-transform: scaleY(1);
transform: scaleY(1)
}
.sass-contact-banner .d-shape,
.seo-contact-banner .d-shape {
font-family: CircularStdblck;
transform: rotate(180deg)
}
.agn-contact-banner {
text-align: center;
background-color: #F9FBFE;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/map2.png);
background-position: center center;
background-repeat: no-repeat;
padding: 140px 0
}
.agn-contact-banner .title {
font-size: 48px;
line-height: 64px;
color: #233D63;
padding-bottom: 35px
}
.agn-contact-banner .contact-button {
font-size: 20px;
line-height: 56px;
width: 220px
}
.seo-contact-banner {
text-align: center;
background: linear-gradient(-135deg, #8a4eff 0, #6b52ff 100%);
padding: 140px 0;
position: relative;
overflow: hidden;
z-index: 5;
margin-top: 210px
}
.seo-contact-banner:before {
content: '';
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/map2.png);
background-position: center center;
background-repeat: no-repeat;
z-index: -1
}
.seo-contact-banner .title {
font-size: 48px;
line-height: 64px;
color: #fff;
padding-bottom: 35px
}
.seo-contact-banner .contact-button {
width: 220px;
line-height: 56px;
border: 2px solid #fff;
border-radius: 30px;
font-size: 20px;
color: #fff
}
.seo-contact-banner .round-shape-one,
.seo-contact-banner .round-shape-two {
width: 482px;
height: 482px;
border-radius: 50%;
background: rgba(216, 216, 216, .03);
position: absolute
}
.seo-contact-banner .contact-button:hover {
color: #fff
}
.seo-contact-banner .round-shape-one {
top: -175px;
left: -130px;
animation: jello 5s infinite linear;
z-index: -1
}
.seo-contact-banner .round-shape-two {
bottom: -105px;
left: -290px;
animation: pulse 2s infinite linear
}
.seo-contact-banner .d-shape {
font-size: 700px;
position: absolute;
line-height: 500px;
right: -200px;
top: -31px;
color: rgba(35, 61, 99, .05);
z-index: -1
}
.sass-contact-banner {
text-align: center;
background: linear-gradient(-134deg, #feffef 0, #fffbd0 100%);
padding: 140px 0;
position: relative;
overflow: hidden;
z-index: 5
}
.sass-contact-banner:before {
content: '';
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/map3.png);
background-position: center center;
background-repeat: no-repeat;
z-index: -1
}
.sass-contact-banner .title {
font-size: 48px;
line-height: 64px;
padding-bottom: 35px
}
.sass-contact-banner .subscribe-button {
width: 248px;
line-height: 60px;
background: #fff;
border-radius: 5px;
font-size: 20px;
color: #393939;
box-shadow: 0 15px 30px 0 rgba(246, 245, 211, 1)
}
.sass-contact-banner .subscribe-button:hover {
color: #fff;
background: #233d63
}
.sass-contact-banner .u-shape {
font-family: CircularStdblck;
font-size: 705px;
position: absolute;
top: -500px;
left: -260px;
color: #fff;
z-index: -1
}
.sass-contact-banner .d-shape {
font-size: 700px;
color: #FFF;
position: absolute;
right: -218px;
bottom: -515px;
z-index: -1
}
.theme-footer-one {
position: relative;
padding-top: 125px
}
.theme-footer-one .shape-two {
position: absolute;
right: 10%;
top: 50%;
animation: rotated 18s infinite linear
}
.theme-footer-one.top-border {
border-top: 1px solid #ededed;
padding-top: 95px
}
.theme-footer-one .about-widget .email {
font-size: 18px;
color: #76797e;
margin: 15px 0;
display: block
}
.theme-footer-one .about-widget .phone {
font-size: 22px
}
.theme-footer-one .top-footer .title {
font-size: 22px;
padding: 12px 0 25px
}
.theme-footer-one .top-footer .footer-list ul li a {
display: block;
line-height: 38px;
font-size: 17px;
color: #76797e
}
.theme-footer-one .bottom-footer ul li,
.theme-footer-one .top-footer .footer-information ul li {
display: inline-block
}
.theme-footer-one .top-footer .footer-information p {
padding: 0 0 30px;
color: #76797e
}
.theme-footer-one .top-footer .footer-information ul li a {
width: 40px;
height: 40px;
border: 1px solid #dbdbdb;
border-radius: 50%;
text-align: center;
line-height: 40px;
color: #dbdbdb;
margin-right: 10px
}
.theme-footer-one .top-footer .footer-information ul li a:hover {
color: #fff
}
.theme-footer-one .bottom-footer {
border-top: 1px solid #ededed;
margin-top: 90px;
padding: 35px 0
}
.theme-footer-one .bottom-footer p {
float: left;
color: rgba(87, 102, 126, .8)
}
.seo-work-progress .single-work-list:nth-child(even) .img-box img,
.theme-footer-one .bottom-footer ul {
float: right
}
.theme-footer-one .bottom-footer ul li a {
line-height: 28px;
color: rgba(87, 102, 126, .8);
margin-left: 15px
}
.theme-footer-one .shape-one {
width: 54px;
height: 54px;
border: 6px solid #27c3ff;
border-radius: 50%;
position: absolute;
left: -22px;
top: 48%
}
.theme-footer-one .shape-one:before {
content: '';
position: absolute;
top: -55px;
left: -55px;
right: -55px;
bottom: -55px;
border: 1px solid #ecf4ff;
border-radius: 50%
}
.seo-our-goal {
position: relative;
background: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/bg1.png) center no-repeat;
background-size: cover;
padding: 150px 0 220px
}
.seo-our-goal .theme-title-one .upper-title {
color: rgba(35, 61, 99, .4)
}
.seo-our-goal .text-wrapper p {
font-size: 18px;
line-height: 32px;
padding: 22px 0 30px
}
.seo-our-goal .text-wrapper .list-item li {
font-size: 17px;
line-height: 37px;
color: rgba(87, 102, 126, .8);
padding-left: 28px;
position: relative
}
.seo-our-goal .text-wrapper .list-item li:before {
content: "\f107";
font-family: Flaticon;
font-size: 16px;
color: #ff6400;
position: absolute;
left: 0;
top: 0;
line-height: 37px
}
.seo-our-goal .text-wrapper .request-button {
font-size: 16px;
color: #ff6400;
margin-top: 40px
}
.seo-our-goal .text-wrapper .request-button i {
font-size: 18px;
vertical-align: -1px;
margin-left: 2px
}
.seo-our-goal .text-wrapper .request-button:hover {
text-decoration: underline
}
.seo-our-goal .right-shape {
position: absolute;
top: 60px;
right: 0;
height: 569px;
width: 41%;
background: url(//aq-technologies.com/wp-content/themes/saasweb/images/home/8.jpg) left top no-repeat;
box-shadow: 0 50px 100px 0 rgba(89, 102, 138, .1)
}
.our-service-seo {
position: relative;
background: linear-gradient(-135deg, #8c67ff 0, #5842ff 100%);
padding: 300px 0 350px;
overflow: hidden
}
.our-service-seo .single-block:before,
.our-service-seo:after,
.our-service-seo:before {
content: '';
background: #fff
}
.our-service-seo:before {
width: 150%;
height: 350px;
transform: rotate(-4deg);
position: absolute;
top: -125px;
right: 0
}
.our-service-seo:after {
width: 150%;
height: 170px;
transform: rotate(-4deg);
position: absolute;
bottom: -45px;
left: -3px
}
.our-service-seo .round-shape-one {
position: absolute;
font-size: 550px;
color: rgba(255, 255, 255, .05);
top: 88px;
right: -145px;
line-height: 290px;
animation: tada 8s infinite linear
}
.our-service-seo .round-shape-two {
position: absolute;
width: 396px;
height: 396px;
border: 50px solid rgba(0, 0, 0, .03);
border-radius: 50%;
bottom: -100px;
left: -190px;
animation: jello 10s infinite linear
}
.our-service-seo .theme-title-one .upper-title {
color: rgba(255, 255, 255, .5)
}
.our-service-seo .theme-title-one .main-title {
color: #fff
}
.our-service-seo .theme-title-one {
padding-bottom: 100px
}
.our-service-seo .single-block {
position: relative;
z-index: 1;
border: 1px solid rgba(250, 250, 250, .15);
border-radius: 7px;
padding: 45px 60px 40px 115px;
margin-bottom: 40px
}
.our-service-seo .single-block .icon {
position: absolute;
top: 50px;
left: 42px
}
.our-service-seo .single-block .title a {
font-size: 24px;
display: block;
color: #fff;
margin-right: 100px
}
.our-service-seo .single-block p {
line-height: 30px;
color: rgba(255, 255, 255, .8);
padding: 12px 0 25px
}
.our-service-seo .single-block .more-button {
font-size: 16px;
color: rgba(255, 255, 255, .9)
}
.our-service-seo .single-block .more-button i {
font-size: 18px;
vertical-align: -1px;
margin-left: 2px
}
.our-service-seo .single-block .more-button:hover {
text-decoration: underline
}
.our-service-seo .single-block:before {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: -1;
border-radius: 7px;
transform: scaleY(0);
transform-origin: 50% 100%;
transition: transform .4s ease-out
}
.our-service-seo .single-block:hover:before {
transform-origin: center top;
-webkit-transform: scaleY(1);
transform: scaleY(1)
}
.our-service-seo .single-block:hover .title a {
color: #2c3e5c
}
.our-service-seo .single-block:hover p {
color: rgba(52, 52, 52, .6)
}
.our-service-seo .single-block:hover .more-button {
color: #ff6400
}
.our-service-sass {
background: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/shape-12.svg) center bottom no-repeat;
background-size: cover;
position: relative;
padding: 105px 0 115px
}
.our-service-sass:after,
.our-service-sass:before {
content: '';
position: absolute
}
.our-service-sass:before {
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: -1;
background: linear-gradient(0deg, #fbfdff 0, #fff 100%)
}
.our-service-sass:after {
width: 2px;
height: 80px;
background: #d4e5ea;
top: -40px;
left: 50%;
margin-left: -1px;
transform: scale(1, 0);
transition: all 1s ease-out
}
.our-service-sass.show-pr:after {
transform: scale(1, 1)
}
.our-service-sass .theme-title-one {
padding-bottom: 52px;
z-index: 2
}
.our-service-sass .inner-wrapper {
position: relative;
z-index: 1
}
.our-service-sass .inner-wrapper:before {
content: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/shape-13.svg);
position: absolute;
top: -165px;
left: -165px;
z-index: -1
}
.our-service-sass .inner-wrapper:after {
content: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/shape-14.svg);
position: absolute;
bottom: -165px;
right: -165px;
z-index: -1
}
.our-service-sass .service-block {
background: #fff;
border: 1px solid #eff7ff;
border-radius: 5px;
overflow: hidden;
position: relative;
z-index: 5;
padding: 180px 30px 25px 40px;
margin-top: 45px
}
.our-service-sass .service-block:before {
content: '';
width: 273px;
height: 273px;
background: #d858f5;
border-radius: 50%;
position: absolute;
top: -148px;
left: -83px;
transform: scale(0)
}
.our-service-sass .service-block:hover:before {
transform: scale(1);
transition: all .5s linear;
transition-delay: .1s
}
.our-service-sass .service-block:hover {
border-color: transparent
}
.our-service-sass .service-block .icon-s {
position: absolute;
font-size: 65px;
left: 40px;
top: 52px
}
.our-service-sass .single-block:nth-child(1) .service-block .icon-s {
color: #6df7bc
}
.our-service-sass .single-block:nth-child(2) .service-block .icon-s {
color: #25e5eb
}
.our-service-sass .single-block:nth-child(3) .service-block .icon-s {
color: #ff4ca5
}
.our-service-sass .service-block .title a {
font-size: 22px;
line-height: 32px;
color: #253d5f;
margin-bottom: 30px
}
.our-service-sass .service-block p {
color: #737f92;
padding-bottom: 20px
}
.our-service-sass .service-block .detail-button {
font-size: 40px;
color: #cad5e5
}
.our-service-sass .service-block .hover-content {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #9a5be8;
z-index: -3;
opacity: 0;
transition: all .3s linear
}
.our-service-sass .service-block:hover .hover-content {
opacity: 1
}
.our-service-sass .service-block .hover-content:before {
content: '';
width: 493px;
height: 493px;
background: #c647fe;
border-radius: 50%;
position: absolute;
top: -250px;
left: -180px;
z-index: 1;
transform: translate(-50%, -50%);
opacity: 0
}
.our-service-sass .service-block:hover .hover-content:before {
opacity: 1;
transform: translate(0, 0);
transition: all .9s linear
}
.our-service-sass .service-block .hover-content:after {
content: '';
width: 602px;
height: 602px;
background: #a461e8;
border-radius: 50%;
position: absolute;
top: -196px;
left: -180px;
z-index: -1;
transform: translate(-50%, -50%);
opacity: 0
}
.our-service-sass .service-block:hover .hover-content:after {
opacity: 1;
transform: translate(0, 0);
transition: all 1.3s linear
}
.our-service-sass .service-block .snow-dot {
position: absolute;
width: 8px;
height: 8px;
border-radius: 50%;
background: rgba(255, 255, 255, .5);
z-index: -1
}
.our-service-sass .service-block .snow-dot:nth-child(1) {
top: 25px;
left: 41%;
z-index: 1;
animation: scale-upOne 1s alternate infinite ease-in
}
.our-service-sass .service-block .snow-dot:nth-child(2) {
top: 25px;
left: 78%;
animation: scale-upOne 1.1s alternate infinite ease-in
}
.our-service-sass .service-block .snow-dot:nth-child(3) {
top: 75px;
left: 61%;
animation: scale-upOne .8s alternate infinite ease-in
}
.our-service-sass .service-block .snow-dot:nth-child(4) {
top: 136px;
left: 84%;
animation: scale-upOne 1s alternate infinite ease-in
}
.our-service-sass .service-block .snow-dot:nth-child(5) {
bottom: 35px;
right: 12%;
animation: scale-upOne 1.2s alternate infinite ease-in
}
.our-service-sass .service-block .snow-dot:nth-child(6) {
bottom: 80px;
right: 31%;
animation: scale-upOne .9s alternate infinite ease-in
}
.our-service-sass .service-block .snow-dot:nth-child(7) {
bottom: 40px;
right: 51%;
animation: scale-upOne 1s alternate infinite ease-in
}
.our-service-sass .service-block:hover .detail-button,
.our-service-sass .service-block:hover .icon-s,
.our-service-sass .service-block:hover .title a,
.our-service-sass .service-block:hover p {
color: #fff!important
}
.theme-more-feature.our-service-sass .inner-wrapper:after,
.theme-more-feature.our-service-sass .inner-wrapper:before,
.theme-more-feature.our-service-sass:after,
.theme-more-feature.our-service-sass:before {
display: none
}
.our-service-sass.theme-more-feature {
background: 0 0;
padding: 165px 0 180px
}
.our-service-app {
position: relative;
padding: 260px 0 200px;
border-bottom: 1px solid #ededed
}
.our-service-app .main-content {
max-width: 1450px;
padding: 0 15px;
margin: 90px auto 0
}
.our-service-app .main-content .inner-wrapper {
text-align: center;
position: relative;
margin-top: 50px
}
.our-service-app .main-content .inner-wrapper .title a {
font-size: 24px;
color: #4e4e4e;
margin: 45px 0 30px
}
.our-service-app .main-content .inner-wrapper:hover .title a {
color: #614ef9
}
.our-service-app .main-content .inner-wrapper p {
line-height: 30px;
padding: 0 50px;
color: #8c929d
}
.our-service-app .main-content .inner-wrapper .illustration-box {
display: inline-block;
position: relative;
min-height: 230px
}
.our-service-app .main-content .single-block:nth-child(1) .illustration-box .bg-shape,
.our-service-app .main-content .single-block:nth-child(3) .illustration-box .bg-shape {
animation: rotated 35s infinite linear
}
.our-service-app .main-content .single-block:nth-child(1) .illustration-box .block-shape-one {
position: absolute;
top: 42px;
left: -16px
}
.our-service-app .main-content .single-block:nth-child(1) .illustration-box .block-shape-two {
position: absolute;
top: 42px;
right: 0
}
.our-service-app .main-content .single-block:nth-child(1) .illustration-box .block-shape-three {
position: absolute;
bottom: 24px;
right: 0
}
.our-service-app .main-content .single-block:nth-child(1) .illustration-box [class*=block-shape] {
transform: scale(1.5)
}
.our-service-app .main-content .single-block .illustration-box [class*=block-shape] {
opacity: 0;
transition: all 1.5s ease-in-out
}
.our-service-app .main-content .single-block:nth-child(2) .illustration-box .block-shape-one {
position: absolute;
top: 120px;
left: 26px;
transform: scale(1.5)
}
.our-service-app .main-content .single-block:nth-child(2) .illustration-box .block-shape-two {
position: absolute;
top: 0;
left: 120px;
transform: scale(1.5)
}
.our-service-app .main-content .single-block:nth-child(2) .illustration-box .block-shape-three {
position: absolute;
top: 66px;
right: 6px;
transform: scale(1.5)
}
.our-service-app .main-content .single-block:nth-child(2) .illustration-box .block-shape-four {
position: absolute;
top: 52px;
right: 63px;
transform: translateY(30px)
}
.our-service-app .main-content.show-pr .single-block:nth-child(2) .illustration-box .block-shape-four {
transform: translateY(0)
}
.our-service-app .main-content .single-block:nth-child(3) .illustration-box .block-shape-one {
position: absolute;
top: 7px;
left: 45px;
transform: scale(1.5)
}
.our-service-app .main-content.show-pr .single-block:nth-child(1) .illustration-box [class*=block-shape],
.our-service-app .main-content.show-pr .single-block:nth-child(2) .illustration-box [class*=block-shape],
.our-service-app .main-content.show-pr .single-block:nth-child(3) .illustration-box [class*=block-shape] {
opacity: 1;
transform: scale(1)
}
.our-service-app .main-content .single-block:nth-child(2) .illustration-box:after,
.our-service-app .main-content .single-block:nth-child(2) .illustration-box:before {
content: '';
position: absolute;
width: 145px;
height: 1px;
border-top: 1px dashed #e6e6e6;
top: 45%
}
.our-service-app .main-content .single-block:nth-child(2) .illustration-box:before {
right: -150px
}
.our-service-app .main-content .single-block:nth-child(2) .illustration-box:after {
left: -150px
}
.our-service-app .main-content .more-button {
display: block;
width: 230px;
line-height: 51px;
border-radius: 30px;
background: #614ef9;
border: 2px solid #614ef9;
font-size: 14px;
color: #fff;
text-transform: uppercase;
margin: 100px auto 0;
text-align: center
}
.our-service-app .main-content .more-button:hover {
background: #fff;
color: #614ef9
}
.our-service-app .main-content .down-arrow {
display: block;
width: 60px;
height: 60px;
box-shadow: 0 15px 20px 0 rgba(209, 218, 235, .35);
background: #fff;
border-radius: 50%;
margin: 0 0 0 -30px;
line-height: 60px;
text-align: center;
color: #7494b5;
font-size: 20px;
position: absolute;
bottom: -30px;
left: 50%;
z-index: 1
}
.our-service-app .main-content .down-arrow span {
display: block;
transform: rotate(-90deg)
}
.our-service-app .main-content .down-arrow:hover {
color: #fff;
background: #614ef9
}
.seo-work-progress {
position: relative;
padding: 210px 0 230px
}
.seo-work-progress .single-work-list {
position: relative;
padding-bottom: 310px
}
.seo-work-progress .single-work-list:nth-child(odd):before {
content: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/line-1.svg);
position: absolute;
top: 53%;
left: 22%;
z-index: -1
}
.seo-work-progress .single-work-list:nth-child(even):before {
content: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/line-2.svg);
position: absolute;
top: 35%;
right: 16%;
z-index: -1
}
.seo-work-progress .single-work-list:last-child:before {
display: none!important
}
.seo-work-progress .single-work-list:last-child {
padding-bottom: 0
}
.seo-work-progress .single-work-list .text-wrapper {
position: relative;
padding-left: 90px
}
.seo-work-progress .single-work-list .text-wrapper .icon-box {
width: 50px;
height: 50px;
border-radius: 50%;
position: absolute;
top: 11px;
left: 0
}
.seo-work-progress .single-work-list .text-wrapper .icon-box img {
margin: 0 auto;
position: relative;
top: 50%;
transform: translateY(-50%)
}
.seo-work-progress .single-work-list .text-wrapper .icon-box:before {
content: '';
top: -10px;
right: -10px;
bottom: -10px;
left: -10px;
z-index: -1;
position: absolute;
border-radius: 50%;
-webkit-animation: hvr-ripple-out-two 2s linear infinite;
animation: hvr-ripple-out-two 2s linear infinite
}
.seo-work-progress .single-work-list:nth-child(1) .text-wrapper .icon-box {
background: #a16fff
}
.seo-work-progress .single-work-list:nth-child(1) .text-wrapper .icon-box:before {
background: #bc99fd
}
.seo-work-progress .single-work-list:nth-child(2) .text-wrapper .icon-box {
background: #ff6464
}
.seo-work-progress .single-work-list:nth-child(2) .text-wrapper .icon-box:before {
background: #f88
}
.seo-work-progress .single-work-list:nth-child(3) .text-wrapper .icon-box {
background: #01e9eb
}
.seo-work-progress .single-work-list:nth-child(3) .text-wrapper .icon-box:before {
background: #49fcfe
}
.seo-work-progress .single-work-list .text-wrapper .title {
font-size: 48px;
line-height: 60px;
padding-bottom: 28px;
text-decoration: underline
}
.seo-work-progress .single-work-list .text-wrapper p {
font-size: 20px;
line-height: 32px;
color: rgba(87, 102, 126, .8);
padding-bottom: 15px
}
.seo-work-progress .single-work-list .text-wrapper ul {
padding-top: 10px
}
.seo-work-progress .single-work-list .text-wrapper ul li {
font-size: 18px;
color: rgba(87, 102, 126, .8);
line-height: 32px;
position: relative;
padding-bottom: 22px
}
.seo-work-progress .single-work-list .text-wrapper ul li:before {
content: "\f107";
font-family: Flaticon;
font-size: 18px;
color: #ff6400;
position: absolute;
left: -32px;
top: 0;
line-height: 32px
}
.seo-work-progress .single-work-list .img-box {
position: relative;
z-index: 1
}
.home-portfo {
background: #1b1d3d;
color: #fff
}
.section-portfo {
position: relative;
border-bottom: 1px solid #31345e;
margin-bottom: 190px
}
.section-portfo .section-num {
position: absolute;
font-family: Lato, sans-serif;
font-weight: 100;
font-size: 180px;
color: #26294f;
top: 60px;
right: 75px;
z-index: -1
}
.section-portfo .section-num:before {
content: '';
width: 0;
height: 2px;
position: absolute;
right: -75px;
top: 50%;
margin-top: -1px;
background: #e1a34c;
transition: width 1s ease-out;
transition-delay: .9s
}
.section-portfo .section-num span {
opacity: 0;
transition: opacity .8s ease-out
}
.section-portfo .section-num span:first-child {
transition-delay: .1s
}
.section-portfo .section-num span:last-child {
transition-delay: .3s
}
.section-portfo .section-num.show-pr span {
opacity: 1
}
.section-portfo .section-num.show-pr:before {
width: 60px
}
.about-me-portfo {
padding-bottom: 240px
}
.about-me-portfo .inner-content {
position: relative;
z-index: 1;
padding-left: 330px
}
.about-me-portfo .inner-content .profile-tab {
margin: -25px 0 0;
padding-left: 240px;
position: relative
}
.about-me-portfo .inner-content .profile-tab .nav-tabs {
border: none;
margin-bottom: 55px;
position: relative
}
.about-me-portfo .inner-content .profile-tab .nav-tabs:before {
content: '';
position: absolute;
width: 0;
height: 2px;
background: #fff;
top: 31px;
left: -240px;
transition: width 1.5s ease-in-out
}
.about-me-portfo .inner-content .profile-tab .nav-tabs.show-pr:before {
width: 200px
}
.about-me-portfo .inner-content .profile-tab .nav-tabs .nav-item {
margin: 0
}
.about-me-portfo .inner-content .profile-tab .nav-tabs .nav-link {
background: 0 0;
border: none;
color: #fff;
font-size: 24px;
margin: 15px 25px 0;
padding: 0
}
.about-me-portfo .inner-content .profile-tab .nav-tabs .nav-item:first-child .nav-link {
margin-left: 0
}
.about-me-portfo .inner-content .profile-tab .nav-tabs .nav-item:last-child .nav-link {
margin-right: 0
}
.about-me-portfo .inner-content .profile-tab .nav-tabs .nav-item.show .nav-link,
.about-me-portfo .inner-content .profile-tab .nav-tabs .nav-link.active {
color: #e1a34c
}
.about-me-portfo .inner-content .profile-tab .tab-content p {
font-size: 20px;
line-height: 40px;
color: #83859b
}
.about-me-portfo .inner-content .profile-tab .tab-content p span {
color: #fff;
text-decoration: underline
}
.about-me-portfo .inner-content .profile-tab .tab-content p b {
font-weight: 400;
font-size: 22px;
color: #fff
}
.about-me-portfo .inner-content .profile-tab .tab-content .tag {
font-size: 20px;
color: #83859b;
padding: 15px 0 30px
}
.about-me-portfo .inner-content .profile-tab .tab-content ul {
list-style-type: disc
}
.about-me-portfo .inner-content .profile-tab .tab-content ul li {
font-size: 18px;
line-height: 28px;
color: #83859b;
padding-bottom: 15px;
margin-left: 18px
}
.about-me-portfo .inner-content .profile-tab .skill-list {
padding-top: 25px
}
.about-me-portfo .inner-content .profile-tab .skill-list li {
font-size: 22px;
color: #fff
}
.about-me-portfo .inner-content .profile-tab .skill-list li span {
font-size: 14px;
color: #e1a34c
}
.about-me-portfo .inner-content .button-group {
margin-top: 45px
}
.about-me-portfo .inner-content .button-group li {
display: inline-block;
margin-top: 10px
}
.about-me-portfo .inner-content .button-group li .download-button {
width: 220px;
line-height: 52px;
text-align: center;
border: 1px solid #e1a34c;
color: #e1a34c;
font-size: 22px;
margin-right: 20px
}
.about-me-portfo .inner-content .button-group li .hire-button {
width: 180px;
line-height: 52px;
text-align: center;
border: 1px solid rgba(255, 255, 255, .2);
color: #fff;
font-size: 22px;
margin-right: 20px
}
.about-me-portfo .inner-content .button-group li .download-button:hover,
.about-me-portfo .inner-content .button-group li .hire-button:hover {
background: #e1a34c;
border: 1px solid #e1a34c;
color: #fff
}
.about-me-portfo .inner-content .img-box {
position: absolute;
top: 170px;
left: 0;
z-index: -1;
width: 38%
}
.about-me-portfo .inner-content .img-box:after,
.about-me-portfo .inner-content .img-box:before {
background: #e1a34c;
top: -95px;
left: -115px;
transition: all 1.5s ease-out;
content: '';
position: absolute
}
.about-me-portfo .inner-content .img-box:before {
width: 1px;
height: 0
}
.about-me-portfo .inner-content .img-box:after {
width: 0;
height: 1px
}
.about-me-portfo .inner-content .img-box.show-pr:before {
height: 425px
}
.about-me-portfo .inner-content .img-box.show-pr:after {
width: 350px
}
.skill-section-portfo {
padding-bottom: 225px
}
.skill-section-portfo:before {
content: '';
background: -webkit-radial-gradient(50% 50%, circle closest-side, #23265b 0, #1b1d3d 100%);
position: absolute;
width: 2366px;
height: 2366px;
border-radius: 50%;
left: 50%;
top: -500px;
transform: translateX(-50%);
z-index: -1
}
.skill-section-portfo .skill-bar {
padding: 225px 0 0
}
.skill-section-portfo .skill-bar .progress {
height: 5px;
width: 100%;
background: rgba(255, 255, 255, .1);
overflow: visible;
position: relative;
margin: 0 0 35px;
border-radius: 3px
}
.skill-section-portfo .skill-bar .progress-bar {
position: absolute;
width: 0;
top: 0;
left: 0;
height: 100%;
background: #e1a34c;
border-radius: 3px;
transition: all 3s ease-in-out
}
.skill-section-portfo .skill-bar .progress-bar .percent-text {
font-family: CircularStdmed;
font-size: 72px;
color: #fff;
position: absolute;
top: -127px;
left: 0
}
.skill-section-portfo .skill-bar .skill-title {
font-size: 30px;
color: #fff;
padding-bottom: 3px
}
.skill-section-portfo .skill-bar .category {
font-size: 17px;
text-transform: uppercase;
color: #e1a34c
}
.our-service-portfo {
padding-bottom: 200px
}
.our-service-portfo .title-wrapper {
margin-bottom: 60px
}
.our-service-portfo .title-wrapper p {
font-size: 24px;
color: rgba(255, 255, 255, .8);
margin: -30px 0 0
}
.our-service-portfo .service-block {
background: #202245;
position: relative;
padding: 50px 80px 40px 70px;
margin-top: 70px;
z-index: 1
}
.our-service-portfo .service-block:after,
.our-service-portfo .service-block:before {
height: 100%;
position: absolute;
top: 0;
background: #1b1d3d;
z-index: -1;
content: ''
}
.our-service-portfo .service-block .title a {
font-size: 24px;
color: #fff;
line-height: 32px;
display: block;
margin: 28px 80px 25px 0
}
.our-service-portfo .service-block p {
font-size: 18px;
line-height: 32px;
color: rgba(255, 255, 255, .6)
}
.our-service-portfo .service-block .read-more {
font-size: 35px;
color: #fff;
margin-top: 20px
}
.our-service-portfo .service-block:before {
width: 100%;
left: 0;
border-left: 1px solid #e1a34c;
border-right: 1px solid #e1a34c;
transform: scale(1, 0)
}
.our-service-portfo .service-block:after {
left: 1px;
right: 1px;
border-top: 1px solid #e1a34c;
border-bottom: 1px solid #e1a34c;
transform: scale(0, 1)
}
.our-service-portfo .service-block:hover:after,
.our-service-portfo .service-block:hover:before {
transform: scale(1, 1)
}
.our-service-portfo .service-block:hover .read-more,
.our-service-portfo .service-block:hover .title a {
color: #e1a34c
}
.our-project-portfo.section-portfo {
border-bottom: none;
padding-bottom: 90px
}
.our-project-portfo .isotop-menu-wrapper {
position: relative;
margin: 5px 0 60px;
padding-left: 190px
}
.our-project-portfo .isotop-menu-wrapper:before {
content: '';
width: 0;
height: 2px;
position: absolute;
top: 17px;
left: 0;
background: #e1a34c;
transition: width 1s ease-out
}
.our-project-portfo .isotop-menu-wrapper.show-pr:before {
width: 150px
}
.our-project-portfo .isotop-menu-wrapper li {
display: inline-block;
font-size: 24px;
color: #fff;
margin-right: 65px;
cursor: pointer
}
.our-project-portfo .isotop-menu-wrapper li.is-checked {
color: #e1a34c
}
.our-project-portfo .text-content {
position: relative;
margin-bottom: 120px
}
.our-project-portfo .text-content p {
font-size: 20px;
line-height: 38px;
color: rgba(255, 255, 255, .6);
width: 70%;
padding-left: 190px
}
.our-project-portfo .text-content .gallery-button {
width: 190px;
line-height: 55px;
font-size: 20px;
text-align: center;
color: #fff;
background: #e1a34c;
position: absolute;
right: 0;
top: 8px
}
.our-project-portfo .text-content .gallery-button:hover {
background: #fff;
color: #e1a34c
}
.our-project-portfo #isotop-gallery-wrapper .grid-sizer,
.our-project-portfo #isotop-gallery-wrapper .isotop-item {
width: 25%;
padding: 0 20px;
margin-top: 35px
}
.our-project-portfo #isotop-gallery-wrapper .isotop-item .effect-zoe {
position: relative!important;
overflow: hidden;
background: -webkit-radial-gradient(50% 50%, circle closest-side, #23265b 0, #1b1d3d 100%);
text-align: center;
margin: 0
}
.our-project-portfo #isotop-gallery-wrapper .isotop-item .effect-zoe img {
position: relative;
display: block;
width: 100%
}
.our-project-portfo #isotop-gallery-wrapper .isotop-item:hover .effect-zoe img {
transform: scale3d(1.1, 1.1, 1);
opacity: .4
}
.our-project-portfo #isotop-gallery-wrapper .isotop-item .effect-zoe .inner-caption {
position: absolute;
left: 0;
width: 100%;
padding: 20px 25px;
text-transform: uppercase;
top: auto;
bottom: 0;
height: auto;
background: #fff;
-webkit-transition: all .35s;
transition: all .35s;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
opacity: 0;
visibility: hidden
}
.our-project-portfo #isotop-gallery-wrapper .isotop-item h2 {
font-size: 20px;
float: left
}
.our-project-portfo #isotop-gallery-wrapper .isotop-item h2 span {
font-weight: 700
}
.our-project-portfo #isotop-gallery-wrapper .isotop-item h2 a {
color: #233D63
}
.our-project-portfo #isotop-gallery-wrapper .isotop-item p.icon-links a {
float: right;
color: #3c4a50;
font-size: 25px;
margin-left: 18px
}
.our-project-portfo #isotop-gallery-wrapper .isotop-item:hover p.icon-links a:focus,
.our-project-portfo #isotop-gallery-wrapper .isotop-item:hover p.icon-links a:hover {
color: #e1a34c
}
.our-project-portfo #isotop-gallery-wrapper .isotop-item p.description {
position: absolute;
width: 100%;
left: 0;
bottom: 100px;
padding: 0 0 70px;
color: #fff;
text-transform: none;
opacity: 0;
font-size: 95%;
-webkit-transition: opacity .35s;
transition: opacity .35s;
-webkit-backface-visibility: hidden
}
.our-project-portfo #isotop-gallery-wrapper .isotop-item h2,
.our-project-portfo #isotop-gallery-wrapper .isotop-item p.icon-links a {
-webkit-transition: all .35s;
transition: all .35s;
-webkit-transform: translate3d(0, 200%, 0);
transform: translate3d(0, 200%, 0)
}
.our-project-portfo #isotop-gallery-wrapper .isotop-item:hover p.description {
opacity: 1
}
.our-project-portfo #isotop-gallery-wrapper .isotop-item:hover .inner-caption,
.our-project-portfo #isotop-gallery-wrapper .isotop-item:hover h2,
.our-project-portfo #isotop-gallery-wrapper .isotop-item:hover p.icon-links a {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
visibility: visible
}
.our-project-portfo #isotop-gallery-wrapper .isotop-item:hover h2 {
-webkit-transition-delay: 50ms;
transition-delay: 50ms
}
.our-project-portfo #isotop-gallery-wrapper .isotop-item:hover p.icon-links a:nth-child(2) {
-webkit-transition-delay: .15s;
transition-delay: .15s
}
.our-project-portfo #isotop-gallery-wrapper .isotop-item:hover p.icon-links a:first-child {
-webkit-transition-delay: .2s;
transition-delay: .2s
}
.portfo-footer {
position: relative;
background: linear-gradient(-180deg, #1b1d3d 0, #1d1f47 100%);
padding: 270px 0 0
}
.portfo-footer:before {
content: '';
position: absolute;
width: 3px;
height: 182px;
border-radius: 8px;
background: #e1a34c;
top: -91px;
left: 50%;
transform: translateX(-50%) scale(1, 0);
transition: all 1s ease-out
}
.portfo-footer.show-pr:before {
transform: translateX(-50%) scale(1, 1)
}
.portfo-footer .round-shape {
position: absolute;
left: 0;
top: -45px
}
.portfo-footer .theme-title-one {
margin-bottom: 118px
}
.portfo-footer .theme-title-one:before {
content: url(//aq-technologies.com/wp-content/themes/saasweb/images/icon/icon22.svg);
position: absolute;
top: -32px;
left: 50%;
transform: translateX(-50%);
opacity: 0;
transition: all 1s ease-in-out
}
.portfo-footer .theme-title-one.show-pr:before {
top: -72px;
opacity: 1
}
.portfo-footer .theme-title-one .upper-title {
color: #e1a34c
}
.portfo-footer .theme-title-one .main-title {
color: #fff
}
.portfo-footer form {
max-width: 840px;
padding: 0 15px;
margin: 0 auto
}
.portfo-footer form .row {
margin: 0 -25px
}
.portfo-footer form .row [class=col-] {
padding: 0 25px
}
.portfo-footer form .input-group {
position: relative;
z-index: 1
}
.portfo-footer form .input-group input {
width: 100%;
border: none;
border-bottom: 1px solid rgba(255, 255, 255, .25);
background: 0 0;
height: 53px;
font-size: 18px;
color: #fff;
position: relative;
margin-bottom: 75px
}
.portfo-footer form .input-group textarea {
width: 100%;
max-width: 100%;
height: 160px;
max-height: 160px;
resize: none;
border: none;
border-bottom: 1px solid rgba(255, 255, 255, .25);
background: 0 0;
font-size: 18px;
color: #fff;
padding-top: 12px
}
.portfo-footer form .input-group::placeholder {
color: rgba(255, 255, 255, .3);
opacity: 1
}
.portfo-footer form .input-group:-ms-input-placeholder {
color: rgba(255, 255, 255, .3)
}
.portfo-footer form .input-group::-ms-input-placeholder {
color: rgba(255, 255, 255, .3)
}
.portfo-footer form .input-group label {
font-weight: 400;
font-size: 18px;
color: rgba(255, 255, 255, .3);
line-height: 53px;
position: absolute;
left: 0;
top: 0;
z-index: -1;
margin: 0
}
.portfo-footer form .input-group input:focus~label,
.portfo-footer form .input-group input:valid~label,
.portfo-footer form .input-group textarea:focus~label,
.portfo-footer form .input-group textarea:valid~label {
top: -35px
}
.portfo-footer form .input-group input:focus,
.portfo-footer form .input-group textarea:focus {
border-bottom-color: #fff
}
.portfo-footer form button {
float: right;
margin-top: 40px;
width: 185px;
line-height: 48px;
border: 1px solid #e1a34c;
background: 0 0;
color: #e1a34c;
font-size: 20px
}
.portfo-footer form button:hover {
background: #e1a34c;
color: #fff
}
.portfo-footer .copyright-text {
text-align: center;
padding: 130px 0 50px
}
.portfo-footer .copyright-text .social-icon li {
display: inline-block
}
.portfo-footer .copyright-text .social-icon li a {
width: 45px;
height: 45px;
background: rgba(255, 255, 255, .05);
border-radius: 50%;
line-height: 45px;
color: rgba(255, 255, 255, .2);
font-size: 22px;
display: block;
margin: 0 6px
}
.portfo-footer .copyright-text .social-icon li a:hover {
background: #e1a34c;
color: #fff
}
.portfo-footer .copyright-text p {
font-size: 20px;
color: rgba(255, 255, 255, .6);
padding-top: 45px
}
.trusted-partner {
margin-bottom: 130px
}
.trusted-partner .title {
font-size: 18px;
color: #878787;
text-align: center;
text-transform: uppercase;
padding-bottom: 100px
}
.trusted-partner .title span {
font-size: 22px;
color: #244574
}
.partner-slider {
text-align: center
}
.partner-slider a {
opacity: .4;
transition: all .3s ease-in-out
}
.partner-slider .center a,
.partner-slider a:hover {
opacity: 1;
transform: scale(1.1)
}
.our-feature-sass {
background: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/bg3.png) top 81% right no-repeat;
padding: 0 0 20px;
position: relative;
z-index: 1
}
.our-feature-sass .down-arrow {
display: block;
width: 90px;
height: 90px;
box-shadow: 0 15px 20px 0 rgba(209, 218, 235, .35);
border-radius: 50%;
margin: 0 auto 405px;
line-height: 90px;
text-align: center;
color: #7494b5;
font-size: 35px
}
.our-feature-sass .down-arrow span {
display: block;
transform: rotate(-90deg)
}
.our-feature-sass .down-arrow:hover {
color: #fff;
background: #9a5be8
}
.our-feature-sass .single-feature-block {
position: relative;
margin-bottom: 330px
}
.our-feature-sass .single-feature-block:last-child {
margin: 0
}
.our-feature-sass .single-feature-block .text-box {
max-width: 550px
}
.our-feature-sass .feature-wrapper .single-feature-block:nth-child(odd) .text-box {
float: right
}
.our-feature-sass .single-feature-block .text-box .theme-title-one .main-title .line {
display: inline-block;
position: relative
}
.our-feature-sass .single-feature-block .text-box .theme-title-one .main-title .line:before {
content: '';
width: 0;
height: 3px;
background: #233D63;
border-radius: 5px;
position: absolute;
right: -105px;
bottom: 10px;
transition: all 1s ease-out
}
.our-feature-sass .single-feature-block .text-box .theme-title-one.show-pr .main-title .line:before {
width: 100px
}
.our-feature-sass .single-feature-block .text-box p {
font-size: 18px;
line-height: 32px;
padding: 40px 0 38px
}
.our-feature-sass .single-feature-block .text-box ul li {
font-size: 17px;
line-height: 38px;
color: #76797e;
padding-left: 30px;
position: relative
}
.our-feature-sass .single-feature-block .text-box ul li:before {
content: "\f107";
font-family: Flaticon;
font-size: 15px;
color: #ff6400;
position: absolute;
top: 0;
left: 0;
line-height: 38px
}
.our-feature-sass .single-feature-block .text-box .read-more {
width: 162px;
line-height: 50px;
border-radius: 4px;
border: 1px solid #e9e9e9;
text-align: center;
color: rgba(48, 56, 88, .4);
margin-top: 55px
}
.our-feature-sass .single-feature-block .text-box .read-more:hover {
color: #fff;
background: #f569f8;
border-color: #f569f8
}
.our-feature-sass .feature-wrapper .single-feature-block:nth-child(odd) .img-box {
position: absolute;
top: -35px;
left: -52px;
z-index: -1;
width: 43%
}
.our-feature-sass .feature-wrapper .single-feature-block:nth-child(odd) .img-box .bg-shape {
position: absolute;
left: 100px;
top: 20%
}
.our-feature-sass .feature-wrapper .single-feature-block:nth-child(odd) .img-box .screen-one {
position: absolute;
top: -50px;
left: 10px
}
.our-feature-sass .feature-wrapper .single-feature-block:nth-child(odd) .img-box .screen-two {
position: absolute;
top: 30px;
left: 42%
}
.our-feature-sass .feature-wrapper .single-feature-block:nth-child(odd) .img-box .screen-three {
position: absolute;
top: 42%;
left: 12%
}
.our-feature-sass .feature-wrapper .single-feature-block:nth-child(odd) .img-box .screen-four {
position: absolute;
top: 59%;
left: 55%
}
.our-feature-sass .feature-wrapper .single-feature-block:nth-child(even) .img-box {
position: absolute;
right: 0;
top: -80px;
z-index: -1
}
.our-feature-sass .feature-wrapper .single-feature-block:nth-child(even) .img-box .main-shape {
position: absolute;
right: 0;
top: -100px
}
.our-feature-sass .feature-wrapper .single-feature-block:nth-child(even) .img-box .screen-two {
position: absolute;
right: 45px;
top: -130px
}
.our-feature-sass .section-shape-one {
width: 8px;
height: 8px;
background: #fce3ba;
border-radius: 50%;
position: absolute;
left: 8%;
top: 11%;
animation: animationFramesOne 15s alternate infinite linear
}
.our-feature-sass .section-shape-two {
position: absolute;
right: -356px;
top: -170px;
opacity: .7;
animation: rotatedHalfTwo 15s alternate infinite linear;
z-index: -1
}
.our-feature-sass .section-shape-two:before {
content: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/shape-19.svg);
position: absolute;
top: 50%;
left: 50px
}
.our-feature-sass .section-shape-three {
position: absolute;
left: -400px;
top: 55%;
opacity: .6
}
.our-feature-sass .section-shape-four {
position: absolute;
width: 8px;
height: 8px;
border: 2px solid #ffe49f;
border-radius: 50%;
left: 27%;
top: 65%;
animation: animationFramesOne 12s alternate infinite linear
}
.our-feature-sass .section-shape-five {
position: absolute;
top: 62%;
left: 46%;
animation: rotatedHalfTwo 15s alternate infinite linear
}
.our-feature-sass .section-shape-seven,
.our-feature-sass .section-shape-six {
animation: animationFramesThree 25s alternate infinite linear;
position: absolute
}
.our-feature-sass .section-shape-six {
top: 60%;
right: 33%
}
.our-feature-sass .section-shape-seven {
bottom: -70px;
left: 50%
}
.our-feature-sass .section-shape-eight {
position: absolute;
right: 150px;
bottom: 100px;
animation: rotatedHalfTwo 10s alternate infinite linear
}
.our-feature-app {
position: relative;
padding: 310px 0 250px
}
.our-feature-app .single-feature-box {
padding-bottom: 315px;
position: relative
}
.our-feature-app .single-feature-box:last-child {
padding: 0
}
.our-feature-app .single-feature-box:nth-child(1):before {
content: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/line-3.svg);
position: absolute;
top: 53%;
left: 81px
}
.our-feature-app .single-feature-box:nth-child(2):before {
content: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/line-4.svg);
position: absolute;
top: 63%;
left: 80px
}
.our-feature-app .text-wrapper .title {
font-size: 46px;
line-height: 55px;
color: #3e3e3e;
padding: 40px 0 30px
}
.our-feature-app .text-wrapper p {
font-size: 18px;
line-height: 30px;
color: #8c929d
}
.our-feature-app .text-wrapper .sub-heading {
font-size: 21px;
color: #57667e;
padding-bottom: 30px
}
.our-feature-app .text-wrapper ul li {
font-size: 17px;
line-height: 38px;
color: rgba(87, 102, 126, .7);
position: relative;
padding-left: 35px
}
.our-feature-app .text-wrapper ul li:before {
content: "\f107";
font-family: Flaticon;
position: absolute;
line-height: 30px;
font-size: 16px;
left: 0;
top: 0;
color: #ff6400
}
.our-feature-app .text-wrapper .explore-button {
width: 175px;
line-height: 50px;
font-size: 18px;
text-align: center;
border-radius: 3px;
margin-top: 38px
}
.our-feature-app .single-feature-box:nth-child(1) .text-wrapper .explore-button {
color: #ead24c;
background: #fef9da
}
.our-feature-app .single-feature-box:nth-child(1) .text-wrapper .explore-button:hover {
background: #ead24c;
color: #fef9da
}
.our-feature-app .single-feature-box:nth-child(2) .text-wrapper .explore-button {
color: #4ebef9;
background: rgba(30, 193, 254, .11)
}
.our-feature-app .single-feature-box:nth-child(2) .text-wrapper .explore-button:hover {
background: #4ebef9;
color: #e6f8ff
}
.our-feature-app .single-feature-box:nth-child(3) .text-wrapper .explore-button {
color: #ff8aa0;
background: rgba(255, 61, 92, .11)
}
.our-feature-app .single-feature-box:nth-child(3) .text-wrapper .explore-button:hover {
background: #ff8aa0;
color: #ffeaed
}
.our-feature-app .single-feature-box:nth-child(1) .text-wrapper {
margin-top: 165px
}
.our-feature-app .single-feature-box:nth-child(3) .text-wrapper {
margin-top: 60px
}
.our-feature-app .feature-img-box {
position: relative;
padding-right: 90px
}
.our-feature-app .feature-img-box .feature-offer-box {
padding: 45px 15px 30px 35px;
margin-bottom: 45px;
border-radius: 5px;
background: #fff;
box-shadow: 0 25px 50px 0 rgba(78, 81, 144, .07)
}
.our-feature-app .feature-img-box .feature-offer-box .icon-box {
position: relative;
width: 85px;
height: 85px;
border-radius: 50%
}
.our-feature-app .feature-img-box .support-feature .icon-box {
background: linear-gradient(120deg, #f99a78 0, #ff538c 100%)
}
.our-feature-app .feature-img-box .price-feature .icon-box {
background: linear-gradient(120deg, #6c47da 0, #e081ff 100%)
}
.our-feature-app .feature-img-box .access-feature .icon-box {
background: linear-gradient(120deg, #51ec70 0, #24bd9b 100%)
}
.our-feature-app .feature-img-box .feature-offer-box .icon-box img {
margin: 0 auto;
position: relative;
top: 50%;
transform: translateY(-50%)
}
.our-feature-app .feature-img-box .price-feature .icon-box img {
width: 22px
}
.our-feature-app .feature-img-box .feature-offer-box .title {
font-size: 24px;
color: #4e4e4e;
padding: 20px 0 30px
}
.our-feature-app .feature-img-box .feature-offer-box p {
color: #8c929d
}
.our-feature-app .feature-img-box .support-feature {
margin-top: 180px
}
.our-feature-app .feature-img-box .feature-offer-box .icon-box:after,
.our-feature-app .feature-img-box .feature-offer-box .icon-box:before {
content: '';
position: absolute;
top: 4px;
left: 4px;
width: calc(100% - 8px);
height: calc(100% - 8px);
border-radius: 50%;
background: linear-gradient(-51deg, #f99a78 0, #8834cc 20%, #37bdd1 42%, #d4ea3e 62%, #f8669d 83%, #fc5d95 91%, #ff538c 100%);
background-size: 400%;
z-index: -1;
animation: gradientBG 10s infinite linear alternate;
opacity: .65
}
.our-feature-app .feature-img-box .feature-offer-box .icon-box:after {
filter: blur(13px)
}
.our-feature-app .feature-img-box .shape-one {
position: absolute;
top: 34%;
left: -12%;
animation: animationFramesOne 15s infinite linear alternate
}
.our-feature-app .feature-img-box .shape-two {
position: absolute;
top: 12%;
left: 15%;
animation: animationFramesFive 18s infinite linear alternate
}
.our-feature-app .feature-img-box .shape-three {
position: absolute;
top: 0;
left: 24%;
animation: animationFramesTwo 15s infinite linear alternate
}
.our-feature-app .feature-img-box .shape-four {
position: absolute;
top: 19%;
right: 28%;
animation: animationFramesFive 20s infinite linear alternate
}
.our-feature-app .feature-img-box .shape-five {
position: absolute;
top: 12%;
right: 2%;
animation: animationFramesFive 18s infinite linear alternate
}
.our-feature-app .single-feature-box:nth-child(1) .feature-img-box:before {
content: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/shape-44.svg);
position: absolute;
top: 34px;
right: 55px
}
.our-feature-app .single-feature-box:nth-child(2) .feature-img-box:before {
content: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/shape-50.svg);
position: absolute;
top: -24px;
right: -12px
}
.our-feature-app .single-feature-box:nth-child(3) .feature-img-box:before {
content: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/shape-51.svg);
position: absolute;
top: -83px;
left: -40px;
z-index: -1
}
.our-feature-app .single-feature-box .access-screen-holder .screen {
float: right;
position: relative
}
.our-feature-app .single-feature-box .screen-mockup {
position: relative
}
.our-feature-app .single-feature-box .screen-mockup .mockup {
margin: 0 auto
}
.our-feature-app .single-feature-box .screen-mockup .screen-one {
position: absolute;
right: -84px;
top: 16%
}
.our-feature-app .single-feature-box .screen-mockup .screen-two {
position: absolute;
left: -38px;
top: 43%
}
.sass-our-pricing {
position: relative;
padding: 260px 0 245px
}
.sass-our-pricing .section-shape-one {
position: absolute;
right: -356px;
top: 0;
opacity: .7;
animation: rotatedHalfTwo 15s alternate infinite linear
}
.sass-our-pricing .section-shape-one:before {
content: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/shape-23.svg);
position: absolute;
top: 50%;
left: calc(21% + 4px)
}
.sass-our-pricing .section-shape-two {
position: absolute;
left: -25px;
top: 13%
}
.sass-our-pricing .section-shape-three {
position: absolute;
left: 17%;
top: 23%;
animation: animationFramesFour 20s alternate infinite linear
}
.sass-our-pricing .section-shape-four {
position: absolute;
width: 9px;
height: 9px;
border-radius: 50%;
background: #937fff;
top: 50%;
left: 5%;
animation: animationFramesTwo 13s infinite linear
}
.sass-our-pricing .section-shape-five {
position: absolute;
top: 51%;
right: 5%;
animation: animationFramesTwo 13s infinite linear
}
.sass-our-pricing .section-shape-six {
position: absolute;
right: -75px;
bottom: 170px
}
.sass-our-pricing .icon-box .icon {
height: 31px
}
.sass-our-pricing .theme-title-one {
margin-bottom: 140px
}
.sass-our-pricing .row [class*=col-] {
border-left: 1px solid #e0e9ef;
padding: 0 50px
}
.sass-our-pricing .row [class*=col-]:last-child {
border-right: 1px solid #e0e9ef
}
.sass-our-pricing .single-pr-table .pr-header {
text-align: center;
padding-top: 20px;
min-height: 180px
}
.sass-our-pricing .single-pr-table .pr-header .price {
font-size: 44px
}
.sass-our-pricing .single-pr-table.free .pr-header .price {
color: #ffcc6f
}
.sass-our-pricing .single-pr-table.regular .pr-header .price {
color: #06df9e
}
.sass-our-pricing .single-pr-table.plus .pr-header .price {
color: #ff6262
}
.sass-our-pricing .single-pr-table .pr-header .title {
font-size: 19px;
color: #303858;
text-transform: uppercase;
padding-bottom: 7px
}
.sass-our-pricing .single-pr-table .pr-header .package {
font-size: 18px;
color: #696d80
}
.sass-our-pricing .single-pr-table .pr-body {
border-top: 1px dashed #d8dde1;
padding: 40px 0 30px;
min-height: 330px
}
.sass-our-pricing .single-pr-table .pr-body .feature {
font-family: CircularStdmed;
font-size: 20px;
color: #303858;
padding-bottom: 15px
}
.sass-our-pricing .single-pr-table .pr-body ul li {
font-size: 16px;
position: relative;
padding-left: 28px;
line-height: 40px;
color: #818386
}
.sass-our-pricing .single-pr-table .pr-body ul li:before {
content: "\f107";
font-family: Flaticon;
font-size: 14px;
position: absolute;
color: #12d859;
line-height: 40px;
left: 0;
top: 0
}
.sass-our-pricing .single-pr-table .upgrade-button {
display: block;
text-align: center;
border: 1px solid #f2f2f2;
border-radius: 25px;
line-height: 50px;
font-size: 18px;
color: #233d63;
position: relative
}
.sass-our-pricing .single-pr-table .upgrade-button:before {
content: '';
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
border-radius: 30px;
background: linear-gradient(-135deg, #bf6cff 0, #9041ff 100%);
transform: scale(0, 1);
z-index: -1
}
.sass-our-pricing .single-pr-table:hover .upgrade-button {
border-color: transparent;
color: #fff
}
.sass-our-pricing .single-pr-table:hover .upgrade-button:before {
transform: scale(1)
}
.sass-our-pricing .single-pr-table .trial-button {
display: block;
text-align: center;
color: #818386;
margin-top: 32px
}
.sass-our-pricing .single-pr-table .trial-button:hover {
color: #bf6cff
}
.sass-our-pricing .single-pr-table .pr-footer {
padding-bottom: 70px
}
.sass-faq-section {
position: relative;
padding: 150px 0
}
.sass-faq-section .section-shape-one {
position: absolute;
left: -356px;
top: 20px;
opacity: .6;
z-index: -1;
animation: rotatedHalfTwo 20s alternate infinite linear
}
.sass-faq-section .section-shape-one:before {
content: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/shape-28.svg);
position: absolute;
top: 50%;
right: -10px
}
.sass-faq-section .section-shape-two {
position: absolute;
top: 69%;
left: 5%;
animation: animationFramesTwo 13s infinite linear
}
.sass-faq-section .section-shape-three {
position: absolute;
top: 23%;
right: 10%;
animation: animationFramesTwo 20s infinite linear
}
.sass-faq-section .section-shape-four {
position: absolute;
right: -90px;
bottom: 190px
}
.sass-faq-section .sub-heading {
text-align: center;
font-size: 20px;
line-height: 32px;
color: #9f9f9f;
margin: 25px 0 95px
}
.sass-faq-section .sub-heading a {
color: #303858;
text-decoration: underline
}
.sass-faq-section .faq-tab-wrapper .nav-tabs {
margin: 0 0 95px;
border: none;
justify-content: center;
-webkit-justify-content: center
}
.sass-faq-section .faq-tab-wrapper .nav-tabs .nav-item {
margin: 10px 0 0
}
.sass-faq-section .faq-tab-wrapper .nav-tabs .nav-link {
border: none;
line-height: 32px;
border-radius: 3px;
padding: 0 18px;
color: #989898;
font-size: 17px;
margin: 0 10px
}
.sass-faq-section .faq-tab-wrapper .nav-tabs li:nth-child(1) .nav-link {
background: #f4f3ff
}
.sass-faq-section .faq-tab-wrapper .nav-tabs li:nth-child(2) .nav-link {
background: #fee
}
.sass-faq-section .faq-tab-wrapper .nav-tabs li:nth-child(3) .nav-link {
background: #f3ffed
}
.sass-faq-section .faq-tab-wrapper .nav-tabs li:nth-child(4) .nav-link {
background: #edf3ff
}
.sass-faq-section .faq-tab-wrapper .nav-tabs li:nth-child(5) .nav-link {
background: #fdf9e9
}
.sass-faq-section .faq-tab-wrapper .nav-tabs li:nth-child(6) .nav-link {
background: #e6fafd
}
.sass-faq-section .faq-tab-wrapper .nav-tabs .nav-item.show .nav-link,
.sass-faq-section .faq-tab-wrapper .nav-tabs .nav-link.active {
background: #22d4ab!important;
color: #fff
}
.faq-tab-wrapper .faq-panel .panel {
background: #fff;
box-shadow: 0 10px 14px 0 rgba(90, 111, 155, .05);
margin-bottom: 30px
}
.faq-tab-wrapper .faq-panel .panel .panel-heading .panel-title a {
display: block;
padding: 25px 10px 25px 65px;
font-size: 22px;
color: #303858;
position: relative
}
.faq-tab-wrapper .faq-panel .panel .panel-heading .panel-title a:before {
content: '+';
position: absolute;
left: 35px;
top: 50%;
transform: translateY(-50%);
font-size: 30px;
color: #464646
}
.faq-tab-wrapper .faq-panel .panel .panel-heading.active-panel .panel-title a:before {
content: '-'
}
.faq-tab-wrapper .faq-panel .panel .panel-body p {
line-height: 30px;
padding: 0 90px 38px 65px
}
.sass-faq-section .down-button {
display: block;
width: 50px;
height: 50px;
border: 2px solid #22d4ab;
border-radius: 50%;
margin: 60px auto 0;
color: #22d4ab;
line-height: 50px;
text-align: center;
font-size: 25px
}
.sass-faq-section .down-button:hover {
background: #22d4ab;
color: #fff
}
.why-choose-us-app {
background: linear-gradient(-35deg, #902afc 0, #3498f6 100%);
position: relative;
padding: 255px 0 150px;
overflow: hidden;
z-index: 5
}
.why-choose-us-app .bg-shape-holder {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: -1;
overflow: hidden
}
.why-choose-us-app .bg-shape-holder .big-round-one {
position: absolute;
width: 662px;
height: 662px;
background: rgba(255, 255, 255, .03);
top: -346px;
left: -75px;
border-radius: 50%
}
.why-choose-us-app .bg-shape-holder .big-round-two {
position: absolute;
width: 1372px;
height: 1372px;
background: rgba(255, 255, 255, .03);
top: -689px;
left: -368px;
border-radius: 50%;
z-index: -1
}
.why-choose-us-app .bg-shape-holder .big-round-three {
position: absolute;
width: 2242px;
height: 2242px;
background: rgba(255, 255, 255, .03);
top: -1161px;
left: -779px;
border-radius: 50%;
z-index: -3
}
.why-choose-us-app .text-wrapper {
max-width: 500px;
float: right
}
.why-choose-us-app .text-wrapper .title-box {
display: inline-block;
line-height: 35px;
font-size: 13px;
text-transform: uppercase;
color: #fff;
padding: 0 30px;
border: 1px solid rgba(255, 255, 255, .2);
border-radius: 3px
}
.why-choose-us-app .text-wrapper .bottom-title {
font-size: 24px;
line-height: 34px;
color: #fff;
padding: 45px 0 35px
}
.why-choose-us-app .text-wrapper ul li {
color: #fff;
font-size: 20px;
line-height: 32px;
position: relative;
padding: 0 0 15px 40px
}
.why-choose-us-app .text-wrapper ul li:before {
content: "\f103";
font-family: Flaticon;
position: absolute;
top: 0;
left: 0;
line-height: 32px;
font-size: 24px
}
.why-choose-us-app .text-wrapper ul {
border-bottom: 1px solid rgba(216, 216, 216, .2);
padding-bottom: 48px;
margin-bottom: 55px
}
.why-choose-us-app .text-wrapper .director-speech {
position: relative
}
.why-choose-us-app .text-wrapper .director-speech .d-img {
width: 55px;
height: 55px;
border-radius: 50%;
float: left
}
.why-choose-us-app .text-wrapper .director-speech .bio-block {
float: left;
padding-left: 25px
}
.why-choose-us-app .text-wrapper .director-speech .bio-block .name {
font-size: 20px;
color: #fff;
padding: 2px 0
}
.why-choose-us-app .text-wrapper .director-speech .bio-block span {
font-size: 18px;
color: #fff;
font-style: italic
}
.why-choose-us-app .text-wrapper .director-speech .sign {
position: absolute;
right: 0;
top: -32px
}
.why-choose-us-app .screen-preview {
position: absolute;
bottom: -1px;
left: 0;
width: 50%
}
.newsletter-section {
position: relative;
padding: 140px 0 0
}
.newsletter-section .theme-title-one.upper-bar:before {
background: #7491ff
}
.newsletter-section .main-wrapper {
border-bottom: 1px solid #e8e8e8;
padding-bottom: 120px
}
.newsletter-section .main-wrapper form {
max-width: 57%;
margin: 50px auto 0;
position: relative
}
.newsletter-section .main-wrapper form input {
width: 100%;
height: 65px;
border: 1px solid rgba(186, 186, 186, .3);
border-radius: 38px;
padding: 0 105px 0 40px;
font-size: 18px;
color: rgba(62, 62, 62, .4)
}
.newsletter-section .main-wrapper form button {
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 100px;
border-radius: 0 38px 38px 0;
color: #fff;
font-size: 32px;
background: #6d5cf8
}
.newsletter-section .main-wrapper form::placeholder {
color: rgba(62, 62, 62, .4);
opacity: 1
}
.newsletter-section .main-wrapper form:-ms-input-placeholder {
color: rgba(62, 62, 62, .4)
}
.newsletter-section .main-wrapper form::-ms-input-placeholder {
color: rgba(62, 62, 62, .4)
}
.theme-Ecommerce-menu {
position: relative;
padding: 60px 60px 40px
}
.theme-Ecommerce-menu .left-content ul li,
.theme-Ecommerce-menu .right-content>ul>li {
display: inline-block;
vertical-align: middle
}
.theme-Ecommerce-menu .left-content ul .menu-button {
display: block;
background: 0 0;
position: relative;
margin: -8px 15px 0 0
}
.eCommerce-search {
width: 300px;
position: relative
}
.eCommerce-search input {
width: 100%;
border: none;
font-style: italic;
color: rgba(65, 65, 65, .33);
padding-left: 30px;
background: 0 0
}
.eCommerce-search .icon {
position: absolute;
left: 0;
top: 0;
font-size: 20px;
line-height: 27px;
color: #2e2e2e
}
.eCommerce-search::placeholder {
color: rgba(65, 65, 65, .33);
opacity: 1
}
.eCommerce-search:-ms-input-placeholder {
color: rgba(65, 65, 65, .33)
}
.eCommerce-search::-ms-input-placeholder {
color: rgba(65, 65, 65, .33)
}
.theme-Ecommerce-menu .right-content .dropdown-toggle:after {
display: none
}
.theme-Ecommerce-menu .right-content .dropdown-toggle {
background: 0 0
}
.theme-Ecommerce-menu .right-content .dropdown-menu {
background: #fff;
box-shadow: 0 25px 50px 0 rgba(213, 216, 223, .5);
border: 1px solid #f8f8f8;
border-radius: 0;
margin: 15px -35px 0 0
}
.theme-Ecommerce-menu .right-content .cart-action-wrapper .dropdown-toggle {
height: 27px;
position: relative
}
.theme-Ecommerce-menu .right-content .cart-action-wrapper .dropdown-toggle .item-count {
position: absolute;
width: 15px;
height: 15px;
border-radius: 50%;
background: #ff3612;
line-height: 15px;
text-align: center;
font-size: 9px;
color: #fff;
right: -12px;
top: -6px
}
.theme-Ecommerce-menu .right-content .cart-action-wrapper .dropdown-menu {
padding: 40px 35px;
min-width: 300px
}
.theme-Ecommerce-menu .right-content .cart-action-wrapper .cart-product-list .item-img {
width: 70px;
height: 80px;
display: block;
float: left
}
.theme-Ecommerce-menu .right-content .cart-action-wrapper .cart-product-list .item-info {
width: calc(100% - 70px);
float: left;
padding-left: 25px;
position: relative
}
.theme-Ecommerce-menu .right-content .cart-action-wrapper .cart-product-list .item-info .close {
position: absolute;
top: 13px;
right: 0;
font-size: 12px;
color: rgba(31, 31, 31, .9)
}
.theme-Ecommerce-menu .right-content .cart-action-wrapper .cart-product-list .item-info .close:hover {
color: #ff3612
}
.theme-Ecommerce-menu .right-content .cart-action-wrapper .cart-product-list .item-info .name {
font-size: 18px;
color: #1f1f1f;
margin: 5px 0;
padding-right: 12px
}
.theme-Ecommerce-menu .right-content .cart-action-wrapper .cart-product-list .item-info .price {
font-size: 20px;
color: #1f1f1f
}
.theme-Ecommerce-menu .right-content .cart-action-wrapper .cart-product-list .item-info .price .quantity {
font-size: 17px;
color: rgba(31, 31, 31, .3);
margin-left: 15px
}
.theme-Ecommerce-menu .right-content .cart-action-wrapper .cart-product-list .selected-item {
border-bottom: 1px solid #eee;
padding-bottom: 30px;
margin-bottom: 30px
}
.theme-Ecommerce-menu .right-content .cart-action-wrapper .cart-product-list .selected-item:last-child {
margin-bottom: 14px
}
.theme-Ecommerce-menu .right-content .cart-action-wrapper .subtotal .title {
font-size: 18px;
color: #1f1f1f
}
.theme-Ecommerce-menu .right-content .cart-action-wrapper .subtotal .total-price {
font-size: 20px;
color: #1f1f1f
}
.theme-Ecommerce-menu .right-content .cart-action-wrapper .subtotal {
padding-bottom: 7px
}
.theme-Ecommerce-menu .right-content .cart-action-wrapper .button-group a {
font-family: CircularStdmed;
display: block;
line-height: 45px;
border: 1px solid #dbdbdb;
text-align: center;
font-size: 14px;
text-transform: uppercase;
color: #1f1f1f;
margin-top: 15px
}
.theme-Ecommerce-menu .right-content .cart-action-wrapper .button-group a:hover {
color: #fff
}
.theme-Ecommerce-menu .right-content .user-profile-action {
padding-left: 35px
}
.theme-Ecommerce-menu .right-content .user-profile-action .dropdown-toggle img {
display: inline-block
}
.theme-Ecommerce-menu .right-content .user-profile-action .dropdown-toggle span {
font-size: 17px;
color: #414141;
vertical-align: middle;
padding-left: 10px;
line-height: 16px
}
.theme-Ecommerce-menu .right-content .user-profile-action .dropdown-menu {
min-width: 220px;
padding: 20px 25px 25px
}
.theme-Ecommerce-menu .right-content .user-profile-action .dropdown-menu ul li a {
font-size: 16px;
line-height: 42px;
color: #4b4c51;
padding-left: 30px;
position: relative
}
.theme-Ecommerce-menu .right-content .user-profile-action .dropdown-menu ul li a .icon {
position: absolute;
left: 0;
top: 11px
}
#eCommerce-home {
height: 100vh;
position: relative
}
#eCommerce-home:before {
content: '';
position: absolute;
top: 0;
bottom: 0;
width: 1px;
background: #f0f0f0;
left: 50%;
z-index: -1
}
#eCommerce-home .main-page-wrapper {
height: 100%;
position: relative
}
#eCommerce-home .main-page-wrapper:after,
#eCommerce-home .main-page-wrapper:before {
content: '';
position: absolute;
height: 100%;
top: 0;
width: 16.666666666%;
border-left: 1px solid #f0f0f0;
border-right: 1px solid #f0f0f0;
z-index: -1
}
#eCommerce-home .main-page-wrapper:before {
left: 16.6666666%
}
#eCommerce-home .main-page-wrapper:after {
right: 16.6666666%
}
.eCommerce-side-menu {
position: fixed;
top: 0;
bottom: 0;
left: 0;
width: 360px;
background: #fff;
box-shadow: 0 2px 100px 0 rgba(218, 218, 218, .5);
z-index: 99;
padding: 0 25px 30px 80px;
opacity: 0;
transform: scale(0, 1);
transform-origin: 0 0;
transition: all .5s ease-in-out;
max-height: 100vh;
overflow-y: auto
}
.eCommerce-side-menu.show-menu {
opacity: 1;
transform: scale(1)
}
.eCommerce-side-menu .logo-wrapper {
margin-top: 60px;
position: relative;
padding-left: 30px
}
.eCommerce-side-menu .logo-wrapper .close-button {
position: absolute;
top: 0;
left: 0;
background: 0 0;
height: 36px
}
.eCommerce-side-menu .main-menu-list>ul {
margin-top: 70%;
padding-bottom: 30px
}
.eCommerce-side-menu .main-menu-list>ul>li>a {
font-size: 36px;
line-height: 60px;
color: #3e3e3e;
position: relative;
display: block
}
.eCommerce-side-menu .main-menu-list>ul>li {
opacity: 0;
transform: translateX(-50%);
transition: all .7s ease-in-out
}
.eCommerce-side-menu.show-menu .main-menu-list>ul>li:nth-child(1) {
transition-delay: .2s
}
.eCommerce-side-menu.show-menu .main-menu-list>ul>li:nth-child(2) {
transition-delay: .3s
}
.eCommerce-side-menu.show-menu .main-menu-list>ul>li:nth-child(3) {
transition-delay: .4s
}
.eCommerce-side-menu.show-menu .main-menu-list>ul>li:nth-child(4) {
transition-delay: .5s
}
.eCommerce-side-menu.show-menu .main-menu-list>ul>li:nth-child(5) {
transition-delay: .6s
}
.eCommerce-side-menu.show-menu .main-menu-list>ul>li {
opacity: 1;
transform: translateX(0)
}
.eCommerce-side-menu .main-menu-list>ul>li>a .expander {
position: absolute;
right: 0;
top: 0;
background: 0 0;
font-size: 15px;
line-height: 60px;
color: inherit
}
.eCommerce-side-menu .main-menu-list>ul .sub-menu {
padding: 10px 0 10px 30px
}
.eCommerce-side-menu .main-menu-list>ul .sub-menu a {
font-size: 24px;
line-height: 35px;
color: #b7b7b7
}
.eCommerce-side-menu .copy-right {
font-size: 16px;
color: rgba(62, 62, 62, .7);
margin-top: 100px
}
.main-menu-list ul .sub-menu {
display: none;
transition: all .3s ease-in-out
}
.main-menu-list ul .sub-menu.show {
display: block
}
.eCommerce-side-menu .eCommerce-search {
width: 100%;
margin: 40px 0;
display: none
}
.eCommerce-hero-section {
position: relative
}
.eCommerce-hero-section:after,
.eCommerce-hero-section:before {
content: url(//aq-technologies.com/wp-content/themes/saasweb/images/shape/shape-54.svg);
position: absolute;
z-index: -3
}
.eCommerce-hero-section:before {
right: 0;
bottom: 0
}
.eCommerce-hero-section:after {
top: 4%;
right: 35%
}
.eCommerce-hero-section .carousel-indicators {
position: absolute;
right: auto;
left: 60px;
top: 30%;
bottom: auto;
display: block!important;
margin: 0
}
.eCommerce-hero-section .carousel-indicators li {
width: 3px;
height: 20px;
border-radius: 3px;
background: #e7e7e7;
margin: 5px 0;
cursor: pointer
}
.eCommerce-hero-section .carousel-indicators li.active,
.eCommerce-hero-section .carousel-indicators li:hover {
background: #454545
}
.eCommerce-hero-section .carousel-indicators li.active {
transform: scale(1, 1.2)
}
#eCommerce-carousel .inner-item-wrapper {
position: relative;
padding: 100px 0 90px
}
#eCommerce-carousel .inner-container {
max-width: 1350px;
margin: 0 auto;
padding: 0 90px
}
#eCommerce-carousel .inner-item-wrapper .main-title {
font-family: 'Playfair Display', serif;
font-size: 130px;
line-height: 120px;
color: #19212b;
width: 35%
}
#eCommerce-carousel .inner-item-wrapper .price-tag {
padding: 25px 0 50px
}
#eCommerce-carousel .inner-item-wrapper .price-tag .current-price {
font-size: 58px;
color: #ff4b68;
font-weight: 400;
margin-right: 40px;
display: inline-block;
animation-delay: .5s
}
#eCommerce-carousel .inner-item-wrapper .price-tag del {
font-size: 32px;
color: #d3d3d3;
display: inline-block;
animation-delay: .5s
}
#eCommerce-carousel .inner-item-wrapper .button-group li {
display: inline-block;
vertical-align: middle;
margin-top: 10px
}
#eCommerce-carousel .inner-item-wrapper .button-group .shop-now {
width: 180px;
line-height: 55px;
display: inline-block;
text-align: center;
font-family: CircularStdbld;
font-size: 14px;
text-transform: uppercase;
color: #3c3c3c;
background: #fff;
box-shadow: 0 15px 40px 0 rgba(199, 202, 211, .25);
margin-right: 115px;
animation-delay: 1s
}
#eCommerce-carousel .inner-item-wrapper .button-group .shop-now:hover {
color: #fff
}
#eCommerce-carousel .inner-item-wrapper .button-group .details-info-button {
font-family: Lato, sans-serif;
font-weight: 100;
width: 65px;
height: 65px;
line-height: 65px;
border-radius: 50%;
color: #fff;
font-size: 50px;
background: #2e2e2e;
display: block;
animation-delay: 1s
}
#eCommerce-carousel .inner-item-wrapper .product-img {
position: absolute;
right: 0;
top: 50px;
z-index: -1;
animation-delay: 1.2s
}
#eCommerce-carousel .color-tab {
text-align: center;
position: absolute;
top: 100px;
right: -20px;
transform: rotate(-90deg)
}
#eCommerce-carousel .color-tab p {
font-size: 20px;
color: #343638;
padding-bottom: 35px
}
#eCommerce-carousel .color-tab ul li {
display: inline-block
}
#eCommerce-carousel .color-tab ul li a {
display: block;
margin: 0 10px;
width: 40px;
height: 40px;
border-radius: 50%;
border-width: 5px;
border-style: solid
}
#eCommerce-carousel .color-tab ul li:nth-child(1) a {
border-color: #9aa2ce
}
#eCommerce-carousel .color-tab ul li:nth-child(2) a {
border-color: #00ead0
}
#eCommerce-carousel .color-tab ul li:nth-child(3) a {
border-color: #ff4b68
}
#eCommerce-carousel .color-tab ul li:nth-child(1):hover a {
background: #9aa2ce
}
#eCommerce-carousel .color-tab ul li:nth-child(2):hover a {
background: #00ead0
}
#eCommerce-carousel .color-tab ul li:nth-child(3):hover a {
background: #ff4b68
}
#eCommerce-carousel .brand-text {
font-size: 400px;
font-family: CircularStdblck;
color: #f8f8f8;
position: absolute;
right: -100px;
bottom: 0;
line-height: 290px;
z-index: -3;
animation-delay: 1.2s
}
.eCommerce-hero-section .social-share {
position: absolute;
bottom: 150px;
left: -40px;
transform: rotate(-90deg)
}
.eCommerce-hero-section .social-share li {
display: inline-block;
font-family: CircularStdmed;
font-size: 16px;
color: #3c3c3c;
text-transform: uppercase
}
.eCommerce-hero-section .social-share li a {
color: #dbdbdb;
font-size: 20px;
margin: 0 10px;
transform: rotate(90deg)
}
.eCommerce-hero-section .social-share li:first-child {
margin-right: 25px
}
.product-details-modal .main-bg-wrapper {
width: 100%;
height: 100%;
padding: 50px 0 100px;
text-align: center
}
.product-details-modal .main-bg-wrapper .product-img {
margin: 0 auto;
max-width: 400px
}
.product-details-modal .main-bg-wrapper .close-button {
position: fixed;
top: 20px;
right: 30px;
background: 0 0;
font-size: 35px;
color: rgba(0, 0, 0, .6);
font-weight: 400
}
.product-details-modal .main-bg-wrapper .title {
font-family: 'Playfair Display', serif;
font-size: 40px;
color: #19212b;
padding: 80px 0 30px
}
.product-details-modal .main-bg-wrapper p {
font-size: 18px;
line-height: 30px;
color: #5a6473;
width: 60%;
margin: 0 auto
}
.product-details-modal .main-bg-wrapper .cart-button {
line-height: 45px;
padding: 0 30px;
color: #fff;
border-radius: 3px;
margin-top: 35px;
font-size: 16px
}
.product-details-modal .main-bg-wrapper .next,
.product-details-modal .main-bg-wrapper .prev {
position: absolute;
font-size: 35px;
color: rgba(0, 0, 0, .4);
background: 0 0;
top: 50%
}
.product-details-modal .main-bg-wrapper .next {
right: 10px
}
.product-details-modal .main-bg-wrapper .prev {
left: 10px
}
.product-details-modal .main-bg-wrapper .next:hover,
.product-details-modal .main-bg-wrapper .prev:hover {
color: #000
}
.product-filter-area {
position: relative;
padding-bottom: 40px
}
.product-filter-area .display-item-filter {
font-size: 17px;
color: rgba(79, 79, 79, .7)
}
.filter-dropdown-holder .filter-button {
background: 0 0;
font-size: 20px;
color: #2e2e2e;
padding-left: 45px;
position: relative;
line-height: 30px;
margin-right: 55px
}
.filter-dropdown-holder .filter-button .icon {
width: 30px;
height: 30px;
background: #3a3a3a;
border-radius: 50%;
position: absolute;
left: 0;
top: 0;
padding-top: 8px
}
.filter-dropdown-holder .filter-button .icon span {
display: block;
height: 2px;
background: #fff;
margin: 2px auto;
transition: all .3s ease-in-out
}
.filter-dropdown-holder .filter-button .icon span:nth-child(1) {
width: 17px
}
.filter-dropdown-holder .filter-button .icon span:nth-child(2) {
width: 11px
}
.filter-dropdown-holder .filter-button .icon span:nth-child(3),
.filter-dropdown-holder .filter-button.open .icon span:nth-child(1) {
width: 5px
}
.filter-dropdown-holder .filter-button.open .icon span:nth-child(2) {
width: 11px
}
.filter-dropdown-holder .filter-button.open .icon span:nth-child(3) {
width: 17px
}
.product-filter-area .large-filter-content {
position: absolute;
z-index: 1;
left: 0;
top: 70px;
width: 100%;
background: #fff;
border: 1px solid #f4f4f4;
padding: 50px 70px 70px;
box-shadow: 0 50px 100px 0 rgba(207, 215, 224, .2);
transform: scale(1, 0);
transform-origin: 0 0;
opacity: 0;
transition: all .3s ease-in-out
}
.product-filter-area .large-filter-content.show-content {
opacity: 1;
transform: scale(1)
}
.theme-sidebar-widget .sidebar-title {
font-family: CircularStdmed;
font-size: 24px;
color: #1d1d1d;
padding-bottom: 30px
}
.theme-sidebar-widget .list-item {
margin-top: -17px
}
.theme-sidebar-widget .list-item li a {
display: block;
position: relative;
line-height: 50px;
font-size: 18px;
color: #4e4e4e
}
.theme-sidebar-widget .list-item li a .expander {
position: absolute;
background: 0 0;
line-height: 50px;
right: 0;
top: 0;
color: inherit;
font-size: 14px
}
.theme-sidebar-widget .list-item li .sub-menu {
padding-left: 30px
}
.theme-sidebar-widget .list-item li .sub-menu a {
font-size: 16px;
line-height: 31px;
color: #585858
}
.theme-sidebar-widget .list-item li .sub-menu a:hover {
padding-left: 10px
}
.theme-sidebar-widget .list-item li a span {
position: absolute;
right: 0;
top: 0;
line-height: 50px
}
.theme-sidebar-widget .list-item.blog-category li a {
border-bottom: 1px solid #eaeaea;
line-height: 56px
}
.theme-sidebar-widget .list-item.blog-category li a span {
line-height: 50px
}
.theme-sidebar-widget .price-ranger .ui-widget-content {
background: #eee;
border: none;
height: 5px;
border-radius: 5px;
margin-bottom: 22px;
max-width: 350px
}
.theme-sidebar-widget .price-ranger .ui-slider-handle {
width: 15px;
height: 15px;
background: #fff;
border-radius: 50%;
border: none;
outline: 0;
cursor: pointer;
box-shadow: 0 0 10px 0 rgba(207, 207, 207, .61)
}
.theme-sidebar-widget .price-ranger .ui-slider-horizontal .ui-slider-handle {
top: -5px
}
.theme-sidebar-widget .price-ranger .ranger-min-max-block li {
display: inline-block;
line-height: 30px;
font-size: 18px
}
.theme-sidebar-widget .price-ranger .ranger-min-max-block li:first-child {
color: #989ca2
}
.theme-sidebar-widget .price-ranger .ranger-min-max-block input {
width: 50px;
height: 30px;
border: none;
background: 0 0;
text-align: center;
color: #3e3e3e
}
.theme-sidebar-widget .size-filter {
margin: 0 -8px
}
.theme-sidebar-widget .size-filter li {
float: left;
padding: 0 8px
}
.theme-sidebar-widget .size-filter li a {
display: block;
text-align: center;
width: 40px;
height: 40px;
border: 1px solid #dfdfdf;
line-height: 38px;
font-size: 15px;
text-transform: uppercase;
color: rgba(29, 29, 29, .4)
}
.theme-sidebar-widget .size-filter li a:hover {
color: #fff
}
.theme-sidebar-widget .color-filter li {
display: inline-block
}
.theme-sidebar-widget .color-filter li a {
display: block;
margin-right: 10px;
width: 40px;
height: 40px;
border-radius: 50%;
border-width: 5px;
border-style: solid
}
.theme-sidebar-widget .color-filter li:nth-child(1) a {
border-color: #9aa2ce
}
.theme-sidebar-widget .color-filter li:nth-child(2) a {
border-color: #00ead0
}
.theme-sidebar-widget .color-filter li:nth-child(3) a {
border-color: #ff4b68
}
.theme-sidebar-widget .color-filter li:nth-child(4) a {
border-color: #ffd657
}
.theme-sidebar-widget .color-filter li:nth-child(5) a {
border-color: #dc6cff
}
.theme-sidebar-widget .color-filter li:nth-child(6) a {
border-color: #57ff86
}
.theme-sidebar-widget .color-filter li:nth-child(1):hover a {
background: #9aa2ce
}
.theme-sidebar-widget .color-filter li:nth-child(2):hover a {
background: #00ead0
}
.theme-sidebar-widget .color-filter li:nth-child(3):hover a {
background: #ff4b68
}
.theme-sidebar-widget .color-filter li:nth-child(4):hover a {
background: #ffd657
}
.theme-sidebar-widget .color-filter li:nth-child(5):hover a {
background: #dc6cff
}
.theme-sidebar-widget .color-filter li:nth-child(6):hover a {
background: #57ff86
}
.shop-demo-filter .selectize-input {
width: 170px;
line-height: 45px;
border-radius: 0;
border: 1px solid #e9e9e9;
box-shadow: none;
outline: 0;
padding: 0 15px
}
.shop-demo-filter .selectize-input .item,
.shop-demo-filter .selectize-input input {
font-size: 15px;
color: #4f4f4f
}
.shop-demo-filter .selectize-dropdown {
background: #fff;
border: 1px solid #e9e9e9;
border-top: none;
box-shadow: 0 50px 100px 0 rgba(229, 232, 235, .2);
cursor: pointer
}
.shop-demo-filter .selectize-dropdown .option {
font-size: 15px;
color: #4f4f4f;
line-height: 30px
}
.shop-demo-filter .selectize-dropdown .active,
.shop-demo-filter .selectize-dropdown .option:hover {
color: #fff
}
.shop-demo-filter .selectize-control.single .selectize-input:after {
right: 8px
}
.theme-sidebar-widget .sidebar-search {
height: 60px;
position: relative
}
.theme-sidebar-widget .sidebar-search input {
width: 100%;
height: 100%;
border: 1px solid #f9f9f9;
padding: 0 50px 0 25px;
color: #a9a9a9;
box-shadow: 4.99px 9.8px 25px 0 rgba(217, 224, 235, .4)
}
.theme-sidebar-widget .sidebar-search::placeholder {
color: #a9a9a9;
opacity: 1
}
.theme-sidebar-widget .sidebar-search:-ms-input-placeholder {
color: #a9a9a9
}
.theme-sidebar-widget .sidebar-search::-ms-input-placeholder {
color: #a9a9a9
}
.theme-sidebar-widget .sidebar-search button {
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 50px;
background: #fff;
color: #b1b1b1;
font-size: 20px
}
.theme-sidebar-widget .sidebar-popular-product .img {
width: 85px;
height: 85px
}
.theme-sidebar-widget .sidebar-popular-product .info {
padding-left: 25px
}
.theme-sidebar-widget .sidebar-popular-product .info a {
font-size: 22px;
color: #3e3e3e;
margin-bottom: 3px
}
.theme-sidebar-widget .sidebar-popular-product .info .price {
font-size: 22px;
color: #989ca2
}
.theme-sidebar-widget .sidebar-popular-product li {
margin-bottom: 30px
}
.theme-sidebar-widget .sidebar-popular-product li:last-child {
margin: 0
}
.theme-sidebar-widget .recent-news-item .rn-title {
font-family: CircularStdmed;
font-size: 20px;
line-height: 28px;
margin-bottom: 8px
}
.theme-sidebar-widget .recent-news-item .rn-title a {
color: #3e3e3e
}
.theme-sidebar-widget .recent-news-item .date {
font-size: 18px;
color: #b5b5b5
}
.theme-sidebar-widget .recent-news-item li {
border-bottom: 1px solid #eaeaea;
padding-bottom: 25px;
margin-bottom: 25px
}
.theme-sidebar-widget .recent-news-item li:last-child {
margin-bottom: 0
}
.theme-sidebar-widget .keywords-tag {
margin: 0 -5px
}
.theme-sidebar-widget .keywords-tag li {
float: left;
padding: 0 5px;
margin-bottom: 15px
}
.theme-sidebar-widget .keywords-tag li a {
font-size: 15px;
text-transform: uppercase;
color: #989ca2;
padding: 0 20px;
line-height: 33px;
border: 1px solid #e0e0e0
}
.theme-sidebar-widget .keywords-tag li a:hover {
color: #fff
}
.product-showcase .single-product-case {
margin-bottom: 85px
}
.product-showcase .single-product-case .img-holder {
position: relative;
overflow: hidden;
margin-bottom: 40px
}
.product-showcase .single-product-case .img-holder a {
display: block
}
.product-showcase .single-product-case .img-holder img {
width: 100%;
transform: scale(1.1);
transition: all .5s ease-in-out
}
.product-showcase .single-product-case:hover .img-holder img {
transform: scale(1)
}
.product-showcase .single-product-case .info {
position: relative
}
.product-showcase .single-product-case .info .name {
font-size: 24px;
color: #3e3e3e
}
.product-showcase .single-product-case .info .price {
font-size: 24px;
color: rgba(84, 84, 84, .55);
margin-top: 5px
}
.product-showcase .single-product-case .info .cart-button {
display: block;
width: 40px;
height: 40px;
position: absolute;
bottom: 15px;
right: 0
}
.product-showcase .single-product-case .info .cart-button:after,
.product-showcase .single-product-case .info .cart-button:before {
content: ' ';
position: absolute;
background: #bbb
}
.product-showcase .single-product-case .info .cart-button:before {
width: 1px;
height: 100%;
top: 0;
left: 50%
}
.product-showcase .single-product-case .info .cart-button:after {
width: 100%;
height: 1px;
top: 50%;
left: 0
}
.product-showcase .single-product-case .info .cart-button:hover:after,
.product-showcase .single-product-case .info .cart-button:hover:before {
transform: scale(0)
}
.product-showcase .single-product-case .info .cart-button span {
display: block;
text-align: center;
line-height: 40px;
color: #fff;
border-radius: 50%;
position: relative;
z-index: 1;
transform: scale(0)
}
.product-showcase .single-product-case .info .cart-button:hover span {
transform: scale(1)
}
.cart-section .main-container {
max-width: 1260px;
padding: 0 15px;
margin: 0 auto
}
.cart-list-form {
position: relative
}
.cart-list-form table {
margin: 0
}
.cart-list-form .table th {
border: none;
padding: 0 0 60px;
text-align: center;
text-transform: uppercase;
color: #1d1d1d;
font-size: 15px
}
.cart-list-form .table th:first-child {
text-align: left
}
.cart-list-form .table tbody td {
padding: 0 0 70px;
border: none;
vertical-align: middle;
text-align: center
}
.cart-list-form .table .product-thumbnails {
width: 85px
}
.cart-list-form .table .product-thumbnails img {
max-width: none
}
.cart-list-form .table .product-img {
display: block
}
.cart-list-form .table .product-info {
padding-left: 30px;
text-align: left
}
.cart-list-form .table .product-info .product-name {
font-size: 20px;
color: #1f1f1f
}
.cart-list-form .table .product-info .serial {
font-size: 16px;
color: rgba(31, 31, 31, .33);
padding-bottom: 10px
}
.cart-list-form .table .product-info ul li {
display: inline-block;
font-size: 16px;
color: #404040;
padding-right: 15px
}
.cart-list-form .table .price {
font-size: 24px;
color: #1d1d1d
}
.cart-list-form .table .quantity li {
display: inline-block;
line-height: 40px;
max-height: 40px
}
.cart-list-form .table .quantity li button {
font-size: 24px;
color: #1d1d1d;
background: 0 0
}
.cart-list-form .table .quantity .product-value {
font-size: 20px;
color: #1d1d1d;
max-width: 45px;
background: 0 0;
border: none;
text-align: center;
padding-left: 12px
}
.cart-list-form .table .remove-product {
color: #d6d6d6;
font-size: 22px
}
.cart-section .cart-footer {
border-top: 2px solid #545454;
margin-top: 28px;
padding-top: 35px
}
.cart-section .cart-footer .coupon-form {
padding-bottom: 120px
}
.cart-section .cart-footer .coupon-form input {
width: 240px;
height: 50px;
border: none;
border-bottom: 2px solid #545454;
font-size: 16px;
color: #c4c4c4;
margin-right: 30px
}
.cart-section .cart-footer .coupon-form::placeholder {
color: #c4c4c4;
opacity: 1
}
.cart-section .cart-footer .coupon-form:-ms-input-placeholder {
color: #c4c4c4
}
.cart-section .cart-footer .coupon-form::-ms-input-placeholder {
color: #c4c4c4
}
.cart-section .cart-footer .cart-total-table tr th {
font-size: 18px;
color: rgba(29, 29, 29, .33);
font-weight: 400;
padding-right: 40px
}
.cart-section .cart-footer .cart-total-table tr td {
font-size: 24px;
color: #1d1d1d
}
.cart-section .cart-footer .cart-total-table tr td,
.cart-section .cart-footer .cart-total-table tr th {
padding-bottom: 12px
}
.cart-section .cart-footer .cart-total-section .checkout-process {
margin-top: 24px
}
.cart-section .cart-footer .cart-total-section {
text-align: right;
padding-right: 82px
}
.checkout-form .main-title {
font-family: CircularStdmed;
font-size: 28px;
color: #1d1d1d;
padding-bottom: 55px
}
.checkout-form .single-input-wrapper {
display: block;
width: 100%;
height: 40px;
font-size: 16px;
color: #1a1a1a;
border: none;
border-bottom: 2px solid #e5e5e5;
margin-bottom: 55px
}
.checkout-form .checkbox-list li input[type=checkbox],
.checkout-form .order-confirm-sheet .agreement-checkbox input[type=checkbox] {
display: none
}
.checkout-form::placeholder {
color: #1a1a1a;
opacity: 1
}
.checkout-form:-ms-input-placeholder {
color: #1a1a1a
}
.checkout-form::-ms-input-placeholder {
color: #1a1a1a
}
.checkout-form .single-input-wrapper:focus {
border-bottom-color: #545454
}
.checkout-form .selectize-input {
width: 100%;
line-height: 40px;
border-radius: 0;
border: none;
border-bottom: 2px solid #e5e5e5;
box-shadow: none;
outline: 0;
padding: 0 15px 0 0
}
.checkout-form .selectize-control {
margin-bottom: 50px
}
.checkout-form .selectize-input .item,
.checkout-form .selectize-input input {
font-size: 16px;
color: #1a1a1a
}
.checkout-form .selectize-dropdown {
background: #fff;
border: 1px solid #e9e9e9;
border-top: none;
box-shadow: 0 50px 100px 0 rgba(229, 232, 235, .2);
cursor: pointer
}
.checkout-form .selectize-dropdown .option {
font-size: 14px;
color: #1a1a1a;
line-height: 22px
}
.checkout-form .selectize-dropdown .active,
.checkout-form .selectize-dropdown .option:hover {
color: #fff;
background: #1a1a1a
}
.checkout-form .selectize-control.single .selectize-input:after {
right: 8px
}
.checkout-form .checkbox-list li label {
position: relative;
font-family: CircularStdmed;
font-size: 16px;
line-height: 15px;
padding-left: 30px;
color: #1a1a1a;
cursor: pointer;
margin: 0 0 20px
}
.checkout-form .checkbox-list li label:before {
content: '';
width: 15px;
height: 15px;
line-height: 15px;
border-radius: 2px;
border: 1px solid #d5d5d5;
font-size: 10px;
text-align: center;
position: absolute;
left: 0;
top: -1px
}
.checkout-form .checkbox-list li input[type=checkbox]:checked+label:before {
content: "\f107";
font-family: Flaticon;
background: #373737;
color: #fff;
border-color: #373737
}
.checkout-form .order-confirm-sheet .order-review .product-review tr,
.checkout-form .other-note-area p {
font-family: CircularStdmed
}
.checkout-form .checkbox-list {
padding-bottom: 55px
}
.checkout-form .other-note-area p {
font-size: 16px;
color: #1a1a1a;
padding-bottom: 8px
}
.checkout-form .other-note-area textarea {
width: 100%;
border: 1px solid #e5e5e5;
padding: 15px;
resize: none;
height: 145px
}
.checkout-form .order-confirm-sheet {
padding-left: 60px
}
.checkout-form .order-confirm-sheet .order-review {
border: 1px solid #e5e5e5;
padding: 50px 40px
}
.checkout-form .order-confirm-sheet .order-review .product-review {
width: 100%
}
.checkout-form .order-confirm-sheet .order-review .product-review tbody th span {
font-size: 18px;
color: #242424;
font-weight: 400
}
.checkout-form .order-confirm-sheet .order-review .product-review tbody td {
font-size: 18px;
color: #1d1d1d;
text-align: right
}
.checkout-form .order-confirm-sheet .order-review .product-review tbody td,
.checkout-form .order-confirm-sheet .order-review .product-review tbody th {
padding-bottom: 25px
}
.checkout-form .order-confirm-sheet .order-review .product-review tfoot th {
font-size: 16px;
text-transform: uppercase;
color: #242424;
font-weight: 400
}
.checkout-form .order-confirm-sheet .order-review .product-review tfoot td {
text-align: right;
font-size: 24px;
color: #222
}
.checkout-form .order-confirm-sheet .order-review .product-review tfoot td,
.checkout-form .order-confirm-sheet .order-review .product-review tfoot th {
border-top: 1px solid #e9e9e9;
padding-top: 15px
}
.checkout-form .order-confirm-sheet .order-review .payment-list li {
padding: 0 0 5px 30px;
position: relative
}
.checkout-form .order-confirm-sheet .order-review .payment-list li p {
font-size: 15px;
line-height: 22px;
padding-bottom: 15px
}
.checkout-form .order-confirm-sheet .order-review .payment-list li label {
position: relative;
font-family: CircularStdmed;
font-size: 18px;
line-height: 15px;
color: #1a1a1a;
cursor: pointer;
margin: 0 0 15px
}
.checkout-form .order-confirm-sheet .order-review .payment-list li input {
position: absolute;
opacity: 0;
z-index: 1;
width: 100%;
height: 100%
}
.checkout-form .order-confirm-sheet .order-review .payment-list li label:before {
content: '';
width: 15px;
height: 15px;
line-height: 12px;
border-radius: 50%;
border: 1px solid #d5d5d5;
font-size: 10px;
text-align: center;
position: absolute;
left: -30px;
top: -1px
}
.checkout-form .order-confirm-sheet .order-review .payment-list li input:checked+label:before {
content: "ï€Œ";
font-family: font-awesome;
background: #373737;
color: #fff;
border-color: #373737
}
.checkout-form .order-confirm-sheet .order-review .payment-list {
padding: 30px 0 15px;
border-bottom: 1px solid #e9e9e9
}
.checkout-form .order-confirm-sheet .policy-text {
font-size: 15px;
line-height: 22px;
color: #979797;
padding: 25px 0 20px
}
.checkout-form .order-confirm-sheet .agreement-checkbox label {
position: relative;
font-family: CircularStdmed;
font-size: 16px;
color: #1a1a1a;
cursor: pointer;
padding-left: 30px;
margin-bottom: 35px
}
.checkout-form .order-confirm-sheet .agreement-checkbox label:before {
content: '';
width: 15px;
height: 15px;
line-height: 12px;
border-radius: 2px;
border: 1px solid #d5d5d5;
font-size: 10px;
text-align: center;
position: absolute;
left: 0;
top: 3px
}
.checkout-form .order-confirm-sheet .dark-button-one,
.shop-details .procuct-details .tab-content img {
width: 100%
}
.checkout-form .order-confirm-sheet .agreement-checkbox input[type=checkbox]:checked+label:before {
content: "ï€Œ";
font-family: font-awesome;
background: #373737;
color: #fff;
border-color: #373737
}
.checkout-toggle-area p {
padding-bottom: 5px
}
.checkout-toggle-area p button {
color: #1a1a1a;
background: 0 0;
display: inline-block;
text-decoration: underline
}
.checkout-toggle-area form input {
width: 100%;
height: 55px;
border: 1px solid #d5d5d5;
border-radius: 5px;
padding: 0 30px;
margin-bottom: 20px
}
.checkout-toggle-area form input:focus {
border-color: #777
}
.checkout-toggle-area form .lost-passw {
color: #636067;
font-size: 16px;
margin: 12px 0 35px
}
.checkout-toggle-area form button {
font-size: 15px
}
.checkout-toggle-area form p {
padding-top: 30px
}
.solid-inner-banner {
background: #fafcff;
text-align: center;
padding: 265px 0 0
}
.solid-inner-banner.white-bg {
background: #fff
}
.solid-inner-banner .page-title {
font-family: CircularStdmed;
font-size: 60px;
color: #313131;
padding-bottom: 150px
}
.solid-inner-banner .page-breadcrumbs {
background: #fff;
border-bottom: 1px solid #eee;
padding: 25px 0
}
.solid-inner-banner .page-breadcrumbs li {
display: inline-block;
font-size: 22px;
color: #244574;
margin: 0 3px
}
.solid-inner-banner .page-breadcrumbs li a {
color: #244574
}
.shop-details .procuct-details .tab-content {
margin-bottom: 40px
}
.shop-details .nav-tabs>li {
margin: 0
}
.shop-details .procuct-details .nav-tabs>li>a {
padding: 0;
margin: 0 20px 0 0;
border: 0;
border-radius: 0;
width: 100px;
height: 100px;
display: block;
overflow: hidden
}
.shop-details .nav-tabs {
border: none
}
.shop-details .procuct-details .product-info {
padding-left: 30px
}
.shop-details .procuct-details .product-info .product-name {
font-size: 32px;
line-height: 40px;
padding-bottom: 15px;
color: #313131
}
.shop-details .procuct-details .product-info .rating li {
display: inline-block;
color: #a2a2a2
}
.shop-details .procuct-details .product-info .rating li:nth-child(6) {
margin: 0 10px
}
.shop-details .procuct-details .product-info .rating li i {
color: #ffbd3a
}
.shop-details .procuct-details .product-info .price {
font-family: CircularStdmed;
display: block;
font-weight: 400;
font-size: 32px;
margin: 30px 0 20px
}
.shop-details .procuct-details .product-info .availability li {
display: inline-block;
line-height: 40px;
font-size: 18px;
color: #989ca2
}
.shop-details .procuct-details .product-info .availability li span {
color: #212121
}
.shop-details .procuct-details .product-info .availability li:nth-child(2) {
margin: 0 10px
}
.shop-details .procuct-details .product-info p {
font-size: 18px;
margin: 25px 0 50px
}
.shop-details .procuct-details .product-info .customize-order h6 {
font-size: 24px;
color: #313131;
padding-bottom: 25px
}
.shop-details .procuct-details .product-info .quantity ul {
border: 1px solid #e3e3e3;
display: inline-block
}
.shop-details .procuct-details .product-info .quantity ul li {
display: inline-block;
line-height: 40px;
max-height: 40px
}
.shop-details .procuct-details .product-info .quantity ul li button {
font-size: 25px;
color: #c9c9c9;
background: 0 0;
width: 25px
}
.shop-details .procuct-details .product-info .quantity ul .product-value {
font-size: 19px;
color: #313131;
max-width: 42px;
background: 0 0;
border: none;
padding-left: 10px
}
.shop-details .procuct-details .product-info .quantity {
padding-right: 90px
}
.shop-details .procuct-details .product-info .color-filter li {
display: inline-block
}
.shop-details .procuct-details .product-info .color-filter li a {
display: block;
margin-right: 10px;
width: 20px;
height: 20px;
border-radius: 50%;
border-width: 4px;
border-style: solid
}
.shop-details .procuct-details .product-info .color-filter li:nth-child(1) a {
border-color: #9aa2ce
}
.shop-details .procuct-details .product-info .color-filter li:nth-child(2) a {
border-color: #00ead0
}
.shop-details .procuct-details .product-info .color-filter li:nth-child(3) a {
border-color: #ff4b68
}
.shop-details .procuct-details .product-info .color-filter li:nth-child(4) a {
border-color: #ffd657
}
.shop-details .procuct-details .product-info .color-filter li:nth-child(1):hover a {
background: #9aa2ce
}
.shop-details .procuct-details .product-info .color-filter li:nth-child(2):hover a {
background: #00ead0
}
.shop-details .procuct-details .product-info .color-filter li:nth-child(3):hover a {
background: #ff4b68
}
.shop-details .procuct-details .product-info .color-filter li:nth-child(4):hover a {
background: #ffd657
}
.shop-details .procuct-details .product-info .customize-order {
margin-bottom: 50px
}
.shop-details .procuct-details .product-info .cart-button {
font-family: CircularStdmed;
width: 155px;
line-height: 46px;
font-size: 14px;
text-transform: uppercase;
border-width: 2px;
border-style: solid;
color: #fff;
text-align: center;
margin-right: 20px
}
.shop-details .procuct-details .product-info .cart-button:hover {
background: #fff
}
.shop-details .procuct-details .product-info .wishlist-button {
font-family: CircularStdmed;
width: 190px;
line-height: 48px;
font-size: 14px;
color: rgba(0, 0, 0, .45);
text-align: center;
border: 1px solid #dcdcdc
}
.shop-details .procuct-details .product-info .wishlist-button:hover {
color: #fff
}
.shop-details .procuct-details .product-info .wishlist-button i {
margin-right: 8px;
opacity: .8
}
.shop-details .product-review-tab {
border: 1px solid #ebebeb;
padding: 40px 55px 35px;
margin: 125px 0 130px
}
.shop-details .product-review-tab .nav-tabs li a {
padding: 0 0 22px;
margin-right: 60px;
font-size: 22px;
color: #a6aab1;
border: none;
border-radius: 0;
background: 0 0;
position: relative
}
.shop-details .product-review-tab .nav-tabs li a:before {
content: '';
position: absolute;
width: 20px;
height: 20px;
background: #fff;
border-top: 1px solid #ebebeb;
border-right: 1px solid #ebebeb;
transform: rotate(135deg);
bottom: -11px;
left: 50%;
margin-left: -10px;
z-index: 1;
opacity: 0
}
.shop-details .product-review-tab .nav-tabs li:last-child a {
margin-right: 0
}
.shop-details .product-review-tab .nav-tabs {
border-bottom: 1px solid #ebebeb
}
.shop-details .product-review-tab .nav-tabs .nav-link.active {
color: #474747
}
.shop-details .product-review-tab .nav-tabs .nav-link.active:before {
opacity: 1
}
.shop-details .product-review-tab .tab-pane {
padding: 30px 0 0
}
.shop-details .product-review-tab .tab-content p {
line-height: 32px;
color: #989ca2
}
.shop-details .product-review-tab .tab-content .list-title {
font-size: 18px;
color: #474747;
font-style: italic;
padding: 35px 0 22px
}
.shop-details .product-review-tab .tab-content .tab-title {
font-size: 20px;
color: #474747;
padding: 10px 0 22px
}
.shop-details .product-review-tab .tab-content .list-item li {
font-size: 18px;
color: #989ca2;
padding-left: 20px;
margin-bottom: 15px;
position: relative
}
.shop-details .product-review-tab .tab-content .list-item li:before {
content: '';
position: absolute;
width: 6px;
height: 6px;
border-radius: 50%;
left: 0;
top: 10px
}
.shop-details .user-comment-area {
padding-right: 200px
}
.user-comment-area .single-comment {
padding-bottom: 50px
}
.user-comment-area .single-comment:last-child {
padding-bottom: 0
}
.user-comment-area .single-comment .user-img {
width: 60px;
height: 60px;
border-radius: 50%
}
.user-comment-area .single-comment .user-comment-data {
padding-left: 30px;
position: relative
}
.user-comment-area .single-comment .user-comment-data .name {
font-family: CircularStdmed;
font-size: 20px;
color: #3e3e3e;
padding-bottom: 5px
}
.user-comment-area .single-comment .user-comment-data .rating li {
display: inline-block
}
.user-comment-area .single-comment .user-comment-data .rating li a {
font-size: 15px;
color: #fbc134;
margin-right: 1px
}
.user-comment-area .single-comment .user-comment-data p {
padding-top: 15px;
color: #989ca2
}
.realated-product .title {
font-size: 36px;
padding-bottom: 55px
}
.realated-product.product-showcase .single-product-case {
margin: 0
}
.realated-product .owl-theme .owl-nav [class*=owl-] {
background: 0 0;
padding: 0;
font-size: 32px;
margin: 0 0 0 15px;
color: #cacaca
}
.realated-product .owl-theme .owl-nav {
position: absolute;
top: -100px;
right: 0
}
.faq-page .faq-page-title {
font-size: 32px
}
.faq-page .faq-search-form {
height: 60px;
position: relative
}
.faq-page .faq-search-form input {
width: 500px;
height: 100%;
border: 1px solid #e1e1e1;
padding: 0 70px 0 30px;
font-size: 18px;
color: #a6a6a6;
font-style: italic
}
.faq-page .faq-search-form input:focus {
border-color: #313131
}
.faq-page .faq-search-form button {
position: absolute;
width: 70px;
top: 0;
right: 0;
bottom: 0;
background: 0 0;
color: #b1b1b1
}
.faq-page .submit-faq input,
.faq-page .submit-faq textarea {
color: #989ca2;
border: 1px solid #e7e7e7;
margin-bottom: 30px;
width: 100%
}
.faq-page .submit-faq .faq-page-title {
padding-bottom: 75px
}
.faq-page .submit-faq input {
height: 60px;
padding: 0 15px 0 30px
}
.faq-page .submit-faq::placeholder {
color: #989ca2;
opacity: 1
}
.faq-page .submit-faq:-ms-input-placeholder {
color: #989ca2
}
.faq-page .submit-faq::-ms-input-placeholder {
color: #989ca2
}
.faq-page .submit-faq textarea {
height: 290px;
max-height: 290px;
padding: 15px 30px;
resize: none
}
.faq-page .submit-faq input:focus,
.faq-page .submit-faq textarea:focus {
border-color: #212121
}
.faq-page .submit-faq button {
display: block;
width: 100%;
height: 60px;
border-width: 2px;
border-style: solid;
font-size: 18px;
color: #fff
}
.faq-page .submit-faq button:hover {
background: #fff
}
.our-team .theme-title-one .upper-title {
color: rgba(36, 69, 116, .55)
}
.our-team .img-box img {
width: 100%
}
.team-standard .single-team-member {
position: relative;
padding: 0 45px 55px 0;
margin-bottom: 100px
}
.team-standard .single-team-member .wrapper {
position: relative
}
.team-standard .single-team-member .img-box img {
border-radius: 4px
}
.team-standard .single-team-member .info-meta {
position: absolute;
width: 100%;
right: 0;
bottom: 0;
transform: translate(45px, 55px);
padding: 25px 0 25px 50px;
background: #fff;
box-shadow: 5.99px 14.84px 30px 0 rgba(229, 234, 239, .5)
}
.our-team .single-team-member .info-meta .name {
font-size: 22px;
color: #3d3d3d;
padding-bottom: 5px
}
.our-team .single-team-member .info-meta span {
font-size: 20px;
color: rgba(0, 0, 0, .4)
}
.team-standard .single-team-member:hover .info-meta {
transform: translate(0, 55px)
}
.team-standard .single-team-member .hover-content {
position: absolute;
width: 45px;
background: #fff;
box-shadow: 8px 0 8.6px 1.4px rgba(229, 234, 239, .2);
right: 0;
top: 0;
bottom: 0;
transform: scale(0, 1);
transform-origin: 0 0
}
.team-standard .single-team-member .hover-content ul {
position: relative;
top: 40%;
transform: translateY(-50%)
}
.team-standard .single-team-member .hover-content ul li a {
display: block;
text-align: center;
color: rgba(0, 0, 0, .4);
font-size: 20px;
margin: 15px 0
}
.team-standard .single-team-member:hover .hover-content {
transform: scale(1, 1)
}
.team-minimal .single-team-member {
text-align: center;
margin-bottom: 130px
}
.team-minimal .single-team-member .img-box {
width: 300px;
height: 300px;
border-radius: 50%;
overflow: hidden;
margin: 0 auto;
position: relative
}
.team-minimal .single-team-member .info-meta {
padding: 30px 0 0
}
.team-minimal .single-team-member .hover-content {
position: absolute;
top: 0;
right: 0;
border-radius: 50%;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, .8);
transform: scale(.7);
opacity: 0
}
.team-minimal .single-team-member:hover .hover-content {
transform: scale(1);
opacity: 1
}
.team-minimal .single-team-member .hover-content ul {
position: relative;
top: 50%;
transform: translateY(-50%)
}
.team-minimal .single-team-member .hover-content ul li {
display: inline-block;
margin: 0 12px
}
.team-minimal .single-team-member .hover-content ul li a {
font-size: 25px;
color: #fff
}
.team-business .single-team-member {
margin-bottom: 120px
}
.team-business .single-team-member .img-box {
width: 220px
}
.team-business .single-team-member .info-meta {
padding-left: 40px;
width: calc(100% - 220px)
}
.team-business .single-team-member .info-meta q {
font-size: 21px;
line-height: 25px;
font-style: italic;
color: #3d3d3d;
display: block;
padding: 30px 0 45px
}
.team-classic .wrapper {
position: relative;
background: #353535;
margin-bottom: 100px
}
.team-classic .single-team-member:hover img {
opacity: .4
}
.team-classic .wrapper .info-meta {
position: absolute;
left: 0;
bottom: 0;
z-index: 1;
width: 100%;
text-align: center;
padding: 15px 0;
background: #fff;
box-shadow: 0 18px 24px 0 rgba(0, 0, 0, .03);
transform: translateY(10%);
opacity: 0
}
.team-classic .wrapper .hover-content {
position: absolute;
width: 100%;
text-align: center;
left: 0;
top: 40%;
transform: translateY(-50%);
opacity: 0
}
.team-classic .wrapper .hover-content li {
display: inline-block;
margin: 0 10px
}
.team-classic .wrapper .hover-content li a {
font-size: 25px;
color: #fff
}
.team-classic .single-team-member:hover .hover-content {
opacity: 1
}
.team-classic .single-team-member:hover .info-meta {
transform: translateY(0);
opacity: 1
}
.about-us-standard .top-icon-box {
text-align: center;
padding-bottom: 50px
}
.about-us-standard .top-icon-box .icon {
background-color: #fff;
box-shadow: 0 5px 10px 0 rgba(202, 221, 243, .5);
width: 70px;
height: 70px;
margin: 0 auto;
line-height: 70px;
border-radius: 50%;
font-size: 28px;
color: #ffc77e
}
.about-us-standard .top-icon-box span {
display: block;
text-transform: uppercase;
font-size: 20px;
color: rgba(36, 69, 116, .55);
padding-top: 30px
}
.about-us-standard .single-block .block-title {
font-size: 24px;
color: #244574
}
.about-us-standard .single-block p {
font-size: 18px;
line-height: 32px;
color: #798598;
padding-right: 50px
}
.about-us-standard .single-block .author-data {
padding: 38px 0 0 40px
}
.about-us-standard .single-block .author-data .name {
font-family: CircularStdmed;
font-size: 16px;
text-transform: uppercase;
color: #3e3e3e;
position: relative
}
.about-us-standard .single-block .author-data .name:before {
content: '';
position: absolute;
width: 23px;
height: 2px;
background: #666;
top: 8px;
left: -40px
}
.about-us-standard.agency-style .row {
padding-bottom: 120px
}
.about-us-standard.agency-style .row:last-child {
padding: 0
}
.about-us-standard.agency-style .row:nth-child(even) .img-box img {
margin-top: -185px
}
.theme-counter-two {
border-top: 1px solid #e9e9e9;
border-bottom: 1px solid #e9e9e9
}
.theme-counter-two .single-counter-box:nth-child(2) {
border-left: 1px solid #e9e9e9;
border-right: 1px solid #e9e9e9
}
.theme-counter-two .single-counter-box {
padding: 95px 15px 95px 7%
}
.theme-counter-two .single-counter-box .icon-box {
position: relative;
width: 60px;
height: 60px;
border-radius: 50%
}
.theme-counter-two .single-counter-box .icon-box img {
margin: 0 auto;
position: relative;
top: 50%;
transform: translateY(-50%)
}
.theme-counter-two .single-counter-box:nth-child(1) .icon-box {
background: linear-gradient(120deg, #f99a78 0, #ff538c 100%)
}
.theme-counter-two .single-counter-box:nth-child(2) .icon-box {
background: linear-gradient(120deg, #51ec70 0, #24bd9b 100%)
}
.theme-counter-two .single-counter-box:nth-child(3) .icon-box {
background: linear-gradient(120deg, #6c47da 0, #e081ff 100%)
}
.theme-counter-two .single-counter-box .text {
padding-left: 30px
}
.theme-counter-two .single-counter-box .text .number {
font-size: 36px;
color: #3e3e3e
}
.theme-counter-two .single-counter-box .text p {
font-size: 18px;
color: #a4a7ac;
margin-top: -8px
}
.video-action-banner-one {
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/home/12.jpg);
background-size: 120%;
background-repeat: no-repeat;
animation: imageBgAnim 50s infinite linear alternate
}
.video-action-banner-one .overlay {
background: rgba(0, 0, 0, .4);
padding: 320px 0;
text-align: center
}
.video-action-banner-one .video-button {
width: 125px;
height: 125px;
border-radius: 50%;
position: relative
}
.video-action-banner-one .video-button img {
margin: 0 auto;
position: relative;
top: 50%;
transform: translateY(-50%)
}
.video-action-banner-one .video-button:before {
content: '';
position: absolute;
right: 0;
bottom: 0;
top: 0;
left: 0;
border-radius: 50%;
animation: hvr-ripple-out-two 1.2s linear infinite
}
.theme-action-banner-two {
position: relative;
background: url(//aq-technologies.com/wp-content/themes/saasweb/images/home/13.jpg) center no-repeat fixed;
background-size: cover;
text-align: center;
padding: 150px 0 160px;
z-index: 1
}
.theme-action-banner-two:before {
content: '';
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: rgba(0, 0, 0, .18);
z-index: -1
}
.theme-action-banner-two .title {
font-family: CircularStdmed;
font-size: 48px;
color: #fff;
padding: 0 200px
}
.theme-action-banner-two .banner-button {
width: 210px;
line-height: 53px;
color: #fff;
font-size: 19px;
text-transform: uppercase;
border: 1px solid #fff;
border-radius: 3px;
margin-top: 65px
}
.our-service .service-block .service-title {
font-size: 48px;
line-height: 54px
}
.our-service .service-block .service-title a {
color: #3e3e3e
}
.our-service .service-block .read-more {
font-size: 38px;
line-height: 20px
}
.service-minimal .row {
margin: 0 -110px
}
.service-minimal .row [class*=col-] {
padding: 0 110px
}
.service-minimal .service-block .icon-box {
height: 80px;
margin-bottom: 50px
}
.service-minimal .service-block p {
font-size: 17px;
line-height: 32px;
color: #798598;
padding: 35px 0
}
.service-minimal .service-block .read-more {
color: #cfd5df
}
.service-minimal .service-block {
margin-bottom: 140px
}
.service-standard .service-block {
background-size: cover;
border-radius: 5px;
position: relative;
overflow: hidden;
margin-bottom: 50px;
height: 475px
}
.service-standard .service-block:before {
content: '';
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba(0, 0, 0, .2);
opacity: 0;
z-index: -1
}
.service-standard .service-block:hover:before {
opacity: 1
}
.service-standard .service-block .hover-content {
position: absolute;
width: 100%;
left: 0;
bottom: 15px;
padding: 20px 40px
}
.service-standard .service-block .hover-content .title a {
font-size: 22px;
line-height: 32px;
color: #fff;
margin-bottom: 12px
}
.service-standard .service-block .hover-content .read-more {
color: #fff
}
.service-standard .service-block .hover-content p {
font-size: 16px;
color: #fff;
padding: 10px 40px 20px;
opacity: 0;
position: absolute;
top: 0;
left: -50px;
transform: translateY(-100%)
}
.service-standard .service-block:hover .hover-content p {
opacity: 1;
left: 0
}
.our-service .our-history .img-box {
position: relative;
overflow: hidden;
padding-bottom: 180px
}
.our-service .our-history .img-box .bottom-img {
position: absolute;
right: -65px;
bottom: 0;
border: 30px solid #fff
}
.our-service .our-history .text-wrapper {
padding: 80px 0 0 180px
}
.our-service .our-history .text-wrapper p {
color: #67707e;
font-size: 20px;
line-height: 35px;
padding-top: 30px
}
.service-creative .service-block {
padding: 110px 0 125px
}
.service-creative .service-block .img-box {
margin-top: 30px
}
.service-creative .service-block .service-info .num {
font-size: 80px;
color: rgba(255, 255, 255, .1);
line-height: 70px;
margin-bottom: 30px
}
.service-creative .service-block .service-info .service-title a {
color: #fff
}
.service-creative .service-block .service-info p {
font-size: 18px;
color: rgba(255, 255, 255, .8);
padding: 22px 0 40px
}
.service-creative .service-block .service-info .read-more {
color: #fff
}
.service-creative .service-block:nth-child(even) .service-info {
padding-left: 60px
}
.service-creative .service-block:nth-child(odd) .service-info {
padding-right: 60px
}
.service-creative .service-block:nth-child(odd) .img-box {
float: right
}
.service-modren .service-block .img-box img {
border-radius: 5px
}
.service-modren .service-block .service-info .tag {
display: inline-block;
line-height: 40px;
font-size: 15px;
padding: 0 35px;
border-radius: 3px
}
.service-modren .service-block .service-info .tag.color-one {
background: #ffeaee;
color: #ff8aa0
}
.service-modren .service-block .service-info .tag.color-two {
background: #fef9da;
color: #ead24c
}
.service-modren .service-block .service-info .tag.color-three {
background: #e7fff5;
color: #70e9ae
}
.service-modren .service-block .service-info .tag.color-four {
background: #edf9ff;
color: #7fd8ff
}
.service-modren .service-block .service-info .read-more {
color: #cfd5df
}
.service-modren .service-block .service-info .service-title {
margin: 40px 0 45px
}
.service-modren .service-block {
padding-bottom: 150px
}
.service-modren .service-block:last-child {
padding-bottom: 0
}
.service-modren .service-block:nth-child(odd) .service-info {
padding-right: 30px
}
.service-modren .service-block:nth-child(even) .service-info {
padding-left: 30px
}
.project-ms-grid .inner-container {
max-width: 1410px;
padding: 0 15px;
margin: 0 auto
}
.our-project .isotop-menu-wrapper {
text-align: center
}
.our-project .isotop-menu-wrapper li {
display: inline-block;
font-size: 20px;
color: #244574;
line-height: 31px;
text-transform: capitalize;
border-radius: 5px;
padding: 0 16px;
border: 2px solid transparent;
cursor: pointer;
margin: 0 5px 10px
}
#isotop-gallery-wrapper .grid-sizer,
#isotop-gallery-wrapper .isotop-item {
width: 33.33333333%
}
.project-standard #isotop-gallery-wrapper {
margin: 0 -35px
}
.project-standard #isotop-gallery-wrapper .grid-sizer,
.project-standard #isotop-gallery-wrapper .isotop-item {
width: 50%;
padding: 0 35px;
margin-bottom: 70px
}
.project-ms-full-width #isotop-gallery-wrapper .grid-sizer,
.project-ms-full-width #isotop-gallery-wrapper .isotop-item {
width: 25%
}
.project-ms-grid #isotop-gallery-wrapper {
margin: 0 -25px
}
.project-ms-grid #isotop-gallery-wrapper .grid-sizer,
.project-ms-grid #isotop-gallery-wrapper .isotop-item {
width: 33.3333333%;
padding: 0 25px;
margin-bottom: 45px
}
.our-project .project-item {
overflow: hidden;
position: relative
}
.our-project .project-item .img-box img {
width: 100%;
transition: all 1s ease-in-out
}
#isotop-gallery-wrapper .isotop-item .hover-jojo {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(55, 55, 55, .5);
padding: 10px 25px;
opacity: 0
}
#isotop-gallery-wrapper .isotop-item .project-item:hover .hover-jojo {
opacity: 1
}
#isotop-gallery-wrapper .isotop-item .hover-jojo>div {
position: relative;
display: inline-block;
top: 50%;
transform: translateY(-50%)
}
.our-project .project-item .title a {
font-size: 30px;
color: #fff;
text-transform: uppercase;
margin-bottom: 25px
}
.our-project .project-item .title span {
font-family: CircularStdmed;
text-decoration: underline
}
#isotop-gallery-wrapper .isotop-item .hover-jojo .title a {
opacity: 0;
transform: translate3d(-360px, 0, 0)
}
#isotop-gallery-wrapper .isotop-item .hover-jojo>div p {
font-size: 95%;
line-height: 30px;
padding: 0 15px;
margin-bottom: 5px;
background: rgba(255, 255, 255, .9);
opacity: 0;
transform: translate3d(-300px, 0, 0)
}
#isotop-gallery-wrapper .isotop-item .hover-jojo div div>p:first-child {
-webkit-transition-delay: .1s;
transition-delay: .1s
}
#isotop-gallery-wrapper .isotop-item .hover-jojo div div>p:nth-child(2) {
-webkit-transition-delay: .15s;
transition-delay: .15s
}
#isotop-gallery-wrapper .isotop-item .hover-jojo div div>p:nth-child(3) {
-webkit-transition-delay: .2s;
transition-delay: .2s
}
#isotop-gallery-wrapper .isotop-item .hover-jojo ul li {
display: inline-block;
vertical-align: middle;
margin-top: 20px;
opacity: 0;
transform: translate3d(-100px, 0, 0)
}
#isotop-gallery-wrapper .isotop-item .hover-jojo ul li:first-child {
-webkit-transition-delay: .25s;
transition-delay: .25s
}
#isotop-gallery-wrapper .isotop-item .hover-jojo ul li:last-child {
-webkit-transition-delay: .3s;
transition-delay: .3s
}
#isotop-gallery-wrapper .isotop-item .hover-jojo ul li a {
width: 45px;
height: 45px;
border: 1px solid rgba(255, 255, 255, .8);
color: #fff;
text-align: center;
line-height: 45px;
font-size: 20px;
margin-right: 8px;
border-radius: 50%
}
#isotop-gallery-wrapper .isotop-item .hover-jojo ul li a span {
font-family: Lato, sans-serif;
display: block;
font-weight: 300;
font-size: 40px;
margin-top: -2px
}
.blog-details .blog-hero-banner .blog-title,
.blog-details .inner-block-title,
.blog-details .post-data .bold-text,
.blog-details .post-tag-area .share-icon li,
.blog-details .post-tag-area .tags li:first-child,
.blog-details .user-comment-area .single-comment .reply,
.blog-details-fg .blog-fg-data .post-data .sub-heading,
.blog-filer .blog-filter-nav li,
.blog-filter-title .upper-title,
.our-blog .bg-solid-post.single-blog-post .post-data .title,
.our-blog .post-data .blog-title-one,
.our-blog .post-data .blog-title-two,
.project-details .project-info .list-title,
.project-details .share-icon li,
.project-details-agency .pd-body .sub-heading,
.project-with-sidebar .page-title {
font-family: CircularStdmed
}
#isotop-gallery-wrapper .isotop-item .project-item:hover .hover-jojo .title a,
#isotop-gallery-wrapper .isotop-item .project-item:hover .hover-jojo p,
#isotop-gallery-wrapper .isotop-item .project-item:hover .hover-jojo ul li {
opacity: 1;
transform: translate3d(0, 0, 0)
}
#isotop-gallery-wrapper .isotop-item .project-item:hover .img-box img,
.project-with-sidebar .project-item:hover .img-box>img {
-webkit-transform: scale3d(1.1, 1.1, 1);
transform: scale3d(1.1, 1.1, 1)
}
.our-project .project-item .hover-valina {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, .7);
padding: 30px;
opacity: 0
}
.our-project .project-item:hover .hover-valina {
opacity: 1
}
.our-project .project-item .hover-valina:after,
.our-project .project-item .hover-valina:before {
content: '';
position: absolute;
top: 30px;
right: 30px;
bottom: 30px;
left: 30px;
opacity: 0
}
.our-project .project-item .hover-valina:before {
border-top: 1px solid #fff;
border-bottom: 1px solid #fff;
-webkit-transform: scale(0, 1);
transform: scale(0, 1)
}
.our-project .project-item .hover-valina:after {
border-right: 1px solid #fff;
border-left: 1px solid #fff;
-webkit-transform: scale(1, 0);
transform: scale(1, 0)
}
.our-project .project-item:hover .hover-valina:after,
.our-project .project-item:hover .hover-valina:before {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1)
}
.our-project .project-item .hover-valina>div {
text-align: center;
position: relative;
z-index: 1;
top: 50%;
transform: translateY(-50%)
}
.our-project .project-item .hover-valina .title a {
opacity: 0;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
margin-bottom: 15px
}
.our-project .project-item .hover-valina p {
opacity: 0;
font-size: 98%;
color: #fff;
padding-bottom: 30px;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
transition-delay: .15s
}
.our-project .project-item .hover-valina .zoom {
opacity: 0;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
transition-delay: .2s
}
.our-project .project-item .hover-valina .svg {
width: 35px;
height: 35px
}
.our-project .project-item:hover .hover-valina .title a,
.our-project .project-item:hover .hover-valina .zoom,
.our-project .project-item:hover .hover-valina p {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
.project-with-sidebar .project-item {
padding-bottom: 60px;
margin-bottom: 70px
}
.project-with-sidebar .project-item .hover-coco {
position: absolute;
bottom: 0;
left: 0;
right: 60px;
background: #fff;
padding: 25px 0 10px;
z-index: 1
}
.project-with-sidebar .project-item .hover-coco .title a {
font-size: 24px;
color: #1d1d1d;
text-transform: capitalize;
margin-bottom: 0
}
.project-with-sidebar .project-item .hover-coco p {
color: #c1c1c1;
font-size: 18px
}
.project-with-sidebar .project-item .img-box {
position: relative;
overflow: hidden
}
.project-with-sidebar .project-item .img-box a {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba(0, 0, 0, .5);
opacity: 0
}
.project-with-sidebar .project-item .img-box a .svg {
width: 35px;
height: 35px;
margin: 0 auto;
position: relative;
top: 52%;
transition: all .35s ease-in-out;
transform: translateY(-50%)
}
.project-with-sidebar .project-item:hover .img-box a {
opacity: 1
}
.project-with-sidebar .project-item:hover .img-box a .svg {
top: 50%
}
.project-with-sidebar .page-title {
font-size: 60px;
color: #313131;
padding: 100px 0 80px
}
.project-minimal-page-wrapper {
height: 100vh
}
.project-minimal-style {
padding: 250px 95px 50px
}
.project-minimal-style .inner-wrapper {
padding: 0 35px
}
.project-minimal-style .owl-theme .owl-nav [class*=owl-] {
width: 59px;
height: 54px;
line-height: 54px;
background: #fff;
padding: 0;
border-radius: 50%;
color: #222;
font-size: 32px;
margin: -27px 0 0;
position: absolute;
top: 50%
}
.project-minimal-style .owl-theme .owl-nav .owl-prev {
left: -35px
}
.project-minimal-style .owl-theme .owl-nav .owl-next {
right: -35px
}
.project-minimal-style .share-icon {
text-align: right;
padding-top: 60px
}
.project-minimal-style .share-icon li {
display: inline-block;
font-size: 24px;
color: #3e3e3e
}
.project-minimal-style .share-icon li a {
font-size: 20px;
color: #d3d3d3;
margin-left: 15px
}
.project-minimal-style .share-icon li a:hover {
color: #212121
}
.gallery-sidebar {
padding-top: 245px
}
.gallery-sidebar .sidebar-title {
font-size: 28px;
color: #313131;
position: relative;
padding-bottom: 18px;
margin-bottom: 50px
}
.gallery-sidebar .sidebar-title:before {
content: '';
position: absolute;
width: 30px;
height: 3px;
bottom: 0;
left: 0
}
.gallery-sidebar .sidebar-list li a {
display: block;
font-size: 18px;
line-height: 40px;
color: #585858
}
.gallery-sidebar .sidebar-icon ul li {
display: inline-block
}
.gallery-sidebar .sidebar-icon ul li a {
font-size: 22px;
color: #bcbcbc;
margin-right: 15px
}
.project-details .project-title-one {
font-size: 48px;
line-height: 55px;
color: #3e3e3e;
width: 45%
}
.project-details .project-title-two {
font-size: 60px;
line-height: 65px;
color: #3e3e3e;
width: 80%;
margin: 0 auto
}
.project-details .share-icon li {
display: inline-block;
font-size: 18px;
text-transform: uppercase;
color: #3e3e3e
}
.project-details .share-icon li:first-child {
padding-right: 15px
}
.project-details .share-icon li a {
font-size: 20px;
color: #d3d3d3;
margin-left: 13px
}
.project-details .share-icon li a:hover {
color: #212121
}
.project-details .project-info .title {
font-size: 28px;
color: #3e3e3e;
border-bottom: 1px solid #e2e2e2;
padding-bottom: 25px
}
.project-details .project-info .list-title {
font-size: 20px;
color: #3e3e3e;
text-transform: uppercase;
padding-bottom: 8px
}
.project-details .project-info span {
font-size: 20px;
color: #999
}
.project-details .project-info ul li {
padding-bottom: 50px
}
.project-details .project-info ul li:last-child {
padding-bottom: 0
}
.project-details .side-block .block-title {
font-size: 24px;
text-transform: capitalize;
color: #3e3e3e;
position: relative;
padding-bottom: 12px;
margin-bottom: 25px
}
.project-details .side-block .block-title:before {
content: '';
width: 28px;
height: 4px;
position: absolute;
left: 0;
bottom: 0;
border-radius: 3px
}
.project-details .side-block p {
padding-right: 50px
}
.project-details .side-block {
padding-bottom: 75px
}
.pd-footer .theme-pager {
font-size: 24px;
color: #3e3e3e;
line-height: 35px
}
.pd-footer .theme-pager span {
font-size: 35px;
line-height: 35px;
display: inline-block;
vertical-align: -6px;
color: #979797
}
.project-details .pd-body p {
font-size: 18px;
line-height: 32px;
color: #a4a7ac
}
.project-details-agency .pd-img-box {
margin: 68px 0 90px
}
.project-details-agency .pd-body .sub-heading {
font-size: 24px;
line-height: 35px;
color: #3e3e3e;
padding-bottom: 50px
}
.project-details-agency .pd-body .project-info {
border-left: 1px solid #e1e1e1;
padding-left: 100px
}
.project-details-agency .pd-footer {
padding-top: 170px
}
.project-details-standard .pd-footer {
padding-top: 35px;
position: relative
}
.project-details-standard .pd-header {
max-width: 890px;
margin: 0 auto;
padding: 120px 0 65px
}
.project-details-standard .pd-header p {
font-size: 20px;
color: #8d8d8d;
line-height: 35px;
padding: 70px 100px 100px
}
.project-details-standard .pd-img-box {
margin-bottom: 90px
}
.project-details-business .pd-img-box {
margin-bottom: 50px
}
.project-details.project-details-business .project-info .title {
margin: 60px 0 35px
}
.project-details.project-details-business .project-info .list-title {
font-size: 18px;
text-transform: capitalize
}
.project-details.project-details-business .project-info ul li {
padding-bottom: 35px
}
.project-details.project-details-business .project-info {
padding-bottom: 50px
}
.project-details .pd-banner {
height: 820px;
position: relative;
background-size: cover;
background-repeat: no-repeat;
animation: imageBgAnim 40s infinite linear alternate
}
.project-details-creative .pd-banner .container,
.project-details-creative .pd-banner .container-inner {
position: relative;
height: 100%
}
.project-details-creative .pd-banner .project-title-one {
background: #fff;
padding: 45px 100px 35px 60px;
position: absolute;
left: 0;
bottom: -60px;
width: 55%;
z-index: 1
}
.project-details-creative .container-wrapper {
padding: 0 60px
}
.project-details-creative .pd-body {
padding: 180px 0 150px
}
.project-details-creative .project-info {
border-right: 1px solid #e1e1e1;
margin-right: 50px
}
.project-details.project-details-creative .project-info ul li {
padding-bottom: 73px
}
.project-details.project-details-creative .project-info ul li:last-child,
.project-details.project-details-creative .side-block .block-title {
padding-bottom: 0
}
.project-details.project-details-creative .side-block .block-title:before {
display: none
}
.project-details.project-details-creative .pd-footer>div {
width: 37%
}
.related-project {
background: #f9fbfe;
padding: 135px 0 150px
}
.related-project .sec-title {
font-size: 36px;
color: #313131;
padding-bottom: 55px
}
.related-project .owl-theme .owl-nav [class*=owl-] {
background: 0 0;
padding: 0;
font-size: 32px;
margin: 0 0 0 15px;
color: #cacaca
}
.related-project .owl-theme .owl-nav {
position: absolute;
top: -100px;
right: 0
}
.masnory-blog-wrapper {
margin: 0 -25px
}
.masnory-blog-wrapper .grid-sizer,
.masnory-blog-wrapper .isotop-item {
width: 33.333333%;
padding: 0 25px
}
.our-blog .img-holder {
background: #292928;
overflow: hidden;
position: relative
}
.our-blog .img-holder img {
width: 100%;
transition: all .6s ease-in
}
.our-blog .single-blog-post:hover .img-holder img {
opacity: .6;
transform: scale3d(1.1, 1.1, 1)
}
.our-blog .img-holder .video-button {
display: block;
width: 100px;
height: 100px;
background: #fff;
border-radius: 50%;
text-align: center;
line-height: 100px;
color: #000;
font-size: 50px;
position: absolute;
top: 50%;
left: 50%;
padding-left: 10px;
transform: translate(-50%, -50%)
}
.our-blog .single-blog-post:hover .img-holder .video-button {
color: #fff
}
.our-blog .post-data .date {
font-size: 20px;
color: #b5b5b5;
text-transform: capitalize
}
.our-blog .post-data .date:hover {
color: #363636;
text-decoration: underline
}
.our-blog .post-data .blog-title-one {
font-size: 24px;
line-height: 35px;
color: #3e3e3e
}
.our-blog .post-data .blog-title-two {
font-size: 28px;
line-height: 40px
}
.our-blog .post-data .title a {
color: #3e3e3e
}
.our-blog .post-data p {
color: #76797E;
line-height: 30px
}
.our-blog .post-data .read-more {
font-size: 35px;
color: rgba(0, 0, 0, .25);
line-height: 20px
}
.our-blog .post-data .read-more:hover {
color: #5e5e5e
}
.our-blog .bg-solid-post.single-blog-post .post-data {
padding: 100px 65px 70px;
text-align: center;
position: relative;
background: #ff4c57;
z-index: 1
}
.our-blog .bg-solid-post.single-blog-post .post-data:before {
content: url(//aq-technologies.com/wp-content/themes/saasweb/images/icon/icon58.svg);
position: absolute;
left: 50%;
top: 0;
transform: translateX(-50%);
z-index: -1;
opacity: 0;
transition: all 1s ease-in-out
}
.our-blog .bg-solid-post.single-blog-post.show-pr .post-data:before {
top: 45px;
opacity: 1
}
.our-blog .bg-solid-post.single-blog-post .post-data .title {
font-size: 36px;
line-height: 50px;
margin: 0 0 38px
}
.our-blog .bg-solid-post.single-blog-post .post-data .title a {
color: #fff
}
.our-blog .bg-solid-post.single-blog-post .post-data .title a:hover {
text-shadow: 0 0 5px rgba(255, 255, 255, .3)
}
.our-blog .bg-solid-post.single-blog-post .post-data .author {
font-size: 20px;
color: #fff;
text-transform: uppercase
}
.blog-masonry .single-blog-post .post-data {
padding: 28px 20px 18px 30px;
border: 1px solid #ededed;
border-top: none
}
.blog-masonry .single-blog-post {
margin-bottom: 35px
}
.blog-masonry .single-blog-post .title {
margin: 18px 0 15px
}
.blog-default .single-blog-post .post-data {
padding-top: 45px
}
.blog-default .single-blog-post .post-data .title {
margin: 15px 0 20px
}
.blog-default .single-blog-post .post-data .read-more {
margin-top: 26px
}
.blog-default .single-blog-post {
margin-bottom: 90px
}
.blog-default .single-blog-post.blog-text-style .post-data {
border: 1px solid #ededed;
padding: 45px 55px 35px
}
.blog-filter-title {
text-align: center;
padding: 270px 0 100px
}
.blog-filter-title .upper-title {
font-size: 16px;
text-transform: uppercase;
color: rgba(62, 62, 62, .3);
padding-bottom: 45px
}
.blog-filter-title .main-title {
font-family: CircularStdmed;
font-size: 60px;
line-height: 60px;
color: #313131
}
.blog-filer {
padding-left: 50px;
padding-right: 50px
}
.blog-filer .blog-filter-nav {
border-bottom: 1px solid #5d5d5d;
margin-bottom: 80px
}
.blog-filer .blog-filter-nav li {
float: left;
width: 16.66666666%;
text-align: center;
margin: 15px 0 0;
font-size: 18px;
color: rgba(62, 62, 62, .4);
position: relative;
padding-bottom: 20px
}
.blog-filer .blog-filter-nav li span {
cursor: pointer
}
.blog-filer .blog-filter-nav li.is-checked {
color: #3e3e3e
}
.blog-filer .blog-filter-nav li:before {
content: '';
position: absolute;
width: 20px;
height: 20px;
background: #fff;
border-top: 1px solid #5d5d5d;
border-right: 1px solid #5d5d5d;
transform: rotate(135deg);
bottom: -8px;
left: 50%;
margin-left: -10px;
z-index: 1;
opacity: 0;
transition: all .3s ease-in-out
}
.blog-filer .blog-filter-nav li.is-checked:before {
opacity: 1;
bottom: -11px
}
.blog-filer .masnory-blog-wrapper .grid-sizer,
.blog-filer .masnory-blog-wrapper .isotop-item {
width: 25%;
padding: 0 25px
}
.our-blog.blog-filer .post-data {
padding-top: 28px
}
.our-blog.blog-filer .post-data .blog-title-one {
font-size: 26px;
margin: 15px 0 16px
}
.our-blog.blog-filer .post-data .read-more {
margin-top: 15px
}
.our-blog.blog-filer .single-blog-post {
margin-bottom: 100px
}
.our-blog .full-grid-container {
max-width: 1030px;
margin: 0 auto;
padding: 0 15px
}
.our-blog .full-grid-container .bg-solid-post.single-blog-post .post-data {
padding-left: 90px;
padding-right: 90px
}
.blog-details .post-data {
padding: 40px 0 60px
}
.blog-details .post-data .title {
padding: 15px 0 20px
}
.blog-details .post-data p {
padding-bottom: 30px
}
.blog-details .post-data .quote-one {
font-size: 32px;
line-height: 45px;
margin: 42px 0 60px;
color: #3e3e3e;
position: relative;
padding-left: 90px
}
.blog-details .post-data .quote-one:before {
content: '';
width: 60px;
height: 3px;
background: #3e3e3e;
position: absolute;
top: 17px;
left: 0
}
.blog-details .post-data .bold-text {
font-size: 20px;
line-height: 32px;
color: #3e3e3e;
padding-bottom: 30px
}
.blog-details .post-tag-area .tags li {
display: inline-block;
font-size: 20px;
color: #3e3e3e
}
.blog-details .post-tag-area .tags li a {
font-size: 18px;
color: #989ca2
}
.blog-details .post-tag-area .tags li a:hover {
color: #3e3e3e
}
.blog-details .post-tag-area .share-icon li {
display: inline-block;
font-size: 20px;
color: #3e3e3e
}
.blog-details .post-tag-area .share-icon li a {
font-size: 20px;
color: #d3d3d3;
margin-left: 13px
}
.blog-details .post-tag-area ul {
padding-bottom: 20px
}
.blog-details .post-tag-area {
border-bottom: 1px solid #e5e5e5;
padding-bottom: 10px
}
.blog-details .inner-block-title {
font-size: 36px;
color: #3e3e3e;
padding-bottom: 28px
}
.blog-details .user-comment-area .single-comment .user-comment-data .date {
font-style: italic;
color: #989ca2
}
.blog-details .user-comment-area .single-comment {
padding: 50px 0 40px;
border-bottom: 1px solid #e5e5e5
}
.blog-details .user-comment-area .single-comment.comment-reply {
margin-left: 100px
}
.blog-details .user-comment-area .single-comment .reply {
width: 70px;
height: 30px;
border: 2px solid #e7e7e7;
border-radius: 3px;
font-size: 14px;
text-transform: uppercase;
color: #3e3e3e;
position: absolute;
top: 0;
right: 0;
background: 0 0
}
.blog-details .user-comment-area .single-comment .reply:hover {
color: #fff
}
.blog-details .comment-form-area form {
padding-top: 55px
}
.blog-details .comment-form-area form input,
.blog-details .comment-form-area form textarea {
border: 1px solid #dcdcdc;
width: 100%;
max-width: 100%;
margin-bottom: 35px;
color: #989ca2
}
.blog-details .comment-form-area form input:focus,
.blog-details .comment-form-area form textarea:focus {
border-color: #383838
}
.blog-details .comment-form-area form input {
height: 60px;
padding: 0 25px
}
.blog-details .comment-form-area form textarea {
height: 260px;
max-height: 240px;
padding: 25px
}
.blog-details .comment-form-area form::placeholder {
color: #989ca2;
opacity: 1
}
.blog-details .comment-form-area form:-ms-input-placeholder {
color: #989ca2
}
.blog-details .comment-form-area form::-ms-input-placeholder {
color: #989ca2
}
.blog-details .blog-hero-banner {
padding: 480px 0 220px;
position: relative;
background-repeat: no-repeat;
background-size: cover;
animation: imageBgAnim 50s infinite linear alternate
}
.blog-details .blog-custom-container {
max-width: 980px;
padding: 0 15px;
margin: 0 auto
}
.blog-details .blog-hero-banner .date {
font-size: 20px;
color: #fff;
margin-bottom: 30px
}
.blog-details .blog-hero-banner .blog-title {
font-size: 48px;
line-height: 55px;
color: #fff;
width: 70%
}
.blog-details-fg .blog-fg-data .post-data {
padding: 0
}
.blog-details-fg .blog-fg-data {
position: relative;
z-index: 1;
margin-top: -150px
}
.blog-details-fg .blog-fg-data .custom-container-bg {
padding: 0 75px;
background: #fff
}
.blog-details-fg .blog-fg-data .post-data .sub-heading {
font-size: 28px;
color: #3d3d3d;
padding: 30px 0 25px
}
.blog-details-fg .blog-fg-data .blog-img-gallery {
padding: 50px 0 80px
}
.blog-details-fg .blog-fg-data .blog-img-gallery img {
width: 100%
}
.blog-details-fg .blog-fg-data .video-banner-blog {
background: url(//aq-technologies.com/wp-content/themes/saasweb/images/blog/34.jpg) center no-repeat fixed;
background-size: cover;
height: 615px;
position: relative;
margin: 100px 0 105px
}
.blog-details-fg .blog-fg-data .video-banner-blog .video-button {
display: block;
width: 100px;
height: 100px;
background: #fff;
border-radius: 50%;
text-align: center;
line-height: 100px;
color: #000;
font-size: 50px;
position: absolute;
top: 50%;
left: 50%;
padding-left: 10px;
transform: translate(-50%, -50%)
}
.blog-details-fg .blog-fg-data .video-banner-blog .video-button:hover {
color: #fff
}
.blog-details .post-data .quote-two {
display: inline-block;
font-size: 23px;
line-height: 32px;
font-style: italic;
margin: 0 0 45px;
color: #3e3e3e;
position: relative;
padding-right: 90px
}
.blog-details .post-data .quote-two span {
display: inline-block;
vertical-align: middle;
margin-left: 10px;
width: 100px;
height: 2px;
background: #535353
}
.blog-details.blog-details-fg .user-comment-area .single-comment {
border-bottom: none;
padding-bottom: 30px
}
.blog-details-fg .comment-form-area {
background: #f8fcff;
padding: 130px 0 140px
}
.blog-details-fg .comment-form-area .custom-container-bg {
background: 0 0
}
.blog-details.blog-details-fg .comment-form-area form input,
.blog-details.blog-details-fg .comment-form-area form textarea {
border: none;
border-bottom: 2px solid #383838;
background: 0 0
}
.blog-details.blog-details-fg .comment-form-area form input {
padding: 0
}
.blog-details.blog-details-fg .comment-form-area form textarea {
padding: 25px 0
}
.blog-details.blog-details-fg .comment-form-area form::placeholder {
color: #b8b8b8;
opacity: 1
}
.blog-details.blog-details-fg .comment-form-area form:-ms-input-placeholder {
color: #b8b8b8
}
.blog-details.blog-details-fg .comment-form-area form::-ms-input-placeholder {
color: #b8b8b8
}
#contact-form .form-group {
position: relative;
margin-bottom: 22px
}
#contact-form .form-group input,
#contact-form .form-group textarea {
border: 1px solid #ebebeb;
width: 100%;
max-width: 100%;
color: #989ca2;
background: 0 0
}
#contact-form .form-group input:focus,
#contact-form .form-group textarea:focus {
border-color: #545454
}
#contact-form .form-group::placeholder {
color: #989ca2;
opacity: 1
}
#contact-form .form-group:-ms-input-placeholder {
color: #989ca2
}
#contact-form .form-group::-ms-input-placeholder {
color: #989ca2
}
#contact-form .form-group input {
height: 60px;
padding: 0 25px
}
#contact-form .form-group textarea {
height: 190px;
max-height: 190px;
resize: none;
padding: 20px 25px
}
#contact-form .form-group .help-block {
position: absolute;
left: 0;
bottom: -12px;
font-size: 15px;
line-height: 20px;
color: #fff;
padding: 0 15px;
border-radius: 3px;
box-shadow: 0 10px 25px 0 rgba(123, 147, 171, .15)
}
#contact-form .form-group .help-block li {
position: relative
}
#contact-form .form-group .help-block li:before {
content: 'ïƒ˜';
font-family: font-awesome;
position: absolute;
top: -12px;
left: 0
}
#contact-form button {
margin-top: 35px
}
.contact-us-section .contact-info {
padding-left: 100px
}
.contact-us-section .contact-info .title {
font-family: CircularStdmed;
font-size: 42px;
line-height: 55px;
color: #3e3e3e;
margin: -8px 0 25px
}
.contact-us-section .contact-info p {
font-size: 20px;
color: #798598
}
.contact-us-section .contact-info .call {
font-size: 27px;
color: #3e3e3e;
margin: 25px 0 40px
}
.contact-us-section .contact-info .call:hover {
text-decoration: underline
}
.contact-us-section .contact-info ul li {
display: inline-block
}
.contact-us-section .contact-info ul li a {
width: 40px;
line-height: 36px;
border: 2px solid #e8e8e8;
border-radius: 50%;
text-align: center;
font-size: 18px;
color: #dbdbdb;
margin-right: 5px
}
.contact-us-section .contact-info ul li a:hover {
color: #fff
}
#google-map {
height: 700px
}
#google-map-two {
margin: 170px 70px 0;
height: 625px
}
#google-map-three,
.map-canvas {
height: 100%
}
#contact-form.form-style-two .form-group input,
#contact-form.form-style-two .form-group textarea {
border: none;
border-bottom: 1px solid #ebebeb;
padding-left: 0;
padding-right: 0
}
#contact-form.form-style-two .form-group input:focus,
#contact-form.form-style-two .form-group textarea:focus {
border-bottom-color: #545454
}
.contact-address-two {
text-align: center;
padding: 250px 0 150px
}
.contact-address-two .theme-title-one .upper-title {
color: rgba(147, 155, 169, .5)
}
.contact-address-two .theme-title-one {
padding-bottom: 50px
}
.contact-address-two .address-block {
padding-top: 40px
}
.contact-address-two .address-block .icon-box {
display: inline-block;
height: 70px
}
.contact-address-two .address-block h5 {
font-size: 24px;
padding: 18px 0 20px
}
.contact-address-two .address-block p,
.contact-address-two .address-block p a {
color: #939ba9
}
.contact-address-two .address-block ul li {
display: inline-block;
margin: 10px 8px 0
}
.contact-address-two .address-block ul li a {
font-size: 20px;
color: #d3d3d3
}
.contact-minimal .inner-wrapper {
background: #2f2f2f;
padding: 60px 15px 80px 100px
}
.contact-minimal .inner-wrapper .contact-form {
max-width: 585px
}
#contact-form.form-style-three .form-group::placeholder {
color: #fff;
opacity: 1
}
#contact-form.form-style-three .form-group:-ms-input-placeholder {
color: #fff
}
#contact-form.form-style-three .form-group::-ms-input-placeholder {
color: #fff
}
#contact-form.form-style-three .form-group input,
#contact-form.form-style-three .form-group textarea {
border: none;
border-bottom: 2px solid #fff;
padding-left: 0;
padding-right: 0;
color: #fff
}
.form-style-three .send-button {
font-family: CircularStdmed;
width: 193px;
line-height: 51px;
border: 2px solid #fff;
font-size: 17px;
color: #fff;
background: 0 0
}
.page-404 {
height: 100vh;
position: relative
}
.error-content,
.page-404 .main-page-wrapper {
height: 100%;
position: relative
}
.error-content:before {
content: '';
position: absolute;
right: 0;
top: 0;
z-index: -1;
width: 40%;
height: 100%;
background: url(//aq-technologies.com/wp-content/themes/saasweb/images/home/404.png) no-repeat;
background-size: cover
}
.error-content .inner-wrapper,
.error-creative-content .inner-wrapper {
text-align: center;
top: 50%;
transform: translateY(-50%);
position: relative
}
.error-content .inner-wrapper {
width: 60%;
padding: 95px 0 50px
}
.error-content .inner-wrapper h2 {
font-size: 200px;
color: #313131
}
.error-content .inner-wrapper p {
font-size: 25px;
line-height: 42px;
margin: -30px 0 50px
}
.error-creative-content {
background: url(//aq-technologies.com/wp-content/themes/saasweb/images/home/error-bg.svg) center no-repeat;
background-size: cover;
height: 100%
}
.error-creative-content .inner-wrapper {
padding: 35px 0 50px
}
.error-creative-content .inner-wrapper h2 {
font-size: 70px;
color: #302c48
}
.error-creative-content .inner-wrapper p {
font-size: 24px;
line-height: 35px;
color: rgba(62, 62, 62, .55);
margin: 35px 0 45px
}
.error-creative-content .inner-wrapper .solid-button-one:hover {
background: 0 0
}
.project-creative {
padding-top: 50px;
color: #76797E;
position: relative
}
.project-creative .back-button {
position: fixed;
top: 10px;
right: 15px;
z-index: 99
}
.project-creative .back-button .icon {
margin: 0
}
.project-creative .slideshow {
position: relative;
overflow: hidden;
margin: 0;
width: 100%;
height: calc(100vh - 10rem);
display: grid;
grid-template-columns: 33% 33% 33%;
grid-column-gap: .5%;
grid-template-rows: 100%;
grid-template-areas: '... slide ...'
}
.project-creative .slide {
width: 100%;
display: flex;
pointer-events: none;
cursor: pointer;
position: relative;
height: 100%;
grid-area: slide
}
.project-creative .slideshow--previewopen .slide {
cursor: default
}
.project-creative .slide--current {
pointer-events: auto
}
.project-creative .slide__img-wrap {
width: 100%;
overflow: hidden;
z-index: 100;
height: 80%;
top: 10%;
position: absolute
}
.project-creative .slideshow__deco {
grid-area: slide;
background: #f8f8f8;
width: 100%;
height: 80%;
align-self: center;
position: relative;
margin: -40px 0 0;
right: -20px
}
.project-creative .nav {
position: absolute;
background: 0 0;
width: 48px;
height: 48px;
z-index: 1000;
border: 0;
padding: 0;
margin: 0;
color: #fff;
font-size: 30px;
pointer-events: none;
transition: transform .8s, opacity .8s;
transition-timing-function: cubic-bezier(.7, 0, .3, 1)
}
.project-creative .nav--next {
bottom: 10px;
right: 10px
}
.project-creative .icon--navarrow-next {
transform: rotate(45deg)
}
.project-creative .nav--prev {
top: 10px;
left: 10px
}
.project-creative .icon--navarrow-prev {
transform: rotate(-135deg)
}
.project-creative .slideshow--previewopen .nav {
opacity: 0;
transition-duration: .4s
}
.project-creative .slideshow--previewopen .nav--next {
transform: translate3d(100%, 100%, 0)
}
.project-creative .slideshow--previewopen .nav--prev {
transform: translate3d(-100%, -100%, 0)
}
.project-creative .slide__img {
width: 100%;
height: 100%;
left: 0;
top: 0;
background-size: cover;
background-position: 50% 50%;
position: absolute;
pointer-events: none;
transform: scale3d(1.01, 1.01, 1)
}
.js .slide__img-wrap,
.js .slide__side,
.js .slide__title-wrap {
opacity: 0;
pointer-events: none
}
.js .slide--current .slide__img-wrap {
opacity: 1;
pointer-events: auto
}
.project-creative .slide--visible .slide__img-wrap {
pointer-events: auto
}
.project-creative .slide__title-wrap {
justify-self: flex-end;
width: 100%;
position: relative;
z-index: 1000
}
.project-creative .slide__number {
display: block;
font-size: 30px;
font-weight: 700;
color: #fff
}
.project-creative .slide__title {
font-family: CircularStdmed;
color: #fff
}
.project-creative .slide__number::before {
content: "\2014";
display: inline-block;
margin: 0 1rem 0 0
}
.project-creative .slide__side,
.project-creative .slide__subtitle,
.project-creative .slide__title {
display: none
}
.project-creative .content {
position: fixed;
top: 10rem;
left: 0;
width: 100%;
height: calc(100% - 10rem);
pointer-events: none;
z-index: 100
}
.project-creative .content__item {
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
padding: 10vh 5vw;
overflow: auto
}
.project-creative .content__item--current,
.project-creative .content__item--current~.content__close {
pointer-events: auto
}
.project-creative .content__close {
position: absolute;
top: 1rem;
left: 1rem;
background: 0 0;
border: 0;
margin: 0;
padding: 0;
font-size: 30px
}
.project-creative .content__close:focus {
outline: 0
}
.project-creative .content__number {
color: #212121;
font-weight: 700
}
.project-creative .content__number::before {
content: "\2014";
display: inline-block;
margin: 0 1rem 0 0
}
.project-creative .content__title {
font-family: CircularStdblck;
margin: 10px 0;
font-size: 40px;
color: #212121
}
.project-creative .content__subtitle {
margin: 0 0 5px;
font-size: 16px;
color: #777
}
.js .content__close,
.js .content__number,
.js .content__subtitle,
.js .content__text,
.js .content__title {
opacity: 0
}
@media screen and (min-width:53em) {
.project-creative {
padding: 0
}
.project-creative .slideshow {
height: 100vh;
grid-template-columns: 27% 27% 27%;
grid-column-gap: 9.5%
}
.project-creative .slide {
padding: 10vh 0 7vh;
flex-direction: column;
justify-content: space-between
}
.project-creative .slide__side {
margin: 0 0 0 -30px
}
.project-creative .slide__title-wrap {
margin: 0 0 0 20px
}
.project-creative .slide__side,
.project-creative .slide__subtitle,
.project-creative .slide__title {
display: block
}
.project-creative .slide__title {
font-size: 48px;
margin: 0 0 5px
}
.project-creative .slide__subtitle {
font-size: 15px
}
.project-creative .slide__side {
font-size: 15px;
position: relative;
-webkit-writing-mode: vertical-rl;
writing-mode: vertical-rl;
transform: rotate(180deg);
z-index: 1000
}
.project-creative .content {
top: 0;
height: 100%
}
.project-creative .content__item {
padding: calc(10vh + 5rem) 0 7vh;
width: 50.5%;
right: 7.5%;
overflow: visible
}
.project-creative .content__close {
left: 42%;
top: calc(10vh + 1rem)
}
.project-creative .content__number {
position: absolute;
bottom: 7vh;
right: 0;
font-size: 2rem
}
.project-creative .content__title {
font-size: 100px
}
.project-creative .content__subtitle {
margin-bottom: 7.5vh
}
.project-creative .content__text {
column-count: 2;
column-gap: 30px;
max-width: 700px;
text-align: justify
}
}
.element-section .highlight {
background: #f7f7f9;
padding: 40px 15px;
margin: 30px 0
}
.highlight .s {
color: #e83e8c
}
.highlight .na {
color: #4f9fcf
}
.highlight .nt {
color: #2f6f9f
}
.highlight .c {
color: #999
}
.element-tile {
font-size: 28px;
color: #313131;
margin-bottom: 22px;
text-transform: capitalize
}
.element-tile-two {
font-size: 36px;
color: #313131;
text-align: center;
padding-bottom: 10px;
margin-bottom: 70px;
border-bottom: 1px solid rgba(0, 0, 0, .06)
}
.button-style button {
display: inline-block;
margin: 35px 0 0
}
.faq-tab-wrapper-four .faq-panel .panel,
.faq-tab-wrapper-three .faq-panel .panel {
margin-bottom: 20px
}
.element-section .section-portfo {
background: #1b1d3d;
padding: 30px 0 150px
}
.element-section .project-minimal-style {
padding-top: 0;
padding-bottom: 0
}
.element-section .portfo-footer {
padding: 150px 0
}
.element-section .portfo-footer:before {
display: none
}
.element-section .btn {
margin-top: 10px
}
.faq-tab-wrapper-two .faq-panel .panel .panel-heading .panel-title a {
display: block;
padding: 22px 40px 22px 45px;
font-size: 22px;
color: #303858;
position: relative
}
.faq-tab-wrapper-two .faq-panel .panel {
margin-bottom: 20px;
border: 1px solid rgba(21, 21, 21, .06)
}
.faq-tab-wrapper-two .faq-panel .panel-body {
border-top: 1px solid rgba(21, 21, 21, .06);
padding: 35px 40px 10px 45px
}
.faq-tab-wrapper-two .faq-panel .panel-body p {
padding-bottom: 25px
}
.faq-tab-wrapper-two .faq-panel .panel .panel-heading .panel-title a:before {
content: 'ï„‡';
font-family: font-awesome;
position: absolute;
right: 25px;
top: 50%;
transform: translateY(-50%);
font-size: 25px;
color: #464646
}
.faq-tab-wrapper-two .faq-panel .panel .panel-heading.active-panel .panel-title a:before {
content: 'ï„†'
}
.faq-tab-wrapper-three .faq-panel .panel .panel-heading .panel-title a {
display: block;
padding: 20px 40px 20px 25px;
font-size: 21px;
color: #303858;
position: relative;
background: #f9f9f9
}
.faq-tab-wrapper-three .faq-panel .panel-body {
padding: 35px 40px 10px 25px
}
.faq-tab-wrapper-three .faq-panel .panel-body p {
padding-bottom: 25px
}
.faq-tab-wrapper-three .faq-panel .panel .panel-heading .panel-title a:before {
content: 'ï„‡';
font-family: font-awesome;
position: absolute;
right: 25px;
top: 50%;
transform: translateY(-50%);
font-size: 25px;
color: #464646
}
.breadcrumbs-four .page-title,
.breadcrumbs-three .page-title,
.breadcrumbs-two .page-title {
font-family: CircularStdmed
}
.faq-tab-wrapper-three .faq-panel .panel .panel-heading.active-panel .panel-title a:before {
content: 'ï„†';
color: #fff
}
.faq-tab-wrapper-three .faq-panel .panel .panel-heading.active-panel .panel-title a {
color: #fff
}
.faq-tab-wrapper-four .faq-panel .panel .panel-heading .panel-title a {
display: block;
padding: 20px 10px 20px 60px;
font-size: 21px;
color: #303858;
position: relative;
background: #f9f9f9
}
.faq-tab-wrapper-four .faq-panel .panel .panel-heading .panel-title a i {
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
font-size: 18px
}
.faq-tab-wrapper-four .faq-panel .panel-body {
padding: 40px 15px 30px
}
.faq-tab-wrapper-four .faq-panel .panel .panel-heading.active-panel .panel-title a,
.faq-tab-wrapper-four .faq-panel .panel .panel-heading.active-panel .panel-title a i {
color: #fff
}
.faq-panel .panel-body .img-gallery {
padding: 25px 0 30px
}
.breadcrumbs-three,
.breadcrumbs-two {
padding: 265px 0 150px
}
.faq-panel .panel-body .img-gallery img {
width: 100%;
margin-top: 5px
}
.breadcrumbs-two {
background: #fafcff
}
.breadcrumbs-four,
.breadcrumbs-three {
background-size: cover;
background-repeat: no-repeat;
z-index: 1;
text-align: center;
position: relative
}
.breadcrumbs-two .page-title {
font-size: 55px;
color: #313131
}
.breadcrumbs-two .page-breadcrumbs li {
display: inline-block;
font-size: 22px;
color: #244574;
margin: 0 0 0 3px
}
.breadcrumbs-two .page-breadcrumbs li a {
color: #244574
}
.breadcrumbs-three .page-title {
font-size: 60px;
padding-bottom: 15px
}
.breadcrumbs-three .page-breadcrumbs li {
display: inline-block;
font-size: 22px;
margin: 0 3px
}
.b-wh-text .page-breadcrumbs li,
.b-wh-text .page-breadcrumbs li a,
.b-wh-text .page-title {
color: #fff
}
.breadcrumbs-four {
padding: 265px 0 150px
}
.breadcrumbs-four .page-title {
font-size: 55px
}
.breadcrumbs-four .page-breadcrumbs li {
display: inline-block;
font-size: 22px;
margin: 0 0 0 3px
}
.theme-counter-three .single-counter-box {
text-align: center;
background: #fff;
box-shadow: 0 10px 25px 0 rgba(123, 147, 171, .15);
padding: 40px 5px 50px;
border-radius: 5px;
margin-bottom: 40px
}
.theme-counter-three .single-counter-box .icon {
font-size: 45px;
padding-bottom: 10px
}
.theme-counter-three .single-counter-box .number {
font-size: 60px
}
.theme-counter-three .single-counter-box p {
font-size: 20px
}
.theme-list-item li {
font-family: Rubik, sans-serif;
line-height: 44px;
color: #777;
position: relative;
padding-left: 22px
}
.theme-list-item li i,
.theme-list-item li span {
position: absolute;
line-height: 44px;
left: 0;
top: 0;
color: #313131;
font-size: 15px
}
.theme-footer-two {
background: #1e202d;
padding: 25px 0
}
.theme-footer-two .copy-right {
color: rgba(255, 255, 255, .7)
}
.theme-footer-two .footer-menu li {
display: inline-block
}
.theme-footer-two .footer-menu li a {
color: #a4a6b0;
margin: 5px 8px
}
.theme-footer-two .footer-menu li a:hover {
color: #fff
}
.theme-footer-two .footer-menu,
.theme-footer-two .social-icon {
text-align: right
}
.theme-footer-two .social-icon li {
display: inline-block
}
.theme-footer-two .social-icon li a {
color: rgba(219, 219, 219, .3);
margin: 0 0 0 30px;
font-size: 20px
}
.theme-footer-three {
text-align: center;
padding-bottom: 30px
}
.theme-footer-three .email {
color: rgba(87, 102, 126, .8);
font-size: 20px;
margin: 15px 0
}
.theme-footer-three .phone {
font-size: 22px;
margin-bottom: 30px
}
.theme-footer-three .social-icon li {
display: inline-block;
margin: 0 8px
}
.theme-footer-three .social-icon li a {
width: 40px;
height: 40px;
border: 1px solid #e8e8e8;
border-radius: 50%;
text-align: center;
line-height: 40px;
color: #dadada
}
.theme-footer-three .social-icon li a:hover {
color: #fff
}
.theme-footer-three .copy-right {
font-size: 14px;
color: #798598;
text-transform: uppercase;
letter-spacing: 1px;
margin-top: 35px
}
.theme-footer-four {
background: #1e202d;
padding-top: 90px
}
.theme-footer-four .row [class*=col-] {
padding-bottom: 35px
}
.theme-footer-four .title {
font-size: 24px;
color: #fff;
padding-bottom: 25px
}
.theme-footer-four .gallery-widget ul {
margin: 30px -6px 0;
max-width: 260px
}
.theme-footer-four .gallery-widget li {
float: left;
width: 33.33333%;
padding: 0 6px
}
.theme-footer-four .footer-list ul li a {
line-height: 36px;
font-size: 17px;
color: rgba(255, 255, 255, .7)
}
.theme-footer-four .email {
color: rgba(255, 255, 255, .7);
font-size: 20px
}
.theme-footer-four .phone {
font-size: 22px;
margin: 15px 0 25px
}
.theme-footer-four .social-icon li {
display: inline-block;
margin-right: 10px
}
.theme-footer-four .social-icon li a {
width: 40px;
height: 40px;
border: 1px solid #dcdcdc;
border-radius: 50%;
text-align: center;
line-height: 40px;
color: #dbdbdb
}
.theme-footer-four .social-icon li a:hover {
color: #fff
}
.theme-footer-four .bottom-footer {
border-top: 1px solid rgba(237, 237, 237, .05);
margin-top: 45px;
padding: 35px 0
}
.theme-footer-four .bottom-footer p {
float: left;
color: rgba(255, 255, 255, .7)
}
.theme-footer-four .bottom-footer ul {
float: right
}
.theme-footer-four .bottom-footer ul li {
display: inline-block
}
.theme-footer-four .bottom-footer ul li a {
line-height: 28px;
color: rgba(255, 255, 255, .7);
margin-left: 15px
}
.theme-footer-four.light-v {
background: #fff;
padding-top: 0
}
.theme-footer-four.light-v .title {
color: #102622;
font-size: 18px;
text-transform: uppercase;
letter-spacing: 1.5px
}
.theme-footer-four.light-v .bottom-footer p,
.theme-footer-four.light-v .bottom-footer ul li a,
.theme-footer-four.light-v .email,
.theme-footer-four.light-v .footer-list ul li a {
color: #76797e
}
.theme-footer-four .about-widget p {
padding: 0 80px 35px 0
}
.theme-footer-four.light-v .bottom-footer {
border-top-color: #ededed
}
.btn-white,
.form-control,
.modal-content {
border: 1px solid rgba(0, 0, 0, .05)
}
.modal .modal-dialog {
transform: translate(0, 0)
}
.modal .fade-right {
animation: fadeInLeft .5s;
animation-direction: reverse
}
.modal .fade-left {
animation: fadeInRight .5s;
animation-direction: reverse
}
.modal .fade-up {
animation: fadeInDown .5s;
animation-direction: reverse
}
.modal .fade-down {
animation: fadeInUp .5s;
animation-direction: reverse
}
.modal.show .fade-right {
animation: fadeInRight .5s
}
.modal.show .fade-left {
animation: fadeInLeft .5s
}
.modal.show .fade-up {
animation: fadeInUp .5s
}
.modal.show .fade-down {
animation: fadeInDown .5s
}
.modal-button {
width: 100%
}
.form-control {
line-height: 30px
}
.btn-white:hover {
color: #fff
}
.modal-header {
border-bottom: 1px solid rgba(0, 0, 0, .05)
}
.modal-footer {
border-top: 1px solid rgba(0, 0, 0, .05)
}
.text-sm {
font-size: 15px
}
.modal-body form::placeholder {
color: rgba(0, 0, 0, .4);
opacity: 1
}
.modal-body form:-ms-input-placeholder {
color: rgba(0, 0, 0, .4)
}
.modal-body form::-ms-input-placeholder {
color: rgba(0, 0, 0, .4)
}
.modal-body .facebook {
background: #3f51b5
}
.modal-body .google {
background: #f44336
}
.modal-body .twitter {
background: #00bcd4
}
.modal-body .s-sign {
padding: 5px 15px;
color: #fff;
font-size: 15px
}
.modal-body .s-sign i {
margin-top: 5px
}
.modal-content.bg-dark,
.modal-content.bg-dark .modal-title,
.modal-content.bg-dark p {
color: rgba(255, 255, 255, .85)
}
.modal-content.bg-dark .modal-header {
border-bottom-color: rgba(135, 150, 165, .1)
}
.modal-content.bg-dark .modal-footer {
border-top-color: rgba(135, 150, 165, .1)
}
.modal-content.bg-dark .btn-white {
color: #fff;
background: rgba(0, 0, 0, .2)
}
.landing-banner {
background: #eff5fc;
position: relative;
z-index: 5
}
.landing-banner .screen {
margin: 0 auto;
width: 100%
}
.landing-banner .text-wrapper {
position: absolute;
width: 100%;
left: 0;
top: 150px;
text-align: center;
z-index: 1
}
.landing-banner .text-wrapper h1 {
font-family: CircularStdmed;
font-size: 70px;
color: #222;
padding-bottom: 18px
}
.landing-banner .text-wrapper p {
font-size: 32px;
color: #222
}
.ln-action-banner-one,
.ln-action-banner-two {
background: #ff4b69;
color: #fff;
text-align: center
}
.landing-banner .shape {
position: absolute;
z-index: -1
}
.landing-banner .shape-one {
top: 5%;
left: 19%;
animation: rotated 10s infinite linear
}
.landing-banner .shape-three {
top: 29%;
left: 25%;
animation: rotated 10s infinite linear
}
.landing-banner .shape-four {
top: 5%;
right: 19%;
animation: animationFramesOne 12s infinite linear
}
.landing-banner .shape-five {
top: 9%;
right: 29%;
animation: rotated 10s infinite linear
}
.landing-banner .shape-six {
top: 29%;
right: 25%;
animation: rotated 10s infinite linear
}
.ln-action-banner-one {
padding: 30px 0;
font-size: 20px
}
.ln-action-banner-two {
padding: 70px 0;
font-size: 36px
}
.ln-demo-title {
text-align: center
}
.ln-demo-title h2 {
font-family: CircularStdmed;
font-size: 58px;
line-height: 62px;
color: #333;
text-transform: capitalize
}
.ln-demo-title p {
font-size: 18px;
line-height: 32px;
color: #7a7a7a;
width: 60%;
margin: 25px auto 0
}
.ln-home-demo .single-page-demo {
background: #fff;
box-shadow: 0 6px 37.6px 2.4px rgba(67, 75, 114, .06);
border-radius: 5px;
overflow: hidden;
margin-bottom: 70px;
position: relative
}
.ln-home-demo .single-page-demo .new {
position: absolute;
line-height: 28px;
padding: 0 15px;
color: #fff;
top: 0;
right: 0;
font-size: 14px;
text-transform: uppercase;
z-index: 1
}
.ln-home-demo .single-page-demo .image-box {
background: #1b1e3f;
display: block;
position: relative;
overflow: hidden
}
.ln-home-demo .single-page-demo .image-box .icon {
font-family: Lato, sans-serif;
font-weight: 300;
font-size: 70px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
opacity: 0;
transition: all .4s ease-in-out
}
.ln-home-demo .single-page-demo:hover .image-box .icon {
opacity: 1
}
.ln-home-demo .single-page-demo .image-box img {
width: 100%;
transition: all .6s ease-in-out
}
.ln-home-demo .single-page-demo:hover .image-box img {
opacity: .7;
transform: scale3d(1.1, 1.1, 1)
}
.ln-home-demo .single-page-demo .page-title {
display: block;
background: #fff;
padding: 30px 0;
font-size: 24px;
color: #323232;
text-align: center;
transition: all .4s ease-in-out
}
.ln-home-demo .single-page-demo:hover .page-title {
background: #1e2047;
color: #fff
}
.ln-feature-section {
background: #f7fbfd;
padding: 160px 0 150px
}
.ln-feature-section .main-warpper {
max-width: 1800px;
margin: 0 auto;
padding: 0 65px
}
.ln-feature-section .main-warpper .row {
margin: 0 -30px
}
.ln-feature-section .main-warpper [class*=col-] {
padding: 0 30px
}
.ln-feature-section .main-warpper .single-block {
background: #fff;
border: 1px solid #f5f5f5;
position: relative;
padding: 55px 8% 55px 22%;
margin-top: 50px;
min-height: 237px
}
.ln-feature-section .main-warpper .single-block h5 {
color: #333
}
.ln-feature-section .main-warpper .single-block p {
color: #8a8a8a;
padding-top: 15px
}
.ln-feature-section .main-warpper .single-block .icon {
position: absolute;
top: 60px;
left: 8%
}
.ln-shortcode .tr-table {
border-top: 1px solid #f3f3f3
}
.ln-shortcode .tr-table [class*=col-] {
border-left: 1px solid #f3f3f3
}
.ln-shortcode .tr-table [class*=col-]:first-child {
border-left: none
}
.ln-shortcode .tr-table .td-table {
text-align: center;
padding: 120px 0 45px
}
.ln-shortcode .tr-table:last-child .td-table {
padding-bottom: 80px
}
.ln-shortcode .tr-table .td-table .icon {
position: absolute;
top: 60px;
left: 50%;
transform: translateX(-50%);
transition: all .4s ease-in-out
}
.ln-shortcode .tr-table .td-table:hover .icon {
transform: translateX(-50%) scale(1.1)
}
.ln-shortcode .tr-table .td-table h6 {
font-family: CircularStdmed;
color: #333;
padding-top: 15px
}
.ln-support-banner {
text-align: center;
padding: 140px 0 170px
}
.ln-support-banner .icon-box {
width: 200px;
height: 200px;
border: 1px solid #eee;
border-radius: 50%;
margin: 0 auto
}
.ln-support-banner .icon-box img {
margin: 0 auto;
position: relative;
top: 50%;
transform: translateY(-50%)
}
.ln-support-banner h2 {
font-family: CircularStdmed;
color: #333;
font-size: 58px;
padding: 50px 0 28px
}
.ln-support-banner p {
color: #757575;
font-size: 18px
}
.ln-footer {
background: url(//aq-technologies.com/wp-content/themes/img/footer.jpg) center no-repeat;
background-size: cover;
text-align: center;
position: relative;
z-index: 1;
padding-top: 125px
}
.ln-footer:before {
content: '';
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: rgba(0, 0, 0, .5);
z-index: -1
}
.ln-footer h1 {
font-size: 48px;
line-height: 65px;
color: #fff;
padding: 0 100px 50px
}
.ln-footer .pr-button {
width: 215px;
line-height: 60px;
background: #ff5874;
border-radius: 30px;
color: #fff;
font-size: 20px;
transition: all .3s ease-in-out;
margin-bottom: 100px
}
.ln-footer .pr-button:hover {
color: #ff5874;
background: #fff
}
.ln-footer .screen {
margin: 0 auto
}
.ln-inner-page-demo .inner-wrapper {
padding: 0 30px
}
.ln-inner-page-demo .inner-wrapper .single-page {
margin-top: 70px;
border: 1px solid #f3f3f3;
border-radius: 5px 5px 0 0;
transition: all .4s ease-in-out
}
.ln-inner-page-demo .inner-wrapper .single-page:hover {
transform: translateY(-5px);
box-shadow: 0 6px 37.6px 2.4px rgba(67, 75, 114, .07)
}
.ln-inner-page-demo .inner-wrapper .single-page a {
display: block;
position: relative
}
.ln-inner-page-demo .inner-wrapper .single-page a .new {
position: absolute;
line-height: 25px;
padding: 0 20px;
color: #fff;
top: 0;
right: 0;
font-size: 15px
}
.ln-inner-page-demo .inner-wrapper .single-page a img {
transition: all .4s ease-in-out;
border-radius: 5px 5px 0 0;
width: 100%
}
.ln-inner-page-demo .inner-wrapper .single-page a span {
font-family: CircularStdmed;
display: block;
background: #fff;
text-align: center;
padding: 35px 0 30px;
font-size: 20px;
color: #1c1c1c;
text-transform: capitalize;
border-top: 1px solid #f9f9f9
}
.video-wrapper {
text-align: center
}
@media (max-width:1366px) {
.ln-feature-section .main-warpper .single-block .icon {
left: 3%
}
}
@media (max-width:1999px) {
.ln-footer h1 {
padding-left: 0;
padding-right: 0
}
}
@media (max-width:767px) {
.landing-banner {
height: 500px
}
.landing-banner .screen {
position: absolute;
width: 100%;
bottom: 0;
left: 0
}
.landing-banner .text-wrapper h1 {
font-size: 50px;
padding-bottom: 12px
}
.landing-banner .text-wrapper p {
font-size: 20px
}
.landing-banner .text-wrapper {
top: 60px
}
.ln-action-banner-one {
font-size: 18px
}
.ln-home-demo {
margin: 150px 0 100px
}
.ln-demo-title h2,
.ln-footer h1 {
font-size: 40px;
line-height: 55px
}
.ln-demo-title h2 br {
display: none
}
.ln-home-demo .single-page-demo {
margin-bottom: 50px
}
.ln-feature-section .main-warpper {
padding: 0 15px
}
.ln-demo-title p {
width: 100%;
margin-top: 0
}
.ln-feature-section,
.ln-support-banner {
padding: 100px 0 120px
}
.video-wrapper iframe {
width: 100%;
height: 350px
}
.ln-inner-page-demo .inner-wrapper .single-page {
margin-top: 40px
}
}
@media (max-width:450px) {
.landing-banner {
height: 400px
}
.ln-shortcode .tr-table [class*=col-] {
border: none
}
}
@-webkit-keyframes jump {
0%   {-webkit-transform: translate3d(0,0,0);transform: translate3d(0,0,0);}
40%  {-webkit-transform: translate3d(0,50%,0);transform: translate3d(0,50%,0);}
100% {-webkit-transform: translate3d(0,0,0);transform: translate3d(0,0,0);}
}
@keyframes jump {
0%   {-webkit-transform: translate3d(0,0,0);transform: translate3d(0,0,0);}
40%  {-webkit-transform: translate3d(0,50%,0);transform: translate3d(0,50%,0);}
100% {-webkit-transform: translate3d(0,0,0);transform: translate3d(0,0,0);}
}
@-webkit-keyframes rotated {
0%   {-webkit-transform: rotate(0);transform: rotate(0);}
100% {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}
@keyframes rotated {
0%   {-webkit-transform: rotate(0);transform: rotate(0);}
100% {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}
@-webkit-keyframes rotatedHalf {
0%   {-webkit-transform: rotate(0);transform: rotate(0);}
50% {-webkit-transform: rotate(90deg);transform: rotate(90deg);}
100%   {-webkit-transform: rotate(0);transform: rotate(0);}
}
@keyframes rotatedHalf {
0%   {-webkit-transform: rotate(0);transform: rotate(0);}
50% {-webkit-transform: rotate(90deg);transform: rotate(90deg);}
100%   {-webkit-transform: rotate(0);transform: rotate(0);}
}
@-webkit-keyframes rotatedHalfTwo {
0% {-webkit-transform: rotate(-90deg);transform: rotate(-90deg);}
100%   {-webkit-transform: rotate(90deg);transform: rotate(90deg);}
}
@keyframes rotatedHalfTwo {
0% {-webkit-transform: rotate(-90deg);transform: rotate(-90deg);}
100%   {-webkit-transform: rotate(90deg);transform: rotate(90deg);}
}
@-webkit-keyframes scale-upOne {
0%   {-webkit-transform: scale(1);transform: scale(1);}
100% {-webkit-transform: scale(0.2);transform: scale(0.2);}
}
@keyframes scale-upOne {
0%   {-webkit-transform: scale(1);transform: scale(1);}
100% {-webkit-transform: scale(0.2);transform: scale(0.2);}
}
@-webkit-keyframes scale-right {
0%  {-webkit-transform: translateX(-50%);transform: translateX(-50%);}
50% {-webkit-transform: translateX(50%);transform: translateX(50%);}
100% {-webkit-transform: translateX(-50%);transform: translateX(-50%);}
}
@keyframes scale-right {
0%  {-webkit-transform: translateX(-50%);transform: translateX(-50%);}
50% {-webkit-transform: translateX(50%);transform: translateX(50%);}
100% {-webkit-transform: translateX(-50%);transform: translateX(-50%);}
}
@-webkit-keyframes fade-in {
0%   {opacity: 0.7;}
40%  {opacity: 1;}
100% {opacity: 0.7;}
}
@keyframes fade-in {
0%   {opacity: 0.7;}
40%  {opacity: 1;}
100% {opacity: 0.7;}
}
@keyframes hvr-ripple-out {
0% {
top: 0px;
right: 0px;
bottom: 0px;
left: 0px;
opacity: 1;
}
100% {
top: -6px;
right: -6px;
bottom: -6px;
left: -6px;
opacity: 0;
}
}
@keyframes hvr-ripple-out-two {
0% {
top: 0;
right: 0;
bottom: 0;
left: 0;
opacity: 1;
}
100% {
top: -12px;
right: -12px;
bottom: -12px;
left: -12px;
opacity: 0;
}
}
@-webkit-keyframes scale-up-one {
0%   {-webkit-transform: scale(1);transform: scale(1);}
40%  {-webkit-transform: scale(0.5);transform: scale(0.5);}
100% {-webkit-transform: scale(1);transform: scale(1);}
}
@keyframes scale-up-one {
0%   {-webkit-transform: scale(1);transform: scale(1);}
40%  {-webkit-transform: scale(0.5);transform: scale(0.5);}
100% {-webkit-transform: scale(1);transform: scale(1);}
}
@-webkit-keyframes scale-up-two {
0%   {-webkit-transform: scale(0.5);transform: scale(0.5);}
40%  {-webkit-transform: scale(0.8);transform: scale(0.8);}
100% {-webkit-transform: scale(0.5);transform: scale(0.5);}
}
@keyframes scale-up-two {
0%   {-webkit-transform: scale(0.5);transform: scale(0.5);}
40%  {-webkit-transform: scale(0.8);transform: scale(0.8);}
100% {-webkit-transform: scale(0.5);transform: scale(0.5);}
}
@-webkit-keyframes scale-up-three {
0%   {-webkit-transform: scale(0.7);transform: scale(0.7);}
40%  {-webkit-transform: scale(0.4);transform: scale(0.4);}
100% {-webkit-transform: scale(0.7);transform: scale(0.7);}
}
@keyframes scale-up-three {
0%   {-webkit-transform: scale(0.7);transform: scale(0.7);}
40%  {-webkit-transform: scale(0.4);transform: scale(0.4);}
100% {-webkit-transform: scale(0.7);transform: scale(0.7);}
}
@keyframes animationFramesOne{
0% {
transform:  translate(0px,0px)  rotate(0deg) ;
}
20% {
transform:  translate(73px,-1px)  rotate(36deg) ;
}
40% {
transform:  translate(141px,72px)  rotate(72deg) ;
}
60% {
transform:  translate(83px,122px)  rotate(108deg) ;
}
80% {
transform:  translate(-40px,72px)  rotate(144deg) ;
}
100% {
transform:  translate(0px,0px)  rotate(0deg) ;
}
}
@-webkit-keyframes animationFramesOne {
0% {
-webkit-transform:  translate(0px,0px)  rotate(0deg) ;
}
20% {
-webkit-transform:  translate(73px,-1px)  rotate(36deg) ;
}
40% {
-webkit-transform:  translate(141px,72px)  rotate(72deg) ;
}
60% {
-webkit-transform:  translate(83px,122px)  rotate(108deg) ;
}
80% {
-webkit-transform:  translate(-40px,72px)  rotate(144deg) ;
}
100% {
-webkit-transform:  translate(0px,0px)  rotate(0deg) ;
}
}
@keyframes animationFramesTwo{
0% {
transform:  translate(0px,0px)  rotate(0deg) scale(1) ;
}
20% {
transform:  translate(73px,-1px)  rotate(36deg) scale(0.9);
}
40% {
transform:  translate(141px,72px)  rotate(72deg) scale(1);
}
60% {
transform:  translate(83px,122px)  rotate(108deg) scale(1.2);
}
80% {
transform:  translate(-40px,72px)  rotate(144deg) scale(1.1);
}
100% {
transform:  translate(0px,0px)  rotate(0deg) scale(1);
}
}
@-webkit-keyframes animationFramesTwo {
0% {
-webkit-transform:  translate(0px,0px)  rotate(0deg) scale(1);
}
20% {
-webkit-transform:  translate(73px,-1px)  rotate(36deg) scale(0.9);
}
40% {
-webkit-transform:  translate(141px,72px)  rotate(72deg) scale(1);
}
60% {
-webkit-transform:  translate(83px,122px)  rotate(108deg) scale(1.2);
}
80% {
-webkit-transform:  translate(-40px,72px)  rotate(144deg) scale(1.1);
}
100% {
-webkit-transform:  translate(0px,0px)  rotate(0deg) scale(1);
}
}
@keyframes animationFramesThree{
0% {
transform:  translate(165px,-179px)  ;
}
100% {
transform:  translate(-346px,617px)  ;
}
}
@-webkit-keyframes animationFramesThree {
0% {
-webkit-transform:  translate(165px,-179px)  ;
}
100% {
-webkit-transform:  translate(-346px,617px)  ;
}
}
@keyframes animationFramesFour{
0% {
transform:  translate(-300px,151px)  rotate(0deg) ;
}
100% {
transform:  translate(251px,-200px)  rotate(180deg) ;
}
}
@-webkit-keyframes animationFramesFour {
0% {
-webkit-transform:  translate(-300px,151px)  rotate(0deg) ;
}
100% {
-webkit-transform:  translate(251px,-200px)  rotate(180deg) ;
}
}
@keyframes animationFramesFive{
0% {
transform:  translate(61px,-99px)  rotate(0deg) ;
}
21% {
transform:  translate(4px,-190px)  rotate(38deg) ;
}
41% {
transform:  translate(-139px,-200px)  rotate(74deg) ;
}
60% {
transform:  translate(-263px,-164px)  rotate(108deg) ;
}
80% {
transform:  translate(-195px,-49px)  rotate(144deg) ;
}
100% {
transform:  translate(-1px,0px)  rotate(180deg) ;
}
}
@-webkit-keyframes animationFramesFive {
0% {
-webkit-transform:  translate(61px,-99px)  rotate(0deg) ;
}
21% {
-webkit-transform:  translate(4px,-190px)  rotate(38deg) ;
}
41% {
-webkit-transform:  translate(-139px,-200px)  rotate(74deg) ;
}
60% {
-webkit-transform:  translate(-263px,-164px)  rotate(108deg) ;
}
80% {
-webkit-transform:  translate(-195px,-49px)  rotate(144deg) ;
}
100% {
-webkit-transform:  translate(-1px,0px)  rotate(180deg) ;
}
}
@keyframes gradientBG {
0% {
background-position: 0 0;
}
50% {
background-position: 300% 0;
}
100% {
background-position: 0 0;
}
}
@-webkit-keyframes gradientBG {
0% {
background-position: 0 0;
}
50% {
background-position: 300% 0;
}
100% {
background-position: 0 0;
}
}
@keyframes imageBgAnim {
0% {
background-position: 0 0;
}
50% {
background-position: 120% 0;
}
100% {
background-position: 0 0;
}
}
@-webkit-keyframes gradientBG {
0% {
background-position: 0 0;
}
50% {
background-position: 120% 0;
}
100% {
background-position: 0 0;
}
}
.overlay {
height: unset !important;
width: unset !important;
background-color: rgba(0, 0, 0, 0) !important;
}
.page-title .bread-crumb {
position: relative;
}
.page-title .bread-crumb li {
position: relative;
display: inline-block;
line-height: 30px;
margin-left: 20px;
color: #ffffff;
font-size: 15px;
text-transform: capitalize;
}
.page-title .bread-crumb li span {
margin-right: 10px;
}
.page-title .bread-crumb li:before {
content: '\f105';
position: absolute;
right: -21px;
top: 1px;
width: 20px;
text-align: center;
line-height: 30px;
font-family: 'Font Awesome 5 free';
font-weight: 900;
}
.page-title .bread-crumb li:first-child {
margin-left: 0px;
}
.page-title .bread-crumb li:last-child:before {
display: none;
}
.page-title .bread-crumb li a {
color: #fff;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.page-title .bread-crumb li a:hover {
color: #0daf96;
}[class^="fab-"], [class*=" fab-"], [class^="fab-"]:before, [class*=" fab-"]:before {
font-family: 'Font Awesome 5 Brands'!important;
}
a:hover {
color: #0eaf96;
}
.text,p {
font-size: 15px;
color: #555;
margin-bottom: 20px;
}
.main-header{
position:fixed;
z-index:999;
width:100%;
top: 0px;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.main-header.fixed-header{
top: 0;
background-color: rgba(255,255,255,1);
-webkit-box-shadow: 0 10px 20px rgba(42,38,49,.03);
box-shadow: 0 10px 20px rgba(42,38,49,.03);
}
.main-header .header-upper{
position:relative;
}
.main-header .header-upper .header-outer {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.main-header .header-upper .logo-box{
position:relative;
left:0px;
z-index:10;
padding: 20px 0;
}
.main-header .header-upper .logo-box .logo img{
display:inline-block;
max-width:100%;
-webkit-transition:all 300ms ease;
-o-transition:all 300ms ease;
transition:all 300ms ease;	
}
.main-header .header-upper .nav-outer{
position: relative;
}
.main-header .header-upper .nav-outer .main-menu{
position: relative;
float: left;
}
.main-menu .navbar-collapse{
padding:0px;	
}
.main-menu .navigation{
position:relative;
margin:0px;
}
.main-menu .navigation > li{
position:relative;
float:left;
padding:30px 0px;
margin-right: 35px;
-webkit-transition:all 300ms ease;
-o-transition:all 300ms ease;
transition:all 300ms ease;
}
.main-menu .navigation > li > a{
position:relative;
display:block;
text-align:center;
font-size: 16px;
line-height:30px;
font-weight: 600;
opacity:1;
color: #222;
padding: 0;
-webkit-transition:all 300ms ease;
-o-transition:all 300ms ease;
transition:all 300ms ease;
}
.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a{
color: #0eaf96;
}
.main-menu .navigation > li > ul{
position:absolute;
left:0px;
top:100%;
width: 280px;
z-index:100;
padding: 30px 0px;
opacity: 1;
background:#ffffff;
border-radius: 0 0 3px 3px;
-webkit-transform: translateY(30px);
-ms-transform: translateY(30px);
transform: translateY(30px);
-webkit-transform-origin: top;
-ms-transform-origin: top;
transform-origin: top;
-webkit-transition: all 400ms ease;
-o-transition: all 400ms ease;
transition: all 400ms ease;
-webkit-box-shadow: 0 15px 27px 0 rgba(14,0,40,.05);
box-shadow: 0 15px 27px 0 rgba(14,0,40,.05);
}
.main-menu .navigation > li > ul > li{
position:relative;
width:100%;
padding: 0 35px;
}
.main-menu .navigation > li > ul > li:last-child{
margin-bottom:0px;	
}
.main-menu .navigation > li > ul > li > a{
display:block;
font-size: 14px;
line-height:24px;
padding: 6px 0;
white-space: nowrap;
color: #222;
font-weight: 400;
text-align:left;
text-transform:capitalize;
-webkit-transition:all 200ms ease;
-o-transition:all 200ms ease;
transition:all 200ms ease;
}
.main-menu .navigation > li > ul > li:hover > a{
color: #0eaf96;
}
.main-menu .navigation > li > ul > li.dropdown > a:after{
content: "\f105";
position:absolute;
right: 0;
top: 5px;
display:block;
font-size:16px;
line-height:24px;
padding: 3px 25px;
color:#222222;
font-weight:900;
font-family: "Font Awesome 5 Free";
text-align:center;
z-index:5;	
}
.main-menu .navigation > li > ul > li > ul{
position:absolute;
left:100%;
top: 0;
width: 230px;
z-index:100;
padding: 30px 35px;
opacity: 1;
background:#ffffff;
border-radius: 0 0 3px 3px;
-webkit-transform: translateY(30px);
-ms-transform: translateY(30px);
transform: translateY(30px);
-webkit-transform-origin: top;
-ms-transform-origin: top;
transform-origin: top;
-webkit-transition: all 400ms ease;
-o-transition: all 400ms ease;
transition: all 400ms ease;
-webkit-box-shadow: 0 15px 27px 0 rgba(14,0,40,.05);
box-shadow: 0 15px 27px 0 rgba(14,0,40,.05);
}
.main-menu .navigation > li > ul > li > ul > li{
position:relative;
width:100%;
}
.main-menu .navigation > li > ul > li > ul > li:last-child{
margin-bottom:0px;	
}
.main-menu .navigation > li > ul > li > ul > li > a,
.main-menu .navigation > li > ul > li > ul > li > ul li a{
display:block;
font-size: 14px;
line-height:24px;
padding: 6px 0;
color: #222;
font-weight: 400;
text-align:left;
text-transform:capitalize;
-webkit-transition:all 200ms ease;
-o-transition:all 200ms ease;
transition:all 200ms ease;
}
.main-menu .navigation > li > ul > li > ul > li:hover > a,
.main-menu .navigation > li > ul > li > ul > li > ul li:hover a{
color: #0eaf96;
}
.main-menu .navigation > li.dropdown:hover > ul{
-webkit-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
visibility:visible;
opacity:1;
}
.main-menu .navigation li > ul > li.dropdown:hover > ul{
-webkit-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
visibility: visible;
opacity:1;	
}
.main-menu .navbar-collapse > ul li.dropdown .dropdown-btn{
position:absolute;
right:10px;
top:8px;
width:34px;
height:30px;
text-align:center;
font-size:16px;
line-height:30px;
color:#ffffff;
cursor:pointer;
z-index:5;
display:none;
}
.main-header .outer-box{
position: relative;
margin-right: -100px;
}
.main-header .outer-box .btn-box{
position: relative;
padding: 20px 0;
} .header-style-two .auto-container{
max-width: 1580px;
}
.header-style-two .outer-box {
margin-right: 0px;
} .header-style-three.fixed-header {
background: #403ab4;
}
.header-style-three .auto-container{
max-width: 1580px;
}
.header-style-three .outer-box {
margin-right: 0px;
}
.header-style-three .theme-btn {
padding: 12px 35px;
}
.header-style-three .main-menu .navigation > li > a{
color: #ffffff;
}
.header-style-three .main-menu .navigation > li > a:before{
background-color: #ffffff;
}
.header-style-three.fixed-header .main-menu .navigation > li > a:before{
background-color: #8a57de;
} .header-style-four.fixed-header{
background-color: #403ab4;
}
.header-style-four .main-menu .navigation > li > a{
color: #ffffff;
}
.header-style-four .main-menu .navigation > li > a:before{
background-color: #ffffff;
}
.header-style-four .outer-box {
margin-right: 0px;
}
.header-style-four .theme-btn {
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(0, 0, 0, 0.15);
box-shadow: 0px 11px 21.25px 3.75px rgba(0, 0, 0, 0.15);
padding: 12px 35px;
}
.header-style-four .theme-btn:hover {
background-color: #fff;
color: #b83b96;
} .header-style-five.fixed-header{
background-color: #403ab4;
}
.header-style-five .header-upper .nav-outer{
float: right;
}
.header-style-five .main-menu .navigation > li > a{
color: #ffffff;
}
.header-style-five .main-menu .navigation > li > a:before{
background-color: #ffffff;
}
.header-style-five .outer-box {
margin-right: 0px;
}
.header-style-five .theme-btn {
padding: 12px 35px;
} .banner-section-one{
position:relative;
}
.shape-29 {
height: 118px;
width: 214px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-29.png);
}
.banner-section-one .shape-29 {
top: 0;
left: 0;
}
.banner-section-one .layer-outer{
position: absolute;
right: 0;
top: 0;
bottom: 150px;
width: 70%;
}
.banner-section-one .layer-image{
position: absolute;
right: 0;
left: 0;
top: 0;
bottom: 0;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/resource/illustration-1.png);
background-repeat:no-repeat;
background-position: top right;
}
.banner-section-one .content-column .inner-column{
position: relative;
}
.banner-section-one .content-box{
position:relative;
max-width: 600px;
width: 100%;
padding: 360px 0 200px;
}
.banner-section-one .content-box .title{
position: relative;
display: block;
font-size: 16px;
line-height: 26px;
color: #8a57de;
font-weight: 600;
letter-spacing: 5px;
margin-bottom: 10px;
text-transform: uppercase;
}
.banner-section-one .content-box h1{
position:relative;
color: #222;
font-size: 48px;
line-height:58px;
font-weight: 600;
margin-bottom:28px;
}
.banner-section-one .content-box .text{
position:relative;
display: block;
font-size: 18px;
line-height:30px;
margin-bottom: 50px;
}
.banner-section-one .content-box .btn-box{
position: relative;
margin: 0 -17px;
}
.banner-section-one .content-box .btn-box a{
margin: 0 17px;
}
.banner-section-one .video-box .video-box{
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.banner-section-one .video-box .video-link {
position: absolute;
right: 50%;
bottom: -80px;
padding-top: 95px;
font-size: 14px;
color: #222;
}
.banner-section-one .video-box .video-link .icon{
position: absolute;
left: 20px;
top: 0;
width: 80px;
height: 80px;
text-align: center;
font-size: 18px;
line-height: 80px;
color: #403ab4;
background: #ffffff;
border-radius: 50%;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(233, 233, 233, 0.65);
box-shadow: 0px 11px 21.25px 3.75px rgba(233, 233, 233, 0.65);
}
.banner-section-one .video-box .video-link .icon:after{
content: '';
position: absolute;
left: -15px;
top: -15px;
width: 110px;
height: 110px;
border: 1px solid rgb(239, 243, 255);
border-radius: 50%;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.banner-section-one .video-box:hover .video-link .icon{
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
.banner-section-one .video-box:hover .video-link .icon:after{
border-color:rgba(255,255,255,0.70);
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
} .banner-section-two{
position:relative;
padding: 185px 0 90px;
background: #eff3ff;
}
.banner-section-two .layer-outer{
position: absolute;
left: 0;
top: 0;
bottom: -70px;
width: 100%;
}
.banner-section-two .layer-image{
position: absolute;
right: 0;
left: 0;
top: 0;
bottom: 0;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/big-shape-5.png);
background-repeat:no-repeat;
background-position: bottom center;
}
.banner-section-two .content-column .inner-column{
position: relative;
}
.banner-section-two .content-box{
position:relative;
max-width: 600px;
width: 100%;
padding: 50px 0 50px;
margin-left: -45px;
}
.banner-section-two .content-box .title{
position: relative;
display: block;
font-size: 16px;
line-height: 26px;
color: #8a57de;
font-weight: 600;
letter-spacing: 5px;
margin-bottom: 10px;
text-transform: uppercase;
}
.banner-section-two .content-box h1{
position:relative;
color: #222;
font-size: 48px;
line-height:58px;
font-weight: 600;
margin-bottom:28px;
}
.banner-section-two .content-box .text{
position:relative;
display: block;
font-size: 18px;
line-height:30px;
margin-bottom: 50px;
}
.banner-section-two .content-box .btn-box{
position: relative;
margin: 0 -17px;
}
.banner-section-two .content-box .btn-box a{
margin: 0 17px;
}
.banner-section-two .image {
display: inline-block;
margin-right: -152px;
margin-left: -45px;
-webkit-box-shadow: 0px 0px 65px 25px rgba(197, 203, 214, 0.5);
box-shadow: 0px 0px 65px 25px rgba(197, 203, 214, 0.5);
}
.shape-12 {
height: 18px;
width: 36px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-12.png);
}
.shape-13 {
height: 36px;
width: 35px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-13.png);
}
.shape-14 {
height: 37px;
width: 42px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-14.png);
}
.shape-15 {
height: 21px;
width: 38px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-15.png);
}
.shape-16 {
height: 115px;
width: 115px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-16.png);
}
.banner-section-two .shape-12 {
top: 200px;
left: 245px;
z-index: 5;
}
.banner-section-two .shape-13 {
top: 185px;
left: 44%;
z-index: 5;
}
.banner-section-two .shape-14 {
top: 60%;
left: 35%;
z-index: 5;
}
.banner-section-two .shape-15 {
top: 50%;
right: 160px;
z-index: 5;
}
.banner-section-two .shape-16 {
bottom: 200px;
right: 50px;
z-index: 5;
} .banner-section-three{
position:relative;
padding: 185px 0 0px;
background-color: #320fa1;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.banner-section-three .auto-container {
max-width: 1390px;
}
.banner-section-three .layer-outer{
position: absolute;
right: 0;
top: 0;
bottom: -70px;
width: 50%;
}
.banner-section-three .layer-image{
position: absolute;
left: 0;
top: 145px;
width: 1057px;
height: 958px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/big-shape-10.png);
background-repeat:no-repeat;
background-position: bottom center;
}
.banner-section-three .content-column .inner-column{
position: relative;
}
.banner-section-three .content-box{
position:relative;
max-width: 600px;
width: 100%;
padding: 50px 0 50px;
margin-left: -45px;
}
.banner-section-three .content-box .title{
position: relative;
display: block;
font-size: 16px;
line-height: 26px;
color: #8a57de;
font-weight: 600;
letter-spacing: 5px;
margin-bottom: 10px;
text-transform: uppercase;
}
.banner-section-three .content-box h1{
position:relative;
color: #fff;
font-size: 48px;
line-height:58px;
font-weight: 600;
margin-bottom:28px;
}
.banner-section-three .content-box .text{
position:relative;
display: block;
font-size: 18px;
line-height:30px;
margin-bottom: 80px;
color: #fff;
}
.banner-section-three .content-box .btn-box{
position: relative;
margin: 0 -17px;
}
.banner-section-three .content-box .btn-box a{
margin: 0 17px;
}
.banner-section-three .image {
text-align: right;
margin-top: 95px;
}
.shape-18 {
width: 148px;
height: 115px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-18.png);
}
.banner-section-three .shape-18 {
top: -50px;
right: -140px;
}
.banner-section-three .video-box .video-box{
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.banner-section-three .video-box .video-link {
position: relative;
font-size: 16px;
font-weight: 500;
color: #fff;
padding-left: 90px;
text-decoration: underline;
}
.banner-section-three .video-box .video-link .icon{
position: absolute;
left: 0;
top: -25px;
width: 70px;
height: 70px;
text-align: center;
font-size: 18px;
line-height: 70px;
color: #ffffff;
background: #e654bd;
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(45, 5, 156, 0.65);
box-shadow: 0px 11px 21.25px 3.75px rgba(45, 5, 156, 0.65);
border-radius: 50%;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.banner-section-three .video-box .video-link .icon:after{
content: '';
position: absolute;
left: -5px;
top: -5px;
width: 80px;
height: 80px;
border: 5px solid rgba(255, 255, 255, 0.15);
border-radius: 50%;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.banner-section-three .video-box:hover .video-link .icon:after{
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05);
}
.banner-section-three .ripple,
.banner-section-three .ripple:before,
.banner-section-three .ripple:after {
position: absolute;
left: -5px;
top: -30px;
height: 80px;
width: 80px;
border-radius: 50%;
-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.64);
-ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.64);
-o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.64);
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.64);
-webkit-animation: ripple 5s infinite;
animation: ripple 5s infinite;
}
.banner-section-three .ripple:before {
-webkit-animation-delay: .9s;
animation-delay: .9s;
content: "";
position: absolute;
left: 0;
top: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.banner-section-three .ripple:after {
-webkit-animation-delay: .6s;
animation-delay: .6s;
content: "";
position: absolute;
left: 0;
top: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
@-webkit-keyframes ripple {
70% {
-webkit-box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
}
100% {
-webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
}
}
@keyframes ripple {
70% {
-webkit-box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
}
100% {
-webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
}
} .banner-section-four{
position:relative;
padding: 250px 0 0px;
background-color: #fff;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
text-align: center;
}
.banner-section-four .layer-outer{
position: absolute;
right: 0;
top: 0;
bottom: 130px;
width: 100%;
}
.banner-section-four .layer-image{
position: absolute;
right: 0;
top: 0px;
width: 100%;
height: 100%;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/banner-shape-1.png);
background-repeat:no-repeat;
background-position: bottom center;
background-size: cover;
}
.banner-section-four .content-column .inner-column{
position: relative;
}
.banner-section-four .content-box{
position:relative;
width: 100%;
padding: 50px 0 50px;
}
.banner-section-four .content-box .title{
position: relative;
display: block;
font-size: 16px;
line-height: 26px;
color: #8a57de;
font-weight: 600;
letter-spacing: 5px;
margin-bottom: 10px;
text-transform: uppercase;
}
.banner-section-four .content-box h1{
position:relative;
color: #fff;
font-size: 48px;
line-height:58px;
font-weight: 600;
margin-bottom:28px;
}
.banner-section-four .content-box .text{
position:relative;
display: block;
font-size: 18px;
line-height:30px;
margin-bottom: 50px;
color: #fff;
}
.banner-section-four .content-box form {
position: relative;
display: initial;
}
.banner-section-four .content-box input {
position: relative;
height: 70px;
padding: 0 30px;
background-color: #fff;
width: 100%;
max-width: 650px;
}
.banner-section-four .content-box button {
position: absolute;
right: 30px;
top: -2px;
border-left: 2px solid #9cacd8;
padding-left: 15px;
background: transparent;
font-size: 14px;
cursor: pointer;
}
.banner-section-four .image {
position: relative;
margin-top: 40px;
display: inline-block;
-webkit-box-shadow: 0px 15px 48.75px 16.25px rgba(0, 0, 0, 0.1);
box-shadow: 0px 15px 48.75px 16.25px rgba(0, 0, 0, 0.1);
} .banner-section-five{
position:relative;
padding: 195px 0 219px;
background-color: #fff;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.banner-section-five .layer-outer{
position: absolute;
right: 0;
top: 0;
bottom: 0px;
width: 100%;
}
.banner-section-five .layer-image{
position: absolute;
right: 0;
top: 0px;
width: 100%;
height: 100%;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/banner-shape-2.png);
background-repeat:no-repeat;
background-position: bottom center;
background-size: cover;
}
.banner-section-five .content-column .inner-column{
position: relative;
}
.banner-section-five .content-box{
position:relative;
max-width: 600px;
width: 100%;
padding: 90px 0 50px;
}
.banner-section-five .content-box .title{
position: relative;
display: block;
font-size: 16px;
font-weight: 400;
line-height: 26px;
color: #fff;
margin-bottom: 10px;
text-transform: uppercase;
}
.banner-section-five .content-box h1{
position:relative;
color: #fff;
font-size: 48px;
line-height:58px;
font-weight: 600;
margin-bottom:28px;
}
.banner-section-five .content-box .text{
position:relative;
display: block;
font-size: 18px;
line-height:30px;
margin-bottom: 60px;
color: #fff;
}
.banner-section-five .content-box .theme-btn{
background: #f0467a;
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgb(42, 38, 133);
box-shadow: 0px 11px 21.25px 3.75px rgb(42, 38, 133);
}
.banner-section-five .image {
text-align: right;
margin-right: -155px;
}
.drone {
width: 93px;
height: 132px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/resource/drone.png);
}
.banner-section-five .drone {
top: -15px;
left: 12%;
} .main-slider-carousel .slide-item {
position: relative;
padding: 185px 0 90px;
}
.main-slider-carousel .content-box h1{
opacity: 0;
-webkit-transition: all 700ms ease;
-moz-transition: all 700ms ease;
-ms-transition: all 700ms ease;
-o-transition: all 700ms ease;
transition: all 700ms ease;
-webkit-transform: translateY(50px);
-moz-transform: translateY(50px);
-ms-transform: translateY(50px);
-o-transform: translateY(50px);
transform: translateY(50px);
}
.main-slider-carousel .active .content-box h1{
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
transition-delay: 1300ms;
}
.main-slider-carousel .content-box .text{
opacity:0;
-webkit-transition: all 1000ms ease;
-moz-transition: all 100ms ease;
-ms-transition: all 1000ms ease;
-o-transition: all 1000ms ease;
transition: all 1000ms ease;
-webkit-transform: translateY(50px);
-moz-transform: translateY(50px);
-ms-transform: translateY(50px);
-o-transform: translateY(50px);
transform: translateY(50px);
}
.main-slider-carousel .active .content-box .text{
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
transition-delay: 1000ms;
}
.main-slider-carousel .content-box .btn-box{
opacity:0;
-webkit-transition: all 900ms ease;
-moz-transition: all 900ms ease;
-ms-transition: all 900ms ease;
-o-transition: all 900ms ease;
transition: all 900ms ease;
-webkit-transform: translateY(50px);
-moz-transform: translateY(50px);
-ms-transform: translateY(50px);
-o-transform: translateY(50px);
transform: translateY(50px);
}
.main-slider-carousel .active .content-box .btn-box{
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
transition-delay: 2500ms;
}
.main-slider-carousel .image-column .image{
opacity:0;
-webkit-transition: all 1300ms ease;
-moz-transition: all 1300ms ease;
-ms-transition: all 1300ms ease;
-o-transition: all 1300ms ease;
transition: all 1300ms ease;
-webkit-transform: translateY(50px);
-moz-transform: translateY(50px);
-ms-transform: translateY(50px);
-o-transform: translateY(50px);
transform: translateY(50px);
}
.main-slider-carousel .active .image-column .image{
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
transition-delay: 2500ms;
}
.main-slider-carousel .owl-nav{
position:absolute;
left:0px;
top:50%;
z-index:1;
width:100%;
margin-top:-20px;
opacity: 0;
transition: .5s ease;
}
.main-slider-carousel:hover .owl-nav {
opacity: 1;
}
.main-slider-carousel .owl-nav .owl-prev{
position:absolute;
left: 50px;
width: 70px;
height: 70px;
color: #222;
line-height: 70px;
text-align:center;
font-size: 22px;
border-radius: 50%;
display:inline-block;
background-color:rgba(255, 255, 255, 0.10);
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.main-slider-carousel .owl-nav .owl-next{
position:absolute;
right: 50px;
width: 70px;
height: 70px;
color: #222;
line-height: 70px;
text-align:center;
font-size: 22px;
border-radius: 50%;
display:inline-block;
background-color:rgba(255, 255, 255, 0.10);
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.main-slider-carousel .owl-nav .owl-prev:hover,
.main-slider-carousel .owl-nav .owl-next:hover{
color: #0eaf96;
border-color: #0eaf96;
}
.main-slider-carousel .owl-nav .owl-prev:before {
position: absolute;
}
.main-slider-carousel .owl-nav .owl-prev span,
.main-slider-carousel .owl-nav .owl-next span {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
-webkit-transform: translateX(18px);
-ms-transform: translateX(18px);
transform: translateX(18px);
display: inline-block;
-webkit-transition: .7s cubic-bezier(.2, .96, .34, 1);
-o-transition: .7s cubic-bezier(.2, .96, .34, 1);
transition: .7s cubic-bezier(.2, .96, .34, 1);
}
.main-slider-carousel .owl-nav .owl-next span {
left: auto;
right: 0;
-webkit-transform: translateX(-18px);
-ms-transform: translateX(-18px);
transform: translateX(-18px);
}
.main-slider-carousel .owl-nav .owl-prev:hover span,
.main-slider-carousel .owl-nav .owl-next:hover span {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
.main-slider-carousel .owl-nav .owl-prev span:before,
.main-slider-carousel .owl-nav .owl-next span:before {
content: '';
position: absolute;
top: 50%;
left: 0;
width: 16px;
height: 16px;
border-bottom: 2px solid #403ab4;
border-left: 2px solid #403ab4;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg) translateY(-50%);
-webkit-transition: .7s cubic-bezier(.2, .96, .34, 1);
-o-transition: .7s cubic-bezier(.2, .96, .34, 1);
transition: .7s cubic-bezier(.2, .96, .34, 1);
}
.main-slider-carousel .owl-nav .owl-next span:before {
left: auto;
right: 6px;
border: none;
border-top: 2px solid #403ab4;
border-right: 2px solid #403ab4;
}
.main-slider-carousel .owl-nav .owl-prev:hover span:before {
border-bottom: 2px solid #0daf96;
border-left: 2px solid #0daf96;
}
.main-slider-carousel .owl-nav:hover .owl-next span:before {
border-top: 2px solid #0daf96;
border-right: 2px solid #0daf96;
}
.main-slider-carousel .owl-nav .owl-prev span:after,
.main-slider-carousel .owl-nav .owl-next span:after {
content: '';
position: absolute;
top: 53%;
left: 4px;
-webkit-transform: translateY(-50%) scaleX(0);
-ms-transform: translateY(-50%) scaleX(0);
transform: translateY(-50%) scaleX(0);
-webkit-transform-origin: left;
-ms-transform-origin: left;
transform-origin: left;
width: 40px;
height: 2px;
background: #0daf96;
-webkit-transition: .7s cubic-bezier(.2, .96, .34, 1);
-o-transition: .7s cubic-bezier(.2, .96, .34, 1);
transition: .7s cubic-bezier(.2, .96, .34, 1);
}
.main-slider-carousel .owl-nav .owl-next span:after {
left: auto;
right: 2px;
-webkit-transform-origin: right;
-ms-transform-origin: right;
transform-origin: right;
}
.main-slider-carousel .owl-nav .owl-prev:hover span:after,
.main-slider-carousel .owl-nav .owl-next:hover span:after {
-webkit-transform: translateY(-50%) scaleX(1);
-ms-transform: translateY(-50%) scaleX(1);
transform: translateY(-50%) scaleX(1);
} .chart {
position: relative;
}
.chart:before {
content: '';
position: absolute;
left: 50%;
top: 50%;
width: 100%;
height: 100%;
display: block;
background: url(//aq-technologies.com/wp-content/themes/saasweb/images/resource/graph-line.png) center center no-repeat;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.chart-block {
position: absolute;
left: 22%;
top: 53%;
width: 20px;
height: 20px;
border-radius: 50%;
background: #ffffff;
-webkit-box-shadow: -1px 0px 12.6px 5.4px rgba(233, 233, 233, 0.52);
box-shadow: -1px 0px 12.6px 5.4px rgba(233, 233, 233, 0.52);
cursor: pointer;
}
.chart-block:nth-child(2) {
left: 49%;
top: 32.5%;
}
.chart-block:nth-child(3) {
left: auto;
right: 13%;
top: 18%;
}
.chart-block:after {
position: absolute;
content: '';
left: 5px;
top: 5px;
height: 10px;
width: 10px;
border-radius: 50%;
background: #0daf96;
}
.chart-block:before {
position: absolute;
content: '';
left: 0px;
top: 0px;
height: 20px;
width: 20px;
border-radius: 50%;
-webkit-box-shadow: 0 0 0 0 rgb(14, 175, 150);
-ms-box-shadow: 0 0 0 0 rgb(14, 175, 150);
-o-box-shadow: 0 0 0 0 rgb(14, 175, 150);
box-shadow: 0 0 0 0 rgb(14, 175, 150);
-webkit-animation: ripple 1s infinite;
animation: ripple 3s infinite;
}
.chart-block:nth-child(1):before,
.chart-block:nth-child(3):before {
-webkit-animation-delay: .7s;
animation-delay: .7s;
}
@-webkit-keyframes ripple {
70% {
-webkit-box-shadow: 0 0 0 20px rgba(244, 68, 56, .0);
box-shadow: 0 0 0 20px rgba(244, 68, 56, .0);
}
100% {
-webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
}
}
@keyframes ripple {
70% {
-webkit-box-shadow: 0 0 0 20px rgba(244, 68, 56, .0);
box-shadow: 0 0 0 20px rgba(244, 68, 56, .0);
}
100% {
-webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
}
}
.chart-block .chart-content {
opacity: 0;
position: relative;
min-width: 200px;
bottom: 100px;
left: -120px;
-webkit-transition: 1s;
-o-transition: 1s;
transition: 1s;
-webkit-transform: translateY(-30px);
-ms-transform: translateY(-30px);
transform: translateY(-30px);
}
.chart-block:hover .chart-content {
opacity: 1;
-webkit-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
}
.chart-block .text {
font-size: 14px;
font-weight: 500;
line-height: 20px;
text-transform: uppercase;
color: #222;
}
.chart-block h3 {
font-size: 24px;
}
.chart-block h3 strong {
color: #403ab4;
} .features-section-one{
position: relative;
}
.features-section-one.style-two{
padding-top: 100px;
}
.features-section-one .feature-outer {
padding-bottom: 70px;
}
.features-section-one .auto-container{
position:relative;
max-width: 1300px;
}
.features-section-one .layer-image{
position: absolute;
right: 0;
top: 200px;
height: 916px;
width: 534px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-10.png);
background-repeat: no-repeat;
background-position:center;
}
.features-section-one .sec-title{margin-bottom: 70px;}
.feature-block-one{
position: relative;
}
.feature-block-one .inner-box{
position: relative;
text-align: center;
padding: 40px 0 0;
margin-bottom: 30px;
}
.feature-block-one .icon-box{
position: relative;
margin-bottom: 60px;
}
.feature-block-one .icon{
position: relative;
font-size: 36px;
line-height: 1em;
color: #ffffff;
font-weight: 400;
z-index: 9;
}
.feature-block-one .icon-box:before{
position: absolute;
left: 50%;
top: 50%;
height: 82px;
width: 80px;
background-position: center;
background-size: 100%;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-1.png);
background-repeat: no-repeat;
content: '';
-webkit-transform: translate(-50%, -58%);
-ms-transform: translate(-50%, -58%);
transform: translate(-50%, -58%);
-webkit-transition: .7s ease;
-o-transition: .7s ease;
transition: .7s ease;
}
.feature-block-one:hover .icon-box:before {
-webkit-transform: translate(-50%, -58%) rotate(-20deg);
-ms-transform: translate(-50%, -58%) rotate(-20deg);
transform: translate(-50%, -58%) rotate(-20deg);
}
.feature-block-one h4{
position: relative;
display: block;
font-size: 20px;
line-height: 1.2em;
color: #222;
font-weight: 500;
margin-bottom: 18px;
}
.feature-block-one h4 a{
color: #4c4754;
display: inline-block;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.feature-block-one h4 a:hover{
color: #0daf96;
}
.feature-block-one .text{
position: relative;
max-width: 270px;
margin: 0 auto 20px;
}
.feature-block-one .link-btn a {
font-weight: 500;
color: #222;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
border-bottom: 1px solid transparent;
}
.feature-block-one .link-btn a span {
color: #0daf96;
margin-left: 5px;
font-size: 12px;
}
.feature-block-one .link-btn a:hover {
color: #0daf96;
border-color: #403ab4;
}
.feature-block-one:nth-child(2) .icon-box:before{
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-2.png);
}
.feature-block-one:nth-child(3) .icon-box:before{
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-3.png);
}
.feature-block-one:nth-child(4) .icon-box:before{
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-4.png);
} .features-section-two {
position: relative;
padding: 150px 0 120px;
}
.features-section-two .shape-6 {
top: 30%;
right: -124px;
z-index: 5;
}
.shape-6 {
height: 248px;
width: 248px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-6.png);
}
.feature-block-two {
position: relative;
margin-bottom: 120px;
margin-left: -15px;
padding-right: 50px;
}
.feature-block-two h2 {
font-size: 30px;
font-weight: 500;
margin-bottom: 15px;
}
.feature-block-two .text {
margin-bottom: 40px;
}
.feature-block-two .link-btn {
margin-left: 30px;
}
.feature-block-two .count {
position: absolute;
right: -50px;
top: 0;
}
.image-block-one {
position: relative;
padding-top: 95px;
margin-bottom: 80px;
}
.image-block-one .image {
position: relative;
-webkit-box-shadow: 0px 0px 36.5px 13.5px rgba(233, 233, 233, 0.35);
box-shadow: 0px 0px 36.5px 13.5px rgba(233, 233, 233, 0.35);
margin-right: 35px;
text-align: center;
padding: 58px 0;
border-bottom-right-radius: 50px;
background: #fff;
}
.big-shape-3 {
width: 500px;
height: 355px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/big-shape-3.png);
}
.image-block-one .big-shape-3 {
top: 0;
right: 50px;
} .feature-block-three {
position: relative;
margin-bottom: 120px;
padding-left: 70px;
}
.feature-block-three h2 {
font-size: 30px;
font-weight: 500;
margin-bottom: 15px;
}
.feature-block-three .text {
margin-bottom: 40px;
}
.feature-block-three .link-btn {
margin-left: 30px;
}
.feature-block-three .count {
position: absolute;
left: -50px;
top: 0;
}
.image-block-two {
position: relative;
padding-top: 95px;
margin-bottom: 80px;
}
.image-block-two .image {
position: relative;
-webkit-box-shadow: 0px 0px 36.5px 13.5px rgba(233, 233, 233, 0.35);
box-shadow: 0px 0px 36.5px 13.5px rgba(233, 233, 233, 0.35);
margin-right: 35px;
text-align: center;
padding: 58px 0;
border-bottom-right-radius: 50px;
background: #fff;
}
.big-shape-4 {
width: 500px;
height: 355px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/big-shape-4.png);
}
.image-block-two .big-shape-4 {
top: 0;
left: 50px;
} .features-section-three {
position: relative;
z-index: 5;
padding: 190px 0 0;
}
.features-section-three .auto-container {
max-width: 1330px;
}
.feature-block-four {
position: relative;
}
.feature-block-four .inner-box {
position: relative;
text-align: center;
padding: 50px 20px 25px;
border-bottom: 2px solid #0daf96;
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(233, 233, 233, 0.45);
box-shadow: 0px 11px 21.25px 3.75px rgba(233, 233, 233, 0.45);
-webkit-transition: .5s;
-o-transition: .5s;
transition: .5s;
margin-bottom: 140px;
background: #fff;
}
.feature-block-four:nth-child(2) .inner-box {
border-color: #b83b96;
}
.feature-block-four:nth-child(3) .inner-box {
border-color: #d0ca43;
}
.feature-block-four:nth-child(4) .inner-box {
border-color: #403ab4;
}
.feature-block-four .inner-box:before {
position: absolute;
content: '';
left: 0;
bottom: 0;
height: 0px;
width: 100%;
background-image: -webkit-linear-gradient( 0deg, rgb(64,58,180) 30%, rgb(76,69,215) 100%);
background-image: -ms-linear-gradient( 0deg, rgb(64,58,180) 30%, rgb(76,69,215) 100%);
-webkit-transition: .9s ease;
-o-transition: .9s ease;
transition: .9s ease;
}
.feature-block-four .icon-box {
position: relative;
width: 96px;
height: 96px;
line-height: 102px;
margin: 0 auto 38px;
border-radius: 50%;
text-align: center;
border: 1px solid rgba(13, 175, 150, 0.50);
color: #222;
font-size: 48px;
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(233, 233, 233, 0.65);
box-shadow: 0px 11px 21.25px 3.75px rgba(233, 233, 233, 0.65);
-webkit-transition: .5s;
-o-transition: .5s;
transition: .5s;
}
.feature-block-four:nth-child(2) .icon-box {
border: 1px solid rgba(184, 59, 150, 0.50);
}
.feature-block-four:nth-child(3) .icon-box {
border: 1px solid rgba(208, 202, 67, 0.50);
}
.feature-block-four:nth-child(4) .icon-box {
border: 1px solid rgba(64, 58, 180, 0.50);
}
.feature-block-four h4 {
font-size: 20px;
font-weight: 600;
margin-bottom: 15px;
}
.feature-block-four h4 a {
color: #222;
}
.feature-block-four .overlay-content {
position: absolute;
left: 0;
top: 0px;
width: 100%;
opacity: 0;
-webkit-transition: .3s;
-o-transition: .3s;
transition: .3s;
padding: 50px 20px 10px;
background-image: -webkit-linear-gradient( 0deg, rgb(64,58,180) 30%, rgb(76,69,215) 100%);
background-image: -ms-linear-gradient( 0deg, rgb(64,58,180) 30%, rgb(76,69,215) 100%);
-webkit-transform: scale(.9) translateY(20px);
-ms-transform: scale(.9) translateY(20px);
transform: scale(.9) translateY(20px);
border-radius: 100px;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
-webkit-transform-origin: top;
-ms-transform-origin: top;
transform-origin: top;
}
.feature-block-four .inner-box:hover .overlay-content {
opacity: 1;
-webkit-transform: scale(1) translateY(0px);
-ms-transform: scale(1) translateY(0px);
transform: scale(1) translateY(0px);
-webkit-transition: 1s;
-o-transition: 1s;
transition: 1s;
border-radius: 0px;
}
.feature-block-four .overlay-content .icon-box {
color: #fff;
background: #0eaf96;
border-color: #0eaf96;
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(75, 68, 209, 0.37);
box-shadow: 0px 11px 21.25px 3.75px rgba(75, 68, 209, 0.37);
}
.feature-block-four:nth-child(2) .overlay-content .icon-box {
border-color: #b83b96;
background-color: #b83b96;
}
.feature-block-four:nth-child(3) .overlay-content .icon-box {
border-color: #d0ca43;
background-color: #d0ca43;
}
.feature-block-four:nth-child(4) .overlay-content .icon-box {
border-color: #403ab4;
background-color: #403ab4;
}
.feature-block-four .overlay-content h4 a {
color: #fff;
}
.feature-block-four .overlay-content .text {
color: #fff;
}
.feature-block-four .overlay-content .theme-btn {
background: #fff;
color: #222;
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(0, 0, 0, 0.12);
box-shadow: 0px 11px 21.25px 3.75px rgba(0, 0, 0, 0.12);
-webkit-transform: translateY(35px);
-ms-transform: translateY(35px);
transform: translateY(35px);
}
.feature-block-four .overlay-content .theme-btn:hover {
background: #0daf96;
color: #fff;
} .features-section-four {
position: relative;
padding: 110px 0 120px;
}
.big-shape-6 {
height: 1115px;
width: 797px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/big-shape-6.png);
}
.features-section-four .big-shape-6 {
top: -200px;
left: 0px;
}
.features-section-four .auto-container {
max-width: 1495px;
}
.features-section-four .image {
display: inline-block;
-webkit-box-shadow: 0px 15px 48.75px 16.25px rgba(197, 203, 214, 0.45);
box-shadow: 0px 15px 48.75px 16.25px rgba(197, 203, 214, 0.45);
} .tab-btn-style-one {
position: relative;
margin-bottom: 40px;
border: 0px;
margin-left: 40px;
}
.tab-btn-style-one li {
display: block;
}
.tab-btn-style-one .nav-link {
position: relative;
padding: 30px 40px 15px 50px;
border: none;
-webkit-transition: .4s;
-o-transition: .4s;
transition: .4s;
z-index: 1;
}
.tab-btn-style-one .nav-link:before{
position: absolute;
content: '';
background: #0daf96;
width: 0%;
height: 100%;
left:0px;
top: 0px;
z-index: -1;
transition: all 500ms ease;
}
.tab-btn-style-one .nav-link.active:before,
.tab-btn-style-one .nav-link:hover:before{
width: 100%;
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(167, 238, 227, 0.65);
box-shadow: 0px 11px 21.25px 3.75px rgba(167, 238, 227, 0.65);
}
.tab-btn-style-one h3 {
font-size: 24px;
font-weight: 500;
margin-bottom: 10px;
transition: all 500ms ease;
}
.tab-btn-style-one p {
color: #555;
transition: all 500ms ease;
}
.tab-btn-style-one .nav-link.active p,
.tab-btn-style-one .nav-link.active h3,
.tab-btn-style-one .nav-link:hover p,
.tab-btn-style-one .nav-link:hover h3{
color: #fff;
} .tab-btn-style-two {
position: relative;
margin-bottom: 50px;
border: 0px;
}
.tab-btn-style-two li {
position: relative;
display: inline-block;
}
.tab-btn-style-two li:before {
position: absolute;
content: '';
background: rgba(255, 255, 255, 0.40);
height: 1px;
left: 53px;
right: -53px;
top: 7px;
}
.tab-btn-style-two li:last-child:before {
display: none;
}
.tab-btn-style-two .nav-link {
font-size: 14px;
font-weight: 500;
color: rgba(255, 255, 255, 0.4);
border: 0px;
padding: 0 30px;
}
.nav-tabs.tab-btn-style-two .nav-link.active, 
.nav-tabs.tab-btn-style-two .nav-item.show .nav-link {
background: transparent;
color: #fff;
}
.tab-btn-style-two li:last-child .nav-link {
margin-right: 0px;
}
.tab-btn-style-two li .dot {
display: block;
width: 14px;
height: 14px;
background: rgba(13, 175, 150, 0.4);
margin-left: auto;
margin-right: auto;
position: relative;
border-radius: 50%;
-webkit-transition: all .4s ease;
-o-transition: all .4s ease;
transition: all .4s ease;
margin-bottom: 10px;
}
.tab-btn-style-two li .active .dot {
background-color: #0daf96;
} .features-section-five {
position: relative;
padding: 120px 0 90px;
}
.big-shape-8 {
height: 792px;
width: 726px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/big-shape-8.png);
}
.big-shape-9 {
height: 792px;
width: 726px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/big-shape-9.png);
}
.features-section-five .big-shape-8 {
top: 100px;
left: 0px;
}
.features-section-five .big-shape-9 {
bottom: -110px;
right: 0px;
}
.feature-block-five {
position: relative;
}
.feature-block-five .sec-title .title {
color: #0daf96;
} .features-section-six {
position: relative;
padding: 150px 0 120px;
}
.features-section-six .image {
margin-left: 65px;
margin-bottom: 30px;
overflow: hidden;
}
.features-section-six .image:before{
position: absolute;
top: 0;
left: -75%;
display: block;
content: '';
width: 50%;
height: 100%;
background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
-webkit-transform: skewX(-25deg);
-ms-transform: skewX(-25deg);
transform: skewX(-25deg);
}
.features-section-six .image:hover:before{
-webkit-animation: shine 1s;
animation: shine 1s;
}
@-webkit-keyframes shine {
100% {
left: 125%;
}
}
@keyframes shine {
100% {
left: 125%;
}
}
.feature-block-six {
position: relative;
margin-bottom: 50px;
}
.feature-block-six h2 {
font-size: 30px;
font-weight: 500;
margin-bottom: 15px;
}
.feature-block-six .text {
margin-bottom: 40px;
}
.feature-block-six .link-btn .theme-btn {
background-color: rgb(194, 52, 160);
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(236, 168, 220, 0.65);
box-shadow: 0px 11px 21.25px 3.75px rgba(236, 168, 220, 0.65);
transition: all 600ms ease;
}
.feature-block-six .link-btn .theme-btn:hover{
background-color: #0eaf96;
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(14, 175, 150, 0.65);
box-shadow: 0px 11px 21.25px 3.75px rgba(14, 175, 150, 0.65);
} .features-section-seven {
position: relative;
padding: 150px 0 90px;
}
.feature-block-seven .inner-box {
position: relative;
margin-bottom: 30px;
}
.feature-block-seven .icon-box {
line-height: 245px;
margin-bottom: 10px;
}
.feature-block-seven h4 {
font-size: 20px;
font-weight: 600;
margin-bottom: 5px;
} .features-section-eight {
position: relative;
padding: 150px 0 90px;
}
.feature-block-eight {
position: relative;
margin-bottom: 50px;
}
.feature-block-eight .icon-box {
position: relative;
height: 50px;
width: 50px;
text-align: center;
line-height: 50px;
border-radius: 50%;
background-color: #0daf96;
color: #fff;
font-size: 20px;
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(152, 241, 227, 0.65);
box-shadow: 0px 11px 21.25px 3.75px rgba(152, 241, 227, 0.65);
margin-bottom: 50px;
}
.feature-block-eight h3 {
font-size: 24px;
font-weight: 300;
margin-bottom: 15px;
} .features-section-nine {
position: relative;
}
.feature-block-nine {
position: relative;
margin-bottom: 50px;
}
.feature-block-nine .icon-box {
margin-bottom: 40px;
font-size: 20px;
}
.features-section-nine .row:nth-child(2) .icon-box {
background-color: rgb(184, 59, 150);
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(255, 190, 237, 0.65);
box-shadow: 0px 11px 21.25px 3.75px rgba(255, 190, 237, 0.65);
}
.features-section-nine .row:nth-child(3) .icon-box {
background-color: rgb(193, 187, 53);
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(233, 227, 92, 0.65);
box-shadow: 0px 11px 21.25px 3.75px rgba(233, 227, 92, 0.65);
}
.feature-block-nine h2 {
font-size: 30px;
font-weight: 500;
margin-bottom: 15px;
}
.feature-block-nine .text {
margin-bottom: 40px;
}
.features-section-nine .image {
margin-left: 65px;
margin-bottom: 30px;
} .features-section-ten{
position: relative;
padding: 140px 0 120px;
}
.feature-block-ten{
position: relative;
}
.feature-block-ten .inner-box{
position: relative;
padding: 40px 0 0;
margin-bottom: 30px;
}
.feature-block-ten .icon-box{
position: relative;
margin-bottom: 40px;
}
.feature-block-ten .icon{
position: relative;
line-height: 1em;
color: #403ab4;
font-weight: 400;
z-index: 9;
font-size: 48px; background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(42,38,133,1)), color-stop(100%, rgba(130,45,196,1))); background: -webkit-linear-gradient(170deg, rgba(130,45,196,1) 0%, rgba(42,38,133,1) 100%); background: -o-linear-gradient(170deg, rgba(130,45,196,1) 0%, rgba(42,38,133,1) 100%);  background: linear-gradient(280deg, rgba(130,45,196,1) 0%, rgba(42,38,133,1) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.feature-block-ten .icon-box:before{
position: absolute;
left: 39px;
top: 50%;
height: 81px;
width: 77px;
background-position: center;
background-size: 100%;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-23.png);
background-repeat: no-repeat;
content: '';
-webkit-transform: translate(-50%, -66%);
-ms-transform: translate(-50%, -66%);
transform: translate(-50%, -66%);
-webkit-transition: .7s ease;
-o-transition: .7s ease;
transition: .7s ease;
}
.feature-block-ten:hover .icon-box:before {
-webkit-transform: translate(-50%, -58%) rotate(-20deg);
-ms-transform: translate(-50%, -58%) rotate(-20deg);
transform: translate(-50%, -58%) rotate(-20deg);
}
.feature-block-ten h4{
position: relative;
display: block;
font-size: 20px;
line-height: 1.2em;
color: #222;
font-weight: 500;
margin-bottom: 18px;
}
.feature-block-ten h4 a{
color: #4c4754;
display: inline-block;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.feature-block-ten h4 a:hover{
color: #0daf96;
}
.feature-block-ten .text{
position: relative;
max-width: 315px;
margin-bottom: 25px;
}
.feature-block-ten .link-btn a {
font-weight: 500;
color: #2a2685;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
border-bottom: 1px solid transparent;
}
.feature-block-ten .link-btn a span {
color: #f0467a;
margin-left: 5px;
font-size: 12px;
}
.feature-block-ten .link-btn a:hover {
color: #0daf96;
border-color: #403ab4;
}
.feature-block-ten:nth-child(2) .icon-box:before{
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-24.png);
}
.feature-block-ten:nth-child(3) .icon-box:before{
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-25.png);
}
.feature-block-ten:nth-child(4) .icon-box:before{
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-26.png);
}
.feature-block-ten:nth-child(5) .icon-box:before{
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-27.png);
}
.feature-block-ten:nth-child(6) .icon-box:before{
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-28.png);
} .features-section-eleven {
position: relative;
padding: 120px 0 90px;
}
.feature-block-eleven {
position: relative;
}
.feature-block-eleven .sec-title .title {
color: #0daf96;
}
.features-section-eleven .image {
position: relative;
margin-left: -50px;
margin-right: -50px;
} .clients-section {
padding: 50px 0 90px;
}
.clients-section .image-box{
position: relative;
margin: 0;
text-align: center;
line-height: 100px;
}
.clients-section .image-box img{
display: inline-block;
max-width: 100% !important;
width: auto !important;
height: auto;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.clients-section .image-box:hover img{
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
} .clients-section.style-two {
padding-top: 120px;
}
.clients-section.style-two .auto-container {
max-width: 1310px;
}
.clients-section.style-two .image-box img {
opacity: .5;
} .clients-section-two {
position: relative;
padding: 120px 0 60px;
}
.clients-section-two:before {
position: absolute;
content: '';
background-color: #eff3ff;
left: 0;
top: 0;
width: 100%;
height: 100%;
-webkit-transform: skewY(1.5deg);
-ms-transform: skewY(1.5deg);
transform: skewY(1.5deg);
}
.clients-section-two .sponsor-logo-list {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.clients-section-two .sponsor-logo-list li {
margin: 0 80px;
margin-bottom: 50px;
}
.clients-section-two li img{
position: relative;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.clients-section-two li:hover img{
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
} .about-section {
position: relative;
}
.about-section .shape-5 {
bottom: -105px;
right: -198px;
z-index: 5;
}
.shape-5 {
height: 400px;
width: 400px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-5.png);
}
.about-section .outer-box {
position: relative;
padding-top: 85px;
}
.about-section .outer-box:before {
position: absolute;
content: '';
background: #403ab4;
left: 325px;
top: 0;
bottom: 33px;
width: 2000%;
}
.about-section .image {
padding-right: 47px;
}
.about-section .link {
margin-right: -23px;
}
.about-section .link .theme-btn {
vertical-align: middle;
}
.about-section .link .btn-style-two {
border-radius: 0px;
padding: 22px 35px;
-webkit-box-shadow: -4px 8px 21.25px 3.75px rgba(167, 238, 227, 0.65);
box-shadow: -4px 8px 21.25px 3.75px rgba(167, 238, 227, 0.65);
}
.about-block-one {
margin-left: 25px;
margin-right: -160px;
} .about-section-two {
position: relative;
padding-top: 170px;
padding-bottom: 120px;
}
.about-section-two .big-shape-2 {
bottom: 105px;
right: -80px;
}
.big-shape-2 {
height: 648px;
width: 745px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/big-shape-2.png);
}
.about-section-two .sec-title {
margin-bottom: 30px;
}
.about-section-two .image {
margin-top: 70px;
margin-right: -190px;
}
.about-block-two {
position: relative;
}
.about-block-two h3 {
font-size: 24px;
font-weight: 300;
margin-bottom: 15px;
}
.about-block-two .text {
margin-bottom: 30px;
}
.about-block-two ul {
margin-bottom: 35px;
}
.about-block-two ul li {
position: relative;
padding-left: 27px;
margin-bottom: 20px;
}
.about-block-two ul li span {
position: absolute;
left: 0;
top: 8px;
color: #0daf96;
} .about-section-three {
position: relative;
padding-top: 170px;
padding-bottom: 150px;
}
.about-section-three .big-shape-7 {
top: 0;
right: 0px;
}
.big-shape-7 {
height: 1062px;
width: 941px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/big-shape-7.png);
}
.about-section-three .content-column {
width: 50%;
padding: 0 15px;
}
.about-section-three .integrations-column {
position: relative;
width: 50%;
padding: 0 15px;
} .integrations-block {
position: relative;
height: 760px;
max-width: 840px;
margin-right: -270px;
margin-top: -100px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/integration-bg.png);
background-position: center;
background-repeat: no-repeat;
}
.integrations-block .circle-shape-1 {
height: 10px;
width: 10px;
border-radius: 50%;
background: #403ab4;
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
left: 52%;
top: 99px;
}
.integrations-block .circle-shape-2 {
height: 10px;
width: 10px;
border-radius: 50%;
background: #0daf96;
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
right: 22%;
top: 146px;
}
.integrations-block .circle-shape-3 {
height: 10px;
width: 10px;
border-radius: 50%;
background: #403ab4;
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
right: 9%;
top: 46%;
}
.integrations-block .circle-shape-4 {
height: 10px;
width: 10px;
border-radius: 50%;
background: #0daf96;
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
right: 203px;
bottom: 22%;
}
.integrations-block .circle-shape-5 {
height: 10px;
width: 10px;
border-radius: 50%;
background: #0daf96;
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
left: 38%;
bottom: 18px;
}
.integrations-block .circle-shape-6 {
height: 10px;
width: 10px;
border-radius: 50%;
background: #403ab4;
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
left: 13%;
bottom: 30%;
}
.integrations-block .circle-shape-7 {
height: 10px;
width: 10px;
border-radius: 50%;
background: #0daf96;
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
left: 17%;
top: 20%;
}
.integrations-block .icon{
position: absolute;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.integrations-block .icon.now-in-view{
-webkit-animation-name: zoomIn; 
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: 1;
-ms-animation-name: zoomIn; 
-ms-animation-duration: 1s;
-ms-animation-iteration-count: 1;
-moz-animation-name: zoomIn; 
-moz-animation-duration: 1s;
-moz-animation-iteration-count: 1;
}
.integrations-block .icon img,
.integrations-block .icon a{
position: relative;
display: block;
}
.integrations-block .icon-1{
left: 32%;
top: 11%;
}
.integrations-block .icon-2{
right: 26%;
top: 3%;
}
.integrations-block .icon-3{
right: 10%;
top: 33%;
}
.integrations-block .icon-4{
right: 9%;
bottom: 23%;
}
.integrations-block .icon-5{
right: 34%;
bottom: 11%;
}
.integrations-block .icon-6{
left: 25%;
bottom: 5%;
}
.integrations-block .icon-7{
left: 10%;
top: 53%;
}
.integrations-block .icon-8{
left: 9%;
top: 25%;
}
.integrations-block .circle-one{
position: absolute;
left: 0;
top: 21px;
right: 0;
height: 718px;
}
.integrations-block .circle-two{
position: absolute;
left: 80px;
top: 66px;
right: 80px;
bottom: 72px;
}
.integrations-block .circle-three{
position: absolute;
left: 80px;
top: 73px;
right: 80px;
bottom: 68px;
}
.integrations-block .circle-three .image {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.integrations-block .circle-three .image img {
position: relative;
top: -15px;
}
.integrations-block .circle-three .image:before {
position: absolute;
content: '';
width: 100%;
height: 100%;
top: 0;
left: 0;
-webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
-webkit-transform: rotate(12deg);
-ms-transform: rotate(12deg);
transform: rotate(12deg);
-webkit-box-shadow: 0px 15px 48.75px 16.25px rgba(197, 203, 214, 0.45);
box-shadow: 0px 15px 48.75px 16.25px rgba(197, 203, 214, 0.45);
} .intro-section {
position: relative;
padding-top: 120px;
padding-bottom: 150px;
}
.intro-section.style-two {
padding-bottom: 80px;
}
.intro-section .sec-title{
margin-bottom: 50px;
}
.intro-section.style-two .sec-title{
margin-bottom: 70px;
}
.intro-section .big-shape-2 {
bottom: 105px;
right: -80px;
}
.big-shape-2 {
height: 648px;
width: 745px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/big-shape-2.png);
}
.intro-section .image {
margin-top: 70px;
margin-right: -190px;
}
.intro-block .inner-box {
position: relative;
margin-bottom: 45px;
}
.intro-block .icon-box {
color: #b83b96;
font-size: 48px;
margin-bottom: 15px;
}
.intro-block h4 {
font-size: 20px;
font-weight: 600;
margin-bottom: 5px;
}
.intro-block:nth-child(2) .icon-box {
color: #d0ca43;
}
.intro-block:nth-child(3) .icon-box {
color: #403ab4;
}
.intro-block:nth-child(4) .icon-box {
color: #0daf96;
} .testimonial-section {
position: relative;
padding: 140px 0 120px;
}
.testimonial-section .shape-7 {
bottom: 20%;
left: 100px;
z-index: 5;
}
.shape-7 {
height: 94px;
width: 94px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-7.png);
}
.testimonial-section .auto-container {
max-width: 100%;
}
.testimonial-section .owl-carousel .owl-stage-outer {
position: relative;
right: -210px;
} .testimonial-block-one {
position: relative;
}
.testimonial-block-one .inner-box {
position: relative;
padding: 80px 40px 75px 98px;
margin-left: 62px;
background: #eff3fe;
}
.testimonial-block-one .image {
position: absolute;
left: 0;
top: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.testimonial-block-one .image img {
border-radius: 50%;
width: auto;
}
.testimonial-block-one .text {
margin-bottom: 20px;
}
.testimonial-block-one h5 {
font-size: 16px;
font-weight: 700;
}
.testimonial-block-one .quote {
width: auto;
position: absolute;
right: 30px;
bottom: -20px;
} .testimonial-section-two {
position: relative;
padding: 135px 0 180px;
}
.testimonial-section-two .layer-outer{
position: absolute;
right: 0;
top: 0;
bottom: 0px;
width: 100%;
}
.testimonial-section-two .layer-image{
position: absolute;
right: 0;
top: 0px;
width: 100%;
height: 100%;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/bg-testimonial.png);
background-repeat:no-repeat;
background-position: top center;
background-size: cover;
}
.testimonial-section-two .auto-container {
max-width: 1300px;
}
.testimonial-section-two .testimonial-outer {
position: relative;
}
.testimonial-section-two .thumb-box {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.testimonial-section-two .thumb-box .image-1 {
position: absolute;
left: 0;
top: 120px;
-webkit-animation: zoom-fade 6s infinite linear;
animation: zoom-fade 6s infinite linear;
}
.testimonial-section-two .thumb-box .image-2 {
position: absolute;
left: 60px;
bottom: 50px;
-webkit-animation: zoom-fade-two 8s infinite linear;
animation: zoom-fade-two 8s infinite linear;
}
.testimonial-section-two .thumb-box .image-3 {
position: absolute;
right: 150px;
top: 90px;
-webkit-animation: zoom-fade 9s infinite linear;
animation: zoom-fade 9s infinite linear;
}
.testimonial-section-two .thumb-box .image-4 {
position: absolute;
right: -40px;
top: 45%;
-webkit-animation: zoom-fade-two 11s infinite linear;
animation: zoom-fade-two 11s infinite linear;
}
.testimonial-section-two .thumb-box .image-5 {
position: absolute;
right: 100px;
bottom: 30px;
-webkit-animation: zoom-fade 9s infinite linear;
animation: zoom-fade 9s infinite linear;
}
.testimonial-section-two .thumb-box img {
border-radius: 50%;
opacity: .7;
} .testimonial-block-two {
position: relative;
}
.testimonial-block-two .inner-box {
position: relative;
padding: 80px 0px;
text-align: center;
max-width: 880px;
margin: 0 auto;
}
.testimonial-block-two .image {
position: relative;
margin-bottom: 50px;
}
.testimonial-block-two .image img {
border-radius: 50%;
width: auto;
margin: 0 auto;
}
.testimonial-block-two .text {
margin-bottom: 20px;
color: #fff;
margin-bottom: 60px;
}
.testimonial-block-two h5 {
font-size: 16px;
font-weight: 700;
color: #fff;
}
.testimonial-block-two .quote {
width: auto;
position: absolute;
left: 50%;
bottom: 59px;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
} .call-to-action-one{
position: relative;
padding: 214px 0 90px;
}
.call-to-action-one .auto-container {
position: relative;
}
.shape-8 {
height: 248px;
width: 248px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-8.png);
}
.call-to-action-one .shape-8 {
top: -60px;
left: -124px;
z-index: 5;
}
.call-to-action-one .shape-5 {
bottom: -105px;
right: -198px;
z-index: 5;
}
.call-to-action-one .image-layer {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-repeat: no-repeat;
background-position: center top;
background-size: cover;
}
.call-to-action-one .outer-box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.call-to-action-one .title-column{
position: relative;
margin-bottom:30px;
}
.call-to-action-one .title-column h1{
position: relative;
display: block;
font-size: 36px;
line-height: 1.4em;
color: #ffffff;
font-weight: 600;
margin-bottom: 20px;
}
.call-to-action-one .link-column{
position: relative;
margin: 0 -10px;
}
.call-to-action-one .link-column .theme-btn{
margin: 0 10px;
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(0, 0, 0, 0.10);
box-shadow: 0px 11px 21.25px 3.75px rgba(0, 0, 0, 0.10);
} .call-to-action-two{
position: relative;
padding: 70px 0 80px;
background: #2fbba5;
}
.call-to-action-two .shape-5 {
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.call-to-action-two .sec-title {
margin-bottom: 50px;
}
.call-to-action-two .sec-title.light .title {
color: #fff;
} .main-footer {
background: #ffffff!important;
} .main-footer.style-two {
background: #eff3ff;
}
.main-footer .widgets-section{
padding-top: 100px;
padding-bottom: 60px;
}
.main-footer .widget-title{
color: #4c4754;
font-weight: 600;
font-size: 20px;
line-height: 1.2em;
margin-bottom: 30px;
}
.main-footer .footer-widget {
margin-bottom: 20px;
} .main-footer .about-widget .footer-logo {
margin-bottom: 15px;
}
.main-footer .about-widget .text {
margin-bottom: 15px;
}
.main-footer .about-widget form {
position: relative;
margin-bottom: 35px;
max-width: 280px;
}
.main-footer .about-widget input {
position: relative;
background: #f0f0f0;
color: #555;
height: 60px;
width: 100%;
padding: 0 25px;
}
.main-footer.style-two .about-widget input {
background: #fff;
}
.main-footer .about-widget button {
position: absolute;
right: 15px;
top: 5px;
color: #555;
font-size: 14px;
background: transparent;
cursor: pointer;
padding: 10px;
} .main-footer .links-widget{
position: relative;
}
.main-footer .list{
position: relative;
}
.main-footer .list li{
position:relative;
display: block;
margin-bottom: 10px;
}
.main-footer .list li a{
position: relative;
color: #555;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
font-size: 15px;
position: relative;
display: inline-block;
font-size: 16px;
line-height: 26px;
font-family: 'Open Sans', sans-serif;
color: #848484;
}
.main-footer .list li a:hover {
color: #0daf96;
} .contact-widget {
margin-left: -20px;
}
.contact-widget .widget-content {
position: relative;
margin-bottom: 25px;
}
.contact-widget .widget-content li {
position: relative;
margin-bottom: 10px;
color: #222;
font-size: 16px;
line-height: 26px;
font-family: 'Open Sans', sans-serif;
color: #848484;
}
.contact-widget .social-icon-one {
margin: 0 -7px;
} .pricing-section{
position: relative;
padding: 0px 0 90px;
}
.pricing-section.style-two {
padding-top: 120px;
}
.pricing-section.grey-bg {
background: #eff3ff;
}
.tabs-box .tab {
display: none;
}
.tabs-box .tab.active-tab {
display: block;
}
.pricing-tabs{
position: relative;
text-align: center;
}
.pricing-tabs .tab-buttons{
position: relative;
display: block;
margin-bottom: 50px;
}
.pricing-tabs .tab-buttons:before{
position: absolute;
left: 0;
right: 0;
margin: 0 auto;
height: 40px;
width: 90px;
content: "";
border-radius: 40px;
background-image: -webkit-linear-gradient( 0deg, rgb(104,97,230) 30%, rgb(64,58,180) 100%);
background-image: -ms-linear-gradient( 0deg, rgb(104,97,230) 30%, rgb(64,58,180) 100%);
}
.pricing-section.theme-two .tab-buttons:before{
background:#0daf96;
}
.pricing-tabs .tab-buttons:after{
display: table;
clear: both;
content: "";
}
.pricing-tabs .tab-buttons .tab-btn{
position: relative;
display: inline-block;
padding-right: 70px;
min-width: 120px;
text-align: right;
font-size: 18px;
line-height: 40px;
color: #222;
font-weight: 300;
cursor: pointer;
}
.pricing-tabs .tab-buttons .tab-btn:last-child{
padding-right: 0;
padding-left: 57px;
text-align: left;
}
.pricing-tabs .tab-buttons .tab-btn:last-child:before{
display: none;
}
.pricing-tabs .tab-buttons .tab-btn:before{
position: absolute;
top: 5px;
height: 30px;
width: 30px;
background-color: #ffffff;
border-radius: 30px;
content: "";
right: -38px;
-webkit-box-shadow: 0 4px 20px rgba(44,44,56,.30);
box-shadow: 0 4px 20px rgba(44,44,56,.30);
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.pricing-tabs .tab-buttons .tab-btn.active-btn:before{
right: 15px;
}
.pricing-tabs .tab-buttons .tab-btn.active-btn { }
.pricing-tabs .tab-buttons .tab-btn span {
position: absolute;
right: -70px;
top: 0;
font-size: 12px;
font-weight: 300;
}
.pricing-tabs .tab-buttons .tab-btn span:before {
position: absolute;
content: '';
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/arrow.png);
bottom: -10px;
left: -16px;
width: 35px;
height: 12px;
}
.pricing-table{
position: relative;
margin-bottom: 40px;
}
.pricing-table .inner-box{
position: relative;
padding: 60px 55px 60px;
text-align: center;
overflow: hidden;
background: #f7f9ff;
-webkit-transition:all 300ms ease;
-o-transition:all 300ms ease;
transition:all 300ms ease;
}
.pricing-table .inner-box:hover {
background-color: #ffffff!important;
-webkit-box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.06) ;
box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.06) ;
}
.shape-17 {
height: 120px;
width: 120px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-17.png);
}
.pricing-table .shape-17 {
top: 50px;
left: 50%;
margin-left: -53px;
-webkit-transform-origin: center;
-ms-transform-origin: center;
transform-origin: center;
-webkit-animation-duration: 9s;
animation-duration: 9s; 
}
.pricing-table:nth-child(2) .shape-17 {
-webkit-animation-duration: 7s;
animation-duration: 7s;
}
.pricing-table:nth-child(3) .shape-17 {
-webkit-animation-duration: 8s;
animation-duration: 8s;
}
.pricing-table.tagged .inner-box{
background-color: #eff3ff;
}
.pricing-table.tagged.style-two .inner-box{
background-color: #fff;
}
.pricing-table .icon-box {
position: relative;
font-size: 48px;
color: #fff;
background: #d0ca43;
height: 100px;
width: 100px;
line-height: 100px;
text-align: center;
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(233, 233, 233, 0.65);
box-shadow: 0px 11px 21.25px 3.75px rgba(233, 233, 233, 0.65);
border-radius: 50%;
margin: 0 auto;
margin-bottom: 55px;
}
.pricing-table:nth-child(2) .icon-box{
background: #0daf96;
}
.pricing-table:nth-child(3) .icon-box{
background: #b83b96;
}
.pricing-table .title{
position: relative;
display: block;
font-size: 24px;
color: #222;
font-weight: 600;
margin-bottom: 5px;
}
.pricing-table h6 {
font-size: 15px;
font-weight: 300;
}
.pricing-table .price{
position: relative;
font-size: 72px;
line-height: 1em;
color: #222;
font-weight: 300;
padding: 30px 0;
border-top: 1px solid #dbe0ef;
border-bottom: 1px solid #dbe0ef;
margin: 35px 0;
}
.pricing-table .price sup {
position: relative;
font-size: 36px;
top: -24px;
margin-right: 5px;
}
.pricing-table .price sub{
position: relative;
display: inline-block;
font-size: 24px;
line-height: 1em;
color: #222;
letter-spacing: 1px;
font-weight: 300;
top: 0px;
} 
.pricing-table .table-content{
position: relative;
}
.pricing-table .table-content ul{
position: relative;
margin-bottom: 40px;
}
.pricing-table .table-content ul li{
position: relative;
font-size: 15px;
line-height: 26px;
margin-bottom: 14px;
}
.pricing-table .table-content ul li span {
color: #999;
}
.pricing-table .table-footer{
position: relative;
} .fun-fact-section {
position: relative;
padding-top: 140px;
}
.fun-fact-section .counter-wrapper {
position: relative;
text-align: center;
}
.counter-block .affix,
.counter-block .count-text {
position: relative;
font-size: 100px;
line-height: 1.4em;
color: #403ab4;
font-weight: 800;
}
.counter-block .counter-title {
position: relative;
display: block;
font-size: 42px;
line-height: 50px;
color: #222;
font-weight: 300;
} .fun-fact-section-two {
position: relative;
padding-bottom: 120px;
}
.big-shape-12 {
height: 956px;
width: 1049px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/big-shape-12.png);
}
.fun-fact-section-two .big-shape-12 {
top: -20px;
right: 0px;
}
.counter-block-two .inner-box {
position: relative;
background-color: #fff;
-webkit-box-shadow: 0px 0px 36.5px 13.5px rgba(233, 233, 233, 0.55);
box-shadow: 0px 0px 36.5px 13.5px rgba(233, 233, 233, 0.55);
padding: 77px 0;
text-align: center;
border-bottom-right-radius: 30px;
overflow: hidden;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.counter-block-two:nth-child(2) .inner-box {
background-color: #f0467a;
margin-top: 75px;
left: 38px;
}
.counter-block-two:nth-child(3) .inner-box {
margin-top:150px;
left: 78px;
}
.counter-block-two:nth-child(4) .inner-box {
background-color: #2a2685;
right: 97px;
margin-top: -155px;
}
.counter-block-two .icon-box {
position: absolute;
left: 50%;
bottom: -60px;
color: #f4f4f9;
font-size: 210px;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.counter-block-two .inner-box:hover .icon-box {
bottom: 0;
}
.counter-block-two .affix,
.counter-block-two .count-text {
position: relative;
font-size: 54px;
line-height: 1.2em;
color: #2a2685;
font-weight: 500;
}
.counter-block-two.light .affix,
.counter-block-two.light .count-text {
color: #fff;
}
.counter-block-two .counter-title {
position: relative;
display: block;
font-size: 24px;
line-height: 32px;
color: #555;
font-weight: 300;
}
.counter-block-two.light .counter-title {
color: #fff;
} .team-section{
position: relative;
padding:110px 0 80px;
background:#ffffff;
}
.team-block{
position:relative;
margin-bottom: 30px;
}
.team-block .inner-box{
position:relative;
}
.team-block .inner-box .image{
position:relative;
display:block;
overflow:hidden;
}
.team-block .inner-box .image img{
position:relative;
width:100%;
display:block;
}
.team-block .inner-box .image .overlay-box{
position:absolute;
left:0px;
top:0px;
width:100%;
display:block;
height:100%;
text-align:center;
}
.team-block .inner-box .image .overlay-box:before{
content:'';
position:absolute;
left:0px;
top:0px;
width:100%;
display:block;
height:100%;
opacity:0;
-webkit-transform:translateY(110%);
-ms-transform:translateY(110%);
transform:translateY(110%);
background-color: rgba(64, 58, 180, 0.86);
transition:all 0.7s ease;
-moz-transition:all 0.7s ease;
-webkit-transition:all 0.7s ease;
-ms-transition:all 0.7s ease;
-o-transition:all 0.7s ease;
}
.team-block .inner-box:hover .image .overlay-box:before{
opacity:1;
-webkit-transform:translateY(0%);
-ms-transform:translateY(0%);
transform:translateY(0%);
}
.team-block .inner-box .social-icons{
position:absolute;
left:0;
bottom:20px;
-webkit-transform:translateY(-50px);
-ms-transform:translateY(-50px);
transform:translateY(-50px);
opacity:0;
padding:0px 10px;
width:100%;
}
.team-block .inner-box:hover .social-icons{
opacity:1;
-webkit-transform:translateY(0%);
-ms-transform:translateY(0%);
transform:translateY(0%);
transition:all 0.5s ease 500ms;
-moz-transition:all 0.5s ease 500ms;
-webkit-transition:all 0.5s ease 500ms;
-ms-transition:all 0.5s ease 500ms;
-o-transition:all 0.5s ease 500ms;
}
.team-block .inner-box .social-icons li{
position:relative;
margin:0px 3px 7px;
display:inline-block;
}
.team-block .inner-box .social-icons li a{
position:relative;
color:#ffffff;
font-size:14px;
display:block;
width:50px;
height:50px;
line-height:46px;
text-align:center;
border:2px solid #ffffff;
border-radius:50%;
-webkit-transition:all 300ms ease;
-o-transition:all 300ms ease;
transition:all 300ms ease;	
}
.team-block .inner-box .social-icons li a:hover{
background:#ffffff;
color:#75717b;
}
.team-block .inner-box .lower-box {
position: relative;
padding-top: 30px;
text-align: center;
position: relative;
padding: 20px;
border: 1px solid #dfdfdf00;
background: #fff;
transition: all 500ms ease;
-webkit-box-shadow: 0 15px 46px rgba(0,0,0,.1);
-ms-box-shadow: 0 15px 46px rgba(0,0,0,.1);
box-shadow: 0 15px 46px rgba(0,0,0,.1);
margin-bottom: 30px;
}
.team-block .inner-box .lower-box h3{
position:relative;
font-size:20px;
font-weight: 600;
line-height:1.3em;
margin-bottom:4px;
}
.team-block .inner-box .lower-box h3 a{
position:relative;
color: #222;
}
.team-block .inner-box .lower-box .designation{
position:relative;
color: #403ab4;
font-size: 14px;
font-weight: 500;
} .working-process {
position: relative;
padding: 100px 0 160px;
background-repeat: no-repeat;
background-size: cover;
background-position: cover;
}
.working-process .auto-container {
max-width: 1350px;
}
.working-process:before {
content: '';
position: absolute;
left: 50%;
top: 50%;
width: 100%;
height: 100%;
display: block;
background: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/work-step-arrow.png) center center no-repeat;
-webkit-transform: translate(-50%, -60%);
-ms-transform: translate(-50%, -60%);
transform: translate(-50%, -60%);
}
.process-block{
position:relative;
margin-bottom:40px;
}
.process-block .inner-box{
position:relative;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
text-align: center;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.process-block .inner-box:hover {
-webkit-transform: translateY(-10px);
-ms-transform: translateY(-10px);
transform: translateY(-10px);
}
.process-block:nth-child(4) .inner-box,
.process-block:nth-child(2) .inner-box {
margin-top: 45px;
}
.process-block .inner-box .icon-box{
position: relative;
width: 190px;
height: 190px;
line-height: 190px;
background: #fff;
margin: 0 auto;
text-align: center;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
border-radius: 50%;
margin-bottom: 25px;
}
.process-block .inner-box .icon-box:before{
position: absolute;
left: -40px;
top: 7px;
height: 190px;
width: 230px;
background-position: center;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-19.png);
background-repeat: no-repeat;
content: '';
-webkit-transition: .7s ease;
-o-transition: .7s ease;
transition: .7s ease;
}
.process-block .inner-box:hover .icon-box:before {
-webkit-transform: scale(.8);
-ms-transform: scale(.8);
transform: scale(.8);
}
.process-block:nth-child(2) .icon-box:before{
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-20.png);
left: 40px;
width: 207px;
}
.process-block:nth-child(3) .icon-box:before{
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-21.png);
width: 202px;
top: -13px;
left: -50px;
}
.process-block:nth-child(4) .icon-box:before{
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/shape-22.png);
left: 9px;
top: 0;
}
.process-block .inner-box h4{
position:relative;
font-size: 20px;
font-weight: 500;
color: #fff;
margin-bottom: 20px;
} .project-tab-section {
position: relative;
padding: 140px 0 120px;
}
.project-tab-section .image-layer {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
max-height: 694px;
background-repeat: no-repeat;
background-position: center top;
background-size: cover;
}
.project-tab-section .tab-content {
position: relative;
background-color: #fff;
padding: 60px 80px;
-webkit-box-shadow: 0 0 40px 15px rgba(0, 0, 0, 0.05);
box-shadow: 0 0 40px 15px rgba(0, 0, 0, 0.05);
} .project-tab-block {
position: relative;
}
.project-tab-block  h3 {
position: relative;
font-size: 24px;
color: #b83b96;
font-weight: 600;
margin-bottom: 25px;
}
.project-tab-block  h3 span {
font-size: 24px;
margin-right: 10px;
color: #222;
}
.project-tab-block  h4 {
position: relative;
font-size: 18px;
font-weight: 600;
margin-bottom: 20px;
} .faq-section {
position: relative;
padding: 140px 0 100px;
} .page-title{
position:relative;
padding: 214px 0px 250px;
background-color: #ffffff;
text-align:center;
overflow: hidden;
}
.page-title .layer-outer{
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
}
.page-title .layer-outer{
position: absolute;
right: 0;
top: 0;
bottom: 0px;
width: 100%;
}
.page-title .layer-image{
position: absolute;
right: 0;
top: 0px;
width: 100%;
height: 100%;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/bg-page-title.png);
background-repeat:no-repeat;
background-position: bottom center;
background-size: cover;
}
.page-title h1{
position:relative;
font-size: 60px;
line-height: 1em;
font-weight: 600;
color: #fff;
margin-bottom: 18px;
}
.page-title .bread-crumb {
position: relative;
color: #fff;
font-size: 18px;
} .sidebar-page-container{
position: relative;
padding: 120px 0 70px;  
overflow: hidden;
}
.news-block-one{
position: relative;
margin-bottom: 0px;
}
.news-block-one .inner-box{
position: relative;
}
.news-block-one .image-box{ 
position: relative;
}
.news-block-one .image-box .image{
position: relative;
margin-bottom: 0;
overflow: hidden;
}
.news-block-one .image-box .image img{
display: block;
width: 100%;
height: auto;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
} 
.news-block-one .inner-box:hover .image-box .image a img{
opacity: .70;
}
.news-block-one .lower-content{
position: relative;
padding: 0px;
}
.news-block-one .lower-content .date strong {
font-size: 30px;
font-weight: 600;
display: block;
}
.news-block-one .category li {
font-size: 14px;
font-weight: 500;
text-transform: uppercase;
color: #403ab4;
display: inline-block;
}
.news-block-one .category li a {
color: #403ab4;
}
.news-block-one h2{
position: relative;
font-size: 30px;
line-height: 40px;
font-weight: 600;
margin-bottom: 10px;
}
.news-block-one h2 a{
color: #222;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.news-block-one h2 a:hover{
color: #0daf96;
}
.news-block-one .info {
position: relative;
display: block;
margin-bottom: 15px;
border-bottom: 1px solid #d9d9d9;
padding-bottom: 15px;
}
.news-block-one .info li {
position: relative;
display: inline-block;
font-size: 13px;
line-height: 28px;
color: #0eaf96;
font-weight: 500;
padding-left: 25px;
margin-right: 8px;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
text-transform: capitalize;
padding-right: 15px;
display: inline-block;
line-height: 1.3em;
}
.news-block-one .info .icon {
position: absolute;
left: 0;
top: 6px;
font-size: 18px;
color: #535353;
font-weight: 600;
}
.news-block-one .info li a{
color: #8182a8;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.news-block-one .info li a:hover{
color: #0daf96;
}
.news-block-one .text{
position: relative;
margin-bottom: 30px;
}
blockquote {
margin-bottom: 50px;
position: relative;
border-left: 7px solid #403ab4;
font-size: 15px;
font-weight: 500;
color: #f4f4f4;
margin: 40px 0;
background: #ffffff;
padding: 25px;
padding-left: 32px;
margin-bottom: 50px;
border-radius: 6px;
-webkit-box-shadow: 0px 10px 30px 0px rgba(20, 3, 67, 0.08);
box-shadow: 0px 10px 30px 0px rgba(20, 3, 67, 0.08);
}
blockquote p {
font-size: 17px;
color: #3f3f3f; font-style: italic; }
blockquote:before {
font-family: Flaticon;
position: absolute;
bottom: -33px;
right: 40px;
width: 73px;
height: 70px;
border-radius: 50%; content: "\e939";
color: #0eaf9636;
font-size: 53px;
line-height: 70px;
text-align: center;
content: "\f12e";
}
.news-block-one blockquote cite {
margin-top: 20px;
color: #0eaf96;
display: block;
font-style: normal;
}
.news-block-one .link-box{
position: relative;
}
.news-block-one .link-box a{
position: relative;
display: inline-block;
font-size: 14px;
line-height: 26px;
color: #222;
text-transform: uppercase;
font-weight: 500;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.news-block-one .link-box a i{
position: relative;
top: 0px;
font-size: 12px;
margin-left: 3px;
color: #403ab4;
}
.news-block-one .link-box a:hover{
color: #0daf96;
} .blog-single {
position: relative;
} .sidebar-page-container .content-side,
.sidebar-page-container .sidebar-side{
position: relative;
margin-bottom: 50px;
} .sidebar-widget{  }
.sidebar-side .sidebar-widget:last-child{
margin-bottom: 0;
}
.sidebar-page-container .sidebar-title{
position: relative;
margin-bottom: 40px;
}
.sidebar-page-container .sidebar-title h4 {
position: relative;
font-size: 18px;
color: #222;
font-weight: 500;
line-height: 30px;
border-bottom: 1px solid #403ab4;
padding-bottom: 10px;
}
.sidebar-page-container .widget-content{
position: relative;
} .search-box{
position: relative;
}
.search-box .form-group{
position:relative;
margin:0px 0 50px; 	
}
.search-box .form-group input[type="text"],
.search-box .form-group input[type="search"]{
position:relative;
display:block;
font-size:18px;
color: #222;
line-height:30px;
padding:20px 30px;
padding-right: 75px;
height:70px;
width:100%;
border: 1px solid #ddd;
-webkit-transition:all 500ms ease;
-o-transition:all 500ms ease;
transition:all 500ms ease;
}
.search-box .form-group input:focus{
border-color:#91c53c;	
}
.search-box .form-group input[type="submit"],
.search-box .form-group button{
position:absolute;
right:0px;
top:0px;
width:70px;
height:70px;
line-height: 70px;
text-align:center;
font-size:20px;
color:#454789;
padding: 0;
font-weight:400;
cursor: pointer;
background-color: transparent;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.search-box .form-group button {
font-size: 24px;
}
.search-box .form-group input[type="submit"]:hover,
.search-box .form-group button:hover{
color: #000000;
} #categories-2 {
position: relative;
}
#categories-2 .sidebar-title{
margin-bottom: 35px;
}
#categories-2 .sidebar-title h4 {
position: relative;
font-size: 22px;
color: #222;
font-weight: 500;
line-height: 30px;
border-bottom: 1px solid #403ab4;
padding-bottom: 10px;
}
#categories-2{
position: relative;
}
#categories-2 li{
position: relative;
}
#categories-2 li a {
position: relative; font-size: 15px;
line-height: 36px;
color: #222;
font-weight: 400;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
width: 90%;
}
#categories-2 li a span{
margin-left: 10px;
color: #222;
float: right;
}
#categories-2 li:hover:before{
color: #00e399;
}
#categories-2 li a:hover{
color: #0daf96;
} .post-widget{
position: relative;
}
.post-widget .post{
position: relative;
padding-left: 95px;
margin-bottom: 30px;
min-height: 80px;
padding-top: 5px;
}
.post-widget .post:last-child{
margin-bottom: 0px;
}
.post-widget .post .thumb{
position: absolute;
left: 0;
top: 0;
height: 80px;
width: 80px;
overflow: hidden;
}
.post-widget .post .thumb img{
display: block;
width: 100%;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.post-widget .post .date{
position: relative;
display: block;
font-size: 12px;
line-height: 15px;
font-weight: 400;
}
.post-widget .post h5{
position: relative;
font-size: 15px;
line-height: 22px;
color: #222;
font-weight: 600;
margin-bottom: 10px;
}
.post-widget .post h5 a{
color: #222;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.post-widget .post h5 a:hover{
color: #0daf96;
} #tag_cloud-2 .sidebar-title h4 {
position: relative;
font-size: 22px;
color: #222;
font-weight: 500;
line-height: 30px;
border-bottom: 1px solid #403ab4;
padding-bottom: 10px;
}
#tag_cloud-2 .sidebar-title {
margin-bottom: 35px;
}
#tag_cloud-2 .tagcloud {   margin-bottom: 10px;
} 
#tag_cloud-2 .tagcloud a {
position: relative;
display: inline-block;
font-size: 16px !important;
line-height: 12px;
color: #555;
font-weight: 400;
text-align: center;
overflow: hidden;
text-transform: capitalize;
border-radius: 2px;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
border-right: 2px solid #ddd;
padding-right: 10px;
margin-bottom: 13px;
}
#tag_cloud-2 .tagcloud a:hover{
color: #0eaf96;
}
.blog-single .social-icon-nine a i {
display: block;
line-height: 40px;
}
.tag-list li:last-child a {
border: 0px;
}
.blog-single .social-icon-nine li {
margin: 0 1px;
}
.blog-single .social-icon-nine {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-bottom: 80px;
}
.blog-single .social-icon-nine a {
height: 40px;
width: 68px;
display: inline-block;
} .feature-widget .inner-box {
position: relative;
background-color: #000364;
text-align: center;
padding-bottom: 30px;
} .blog-single .tags{
position: relative;
text-align: center;
border-top: 1px solid #ddd;
padding-top: 30px;
margin-bottom: 15px;font-weight: 600;
}
.blog-single .tags li{
position: relative;
display: inline-block;
margin-right: 10px;
margin-bottom: 10px;
color: #222;
font-weight: 500;
}
.blog-single .tags li strong{
position: relative;
display: block;
font-size: 14px;
line-height: 30px;
margin-right: 10px;
font-weight: 500;
text-transform: uppercase;
}
.blog-single .tags li a{
position: relative;
display: block;
font-size: 14px;
line-height: 12px;
color: #555;
font-weight: 400;
border-radius: 2px;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
border-right: 1px solid #555;
padding-right: 11px;
}
.blog-single .tags li a:hover{
color: #0eaf96;
} .author-box{
position:relative;
padding: 35px 40px 45px;
background-color: #f9faff;
margin-bottom: 95px;
border: 1px solid #e5e9ff;
}
.author-box .inner-box{
position:relative;
padding-left: 130px;
min-height: 100px;
}
.author-box .thumb{
position:absolute;
left:0px;
top:0px;
height: 100px;
width: 100px;
border-radius: 50%;
overflow: hidden;
margin-bottom: 15px;
}
.author-box .thumb img{
position: relative;
display: block;
width: 100%;
height: auto;
}
.author-box .info{
position: relative;
padding-top: 10px;
margin-bottom: 15px;
}
.author-box .info span{
position: relative;
display: block;
font-size: 14px;
line-height: 26px;
color: #555;
font-weight: 300;
}
.author-box .info h5{
position: relative;
display: block;
font-size: 18px;
line-height: 24px;
color: #222;
font-weight: 500;
}
.author-box .text{
position: relative;
display: block;
margin-bottom: 20px;
} .group-title{
position: relative;
margin-bottom: 35px;
}
.group-title h5{
position: relative;
display: block;
font-size: 22px;
line-height: 1.2em;
color: #222;
font-weight: 500;
}
.comments-area{
position:relative;
margin-bottom: 90px;
}
.comments-area .comments-outer{
position: relative;
}
.comments-area .comment-box{
position:relative;
margin-bottom: 40px;
}
.comments-area .comment-box:last-child{
margin-bottom: 0;
}
.comments-area .comment{
position:relative;
padding-left: 100px;
padding-bottom: 5px;
border-bottom: 1px solid #eeeeee;
}
.comments-area .comment-box:last-child .comment{
border-bottom: 0;
}
.comments-area .comment-box .author-thumb{
position:absolute;
left: 0;
top:0px;
height: 80px;
width: 80px;
overflow: hidden;
border-radius: 50%;
}
.comments-area .comment-box .author-thumb img{
width:100%;
display:block;
}
.comments-area .comment-info{
position: relative;
display: block;
padding-top: 5px;
margin-bottom: 15px;
}
.comments-area .comment-box .name{
position: relative;
display: block;
font-size: 18px;
line-height:22px;
font-weight: 600;
color: #222;
margin-bottom: 8px;
}
.comments-area .comment-box .date{
position: relative;
display: block;
font-size: 14px;
line-height: 22px;
}
.comments-area .comment-box .text{
position: relative;
display: block;
margin-bottom: 27px;
}
.comments-area .comment-box.reply-comment{
margin-left: 90px;
}
.comments-area .comment-box.reply-comment .comment{
padding-left: 75px;
}
.comments-area .comment-box.reply-comment .author-thumb{
height: 50px;
width: 50px;
} .comment-form{
position: relative;
}
.comment-form .form-group{
position:relative;
margin-bottom: 30px;
}
.comment-form .form-group:last-child{
margin-bottom: 0;
}
.comment-form .form-group input[type="text"],
.comment-form .form-group input[type="email"],
.comment-form .form-group textarea,
.comment-form .form-group select{
position: relative;
display: block;
height: 66px;
width: 100%;
font-size: 16px;
line-height: 24px;
color: #999ab9;
font-weight: 400;
padding: 20px 30px;
border: 1px solid #eee;
background-color: #ffffff;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.comment-form .form-group input:focus,
.comment-form .form-group select:focus,
.comment-form .form-group textarea:focus{
background-color: #ffffff;
-webkit-box-shadow: 0 10px 20px rgba(68,71,198,.10);
box-shadow: 0 10px 20px rgba(68,71,198,.10);
}
.comment-form .form-group textarea{
height: 200px;
resize: none;
}
.comment-form .form-group input[type="submit"],
.comment-form .form-group button{
cursor: pointer;
} .app-info-section {
position: relative;
padding: 60px 0 150px;
}
.big-shape-11 {
height: 937px;
width: 751px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/big-shape-11.png);
}
.app-info-section .big-shape-11 {
top: -20px;
left: 0px;
}
.image-block-three {
position: relative;
}
.image-block-three .image-box-one img {
-webkit-box-shadow: 0px 15px 48.75px 16.25px rgba(197, 203, 214, 0.45);
box-shadow: 0px 15px 48.75px 16.25px rgba(197, 203, 214, 0.45);
}
.image-block-three .image-box-two {
position: absolute;
left: 50px;
bottom: -117px;
}
.image-block-three .image-box-two img {
-webkit-box-shadow: -20px 20px 48.75px 16.25px rgba(197, 203, 214, 0.45);
box-shadow: -20px 20px 48.75px 16.25px rgba(197, 203, 214, 0.45);
}
.app-info-block {
position: relative;
margin-bottom: 60px;
}
.app-info-block .inner-box {
position: relative;
margin-bottom: 30px;
padding-left: 70px;
}
.app-info-block .icon-box {
position: absolute;
left: 0;
top: 2px;
width: 50px;
height: 50px;
line-height: 50px;
border-radius: 50%;
background-color: #f3f6ff;
font-size: 20px;
color: #2a2685;
text-align: center;
}
.app-info-block h5 {
font-size: 16px;
font-weight: 500;
} .app-screenshots-section {
position: relative;
padding-bottom: 110px;
}
.big-shape-11 {
height: 937px;
width: 751px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/big-shape-11.png);
}
.app-screenshots-section .big-shape-11 {
top: 20px;
left: 0px;
}
.app-screenshots-section .slide {
padding: 30px;
}
.app-screenshots-section .slide img {
width: auto;
-webkit-transform: scale(0.9);
-ms-transform: scale(0.9);
transform: scale(0.9);
-webkit-box-shadow: 0px 15px 48.75px 16.25px rgba(197, 203, 214, 0.45);
box-shadow: 0px 15px 48.75px 16.25px rgba(197, 203, 214, 0.45);
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
border-radius: 20px;
}
.app-screenshots-section .center .slide img {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
} .app-download-section {
position: relative;
margin-top: -40px;
}
.big-shape-14 {
height: 912px;
width: 1242px;
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/big-shape-14.png);
}
.app-download-section .big-shape-14 {
top: 40px;
right: 0px;
}
.app-download-section .outer-box {
position: relative;
padding: 100px 20px;
background: #fff;
-webkit-box-shadow: 0px 0px 36.5px 13.5px rgba(66, 66, 66, 0.06);
box-shadow: 0px 0px 36.5px 13.5px rgba(66, 66, 66, 0.06);
border-bottom-left-radius: 30px;
border-bottom-right-radius: 30px;
}
.app-download-section .link-btn {
text-align: center;
}
.google-play-btn {
position: relative;
border-radius: 8px;
background-color: rgb(64, 58, 180);
-webkit-box-shadow: 0px 8px 21.25px 3.75px rgba(194, 191, 255, 0.65);
box-shadow: 0px 8px 21.25px 3.75px rgba(194, 191, 255, 0.65);
color: #fff;
font-size: 22px;
font-weight: 500;
text-align: left;
padding: 15px 30px;
padding-left: 75px;
line-height: 1em;
margin: 0 10px 10px;
}
.google-play-btn i {
position: absolute;
left: 28px;
top: 19px;
font-size: 36px;
}
.google-play-btn span {
font-size: 14px;
color: rgba(255, 255, 255, 0.80);
display: block;
}
.google-play-btn:hover {
color: #fff;
background: #0eaf96;
}
.app-store-btn {
position: relative;
border-radius: 8px;
background-color: rgb(240, 70, 122);
-webkit-box-shadow: 0px 8px 21.25px 3.75px rgba(253, 188, 208, 0.65);
box-shadow: 0px 8px 21.25px 3.75px rgba(253, 188, 208, 0.65);
color: #fff;
font-size: 22px;
font-weight: 500;
text-align: left;
padding: 15px 30px;
padding-left: 75px;
line-height: 1em;
margin: 0 10px 10px;
}
.app-store-btn i {
position: absolute;
left: 28px;
top: 19px;
font-size: 36px;
}
.app-store-btn span {
font-size: 14px;
color: #fff;
display: block;
}
.app-store-btn:hover {
color: #fff;
background: #1c96f6;
} .contact-page-section{
position:relative;
padding:100px 0px 50px;
}
.contact-page-section .info-column{
position:relative;
margin-bottom:40px;
}
.contact-page-section .info-column .inner-column{
position:relative;
margin-right:-20px;
padding:50px 35px 45px;
background-color:#0daf96;
-webkit-box-shadow:0px 0px 45px rgba(0,0,0,0.20);
-ms-box-shadow:0px 0px 45px rgba(0,0,0,0.20);
box-shadow:0px 0px 45px rgba(0,0,0,0.20);
}
.contact-page-section .info-column .inner-column .title-box{
position:relative;
}
.contact-page-section .info-column .inner-column .title-box h3{
position:relative;
color:#ffffff;
font-size:32px;
font-weight:500;
line-height:1.3em;
}
.contact-page-section .info-column .inner-column .title-box .title-text{
position:relative;
font-size:16px;
font-weight:400;
line-height:1.5em;
margin-top:8px;
margin-bottom:30px;
color: #fbfbfb;
}
.contact-page-section .info-column .inner-column .social-links{
position:relative;
}
.contact-page-section .info-column .inner-column .social-links li{
position:relative;
margin-right:4px;
margin-bottom:5px;
display:inline-block;
}
.contact-page-section .info-column .inner-column .social-links li a{
position:relative;
color:#ffffff;
width:45px;
height:45px;
border-radius:2px;
display:inline-block;
text-align:center;
line-height:43px;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
border:1px solid rgba(255,255,255,0.30);
}
.contact-page-section .info-column .inner-column .social-links li a:hover{
color:#0daf96;
border-color:#ffffff;
background-color:#ffffff;
} .contact-info-list{
position:relative;
}
.contact-info-list li{
position:relative;
margin-bottom:30px;
font-size:16px;
min-height:50px;
line-height:1.8em;
padding-left:50px;
color: rgb(255, 255, 255);
}
.contact-info-list li strong{
font-weight:700;
font-size:18px;
display:block;
}
.contact-info-list li .icon{
position:absolute;
left:0px;
top:8px;
font-size: 36px;
line-height:1em;
}
.contact-page-section .form-column{
position:relative;
}
.contact-page-section .form-column .inner-column{
position:relative;
padding-left:60px;
}
.contact-page-section .form-column .inner-column .row{
margin:0px -11px;
}
.contact-page-section .form-column .inner-column .contact-form .form-group{
padding:0px 10px;
} .contact-form{
position:relative;
margin-bottom:30px;
}
.contact-form .form-group{
position:relative;
margin-bottom:22px;
}
.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="password"],
.contact-form .form-group input[type="tel"],
.contact-form .form-group input[type="email"],
.contact-form .form-group select{
position:relative;
display:block;
width:100%;
color:#a5a5a5;
line-height:26px;
padding:10px 28px;
height:60px;
font-size:14px;
border-radius:2px;
background: #ffffff;
border: 1px solid #eee;
-webkit-transition:all 300ms ease;
-o-transition:all 300ms ease;
transition:all 300ms ease;
}
.contact-form .form-group input[type="text"]:focus,
.contact-form .form-group input[type="password"]:focus,
.contact-form .form-group input[type="tel"]:focus,
.contact-form .form-group input[type="email"]:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus{
border-color:#0daf96;
}
.contact-form .form-group textarea{
position:relative;
display:block;
width:100%;
line-height:26px;
padding:10px 28px;
color:#a5a5a5;
height: 158px;
font-size:14px;
resize:none;
border-radius:2px;
background: #ffffff;
border: 1px solid #eee;
-webkit-transition:all 300ms ease;
-o-transition:all 300ms ease;
transition:all 300ms ease;
}
.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error{
border-color:#ff0000 !important;	
}
.contact-form label.error{
display:block;
line-height:24px;
padding:5px 0px 0px;
margin:0px;
text-transform:uppercase;
font-size:12px;
color:#ff0000;
font-weight:500;	
} .contact-map-section{
position: relative;
}
.contact-map-section .map-outer{
position: relative;
height: 500px;
} 
.contact-map-section .map-canvas{
position: relative;
left: 0;
top: 0;
width: 100%;
height: 500px;
}
.map-data{
text-align:center;
font-size:14px;
font-weight:400;
line-height:1.8em;
padding: 10px;
}
.map-data h6{
font-size:16px;
font-weight:700;
text-align:center;
margin-bottom:10px;
color:#121212;
} .error-section {
position: relative;
padding: 150px 0px 150px;
}
.error-section .inner-section {
position: relative;
text-align: center;
}
.error-section .inner-section h1 {
position: relative;
color: #222;
font-size: 150px;
font-weight: 700;
line-height: 1em;
}
.error-section .inner-section h2 {
position: relative;
font-size: 20px;
color: #555;
font-weight: 500;
text-transform: uppercase;
}
.error-section .inner-section .text {
position: relative;
color: #0eaf96;
font-size: 18px;
margin-top: 6px;
margin-bottom: 40px;
} .error-search-form .form-group {
position: relative;
max-width: 430px;
margin: 0 auto;
width: 100%;
}
.error-search-form .form-group input[type="text"],
.error-search-form .form-group input[type="search"] {
position: relative;
line-height: 22px;
background: none;
display: block;
font-size: 16px;
width: 100%;
height: 54px;
border: 1px solid #eeeeee;
background-color: #ffffff;
padding: 10px 50px 10px 20px;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
}
.error-search-form .form-group input:focus {
border-color: #0eaf96;
}
.error-search-form .form-group button {
position: absolute;
right: 0px;
top: 0px;
height: 54px;
width: 60px;
display: block;
font-size: 16px;
color: #ffffff;
line-height: 100%;
background: #0eaf96;
font-weight: normal;
} .portfolio-section {
position: relative;
padding: 120px 0 90px;
}
.portfolio-section .auto-container {
max-width: 1400px;
} .portfolio-block-one {
position: relative;
margin-bottom: 30px;
}
.portfolio-block-one .inner-box {
position: relative;
}
.portfolio-block-one .image {
position: relative;
margin: 0;
overflow: hidden;
}
.portfolio-block-one .image img {
width: 100%;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05);
}
.portfolio-block-one:hover .image img {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.portfolio-block-one .image::before {
background: #1e2125;
bottom: 0px;
content: "";
left: 0px;
opacity: 0;
position: absolute;
right: 0px;
top: 0px;
z-index: 9;
-webkit-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
}
.portfolio-block-one:hover .image::before {
opacity: 0.8;
}
.portfolio-block-one .overlay a {
background: rgba(255, 255, 255, 0.25) none repeat scroll 0 0;
border-radius: 50%;
color: #fff;
font-size: 20px;
height: 60px;
margin: 0 5px;
line-height: 60px;
opacity: 0;
display: inline-block;
text-align: center;
-webkit-transform: translateX(0%) translateY(-30%) scale(0.5);
-ms-transform: translateX(0%) translateY(-30%) scale(0.5);
transform: translateX(0%) translateY(-30%) scale(0.5);
-webkit-transition: all 0.4s ease 0s;
-o-transition: all 0.4s ease 0s;
transition: all 0.4s ease 0s;
width: 60px;
}
.portfolio-block-one .overlay a:hover {
background: rgba(255, 255, 255, .95) none repeat scroll 0 0;
color: #0daf96;
}
.portfolio-block-one:hover .overlay a {
opacity: 1;
-webkit-transform: translateX(0) translateY(0%) scale(1);
-ms-transform: translateX(0) translateY(0%) scale(1);
transform: translateX(0) translateY(0%) scale(1);
}
.portfolio-block-one .overlay {
left: 0;
opacity: 0;
position: absolute;
right: 0;
text-align: center;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-transition: all 0.5s ease 0s;
-o-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s;
z-index: 10;
}
.portfolio-block-one:hover .overlay {
opacity: 1;
}
.portfolio-block-one .caption-title {
bottom: 30px;
left: 30px;
opacity: 0;
position: absolute;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
z-index: 12;
}
.portfolio-block-one:hover .caption-title {
opacity: 1;
}
.portfolio-block-one .caption-title h4 {
color: #fff;
font-size: 15px;
font-weight: 600;
text-transform: capitalize;
-webkit-transform: translateY(15px);
-ms-transform: translateY(15px);
transform: translateY(15px);
-webkit-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
}
.portfolio-block-one .caption-title h4 a {
color: #fff;
}
.portfolio-block-one:hover .caption-title h4,
.portfolio-block-one:hover .caption-title span {
-webkit-transform: translateX(0px);
-ms-transform: translateX(0px);
transform: translateX(0px);
}
.portfolio-block-one .caption-title span {
color: #fff;
display: inline-block;
font-size: 15px;
line-height: 16px;
-webkit-transform: translateY(15px);
-ms-transform: translateY(15px);
transform: translateY(15px);
-webkit-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
text-transform: capitalize;
}
.portfolio-block-one .caption-title-two {
padding-top: 20px;
padding-left:  30px;
padding-bottom:  20px;
border: 1px solid #ecf0f6;
}
.portfolio-block-one .caption-title-two h4 {
}
.portfolio-block-one .caption-title-two h4 a {
color: #222;
font-size: 20px;
font-weight: 600;
text-transform: capitalize;
}
.portfolio-block-one .caption-title-two span {
font-size: 15px;
line-height: 16px;
font-weight: 500;
text-transform: capitalize;
} .portfolio-block-two {
position: relative;
padding: 0;
}
.portfolio-block-two .inner-box {
position: relative;
}
.portfolio-block-two .image img {
width: 100%;
}
.portfolio-block-two .image::before {
background: #1e2125;
bottom: 0px;
content: "";
left: 0px;
opacity: 0;
position: absolute;
right: 0px;
top: 0px;
z-index: 9;
-webkit-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
}
.portfolio-block-two:hover .image::before {
opacity: 0.8;
}
.portfolio-block-two .image {
position: relative;
margin: 0;
overflow: hidden;
}
.portfolio-block-two .image img {
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.portfolio-block-two:hover .image img {
-webkit-transform: translateX(0%) translateY(-90px) scale(1);
-ms-transform: translateX(0%) translateY(-90px) scale(1);
transform: translateX(0%) translateY(-90px) scale(1);
}
.portfolio-block-two .overlay a {
background: rgba(255, 255, 255, 0.25) none repeat scroll 0 0;
border-radius: 50%;
color: #fff;
font-size: 20px;
height: 60px;
margin: 0 5px;
line-height: 60px;
opacity: 0;
display: inline-block;
text-align: center;
-webkit-transform: translateX(0%) translateY(-30%) scale(0.5);
-ms-transform: translateX(0%) translateY(-30%) scale(0.5);
transform: translateX(0%) translateY(-30%) scale(0.5);
-webkit-transition: all 0.4s ease 0s;
-o-transition: all 0.4s ease 0s;
transition: all 0.4s ease 0s;
width: 60px;
}
.portfolio-block-two .overlay a:hover {
background: rgba(255, 255, 255, .8) none repeat scroll 0 0;
color: #000;
}
.portfolio-block-two:hover .overlay a {
opacity: 1;
-webkit-transform: translateX(0) translateY(0%) scale(1);
-ms-transform: translateX(0) translateY(0%) scale(1);
transform: translateX(0) translateY(0%) scale(1);
}
.portfolio-block-two .overlay {
left: 0;
opacity: 0;
position: absolute;
right: 0;
text-align: center;
top: 50%;
margin-top: -46.5px;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-transition: all 0.5s ease 0s;
-o-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s;
z-index: 10;
}
.portfolio-block-two:hover .overlay {
opacity: 1;
}
.portfolio-block-two .caption-title {
bottom: 0;
left: 0;
opacity: 0;
position: absolute;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
z-index: 12;
background-color: white;
width:  100%;
padding: 16px 30px 20px;
}
.portfolio-block-two:hover .caption-title {
opacity: 1;
}
.portfolio-block-two .caption-title h4 {
color: #222;
font-size: 20px;
font-weight: 600;
text-transform: capitalize;
-webkit-transform: translateY(15px);
-ms-transform: translateY(15px);
transform: translateY(15px);
-webkit-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
}
.portfolio-block-two .caption-title h4 a {
color: #222;
}
.portfolio-block-two:hover .caption-title h4,
.portfolio-block-two:hover .caption-title span {
-webkit-transform: translateX(0px);
-ms-transform: translateX(0px);
transform: translateX(0px);
}
.portfolio-block-two .caption-title span {
color: #848484;
display: inline-block;
font-size: 15px;
line-height: 16px;
-webkit-transform: translateY(15px);
-ms-transform: translateY(15px);
transform: translateY(15px);
-webkit-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
text-transform: capitalize;
} .portfolio-block-three {
position: relative;
margin-bottom: 30px;
}
.portfolio-block-three .inner-box {
position: relative;
}
.portfolio-block-three .image img {
width: 100%;
-webkit-transition:  .5s ease;
-o-transition:  .5s ease;
transition:  .5s ease;
}
.portfolio-block-three:hover .image img {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
.portfolio-block-three .image::before {
background: #1e2125;
bottom: 0px;
content: "";
left: 0px;
opacity: 0;
position: absolute;
right: 0px;
top: 0px;
z-index: 9;
-webkit-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
}
.portfolio-block-three:hover .image::before {
opacity: 0.8;
}
.portfolio-block-three .image {
position: relative;
margin: 0;
overflow:  hidden;
}
.portfolio-block-three .overlay a {
background: rgba(255, 255, 255, 0.25) none repeat scroll 0 0;
border-radius: 50%;
color: #fff;
font-size: 20px;
height: 60px;
margin: 0 5px;
line-height: 60px;
opacity: 0;
display: inline-block;
text-align: center;
-webkit-transform: translateX(0%) translateY(-30%) scale(0.5);
-ms-transform: translateX(0%) translateY(-30%) scale(0.5);
transform: translateX(0%) translateY(-30%) scale(0.5);
-webkit-transition: all 0.4s ease 0s;
-o-transition: all 0.4s ease 0s;
transition: all 0.4s ease 0s;
width: 60px;
}
.portfolio-block-three .overlay a:hover {
background: rgba(255, 255, 255, .8) none repeat scroll 0 0;
color: #000;
}
.portfolio-block-three:hover .overlay a {
opacity: 1;
-webkit-transform: translateX(0) translateY(0%) scale(1);
-ms-transform: translateX(0) translateY(0%) scale(1);
transform: translateX(0) translateY(0%) scale(1);
}
.portfolio-block-three .overlay {
left: 0;
opacity: 0;
position: absolute;
right: 0;
text-align: center;
margin-top: -40px;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-transition: all 0.5s ease 0s;
-o-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s;
z-index: 10;
}
.portfolio-block-three:hover .overlay {
opacity: 1;
}
.portfolio-block-three .caption-title {
bottom: 50%;
margin-bottom: -65px;
left: 0;
width:  100%;
text-align:  center;
opacity: 0;
position: absolute;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
z-index: 12;
}
.portfolio-block-three:hover .caption-title {
opacity: 1;
}
.portfolio-block-three .caption-title h4 {
color: #fff;
font-size: 20px;
font-weight: 600;
text-transform: capitalize;
-webkit-transform: translateY(15px);
-ms-transform: translateY(15px);
transform: translateY(15px);
-webkit-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
}
.portfolio-block-three .caption-title h4 a {
color: #fff;
}
.portfolio-block-three:hover .caption-title h4,
.portfolio-block-three:hover .caption-title span {
-webkit-transform: translateX(0px);
-ms-transform: translateX(0px);
transform: translateX(0px);
}
.portfolio-block-three .caption-title span {
color: #fff;
display: inline-block;
font-size: 15px;
line-height: 16px;
-webkit-transform: translateY(15px);
-ms-transform: translateY(15px);
transform: translateY(15px);
-webkit-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
text-transform: capitalize;
} .portfolio-block-four {
position: relative;
margin-bottom: 35px;
}
.portfolio-block-four .inner-box {
position: relative;
}
.portfolio-block-four .image {
position: relative;
overflow: hidden;
}
.portfolio-block-four .image img {
width: 100%;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.portfolio-block-four:hover .image img {
-webkit-transform: rotateX(20deg) scale(1.1);
transform: rotateX(20deg) scale(1.1);
}
.portfolio-block-four .image::before {
background: #1e2125;
bottom: 0px;
content: "";
left: 0px;
opacity: 0;
position: absolute;
right: 0px;
top: 0px;
z-index: 9;
-webkit-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
}
.portfolio-block-four:hover .image::before {
opacity: 0.8;
}
.portfolio-block-four .overlay a {
background: rgba(255, 255, 255, 0.25) none repeat scroll 0 0;
border-radius: 50%;
color: #fff;
font-size: 20px;
height: 60px;
margin: 0 5px;
line-height: 60px;
opacity: 0;
display: inline-block;
text-align: center;
-webkit-transform: translateX(0%) translateY(-30%) scale(0.5);
-ms-transform: translateX(0%) translateY(-30%) scale(0.5);
transform: translateX(0%) translateY(-30%) scale(0.5);
-webkit-transition: all 0.4s ease 0s;
-o-transition: all 0.4s ease 0s;
transition: all 0.4s ease 0s;
width: 60px;
}
.portfolio-block-four .overlay a:hover {
background: rgba(255, 255, 255, .8) none repeat scroll 0 0;
color: #000;
}
.portfolio-block-four:hover .overlay a {
opacity: 1;
-webkit-transform: translateX(0) translateY(0%) scale(1);
-ms-transform: translateX(0) translateY(0%) scale(1);
transform: translateX(0) translateY(0%) scale(1);
}
.portfolio-block-four .overlay {
left: 0;
opacity: 0;
position: absolute;
right: 0;
text-align: center;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-transition: all 0.5s ease 0s;
-o-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s;
z-index: 10;
}
.portfolio-block-four:hover .overlay {
opacity: 1;
}
.portfolio-block-four .caption-title {
bottom: 20px;
left: 20px;
width: 100%;
opacity: 0;
position: absolute;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
z-index: 12;
}
.portfolio-block-four:hover .caption-title {
opacity: 1;
}
.portfolio-block-four .caption-title h4 {
color: #fff;
font-size: 20px;
font-weight: 600;
text-transform: capitalize;
-webkit-transform: translateY(15px);
-ms-transform: translateY(15px);
transform: translateY(15px);
-webkit-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
}
.portfolio-block-four .caption-title h4 a {
color: #fff;
}
.portfolio-block-four:hover .caption-title h4,
.portfolio-block-four:hover .caption-title span {
-webkit-transform: translateX(0px);
-ms-transform: translateX(0px);
transform: translateX(0px);
}
.portfolio-block-four .caption-title span {
color: #fff;
display: inline-block;
font-size: 15px;
line-height: 16px;
-webkit-transform: translateY(15px);
-ms-transform: translateY(15px);
transform: translateY(15px);
-webkit-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
text-transform: capitalize;
}
.portfolio-block-four .read-more {
position:  absolute;
right: 50px;
bottom: 10px;
} .portfolio-block-five {
position: relative;
}
.portfolio-block-five .inner-box {
position: relative;
}
.portfolio-block-five .image {
position: relative;
overflow: hidden;
}
.portfolio-block-five .image img {
position: relative;
width: 100%;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.portfolio-block-five:hover .image img {
-webkit-transform: rotateY(20deg) scale(1.1) translate(-10px, -10px);
transform: rotateY(20deg) scale(1.1) translate(-10px, -10px);
}
.portfolio-block-five .caption-title {
bottom: 70px;
left: 75px;
position: absolute;
z-index: 12;
}
.portfolio-block-five .caption-title h4 a {
font-size: 40px;
font-weight: 700;
color: #fff;
margin-bottom: 25px;
display:  inline-block;
}
.portfolio-block-five .caption-title .text {
color: #fff;
margin-bottom: 10px;
max-width: 580px;
}
.portfolio-block-five .read-more span {
color: #fff;
} .portfolio-block-six {
position: relative;
padding: 0px;
}
.portfolio-block-six .inner-box {
position: relative;
}
.portfolio-block-six .image img {
width: 100%;
-webkit-transition:  .5s ease;
-o-transition:  .5s ease;
transition:  .5s ease;
}
.portfolio-block-six:hover .image img {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
.portfolio-block-six .image::before {
background: #1e2125;
bottom: 0px;
content: "";
left: 0px;
opacity: 0;
position: absolute;
right: 0px;
top: 0px;
z-index: 9;
-webkit-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
}
.portfolio-block-six:hover .image::before {
opacity: 0.8;
}
.portfolio-block-six .image {
position: relative;
overflow:  hidden;
}
.portfolio-block-six .overlay a {
background: rgba(255, 255, 255, 0.25) none repeat scroll 0 0;
border-radius: 50%;
color: #fff;
font-size: 20px;
height: 60px;
margin: 0 5px;
line-height: 60px;
opacity: 0;
display: inline-block;
text-align: center;
-webkit-transform: translateX(0%) translateY(-30%) scale(0.5);
-ms-transform: translateX(0%) translateY(-30%) scale(0.5);
transform: translateX(0%) translateY(-30%) scale(0.5);
-webkit-transition: all 0.4s ease 0s;
-o-transition: all 0.4s ease 0s;
transition: all 0.4s ease 0s;
width: 60px;
}
.portfolio-block-six .overlay a:hover {
background: rgba(255, 255, 255, .8) none repeat scroll 0 0;
color: #000;
}
.portfolio-block-six:hover .overlay a {
opacity: 1;
-webkit-transform: translateX(0) translateY(0%) scale(1);
-ms-transform: translateX(0) translateY(0%) scale(1);
transform: translateX(0) translateY(0%) scale(1);
}
.portfolio-block-six .overlay {
left: 0;
opacity: 0;
position: absolute;
right: 0;
text-align: center;
margin-top: -40px;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-transition: all 0.5s ease 0s;
-o-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s;
z-index: 10;
}
.portfolio-block-six:hover .overlay {
opacity: 1;
}
.portfolio-block-six .caption-title {
bottom: 50%;
margin-bottom: -65px;
left: 0;
width:  100%;
text-align:  center;
opacity: 0;
position: absolute;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
z-index: 12;
}
.portfolio-block-six:hover .caption-title {
opacity: 1;
}
.portfolio-block-six .caption-title h4 {
color: #fff;
font-size: 20px;
font-weight: 600;
text-transform: capitalize;
-webkit-transform: translateY(15px);
-ms-transform: translateY(15px);
transform: translateY(15px);
-webkit-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
}
.portfolio-block-six .caption-title h4 a {
color: #fff;
}
.portfolio-block-six:hover .caption-title h4,
.portfolio-block-six:hover .caption-title span {
-webkit-transform: translateX(0px);
-ms-transform: translateX(0px);
transform: translateX(0px);
}
.portfolio-block-six .caption-title span {
color: #fff;
display: inline-block;
font-size: 15px;
line-height: 16px;
-webkit-transform: translateY(15px);
-ms-transform: translateY(15px);
transform: translateY(15px);
-webkit-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
text-transform: capitalize;
}
.working-process .icon-box img {   }
.page_pagination_two li span.page-numbers.current{
color: #fff;
background: #403ab4;
border-color: #403ab4;
box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
width: 45px;
height: 45px;
line-height: 45px;
display: block;
border-radius: 3px;
}
.news-block-one .lower-content {  margin-bottom: 40px;
padding: 19px; margin-bottom: 40px;
background: #f4f4f4;
}
.blog-classic .post.type-post {
margin-bottom: 80px;
}
.mrside ul li{
font-size: 15px!important;
color: #222!important; 
}
.mrside ul li:hover a{
color: #403ab4!important; 
}
.mrside ul li:hover{
color: #403ab4!important; 
}
.mrside ul li a{
width: 88%;
position: relative;
font-size: 15px!important;
line-height: 36px;
color: #222!important;
font-weight: 400!important;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.tagcloud a{
position: relative;
font-size: 16px!important;
line-height: 12px;
color: #555;
font-weight: 400;
text-align: center;
overflow: hidden;
text-transform: capitalize;
border-radius: 2px;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
border-right: 2px solid #ddd;
padding-right: 10px;
margin-bottom: 13px;
position: relative;
margin-right: 10px;
margin-bottom: 10px;
}
.tagcloud a:hover{
color:#0eaf96;
}
.news-block-one .image-box .image {
margin-bottom: -10px!important;
} .arrow-btn-box {
display: inline-block;
position: relative;
}
.arrow-btn {
padding: 6px 60px 6px 0px;
background: #ffffff;
color: #686868;
-webkit-transition: .5s cubic-bezier(.86, 0, .07, 1);
-o-transition: .5s cubic-bezier(.86, 0, .07, 1);
transition: .5s cubic-bezier(.86, 0, .07, 1);
display: inline-block;
text-transform: uppercase;
font-family: 'Oswald', sans-serif;
font-size: 12px;
line-height: 1;
font-weight: 600;
letter-spacing: 3px;
}
.arrow-btn-box:hover .arrow-btn {
padding: 6px 90px 6px 0px;
letter-spacing: 5px;
}
.arrow-btn:before {
content: '';
position: absolute;
top: 50%;
right: 40px;
-webkit-transform: translateY(-50%) scaleX(0);
-ms-transform: translateY(-50%) scaleX(0);
transform: translateY(-50%) scaleX(0);
width: 30px;
height: 2px;
-webkit-transition: .5s cubic-bezier(.86, 0, .07, 1);
-o-transition: .5s cubic-bezier(.86, 0, .07, 1);
transition: .5s cubic-bezier(.86, 0, .07, 1);
-webkit-transform-origin: right;
-ms-transform-origin: right;
transform-origin: right;
background: #0eaf96;
}
.arrow-btn:after {
content: '';
position: absolute;
top: 50%;
right: 40px;
width: 7px;
height: 7px;
border-right: 2px solid #686868;
border-top: 2px solid #686868;
-webkit-transform: translateY(-50%) rotate(45deg);
-ms-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg);
-webkit-transition: .5s cubic-bezier(.86, 0, .07, 1);
-o-transition: .5s cubic-bezier(.86, 0, .07, 1);
transition: .5s cubic-bezier(.86, 0, .07, 1);
}
.arrow-btn-box:hover .arrow-btn:before {
-webkit-transform: translateY(-50%) scaleX(1);
-ms-transform: translateY(-50%) scaleX(1);
transform: translateY(-50%) scaleX(1);
}
.arrow-btn-box:hover .arrow-btn:after {
border-right: 2px solid #0eaf96;
border-top: 2px solid #0eaf96;
}
.fade-anim-box.fade-anim {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
.fade-anim-box {
display: inline-block;
opacity: 0;
-webkit-transform: translateY(30px);
-ms-transform: translateY(30px);
transform: translateY(30px);
-webkit-transition: 1s cubic-bezier(.77, 0, .175, 1);
-o-transition: 1s cubic-bezier(.77, 0, .175, 1);
transition: 1s cubic-bezier(.77, 0, .175, 1);
}
.tr-delay05, .tr-delay05:before, .tr-delay05:after {
-webkit-transition-delay: .5s !important;
-o-transition-delay: .5s !important;
transition-delay: .5s !important;
}
.animated {
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.arrow-btn-box {
display: inline-block;
position: relative;
}
code {
font-size: 87.5%;
color: #0eaf96;
word-break: break-word;
}
.blog-single .image-box .image {
margin-bottom: 0px!important;
}
.paginate-links>a>span{
width: 45px;
height: 45px;
line-height: 45px;
display: block;
border-radius: 3px;
border: 1px solid #ddd;
text-align: center;
color: #222;
font-size: 16px;
font-weight: 500;
transition: .5s ease; 
margin: 0 4px;
}
.paginate-links>a>span:hover{
color: #fff;
background: #403ab4;
border-color: #403ab4;
box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
width: 45px;
height: 45px;
line-height: 45px;
border-radius: 3px;
display: inline-block;
margin: 0 4px;
text-align: center;
}
.paginate-links>span {
color: #fff;
background: #403ab4;
border-color: #403ab4;
box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
width: 45px;
height: 45px;
line-height: 45px;
border-radius: 3px;
display: inline-block;
margin: 0 4px;
text-align: center;
}
.reply-btn a {
position: absolute;
color: #222;
font-size: 16px;
font-weight: 600;
right: 0;
top: 0px;
transition: .5s ease;
}
.reply-btn a:hover {
color: #f13729;
}
#respond .group-title {
margin-bottom: 0px!important;
}
.aaa .arrow-btn {
padding: 25px 60px 25px 40px;
background: #0eaf96;
color: white;
-webkit-transition: .5s cubic-bezier(.86, 0, .07, 1);
-o-transition: .5s cubic-bezier(.86, 0, .07, 1);
transition: .5s cubic-bezier(.86, 0, .07, 1);
display: inline-block;
text-transform: uppercase;
font-family: 'Oswald', sans-serif;
font-size: 12px;
line-height: 1;
font-weight: 500;
letter-spacing: 3px;
}
.aaa .arrow-btn-box:hover .arrow-btn {
padding: 25px 90px 25px 40px;
background: #403ab4;
letter-spacing:4px;
}
.aaa .arrow-btn:after {
content: '';
position: absolute;
top: 50%;
right: 40px;
width: 7px;
height: 7px;
border-right: 2px solid #ffffff;
border-top: 2px solid #ffffff;
-webkit-transform: translateY(-50%) rotate(45deg);
-ms-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg);
-webkit-transition: .5s cubic-bezier(.86, 0, .07, 1);
-o-transition: .5s cubic-bezier(.86, 0, .07, 1);
transition: .5s cubic-bezier(.86, 0, .07, 1);
}
.aaa .arrow-btn:before {
content: '';
position: absolute;
top: 50%;
right: 40px;
-webkit-transform: translateY(-50%) scaleX(0);
-ms-transform: translateY(-50%) scaleX(0);
transform: translateY(-50%) scaleX(0);
width: 30px;
height: 2px;
-webkit-transition: .5s cubic-bezier(.86, 0, .07, 1);
-o-transition: .5s cubic-bezier(.86, 0, .07, 1);
transition: .5s cubic-bezier(.86, 0, .07, 1);
-webkit-transform-origin: right;
-ms-transform-origin: right;
transform-origin: right;
background: #ffffff;
}
.aaa .arrow-btn-box:hover .arrow-btn:after {
border-right: 2px solid #ffffff;
border-top: 2px solid #ffffff;
} .scroll-btn {
position: absolute;
left: 75%;
bottom: 137px;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
height: 23px; z-index: 3;
}
.scroll-btn-flip-box {
overflow: hidden;
display: inline-block;
-webkit-transition: 1s cubic-bezier(.86, 0, .07, 1);
-o-transition: 1s cubic-bezier(.86, 0, .07, 1);
transition: 1s cubic-bezier(.86, 0, .07, 1);
-webkit-transform: translateY(-15px);
-ms-transform: translateY(-15px);
transform: translateY(-15px);
}
body.anim .scroll-btn-flip-box {
-webkit-transition-delay: .2s;
-o-transition-delay: .2s;
transition-delay: .2s;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
.scroll-btn-flip {
position: relative;
color: transparent;
display: block;
font-family: 'Oswald', sans-serif;
font-size: 12px;
line-height: 1;
text-transform: uppercase;
font-weight: 400;
letter-spacing: 3px;
margin-right: -3px;
animation: pulse 1s infinite;    
padding: 1px;
}
.scroll-btn-flip:before,
.scroll-btn-flip:after {
color: white;
content: attr(data-text);
display: block;
position: absolute;
top: 50%;
left: 0;
width: 100%;
-webkit-transition: .5s cubic-bezier(.86, 0, .07, 1);
-o-transition: .5s cubic-bezier(.86, 0, .07, 1);
transition: .5s cubic-bezier(.86, 0, .07, 1);
}
.scroll-btn-flip:before {
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.scroll-btn-flip:after {
-webkit-transform: translateY(-170%);
-ms-transform: translateY(-170%);
transform: translateY(-170%);
color: #ef0d33;
}
.scroll-btn:hover .scroll-btn-flip:before {
-webkit-transform: translateY(52%);
-ms-transform: translateY(52%);
transform: translateY(52%);
}
.scroll-btn:hover .scroll-btn-flip:after {
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.scroll-arrow-box {
position: absolute;
left: 50%;
bottom: 0;
width: 20px;
height: 30px;
-webkit-transform: translateX(-50%) translateY(30px);
-ms-transform: translateX(-50%) translateY(30px);
transform: translateX(-50%) translateY(30px);
-webkit-transition: 1s cubic-bezier(.165, .84, .44, 1);
-o-transition: 1s cubic-bezier(.165, .84, .44, 1);
transition: 1s cubic-bezier(.165, .84, .44, 1);
}
body.anim .scroll-arrow-box {
-webkit-transform: translateX(-50%) translateY(0);
-ms-transform: translateX(-50%) translateY(0);
transform: translateX(-50%) translateY(0);
-webkit-transition-delay: .7s;
-o-transition-delay: .7s;
transition-delay: .7s;
}
.scroll-arrow {
position: absolute;
left: 0;
top: 0;
-webkit-transform: translateY(-15px);
-ms-transform: translateY(-15px);
transform: translateY(-15px);
width: 100%;
height: 100%;
-webkit-transition: 1s cubic-bezier(.23, 1, .32, 1);
-o-transition: 1s cubic-bezier(.23, 1, .32, 1);
transition: 1s cubic-bezier(.23, 1, .32, 1);
}
.scroll-btn:hover .scroll-arrow {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
.scroll-arrow:before {
content: '';
width: 14px;
height: 14px;
border-right: 2px solid white;
border-bottom: 2px solid white;
position: absolute;
bottom: 2px;
left: 2px;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transition: .6s cubic-bezier(.23, 1, .32, 1);
-o-transition: .6s cubic-bezier(.23, 1, .32, 1);
transition: .6s cubic-bezier(.23, 1, .32, 1);
}
.scroll-btn:hover .scroll-arrow:before{
border-right: 2px solid #ef0d33;
border-bottom: 2px solid #ef0d33;
}
.scroll-arrow:after {
content: '';
width: 2px;
height: 100%;
background: #ef0d33;
position: absolute;
bottom: 0;
left: 50%;
-webkit-transform: translateX(-50%) scaleY(0);
-ms-transform: translateX(-50%) scaleY(0);
transform: translateX(-50%) scaleY(0);
-webkit-transform-origin: bottom;
-ms-transform-origin: bottom;
transform-origin: bottom;
-webkit-transition: 1s cubic-bezier(.23, 1, .32, 1);
-o-transition: 1s cubic-bezier(.23, 1, .32, 1);
transition: 1s cubic-bezier(.23, 1, .32, 1);
}
.scroll-btn:hover .scroll-arrow:after {
-webkit-transform: translateX(-50%) scaleY(1);
-ms-transform: translateX(-50%) scaleY(1);
transform: translateX(-50%) scaleY(1);
}
@media only screen and (max-width: 999px) {
.scroll-btn {
left: 50%;
}
}
@media only screen and (min-width: 1000px) {
.red-bg .scroll-btn-flip:after {
color: #262626;
}
.red-bg .scroll-btn:hover .scroll-arrow:before{
border-right: 2px solid #262626;
border-bottom: 2px solid #262626;
}
.red-bg .scroll-arrow:after {
background: #262626;
}
}
.scroll-arrow:before {
content: '';
width: 14px;
height: 14px;
border-right: 2px solid white;
border-bottom: 2px solid white;
position: absolute;
bottom: 2px;
left: 2px;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transition: .6s cubic-bezier(.23, 1, .32, 1);
-o-transition: .6s cubic-bezier(.23, 1, .32, 1);
transition: .6s cubic-bezier(.23, 1, .32, 1);
}
.scroll-arrow:after {
content: '';
width: 2px;
height: 100%;
background: #ef0d33;
position: absolute;
bottom: 0;
left: 50%;
-webkit-transform: translateX(-50%) scaleY(0);
-ms-transform: translateX(-50%) scaleY(0);
transform: translateX(-50%) scaleY(0);
-webkit-transform-origin: bottom;
-ms-transform-origin: bottom;
transform-origin: bottom;
-webkit-transition: 1s cubic-bezier(.23, 1, .32, 1);
-o-transition: 1s cubic-bezier(.23, 1, .32, 1);
transition: 1s cubic-bezier(.23, 1, .32, 1);
}
.tag-sticky-2 .lower-content,.sticky .lower-content{
padding: 19px;
border: 2px solid #0eaf96;
margin-bottom: 40px;
}
.blogpage{
padding: 19px;
border: 2px solid #e6e6e6;
margin-bottom: 40px;
}
.error-section {
background-image: none!important;
}
.aaa .arrow-btn {
box-shadow: 0px 11px 21.25px 3.75px rgba(167, 238, 227, 0.65);
}
.aaa .arrow-btn-box:hover .arrow-btn {
box-shadow: 0px 11px 21.25px 3.75px rgba(64, 58, 180, 0.47);
}
.banner-section-two .scroll-btn {
top: 93%;
}
.banner-section-two .scroll-btn-flip:before {
color: #0eaf96;
}
.banner-section-two .scroll-arrow:before {
border-right: 2px solid #0eaf96;
border-bottom: 2px solid #0eaf96;
}
.shape-eight1 {
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/11.png);
position: absolute;
content: "";
background-repeat: no-repeat; width: 60px;
height: 60px; z-index: 999;
position: absolute;
bottom: 3%;
left: 38%;
animation: animationFramesFour 20s alternate infinite linear;
}
.shape-eight2 {
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/15.png);
position: absolute;
content: "";
background-repeat: no-repeat; width:60px;
height:60px; z-index: 999;
position: absolute;
bottom: 30%;
left: 10%;
animation: animationFramesFour 20s alternate infinite linear;
}
.shape-nine1 {
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/10.png);
position: absolute;
content: "";
background-repeat: no-repeat; width: 50px;
height: 50px; z-index: 999;
position: absolute;
bottom: 4%;
right: 30%;
animation: animationFramesOne 17s infinite linear;
}
.shape-nine2 {
background-image: url(//aq-technologies.com/wp-content/themes/saasweb/images/icons/14.png);
position: absolute;
content: "";
background-repeat: no-repeat; width: 50px;
height: 50px; z-index: 999;
position: absolute;
bottom: 80%;
right: 38%;
animation: animationFramesOne 17s infinite linear;
}
footer{
clear:both!important;    
background-image: none;
}
.xyxx {
margin-top: 40px;
clear: both;
}
.twitter_feed li:before {
content: "\f099";
font-family: FontAwesome;
color: #4bcaff;
width: 50px;
font-family: 'Font Awesome 5 Brands';
}
.twitter_feed li p{
margin-left: 25px;
margin-top: -29px;}
.twitter_ago{color:white}
.instagram-posts-widget img {
width: 100px;   }
#saasweb_recentnews1-3 {
clear: both;
margin-bottom: 40px;
}
#saasweb_recentnews1-3 .date {
position: relative;
display: block;
font-size: 12px;
line-height: 15px;
font-weight: 400;
margin-left: 111px;
margin-bottom: 10px;    
color:#626262;
}
#saasweb_recentnews1-3 .news-item h4 {
margin-left: 111px;
position: relative;
font-size: 15px;
line-height: 22px;
color: #222;
font-weight: 600;
margin-bottom: 10px;
}
#saasweb_recentnews1-3 h4 a {
color: #222;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
#saasweb_recentnews1-3 .news-item {
position: relative;
padding-bottom: 20px;
position: relative;
margin-bottom: 15px; min-height: 94px;
border-bottom: 1px solid #e5e5e5;
margin-bottom: 30px;
}
#saasweb_recentnews1-3 .news-item .inner-box {
position: relative;
}
#saasweb_recentnews1-3 .news-item .inner-box .image {
position: absolute;
left: 0;
top: 0;
}
#saasweb_recentnews1-3 .news-item .inner-box .image a {}
#saasweb_recentnews1-3 .news-item .inner-box .image a img {
width: 90px;
height: 70px;
}
#saasweb_recentnews1-3 .news-item:last-child {
padding-bottom: 0px;
}
#saasweb_gallery-2 {}
#saasweb_gallery-2 .image {
display: inline-block;
margin-left: 5px; width: 29%;
}
#saasweb_gallery-2 .image a {}
#saasweb_gallery-2 .image a img {
width: 100%;
}
#categories-2 {
margin-bottom: 40px;
}
#tag_cloud-2 .tagcloud { }
#text-11 {
overflow: hidden;
}
#text-11 .xyxx {
margin-top: 0px;
}
#text-4 {
left: 70px;
}
#text-3 .about-widget .text {
margin-right: -40px;
}
#text-5 {
left: 30px;
}
.twitter_feed li p{
margin-left: 25px;
margin-top: -25px;}
.twitter_ago{color:white}
.instagram-posts-widget img {    }
#saasweb_twitter-2  ul li:before {
font-family: 'Font Awesome 5 Brands';
font-size: 15px;
top: 8px;
left: 0;
position: relative;
}
#saasweb_twitter-2  a:before {
display: none;
}
#saasweb_twitter-2  ul li {
padding-bottom: 0px;
margin-bottom: 0px;
}
#saasweb_twitter-2  ul li a {
padding: 0px 0px;
}
.scroll-btn{
display: none;
}
.about-block-one .text p {
color: #fff;
}
.main-header .header-upper .logo-box .logo img{
width: 178px;
}
.features-section-three .anim-icons{
display:none;
}
footer .about-widget .copy-right-text {
color: #0eaf96;
font-weight: 500;
font-size: 16px;
}
footer .footer-bottom .copyright-text{
font-size: 16px;
}
footer .footer-bottom .copyright-text a{
margin-left: 5px;
}
.widget_categories ul li.cat-item a:before {
position: absolute;
content: '';
height: 6px;
width: 6px;
background: #d4d4d4;
left: 0;
top: 15px;
transition: .5s ease;
transform: skew(0deg);
}
.widget_categories ul li.cat-item a{
padding-left:20px;
}
#add-comment-form .adminclass a {
color: #555;
}
#respond .group-title h2 {
font-size: 36px;
}
.btn-style-thirteen:after {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-image: -ms-linear-gradient(left, #C21837 0%, #ED2C4F 100%);
background-image: -moz-linear-gradient(left, #C21837 0%, #ED2C4F 100%);
background-image: -o-linear-gradient(left, #C21837 0%, #ED2C4F 100%);
background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #403ab4), color-stop(100, #0eaf96));
background-image: -webkit-linear-gradient(left, #403ab4 0%, #0eaf96 100%);
background-image: linear-gradient(to right, #403ab4 0%, #0eaf96 100%);
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-webkit-transform: scaleX(0);
-ms-transform: scaleX(0);
transform: scaleX(0);
-webkit-transform-origin: right;
-ms-transform-origin: right;
transform-origin: right;
}  .btn-style-thirteen {
display: inline-block;
vertical-align: middle;
-webkit-transform: translateZ(0);
transform: translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-moz-osx-font-smoothing: grayscale;
position: relative;
background: #e1e1e1;
-webkit-transition-property: color;
transition-property: color;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
}
.btn-style-thirteen:before {
content: "";
position: absolute;
z-index: -1;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-image: -webkit-linear-gradient( 0deg, rgb(152,0,203) 20%, rgb(81,47,183) 100%);
border-radius: 25px;
-webkit-transform: scaleY(0);
transform: scaleY(0);
-webkit-transform-origin: 50%;
transform-origin: 50%;
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.btn-style-thirteen:hover, .btn-style-thirteen:focus, .btn-style-thirteen:active {
color: white;
transition: all 1500ms ease;
}
.btn-style-thirteen:hover:before, .btn-style-thirteen:focus:before, .btn-style-thirteen:active:before {
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
.btn-style-thirteen .btn-title {
position: relative;
display: block;
z-index: 1;
font-size: 12px;
font-weight: 600;
}
.btn-style-thirteen .icon {
margin-right: 0px;
margin-left: 10px;
}
#respond .group-title h2 {
font-size: 36px;
}
#text-12 .single-sidebar.subscribe-form-box{
position: relative;
display: block;  
margin-top: 50px;
}
#text-12 .sidebar-subscribe-form {
position: relative;
display: block;
overflow: hidden;
max-width: 370px;
width: 100%;
background: #000364;
padding: 50px 30px 50px;
z-index: 1;
}
#text-12 .sidebar-subscribe-form .icon{
position: relative;
display: block;
padding-bottom: 22px;
}
#text-12 .sidebar-subscribe-form .icon span:before{
color: #3398fd;
font-size: 80px;
line-height: 80px;
}
#text-12 .sidebar-subscribe-form h3{
color: #f3f7fa;
font-size: 20px;
line-height: 26px;
margin: 0 0 24px;
}
#text-12 .sidebar-subscribe-form form {
position: relative;
display: block;
overflow: hidden;
width: 100%;
}
#text-12 .sidebar-subscribe-form form .input-field{
position: relative;
display: block;
}
#text-12 .sidebar-subscribe-form form .input-field input[type=email] {
position: relative;
display: block;
background: #2a3e72;
border: 1px solid #31426c;
color: #f3f7fa;
font-size: 16px;
font-weight: 400;
width: 100%;
height: 60px;
padding-left: 20px;
padding-right: 60px;
border-radius: 30px;
transition: all 500ms ease 0s;
}
#text-12 .sidebar-subscribe-form form .input-field input::-webkit-input-placeholder {
color: #ffffff;
}
#text-12 .sidebar-subscribe-form form .input-field input:-moz-placeholder {
color: #ffffff;
}
#text-12 .sidebar-subscribe-form form .input-field input::-moz-placeholder {
color: #ffffff;
}
#text-12 .sidebar-subscribe-form form .input-field input:-ms-input-placeholder {
color: #ffffff;
}
#text-12 .sidebar-subscribe-form form button {
position: absolute;
top: 5px;
right: 5px;
bottom: 5px;
width: 50px;
height: 50px;
border-radius: 50%;
background: #0daf96;
color: #ffffff;
font-size: 14px;
line-height: 52px;
font-weight: 700;
text-transform: uppercase;
text-align: center;
border: 0px solid #f2f2f2;
transition: all 500ms ease 0s;
font-family: 'Roboto', sans-serif;
}
#text-12 .sidebar-subscribe-form form .input-field input[type=email]:focus {
border: 1px solid #f3f7fa;
}
#text-12 .sidebar-subscribe-form form .input-field input[type=email]:focus + button, #text-12 .sidebar-subscribe-form form button:hover {
background: #ffffff;
color: #0daf96;
transform: rotate(360deg);
}
.news-block-one .lower-content {
padding: 25px; margin-bottom: 40px;
background: #f4f4f4;
background-color: white;
-webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.06);
box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.06);
padding: 30px 47px 42px 50px;
position: relative;
}
.news-block-one .info {
position: relative;
display: block;
margin-bottom: 15px;
border-bottom: 1px solid #d9d9d9;
padding-bottom: 15px;
}
.news-block-one .info:after {
content: "";
height: 2px;
width: 20px;
background-color: #403ab4;
position: absolute;
top: 31%;
left: 0;
transform: translateY(-50%);
}
.news-block-one .info {
padding-left: 30px;
}
.news-block-one .info .icon.flaticon-calendar {
position: absolute;
left: 0;
top: 0px;
font-size: 13px;
color: #535353;
font-weight: 400;
}
.news-block-one .info li {
position: relative;
display: inline-block;
font-size: 14px;
line-height: 28px;
color: #8d8d8d;
font-weight: 500;
padding-left: 25px;
margin-right: 8px;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
text-transform: capitalize;
padding-right: 15px;
display: inline-block;
border-right: 1px solid #9b9b9b;
line-height: 1.3em;
}
.news-block-one .info .icon {
position: absolute;
left: 0;
top: -1px;
font-size: 18px;
color: #535353;
font-weight: 600;
}
.news-block-one .info li:last-child {
margin-right: 0px;
padding-right: 0px;
border: none;
}
.news-block-one .info .icon {
color: #535353;
}
.news-block-one h3.blog_title {
position: relative;
font-size: 26px;
line-height: 40px;
font-weight: 600;
margin-bottom: 10px;    
color: #222;
}
.news-block-one h3.blog_title a{   
color: #222;
}
.page-title .bread-crumb li {
position: relative;
display: inline-block;
line-height: 30px;
margin-left: 20px;
color: #0eaf96;
font-size: 15px;
text-transform: capitalize;
font-weight: 600;
}
.page-title .bread-crumb li:before {
color: #fff;
}
.page-breadcrumb {
padding-top: 30px;
}
#saasweb_recentnews1-3{
position: relative;
padding: 35px 40px 20px;
border: 1px solid #eaeaea;
border-radius: 10px;
}
#saasweb_recentnews1-3 .news-item:last-child {
padding-bottom: 0px;
margin-bottom: 0px;
border-bottom: none;
}
#categories-2 {
margin-bottom: 40px;
position: relative;
padding: 35px 40px 40px;
border: 1px solid #eaeaea;
border-radius: 10px;
}
#tag_cloud-2 {  margin-bottom: 40px;
position: relative;
padding: 35px 40px 10px;
border: 1px solid #eaeaea;
border-radius: 10px;
}
#saasweb_gallery-2 {
margin-bottom: 40px;
position: relative;
padding: 35px 40px 10px;
border: 1px solid #eaeaea;
border-radius: 10px;
}
.social-icon-one li a {
position: relative;
color: #666;
font-size: 16px;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
transition: all 300ms ease;
color: #848484;
width: 45px;
height: 45px;
line-height: 45px;
text-align: center;
border-radius: 50%;
border: 2px solid #f0f0f0;
}
.main-footer .phone i {
position: relative;
display: inline-block;
font-size: 25px;
line-height: 35px;
color: #c8c9cc;
margin-right: 20px;
}
.main-footer  .phone a {
position: relative;
display: inline-block;
font-size: 28px;
line-height: 35px;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
color: #4640c6;
}
.search-box .form-group input[type="submit"], .search-box .form-group button {
line-height: 80px;
} .btn-style-thirteen {
position: relative;
padding: 6px 18px 5px;
line-height: 24px;
color: #ffffff;
font-size: 15px;
font-weight: 700;
border-radius: 2px;
text-transform: uppercase;
}
.btn-style-thirteen .icon {
margin-right: 0px;
margin-left: 10px;
}
.btn-style-thirteen:hover{
color:#ffffff;
}
.btn-style-thirteen:before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-image: -ms-linear-gradient(left, #ED2C4F 0%, #c21837 100%);
background-image: -moz-linear-gradient(left, #ED2C4F 0%, #c21837 100%);
background-image: -o-linear-gradient(left, #ED2C4F 0%, #c21837 100%);
background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #403ab4), color-stop(100, #0eaf96));
background-image: -webkit-linear-gradient(left, #403ab4 0%, #0eaf96 100%);
background-image: linear-gradient(to right, #403ab4 0%, #0eaf96 100%);
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-webkit-transform: scaleX(1);
-ms-transform: scaleX(1);
transform: scaleX(1);
-webkit-transform-origin: left;
-ms-transform-origin: left;
transform-origin: left;    
border-radius: 0px!important;
}
.btn-style-thirteen:after {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-image: -ms-linear-gradient(left, #C21837 0%, #ED2C4F 100%);
background-image: -moz-linear-gradient(left, #C21837 0%, #ED2C4F 100%);
background-image: -o-linear-gradient(left, #C21837 0%, #ED2C4F 100%);
background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #403ab4), color-stop(100, #0eaf96));
background-image: -webkit-linear-gradient(left, #403ab4 0%, #0eaf96 100%);
background-image: linear-gradient(to right, #403ab4 0%, #0eaf96 100%);
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-webkit-transform: scaleX(0);
-ms-transform: scaleX(0);
transform: scaleX(0);
-webkit-transform-origin: right;
-ms-transform-origin: right;
transform-origin: right;
}
.btn-style-thirteen:hover:before{
-webkit-transform:scaleX(0);
-ms-transform:scaleX(0);
transform:scaleX(0);
}
.btn-style-thirteen:hover:after{
-webkit-transform:scaleX(1);
-ms-transform:scaleX(1);
transform:scaleX(1);
}
.btn-style-thirteen .btn-title {
position: relative;
display: block;
z-index: 1;
font-size: 12px;
font-weight: 600;
}
.mrfooter ul.social-icon-one li {
display: inline-block;
}
.sec-title.centered {
text-align: center;
position: relative;
display: block;
font-size: 42px;
line-height: 1.3em;
color: #3d415b;
font-weight: 700;
}
a.theme-btn.btn-style-fourteen {
position: relative;
display: inline-block;
line-height: 30px;
color: #3d415b;
padding: 13px 42px;
font-weight: 700;
overflow: hidden;
background: #eaf1fb;
font-size: 14px;
border: 2px solid #eaf1fb;
text-transform: capitalize;
border-radius: 50px;
font-family: 'Quicksand', sans-serif;
}
a.theme-btn.btn-style-fourteen:hover {
color: #ffffff;
border-color: #7362ff;
background: #7362ff;
}
.fullwidth.portfolio-section .auto-container {
max-width: 1900px!important;
}
footer .instagram-posts-widget img {
height: 101px;
float: left!important;
margin: 2px;
display: inline-block!important;
}
footer .instagram-posts-widget figure {
max-width: 100%;
display: block;
float: left;    margin: 3px;
}
.fullwidth.gallery-section .auto-container {
max-width: 1900px!important;
}
.fullwidth.gallery-section .outer-box{
max-width: 1900px!important;
}
.dark .filter-tabs li span {
color: #ffffff!important;
}
.dark .filter-tabs li:hover span,.dark .filter-tabs li.active span {
color: #000000;
background: #5c5c5c;
border-color: #0a0a0a;
}
.dark.gallery-section .filters li{
color: #fff!important;
}
.projects-block-one .caption-title-two {
background: #fff;
}
.banner-section-two_ex {
position: relative;
padding-top: 200px;
padding-bottom: 0px;
background-size: cover;
}
.banner-section-two_ex .image-2 img{
margin-top: -120px;
}
.fluid-section-two .pattern-layer {
animation: none!important;
}
.sec-title.centered h2{	
color: #3d415b;
font-size: 42px;
font-weight: 700;
}
.sm-cta-section .inner-box .btn-box a {
animation: none!important;
}
.secdark .banner-section-five {
background-color: #000!important;
}
.darkfooter.main-footer{
background: #000000!important;
border-top: 2px solid #242424;
}
.darkfooter.main-footer:before {
content: none;
}
.darkpricing{
background: #000!important;
}
.darkpricing .pricing-table {
background: #000!important;
}
.darkbread {
background: black;
-webkit-box-shadow: 0px 3px 5px 2px #000000;
box-shadow: 0px 3px 5px 2px #1a1a1a;
padding: 200px 0px 120px;
}
.darkhader .header-upper {
position: relative;
background: black;
-webkit-box-shadow: 0px 3px 5px 2px #ededed;
box-shadow: 0px 3px 5px 2px #1e1e1e;
}
.darkhader  .navigation > li > a {
color: #fff;
}
.breadstyle_two:before {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: rgba(0, 0, 0, 0.75) none repeat scroll 0 0;
content: ""; }
.breadstyle_two {
padding: 214px 0px 180px!important;
background-attachment: fixed;
}
.beadone{
background-image:none!important;
}
.bread_four .banner-section-two{
padding:0px;
}
.breadstyle_five:before {
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/images/page-title.jpg);
width: 100%;
height: 100%;
left: 0px;
top: 0px;
background-size: cover;
background-repeat: no-repeat;
}
.breadstyle_five{
position: relative;
padding: 150px 0px 100px!important;
background-color: #ffffff;
text-align: center;
overflow: hidden;
margin-top: 80px!important;
}
.breadstyle_five h1 {
color: #403ab4!important;
}
.breadstyle_five li a {
color: #2e2e2e!important;
}
.breadstyle_five li:before {
color: #161616!important;
}
.footer_two .copyright-text{
float:right!important;    
padding-bottom: 40px!important; 
} .footer_four{
position:relative;
padding:165px 0px 145px;
background-repeat:no-repeat;
background-position:center bottom;
background-size:cover;
}
.footer_four:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
background-color:rgba(37,41,50,0.95);
}
.footer_four .logo-box{
position:relative;
text-align:center;
margin-bottom:50px;
}
.footer_four .widgets-section{
position:relative;
padding-top:50px;
text-align:center;
border-top:1px solid rgba(255,255,255,0.10);
width:100%!important;
}
.footer_four .widgets-section .info-list{
position:relative;
}
.footer_four .widgets-section .info-list li{
position:relative;
color:#ffffff;
font-size:15px;
margin-bottom:4px;
}
.footer_four .widgets-section .copyright{
position:relative;
color:#ffffff;
font-size:15px;
margin-bottom:4px;
}
.footer_four .widgets-section .location{
position:relative;
color:#ffffff;
font-size:15px;
margin-bottom:8px;
} .footer-style-two {
position: relative;
text-align: center;
padding: 130px 0px 130px;
background: #403ab4;
}
.footer-style-two .social-icon-two li{
margin:0px 10px;
}
.footer-style-two .social-icon-two li a:hover{
color:#00024f;
}
.footer-style-two .footer-nav{
position:relative;
margin-top:60px;
}
.footer-style-two .footer-nav li{
position:relative;
line-height:1em;
padding:0px 20px;
margin-bottom:10px;
display:inline-block;
border-right:1px solid #eeeef3;
}
.footer-style-two .footer-nav li.active a,
.footer-style-two .footer-nav li:hover a{
color:#feb322;
}
.footer-style-two .footer-nav li:last-child{
border-right:0px;
}
.footer-style-two .footer-nav li a{
position:relative;
color:#ffffff;
font-size:14px;
font-weight:700;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
}
.footer-style-two .footer-nav li a:hover{
color:#feb322;
}
.footer-style-two .scroll-box{
position:relative;
width:360px;
margin:0 auto;
margin-top:60px;
}
.footer-style-two .scroll-box:before{
position:absolute;
content:'';
left:0px;
top:8px;
width:100%;
height:2px;
background-color:rgba(255,255,255,0.10);
}
.footer-style-two .scroll-box .arrow{
position:relative;
color:#feb322;
font-size:18px;
z-index:1;
cursor:pointer;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
}
.footer-style-two .scroll-box .arrow:hover{
color:#00024f;
}
.footer-style-two .scroll-box .arrow:hover::after{
background-color:#feb322;
}
.footer-style-two .scroll-box .arrow:after{
position:absolute;
content:'';
left:-9px;
top:-7px;
width:30px;
height:30px;
z-index:-1;
-webkit-transform:rotate(45deg);
-ms-transform:rotate(45deg);
-o-transform:rotate(45deg);
transform:rotate(45deg);
background-color:#ffffff;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
}
.footer-style-two .copyright{
position:relative;
color:#feb322;
font-size:14px;
font-weight:700;
margin-top:45px;
}
.footer-style-two  p{
color: #fff;
}
.header_for_ex .header-upper {
position: relative;
background: #ffffff00!important;
-webkit-box-shadow: 0px 3px 5px 2px #ededed;
box-shadow: 0px 3px 5px 2px #ededed;
}
.darkfooter.main-footer .footer-bottom {
padding-bottom: 60px!important;
}
.darkfooter p {
font-size: 15px;
color: #fff;
margin-bottom: 20px;
}
.darkfooter .widget-title {
color: #ffffff;
}
.banner-section-five .content-box .theme-btn{
z-index: 1;
}
.banner-section-five .content-box .theme-btn:before{
position: absolute;
content: '';
background: #ffffff;
border-radius: 3px;
width: 0%;
height: 100%;
left: 0px;
top: 0px;
z-index: -1;
transition: all 500ms ease;
}
.banner-section-five .content-box .theme-btn:hover:before{
width: 100%;
}
.banner-section-five .content-box .theme-btn:hover {
color: #f0467a;
}
#saasweb_recentnews1-4 {
margin-bottom: 50px;
}
#saasweb_gallery-4 {
margin-top: 50px;
}
#saasweb_gallery-4 figure.image {
display: inline-block;
margin: 0px 6px 10px 0px;
}
#saasweb_gallery-4 figure.image img{}
#saasweb_twitter-5 {
margin-top: 50px;
}
.pricing-section.style-three .pricing-tabs .tabs-content .tab .price-block:nth-child(2) {
margin-top: 0px;
-webkit-transform: translateY(-35px);
-ms-transform: translateY(-35px);
transform: translateY(-35px);
}
.pricing-section.style-three .sec-title {
margin-bottom: 110px;
}
.pricing-section .pattern-layer {
position: absolute;
left: 150px;
bottom: -30px;
width: 100%;
height: 100%;
background-repeat: no-repeat;
background-position: right bottom;
background-size: 100%;
z-index: -1;
}
.faq-fluid-section .accordion-box .block .content {
margin-bottom: 0;
}
.faq-fluid-section .accordion-box .block .acc-content.current {
padding: 0px 0px;
}
.faq-fluid-section .accordion-box .block .acc-content {
padding-left: 0;
padding-right: 0;
}
.screenshot-section_ix .owl-nav-style-one .owl-nav .owl-next, .screenshot-section_ix .owl-nav-style-one .owl-nav .owl-prev {
border: 0px;
width: 50px!important;
color: #ccc;
}
.main-menu .navigation > li > ul > li.newhome:before {
content: 'New*';
z-index: 111;
font-weight: 600;
font-size: 12px;
color: red;
left: 210px;
position: absolute;
top: 0px;
}
ul li.mega-menu>ul.submenu{
background-color: #fff !important;
padding: 25px 0!important;
width: 600px !important;
}
ul li.mega-menu>ul.submenu>li {
display: block;
float: left;
margin: 0 5px;
width: 230px;
border: none;
}
ul li.mega-menu ul.submenu li {
background-color: inherit;
padding: 0 35px;
border-top: none!important;
border-left: 1px solid #c9c9c9;
padding-right: 60px;
margin-right: 20px;
}
ul li.mega-menu ul.submenu li:nth-child(odd){
border-left: none!important;
}
.sm-banner-section-two.style-four .image-box {
margin: -110px 0 -40px 0px!important;
}
.sm-subscribe-section .inner-content .form-group {
margin-right: 5px!important;
}
.dark1 .sec-title.centered h2 {
color: #ffffff!important;
}
.dark1 .service-block-five .inner-box {
background: #ffffff!important;
}
.dark1  .sm-work-section .content-box h1 {
color: #fff!important;
}
.dark1 .sm-work-section .content-box .text{
color: #fff!important;
}
.dark1 .sm-work-section .content-box .list li {
color: #fff!important;
}
.dark1 .sec-title h1 {
color: #ffffff!important;
}
.darkpricing .pricing-table {
background: #fff!important;
}
.counter-block-two .inner-box{
transform: translate(0px) !important;
}.kc_row .kc_col-sm-12{
padding-left:0px !important;
padding-right:0px !important; 
}
.admin-bar .main-header.fixed-header{
top:32px;
}
.kc_column>.kc-col-container{
display:block;
}
.kc-row-container.kc-container{
max-width:1200px;
width:100%;
} #wp-calendar {
width: 100%;
}
#wp-calendar caption {
text-align: right; 
color: #333; 
font-size: 14px; 
margin-top: 10px;
margin-bottom: 15px;
}
#wp-calendar thead { 
font-size: 14px;
}
#wp-calendar thead th { 
padding: 10px;
background:#0eaf96;
color:#fff;
border: 1px solid #eaeaea; 
text-align:center;
}
#wp-calendar tbody { 
color: #aaa; 
}
#wp-calendar tbody td { 
background: #202020; 
border: 1px solid #eaeaea; 
text-align: center; 
padding:8px;
}
#wp-calendar tbody td a{ 
color:#fff!important;
}
#wp-calendar tbody td:hover{ 
background: #0eaf96; 
color:#fff!important;
}
#wp-calendar tbody .pad { 
background: none; 
}
#wp-calendar tfoot #next { 
font-size: 14px; 
text-transform: uppercase; 
text-align: right;
}
#wp-calendar tfoot #prev { 
font-size: 14px; 
text-transform: uppercase; 
padding-top: 10px; 
}
.sticky .inner-box .wp-style {border: 3px solid #fff; padding:20px !important; }
.sticky .post .post-content{ background-color:transparent; }
.wp-caption {
text-align: center;
background-color: #f3f3f3;
padding-top: 4px;
margin: 10px;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
.wp-caption p.wp-caption-text {
font-size: 11px;
line-height: 17px;
padding: 0 4px 5px;
margin: 0;
}
.gallery-caption {
font-size:15px;
color:#777777;
line-height:1.8em;
font-weight:400;
background:#ffffff;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;	
}
.bypostauthor{
font-size:15px;
color:#777777;
line-height:1.8em;
font-weight:400;
background:#ffffff;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
}
.alignright{ 
text-align:right;
}
.alignleft{ 
text-align:left;
}
.aligncenter{ 
text-align:center;
}	
.alignnone {
margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
display: block;
margin: 5px auto 5px auto;
}
.alignright {
float:right;
margin: 5px 0 20px 20px;
}
.alignleft {
float: left;
margin: 5px 20px 20px 0;
}
a img.alignright {
float: right;
margin: 5px 0 20px 20px;
}
a img.alignnone {
margin: 5px 20px 20px 0;
}
a img.alignleft {
float: left;
margin: 5px 20px 20px 0;
}
a img.aligncenter {
display: block;
margin-left: auto;
margin-right: auto
}
.wp-caption {
background: #fff;
max-width: 96%; padding: 5px 3px 10px;
text-align: center;
}
.wp-caption.alignnone {
margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
margin: 5px 0 20px 20px;
}
.wp-caption img {
border: 0 none;
height: auto;
margin: 0;
max-width: 98.5%;
padding: 0;
width: auto;
}
.wp-caption p.wp-caption-text {
font-size: 11px;
line-height: 17px;
margin: 0;
padding: 0 4px 5px;
} .screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
}
.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; } .wp-style .tag-sticky-2 .inner-box .lower-content,
.wp-style .sticky .inner-box .lower-content{
background:#fafafa;
border:5px solid #e1e1e1;
}
.wp-style h1,.wp-style h2,.wp-style h3,.wp-style h4,.wp-style h5,.wp-style h6{
margin-bottom: 18px;
font-weight: 600;
color: #242424;
line-height: 1.4em;
}
.wp-style h1{
font-size:36px;
}
.wp-style h2{
font-size:32px;
}
.wp-style h3{
font-size:26px;
}
.wp-style h4,.wp-style .text h4{
font-size:22px;
}
.wp-style h5{
font-size:20px;
}
.wp-style h6{
font-size:18px;
}
.wp-style table{
margin-bottom:20px;
}
.wp-style table thead tr th{
border: 1px solid #ddd;
vertical-align: bottom;
padding:8px;
}
.wp-style table tbody tr th{
border: 1px solid #ddd;
line-height: 1.42857;
padding: 8px;
vertical-align: top;
}
.wp-style table tbody tr td{
border: 1px solid #ddd;
line-height: 1.42857;
padding: 8px;
vertical-align: top;
}
.wp-style .text > ul,.wp-style .text > ol,.wp-style > ol,.wp-style > ul{
padding-left:18px;
}
.wp-style .text > ul li ul,.wp-style .text > ul li ul li ul,.wp-style > ul li ul,.wp-style > ul li ul li ul,
.wp-style .text > ol li ol,.wp-style .text > ol li ol li ol,.wp-style > ol li ol,.wp-style > ol li ol li ol{
padding-left:40px;
}
.wp-style .text > ul li,
.wp-style > ul li{
list-style-type:disc;
display:list-item;
}
.wp-style .text > ul li ul li,
.wp-style > ul li ul li{
list-style-type:circle;
}
.wp-style .text > ul li ul li ul li,
.wp-style > ul li ul li ul li{
list-style-type:square;
}
.wp-style ol li{
list-style-type:decimal;
display:list-item;
}
.wp-style ol li ol li{
list-style-type:lower-alpha;
}
.wp-style ol li ol li ol li{
list-style-type:upper-roman;
}
.wp-style p img,.wp-style figure img,.wp-style img{
max-width:100%;
display:block;
height:auto;
}
figure{
max-width:100%;
display:block;
}   .widget select{
width:100%;
display:block;
border:1px solid #ededed;
padding:6px 6px;
margin-top:15px;
height:50px;
}
.textwidget img {
height: auto;
max-width: 100%;
}
.widget ul li ul{
padding:0px;
margin:0px;
}
.widget ul li ul li {
border-bottom: none;
margin-bottom: 0px;
padding-bottom: 0px;  margin-left: 5px;
}
.widget ul li ul li:after{
top:10px;
} .alignnone {
margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
display: block;
margin: 5px auto 5px auto;
}
.alignright {
float:right;
margin: 5px 0 20px 20px;
}
.alignleft {
float: left;
margin: 5px 20px 20px 0;
}
a img.alignright {
float: right;
margin: 5px 0 20px 20px;
}
a img.alignnone {
margin: 5px 20px 20px 0;
}
a img.alignleft {
float: left;
margin: 5px 20px 20px 0;
}
a img.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}
.wp-caption {
background: #fff;
max-width: 96%; padding: 5px 3px 10px;
text-align: center;
}
.wp-caption.alignnone {
margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
margin: 5px 0 20px 20px;
}
.wp-caption img {
border: 0 none;
height: auto;
margin: 0;
max-width: 98.5%;
padding: 0;
width: auto;
}
.wp-caption p.wp-caption-text {
font-size: 11px;
line-height: 17px;
margin: 0;
padding: 0 4px 5px;
} .screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute !important;
width: 1px;
word-wrap: normal !important; }
.screen-reader-text:focus {
background-color: #eee;
clip: auto !important;
clip-path: none;
color: #444;
display: block;
font-size: 1em;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000; } .alignleft {
display: inline;
float: left;
margin-right: 1.5em;
}
.alignright {
display: inline;
float: right;
margin-left: 1.5em;
}
.aligncenter {
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
} .gallery figure{
display:inline-block;
}
.gallery-columns-1,.gallery-columns-2,.gallery-columns-3,.gallery-columns-4,.gallery-columns-5,
.gallery-columns-6,.gallery-columns-7,.gallery-columns-8,.gallery-columns-9{
margin-left:-15px;
margin-right:-15px;
}
.gallery-columns-1 .gallery-item,.gallery-columns-2 .gallery-item,.gallery-columns-3 .gallery-item,
.gallery-columns-4 .gallery-item,.gallery-columns-5 .gallery-item,.gallery-columns-6 .gallery-item,
.gallery-columns-7 .gallery-item,.gallery-columns-8 .gallery-item,.gallery-columns-9 .gallery-item{
padding-left:15px;
padding-right:15px;
}
.gallery-columns-1 .gallery-item{
width:100%;
}
.gallery-columns-2 .gallery-item{
width:50%;
}
.gallery-columns-3 .gallery-item{
width: 33.33333333%;
}
.gallery-columns-4 .gallery-item{
width: 25%;
}
.gallery-columns-5 .gallery-item{
width: 20%;
}
.gallery-columns-6 .gallery-item{
width:16.66666666%;
}
.gallery-columns-7 .gallery-item{
width: 14.2857143%;
}
.gallery-columns-8 .gallery-item{
width: 12.5%;
}
.gallery-columns-9 .gallery-item{
width: 11.11111111%;
} .widget_rss.widget ul li,
.widget_rss.footer-widget ul li{
margin-bottom:15px;
padding-bottom:15px;
}
.widget_rss.widget ul li a,
.widget_rss.footer-widget ul li a{
font-weight:600!important;
}
.widget_rss.widget ul li .rss-date,
.widget_rss.footer-widget ul li .rss-date{
color: #0eaf96;
display: block;
font-size: 13px;
font-weight: 600;
}
.widget_rss.footer-widget ul li .rss-date{
color:#222;
}
.widget_rss.widget ul li:before{
display:none;
}
.widget_rss.widget ul li .rssSummary {
font-size: 14px;
font-size: 16px;
color: #0c0c0c;
font-weight: 400;
}
.widget_rss.widget ul li cite,
.widget_rss.footer-widget ul li cite{
color: #0eaf96;
display: block;
font-size: 14px;
padding-top: 10px;
font-weight: 600;
}
.widget_rss.footer-widget ul li cite{
color:#fafafa;
}
.widget_rss.footer-widget ul li {
border-bottom: 1px dashed #403ab4;
}
.widget_rss.footer-widget ul li .rss-date{
margin-top:10px;
}
.blog-link .left-btn a{
margin:0 10px 0 0;
} .post-password-form input[type="password"]{
border:1px solid #b2b2b2;
padding:5px 10px;
display:inline-block;
}
.post-password-form input[type="submit"]{
background:#2c2c2c;
color:#fff;
padding:6px 15px; 
display:inline-block;
border:none;    
margin-left: -4px;
}
.wp-style .posts-nav{
margin-top:50px;
}
.wp-style .posts-nav a{
font-size:15px;
color:#333333;
text-decoration:none;
}
.wp-style .posts-nav a span{
display:inline-block;
padding:15px;
color:#ffffff;
font-size:14px;
background:#333333;
}
.wp-style .posts-nav a:hover{
color:#0eaf96;
}
.wp-style .posts-nav a:hover span{
background:#0eaf96;
}
.wp-style .posts-nav .pull-left{
float:left;
}
.wp-style .posts-nav .pull-right{
float:right;
} .sidebar-page-container .shina_theme .group-title h2,
.sidebar-page-container .group-title h2{
margin-bottom:0px;
}
.comments-area .comment-box .comment.pingback{
padding-left:0px;
}
.comments-area .comment-box .comment.pingback .author-thumb {
display:none;
}
.no-comments{
display:inline-block;
background:#2c2c2c;
padding:8px 15px;
color:#ffffff;
margin-top:20px;
} #recentcomments li:after {
display:none!important;
}
.widget_recent_entries li:after {
display:none!important;
}
.widget_rss li:after {
display:none!important;
}
footer select {
width: 100%;
display: block;
border: 1px solid #ededed;
padding: 6px 6px;
margin-top: 15px;
height: 50px;
}
footer a:hover{
color:#0eaf96;
}
footer li {
font-size: 15px;
color: #0c0c0c;
font-weight: 500;
}
footer li a{
color:#222;
}
.post-tags span.commax{
color:#7e8597;
}
.depth-2 {
margin-left:30px;
}
.extra-class.comment-box .extra-class.comment-box #respond{
margin-left:30px;
}
.depth-3{
margin-left:50px;
}
.extra-class.comment-box .extra-class.comment-box .extra-class.comment-box #respond{
margin-left:50px;
}
.depth-4{
margin-left:70px;
}
.extra-class.comment-box .extra-class.comment-box .extra-class.comment-box .extra-class.comment-box #respond{
margin-left:70px;
}
.depth-5{
margin-left:80px;
}
#respond h2{
margin-bottom: 0px;
}
.reply-btn a {
position: absolute;
color: #222;
font-size: 16px;
font-weight: 600;
right: 0;
top: 0px;
transition: .5s ease;
}
.reply-btn a:hover{
color:#0eaf96;
}
.wp-caption.alignnone p{
color:#000!important;
}
#recentcomments a:before {
display:none;
}
.widget_rss li a {  
padding-left: 0px!important;
}
.widget_rss a:before {
display:none;
}
#text-2 {
margin-top: 170px;
}
footer .widget_rss.footer-widget ul li cite {
color: #0eaf96;
}
.widget_rss.widget ul li, .widget_rss.footer-widget ul li {
margin-bottom: 15px;
padding-bottom: 15px;
border-bottom: 1px dashed #403ab4;
}
.mrfooter ul li a{
padding-bottom:7px;
}
.mrfooter ul li ul li {
border-bottom: none;
margin-bottom: 0px;
padding-bottom: 0px;
margin-top: 5px;
padding-top: 5px;
margin-left: 8px;
}
.mrfooter ul li {
position: relative;
padding-bottom: 5px;
margin-bottom: 5px;
display: block;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
text-transform: capitalize;
}.build_theme .default-form.comment-form .group-title{
margin-bottom:0px;	
}
.build_theme .default-form.comment-form h3 small a{
position:relative;
color:#333;
font-size:16px;
font-weight:500;	
}
.build_theme .comment-form{
padding:25px;	
}
.build_theme .build_theme{
margin-left:70px;	
} .comments-area{
position:relative;
margin-top:30px;
margin-bottom:50px;
}
.blog-single-post .group-title {
position: relative;
}
.blog-single-post .group-title h3 {
position: relative;
font-size: 24px;
font-weight: 600;
margin-bottom: 30px;
}
.comments-area .comment-box{
position:relative;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.comments-area .comment-box:last-child .comment{
padding-bottom: 0px;
border-bottom: 0px;	
}
.comments-area .comment-box:hover{
border-color:#eb5310;	
}
.comments-area .comment-box.reply-comment{
margin-left:50px;
}
.comments-area .comment{
position:relative;
font-size:14px;
padding: 0px 0px 0px 110px;
}
.comments-area .comment .comment-inner{
position:relative;
}
.comments-area .comment .comment-inner .text{
position:relative;
color:#7e7e7e;
font-size:18px;
line-height:1.5em;
margin-bottom: 15px;
}
.comments-area .comment-box .author-thumb{
position:absolute;
left:0px;
top:0px;
overflow:hidden;
margin-bottom:20px;
}
.comments-area .comment-box .author-thumb img{
width:80px;
display:block;
}
.comments-area .comment-info{
position:relative;
color:#1e1e29;
line-height:24px;
font-size:18px;
font-weight: 600;
}
.comments-area .comment-info a{
position:relative;
color:#1e1e29;
}
.comment-box .time {
font-size: 15px;
color: #303030;
font-weight: 400;    
margin: 5px 0px;
}
.comments-area .comment-box .reply-comment{
position: absolute;
color: #222;
font-size:16px;
font-weight: 600;
right: 0;
top: 30px;
transition: .5s ease;
}
.comments-area .comment-box .reply-comment:hover {
color: #0eaf96;
}
.comments-area .comment-box .reply-comment .icon{
position: relative;
margin-right: 5px;
} .comment-form{
position:relative;
margin-bottom: 30px;
}
.comment-form .form-group{
position:relative;
margin-bottom:30px;
}
.comment-form .form-group:last-child{
margin-bottom:0px;
}
.comment-form .form-group input[type="text"],
.comment-form .form-group input[type="password"],
.comment-form .form-group input[type="tel"],
.comment-form .form-group input[type="email"],
.comment-form .form-group select{
position:relative;
display:block;
width:100%;
line-height:28px;
padding:15px 20px;
height:55px;
color:#7c7b7b;
font-size: 16px;
font-weight:400;
background:#ffffff;
border:1px solid #eef2ed;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.comment-form .form-group input[type="text"]:focus,
.comment-form .form-group input[type="password"]:focus,
.comment-form .form-group input[type="tel"]:focus,
.comment-form .form-group input[type="email"]:focus,
.comment-form .form-group select:focus,
.comment-form .form-group textarea:focus{
border-color: #0eaf96;
}
.comment-form .form-group textarea{
position:relative;
display:block;
width:100%;
line-height:26px;
padding:10px 20px;
color:#7c7b7b;
font-size: 16px;
font-weight:400;
background:#ffffff;
resize:none;
height: 125px;
border:1px solid #eef2ed;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.comment-form button{
position:relative;
display: block;
margin-top:10px;
}
.comment-box .comment{
border-bottom: 1px solid #ececec!important;
padding-bottom: 20px!important;
margin-bottom: 30px;
}@media only screen and (max-width: 767px){
.main-menu .collapse.in, .main-menu .collapsing {
overflow: auto!important;
padding: 0px 0px 0px!important;
border: none!important;
margin: 20px 0px 10px!important;
-ms-border-radius: 0px!important;
-moz-border-radius: 0px!important;
-webkit-border-radius: 0px!important;
-o-border-radius: 0px!important;
border-radius: 0px!important;
-webkit-box-shadow: none!important;
-ms-box-shadow: none!important;
-o-box-shadow: none!important;
-moz-box-shadow: none!important;
box-shadow: none!important;
}		
.main-menu .collapse {
max-height:1000px!important;
}
} .error-section {
position: relative;
padding: 0px 0px 200px;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
margin: 0 auto;
text-align: center;
}
.error-section:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
}
.error-section .content{
position:relative;
}
.error-section h1{
position:relative;
color:#403ab4;
font-size:200px;
font-weight:800;
line-height:1em;
margin-bottom:20px;
}
.error-section h2{
position:relative;
color:#4d4d4d;
font-size:55px;
font-weight:600;
line-height:1.2em;
margin-bottom:0px;
}
.error-section .text{
position:relative;
color:#4d4d4d;
font-size:25px;
font-weight:500;
margin-top:10px;
margin-bottom:35px;
}
.error-section .theme-btn{
position:relative;
font-size:20px;
font-weight:500;
padding:15px 40px 15px;
} h4.er_the_title{
color: #fff;
font-size: 30px;
margin-bottom: 10px;
}
.error_text2{
margin-bottom: 20px;
color: #fff;
}
.sr_title{
font-size: 25px;
margin-bottom: 20px;
color: #000;
font-weight: 600;
}
.search_text p{
font-size: 17px;
color: #414141;
font-weight: 500;
}
.search_text{
font-size: 17px;
color:#414141;
font-weight: 500;
}
.search_page_btn a{
margin-top: 20px;
margin-bottom: 20px;
} .main-menu .navigation > li > ul > li ul ul {
display: none !important;
} .recentcomments a {
display: inline !important;
padding: 0 !important;
margin: 0 !important;
}
ul.info-list li{
list-style-type: none;
display: list-item;
border-right: none;
}
.search_area_df{
margin-top: 100px;
margin-bottom: 100px;
}
.commax{
display:none!important;
}
.blog-single .tags a{
position: relative;
display: inline-block;
margin-left: 10px;
margin-bottom: 10px;
color: #222;
font-weight: 500;
font-size: 14px;
border-right: 1px solid #555;
position: relative; font-size: 14px;
line-height: 12px;
color: #555;
font-weight: 400;
border-radius: 2px;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
border-right: 1px solid #555;
padding-right: 11px;
}
.blog-single .tags a:hover{
color:#0eaf96;
}
img{
height:auto;
}
.dw.about-section-three {
position: relative;
padding-top: 170px;
padding-bottom: 0px!important;
}
.up.about-section-three {
position: relative;
padding-top: 0px!important;
padding-bottom: 150px; 
}
.ext.about-section-three .big-shape-7 {
margin-top: -300px!important;
}
.oneex.about-section-three .sec-title {
z-index: 1!important;
}
.up.features-section-five {
position: relative;
padding: 0px 0 90px!important;
}
.dw.features-section-five {
position: relative;
padding: 120px 0 0px!important;
}
.up.features-section-six {
position: relative;
padding: 0px 0 120px!important;
}
.dw.features-section-six {
position: relative;
padding: 150px 0 120px;
}
.full-left.fluid-section-two .image-column {
position: absolute;
left: 0px;
top: 0px;
width: 100%!important;
float: left;
z-index: 1;
padding-right: 15px;
}
.full-right.fluid-section-two .content-column {
position: relative;
width: 100%;
float: right!important;
padding: 135px 15px 60px 15px;
}.wp-block-gallery{
padding-left:0px !important;
}
.wp-block-gallery li{
list-style:none !important;
} .has-strong-blue-background-color{
background-color:#5229f1!important;
}
.has-strong-mezenda-background-color{
background-color:#ca29f1!important;
}
.has-strong-red-background-color{
background-color:#e30606!important;
}
.has-strong-green-background-color{
background-color:#06e329!important;
}
.has-strong-yellow-background-color{
background-color:#f7bd00 !important;
}
.has-strong-white-background-color{
background-color:#ffffff !important;
}
.has-light-black-background-color{
background-color:#242424 !important;
}
.has-very-light-gray-background-color{
background-color:#797979 !important;
}
.has-very-dark-black-background-color{
background-color:#000000 !important;
}
.has-strong-blue-color{
color:#5229f1!important;
}
.has-strong-mezenda-color{
color:#ca29f1!important;
}
.has-strong-yellow-color{
color:#f7bd00 !important;
}
.has-strong-red-color{
color:#e30606!important;
}
.has-strong-green-color{
color:#06e329!important;
}
.has-strong-white-color{
color:#ffffff !important;
}
.has-light-black-color{
color:#242424 !important;
}
.has-very-light-gray-color{
color:#797979 !important;
}
.has-very-dark-black-color{
color:#000000 !important;
} .has-small-font-size{
font-size:10px !important;
}
.has-normal-font-size{
font-size:15px !important;
}
.has-large-font-size{
font-size:24px !important;
}
.has-huge-font-size{
font-size:36px !important;
}
.alignwide {
margin-left: calc(25% - 25vw);
margin-right: calc(25% - 25vw);
width: auto;
max-width: 1000%;
}
.alignfull {
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
width: auto;
max-width: 1000%;
}@media only screen and (max-width: 7000px){
.page-wrapper{
overflow: hidden;
}
}
@media only screen and (max-width: 1560px){
.integrations-block {
margin-right: -250px;
}
.main-menu .navigation > li:nth-last-child(-n+2) > ul {
left: auto;
right: 0;
}
.main-menu .navigation > li:nth-last-child(-n+2) > ul > li > ul {
left: auto;
right: 100%;
}
}
@media only screen and (max-width: 1499px){
.main-header .outer-box {
margin-right: 0px;
}
.banner-section-one .layer-image {
display: none;
}
.about-block-one {
margin-right: 0px;
}
.integrations-column {
width: 100%; 
}
.integrations-block {
margin-right: 0px;
margin-top: 60px;
}
.about-section-three .content-column {
width: 100%;
}
.about-section-three .integrations-column {
width: 100%;
}
.banner-section-one .shape-29 {
display: none;
}
.banner-section-three .content-box {
margin-left: 0px;
}
.banner-section-five .image {
margin-right: 0px;
}
}
@media only screen and (max-width: 1299px){
.banner-section-two .content-box {
margin-left: 0px;
}
.banner-section-two .image {
margin-right: 0px;
}
}
@media only screen and (max-width: 1199px){
.main-header .outer-box {
display: none;
}
.main-header .header-upper .nav-outer {
float: right;
margin-left: 0px;
}
.banner-section-two .image {
margin-left: 0px;
}
.about-section {
background: #403ab4;
padding-top: 50px;
}
.about-section .link {
margin-right: 0px;
margin-bottom: 71px;
}
.about-section .link .theme-btn {
box-shadow: -4px 8px 21.25px 3.75px rgba(64, 58, 180, 0.08);
}
.about-section .link .theme-btn:hover {
background: #222;
}
.about-section .image {
padding-right: 0;
}
.about-section .image img {
width: 100%;
}
.about-block-one {
margin-bottom: 100px;
margin-left: 0px;
}
.testimonial-section .owl-carousel .owl-stage-outer {
right: 0px;
}
.testimonial-section .shape-7 {
bottom: 10%;
}
.feature-block-two {
margin-left: 0;
padding-right: 90px;
}
.feature-block-two .count {
right: 0;
}
.image-block-one .image {
margin-right: 0;
}
.image-block-two .image {
margin-right: 0px;
}
.feature-block-three {
padding-left: 110px;
}
.feature-block-three .count {
left: 0;
}
.feature-block-two .link-btn {
margin-left: 0;
}
.feature-block-three .link-btn {
margin-left: 0;
}
.tab-btn-style-one {
margin-left: 0px;
}
.chart:before,
.banner-section-three .layer-image {
display: none;
}
.banner-section-five .image,
.banner-section-three .image {
text-align: left;
}
}
@media only screen and (min-width: 992px){
.main-menu .navigation > li > ul,
.main-menu .navigation > li > ul > li > ul{
display:block !important;
visibility:hidden;
opacity:0;
}
}
@media only screen and (max-width: 1023px){
.main-header.header-style-one.fixed-header, .main-header.header-style-one, .main-header.header-style-two.fixed-header, .main-header.header-style-two { box-shadow: none;
border-bottom: 1px solid #f1f1f1;
}
}
@media screen and (max-width: 600px){
.admin-bar .main-header.fixed-header {
top:0px;
}
}
@media only screen and (max-width: 991px){
.main-header.style-two,
.main-header.style-one{
background-color: #ffffff;
}
.banner-section-two {
padding: 50px 0 90px;
}
.main-header .nav-outer{
width: 100%;
padding:0;
margin: 0 !important;
margin-top: -76px !important;
}
.main-menu{
width:100%;
display:block;
}
.main-menu .navbar-collapse {
max-height:300px;
max-width:none;
overflow:auto;
float:none !important;
width:100% !important;
padding:0px 0px 0px;
border:none;
margin: 0 !important;
-ms-border-radius:0px;
-moz-border-radius:0px;
-webkit-border-radius:0px;
-o-border-radius:0px;
border-radius:0px;
box-shadow:none;
}
.main-menu .navbar-collapse.in,
.main-menu .collapsing{
padding:0px 0px 0px;
border:none;
margin:0px 0px 15px;
-ms-border-radius:0px;
-moz-border-radius:0px;
-webkit-border-radius:0px;
-o-border-radius:0px;
border-radius:0px;
box-shadow:none;	
}
.main-menu .navbar-header{
position:relative;
float:none;
display:block;
text-align:right;
width:100%;
padding:20px 0px 10px;
right:0px;
z-index:12;
}
.main-menu .navbar-header .navbar-toggle{
display:inline-block;
z-index:12;
border:1px solid #ffffff;
float:none;
margin:0px 0px 0px 0px;
border-radius:0px;
background:#ffffff;
}
.main-menu .navbar-collapse > .navigation{
float:none !important;
margin:0px !important;
width:100% !important;
background: #262627;
padding: 10px 15px;
}
.main-menu .navbar-collapse > .navigation > li{
margin:0px !important;
float:none !important;
padding:0px !important;
width:100%;
}
.main-menu .navigation > li > a,
.main-menu .navigation > li > ul:before{
border:none;	
}
.main-menu .navbar-collapse > .navigation > li > a{
padding:10px 10px !important;
border:none !important;
font-size: 14px;
}
.main-menu .navigation li a:after,
.main-menu .navigation li a:before,
.main-menu .navigation li:before,
.main-menu .navigation li:after{
color:#ffffff !important;
right:15px;
font-size:16px;
display:none !important;
}
.main-menu .navbar-collapse > .navigation > li > ul,
.main-menu .navbar-collapse > .navigation > li > ul > li > ul{
position:relative;
border:none;
float:none;
visibility:visible;
opacity:1;
display:none;
margin:0px;
left:auto !important;
right:auto !important;
top:auto !important;
padding: 8px 10px;
outline:none;
width:100%;
background: #2f2f30;
-webkit-border-radius:0px;
-ms-border-radius:0px;
-o-border-radius:0px;
-moz-border-radius:0px;
border-radius:0px;
-webkit-transform:translateY(0px);
-ms-transform:translateY(0px);
transform:translateY(0px);
transition:none !important;
-webkit-transition:none !important;
-ms-transition:none !important;
-o-transition:none !important;
-moz-transition:none !important;
}
.main-menu .navbar-collapse > .navigation > li > ul,
.main-menu .navbar-collapse > .navigation > li > ul > li > ul{
}
.main-menu .navbar-collapse > .navigation > li,
.main-menu .navbar-collapse > .navigation > li > ul > li,
.main-menu .navbar-collapse > .navigation > li > ul > li > ul > li,
.main-menu .navbar-collapse > .navigation > li > ul > li > ul > li > ul li{
border-bottom:none;
opacity:1 !important;
top:0px !important;
left:0px !important;
visibility:visible !important;
margin: 0px;
padding: 0px;
}
.main-menu .navbar-collapse > .navigation > li:first-child{
border:none !important;
}
.main-menu .navbar-collapse > .navigation > li > a,
.main-menu .navbar-collapse > .navigation > li > ul > li > a,
.main-menu .navbar-collapse > .navigation > li > ul > li > ul > li > a,
.main-menu .navbar-collapse > .navigation > li > ul > li > ul > li > ul li a{
padding:12px 10px !important;
line-height:22px;
color:#ffffff !important;
text-align:left;
}
.main-menu .navbar-collapse > .navigation > li > a:hover,
.main-menu .navbar-collapse > .navigation > li > a:active,
.main-menu .navbar-collapse > .navigation > li > a:focus{
background:#202020;
}
.main-menu .navbar-collapse > .navigation > li:hover > a,
.main-menu .navbar-collapse > .navigation > li > ul > li:hover > a,
.main-menu .navbar-collapse > .navigation > li > ul > li > ul > li:hover > a,
.main-menu .navbar-collapse > .navigation > li.current > a,
.main-menu .navbar-collapse > .navigation > li.current-menu-item > a{  }
.main-menu .navbar-collapse > .navigation li.dropdown .dropdown-btn{
display:block;
}
.sec-title br,
.main-menu .navbar-collapse > .navigation li.dropdown:after,
.main-menu .navigation > li > ul:before{
display:none !important;	
}
.main-header .header-upper .logo-box{
z-index:30;
padding: 15px 0;
}
.main-menu .navbar-header .navbar-toggler{
display: inline-block;
z-index: 12;
width: 54px;
height: 40px;
float: none;
padding: 0px;
text-align: center;
}
.main-menu .navbar-header .navbar-toggler .icon-bar{
position: relative;
background: #ffffff;
height: 2px;
width: 30px;
display: block;
margin:0 auto;
margin:5px 11px;
}
.main-header .nav-outer{
width:100%;
margin-top:-60px;
}
.header-style-two .main-menu .navbar-header .navbar-toggler .icon-bar,
.header-style-one .main-menu .navbar-header .navbar-toggler .icon-bar{
background-color: #0daf96;
} 
.header-style-three.fixed-header,
.header-style-four.fixed-header,
.header-style-five.fixed-header {
border-bottom: 0;
background-color: #403ab4;
} .contact-widget {
margin-left: 0px;
}
.testimonial-section-two .thumb-box {
display: none;
}
.app-screenshots-section .slide img {
transform: scale(1);
width: 100%;
}
.image-block-three .image-box-two {
position: relative;
bottom: 0;
margin-bottom: 70px;
margin-top: 50px;
}
.app-info-section {
padding-bottom: 0px;
}
.fun-fact-section-two {
padding-bottom: 0px;
}
.counter-block-two:nth-child(2) .inner-box {
margin-top: 0px;
left: 0px;
}
.counter-block-two:nth-child(3) .inner-box {
margin-top:0px;
left: 0px;
}
.counter-block-two:nth-child(4) .inner-box {
right: 0px;
margin-top: 0px;
}
.counter-block-two .inner-box {
margin-bottom: 30px;
transform: translateX(0) !important;
}
.working-process:before {
display: none;
}
.features-section-six {
padding-bottom: 0px;
}
.features-section-six .image {
margin-left: 0px;
}
.features-section-four .tab-content {
text-align: center;
}
}
@media only screen and (max-width: 799px){
.integrations-block {
background: transparent;
}
.tab-btn-style-two li .dot,
.tab-btn-style-two li:before {
display: none;
}
}
@media only screen and (max-width: 599px){
.news-block-one .lower-content .date {
right: 0;
}
.project-tab-section .tab-content {
padding-left: 20px;
padding-right: 20px;
}
.chart-section {
padding-top: 50px;
}
.chart-block {
left: 50%;
top: 100%;
margin-left: -10px;
}
.chart-block:nth-child(2) {
left: 50%;
top: 50%;
}
.chart-block:nth-child(3) {
left: 50%;
right: auto;
top: 0%;
}
}
@media only screen and (max-width: 479px) {
}
ul li.mega-menu>ul.sub-menu {
background-color: #fff !important;
padding: 10px 0!important;
width: 480px !important;
}
ul li.mega-menu>ul.sub-menu>li {
display: block;
float: left;
margin: 0 5px;
width: 230px;
border: none;
}
ul li.mega-menu ul.sub-menu li {
background-color: inherit;
padding: 0 14px;
border-top: none!important;
border-right: 1px solid #c9c9c9;
}
ul li.mega-menu ul.sub-menu li:nth-child(even){
border-right: none!important;
}.about-block-two ul li {
position: relative;
padding-left: 27px;
margin-bottom: 20px;
font-size: 15px;
color: #555;
}
.main-footerx:before {
content: '';
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
background: url(//aq-technologies.com/wp-content/themes/saasweb/images/pattern-1.png) center bottom no-repeat;
z-index: 1;
}
.main-footer .round-layer {
position: absolute;
right: 67%; width: 1838px;
height: 474px;
background: #f9fcfe;
border-radius: 300px;
-webkit-transform: rotate(-25deg) translateY(350px);
-ms-transform: rotate(-25deg) translateY(350px);
-o-transform: rotate(-25deg) translateY(350px);
-moz-transform: rotate(-25deg) translateY(350px);
transform: rotate(-25deg) translateY(350px);
}
.main-footer .footer-bottom {
position: relative;
padding: 0px 0px 25px;
line-height: 24px;
font-size: 14px;
border-top: 1px solid #d5d5d5;
padding-top: 35px;
}
.main-footer .footer-bottom .copyright-text{
position:relative;
float:left;	
}
.main-footer .footer-bottom .bottom-links{
position:relative;
float:right;	
font-size:16px;
}
.main-footer .footer-bottom .bottom-links li{
position:relative;
display:inline-block;
margin-left:20px;	
}
.main-footer .footer-bottom .bottom-links li a{
position:relative;
display:block;
color:#9c9c9f;	
}
.main-footer .footer-bottom .bottom-links li a:hover{
color:#ff742e;	
}
.page_pagination_two li span.page-numbers.current {
box-shadow: none;
} .news-block-one .lower-content .date {
position: absolute;
top: -100px;
width: 65px;
height: 65px;
font-size: 16px;
font-weight: 600;
color: #fff;
text-align: center;
background: #c21837;
z-index: 9;
line-height: 1.2em;
padding: 13px 0;
}
.news-block-one .lower-content .date strong {
font-size: 20px!important;
}
.main-footer .footer-bottom .bottom-links li a {
position: relative;
display: block;
color: #414141;
}
.main-footer:before {
position: absolute;
content: '';
background: url(//aq-technologies.com/wp-content/themes/saasweb/images/shap-7.png);
width: 620px;
height: 350px; right: 0px;
background-repeat: no-repeat;  }
.about-block-two ul li span {
position: absolute;
left: 0;
top: 8px;
}
.news-block-one h3.blog_title a {
color: #000;
}
.news-block-one .info li {
position: relative;
display: inline-block;
font-size: 13px;
line-height: 28px;
color: #0eaf96;
font-weight: 500;
padding-left: 25px;
margin-right: 8px;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
text-transform: capitalize;
padding-right: 15px;
display: inline-block;
line-height: 1.3em;
}
.news-block-one .info li {
position: relative;
display: inline-block;
font-size: 13px;
line-height: 28px;
color: #0eaf96;
font-weight: 500;
padding-left: 25px;
margin-right: 8px;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
text-transform: capitalize;
padding-right: 15px;
display: inline-block;
line-height: 1.3em;
}
.author_info {
background: #403ab4;
padding: 7px 32px;
padding-right: 15px!important;
padding-left: 32px!important;
color: #ffffff!important;
}
.author_info .icon {
color: #ffffff!important;
line-height: 32px!important;
padding-left: 8px!important;
}.boxed_wrapper{
position: relative;
margin: 0 auto;
overflow: hidden;
width: 100%;
min-width: 300px;
}
.footer-box{
position: fixed;
background: #2220;
height: 339px;
overflow: hidden;
width: 184px;
top: 101px;
right: 0px;
z-index: 999;
}
.product-sidebar .social-links{
position: absolute;
top: 150px;
right: -130px;
padding: 0px;
margin: 0px;
z-index: 9999999;
-webkit-transition: right .3s ease;
-moz-transition: right .3s ease;
transition: right .3s ease;
}
.product-sidebar .xs-sidebar-group.isActive .social-links{
right: 270px;
}
.product-sidebar .social-links li{
position: relative;
display: block;
list-style: none;
height: 45px;
line-height: 45px;
text-align: center;
position: relative;
background-color: #3064ee;
color: #fff;
cursor: pointer;
left: 0px;
white-space: nowrap;
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
-ms-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
.product-sidebar .social-links li:hover {
left: -130px;
}
.product-sidebar .social-links li .icon{
display: inline-block;
width: 45px;
height: 45px;
line-height: 45px;
border-radius: 0!important;
transition: opacity .2s ease;
color: inherit;
}
.product-sidebar .social-links li:hover span{
visibility: visible;
opacity: 1;
right: 110%;
}
.product-sidebar .social-links li span {
font-family: 'Nunito Sans',Sans-serif;
font-size: 13px;
width: 130px;
height: 45px;
font-weight: 400;
line-height: 45px;
text-align: center;
transition: all .2s ease;
padding: 0;
box-sizing: border-box;
background: rgba(0,0,0,.24);
border-radius: 0;
display: block;
float: right;
color: inherit;
}
.product-sidebar .social-links li a{
color: #fff;
text-decoration: none;
}
.product-sidebar .social-links li:nth-child(2){
background: #8138f7;
}
.product-sidebar .social-links li:nth-child(3){
background: #7ac7c4
}
.product-sidebar .social-links li:last-child{
background: #fd5d14;
} .xs-sidebar-group .xs-overlay{
left:0%;
top:0;
position:fixed;
height:100%;
opacity:0;
width:100%;
visibility:hidden;
cursor:url(https://old3.commonsupport.com/rinbuild/wp-content/uploads/2020/06/cross-out.png),
pointer; 
z-index: 999999;
}
.xs-sidebar-group.isActive .xs-overlay{
opacity:.9;
visibility:visible;
right:100%;
}
.xs-sidebar-widget{
position: fixed;
right: -400px;
top: 0;
background-color: #fff;
width: 400px;
height: 100%;
z-index: 9999999;
-webkit-transition: right .3s ease;
-moz-transition: right .3s ease;
transition: right .3s ease;
}
.xs-sidebar-group.isActive .xs-sidebar-widget{
right: 0px;
}
.xs-bg-black {
background-color: rgb(0,0,0,0.5);
}
.product-sidebar .sidebar-widget-container{
position: absolute;
right: -17px;
top: 0;
height: 100%;
width: 417px;
padding: 30px;
background: #fff;
border-left: 1px solid #dcdcdc;
color: #111;
font-size: 14px;
line-height: 1.7;
overflow-x: hidden;
overflow-y: auto;
box-sizing: border-box;
}
.product-sidebar .sidebar-content .btn-box{
margin-bottom: 30px;
}
.product-sidebar .sidebar-content .btn-box a{
position: relative;
display: block;
background: #222;
font-size: 15px;
text-transform: uppercase;
color: #fff;
text-align: center;
padding: 10px 15px;
text-decoration: none;
border-radius: 5px;
}
.product-sidebar .sidebar-content .single-box .title-box{
position: relative;
z-index: 1;
display: flex;
align-items: center;
margin-bottom: 15px;
}
.product-sidebar .sidebar-content .single-box .title-box .line{
position: relative;
display: block;
height: 1px;
background: #e5e5e5;
width: 100%;
flex: 1;
}
.product-sidebar .sidebar-content .single-box .title-box .line:before {
content: '';
position: absolute;
z-index: 1;
height: 3px;
width: 40px;
background: #f73859;
border-radius: 1.5px;
right: 0;
top: 50%;
margin-top: -1.5px;
}
.product-sidebar .sidebar-content .single-box .title-box h5{
position: relative;
display: inline-block;
font-size: 16px;
line-height: 20px;
font-weight: 400;
color: #222;
background: #fff;
padding: 5px 10px;
border-radius: 3px;
text-align: center;
text-transform: uppercase;
margin: 0px;
margin-right: 20px;
box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}
.product-sidebar .sidebar-content .single-box .image{
position: relative;
margin: 0px;
box-shadow: 5px 4px 16px 0 rgba(0,0,0,.15);
margin-bottom: 10px;
}
.product-sidebar .sidebar-content .single-box .image img{
width: 100%;
}
.product-sidebar .sidebar-content .single-box .item-name{
position: relative;
display: block;
}
.product-sidebar .sidebar-content .single-box .item-name h6{
position: relative;
font-size: 14px;
line-height: 24px;
font-weight: 600;
color: #222;
margin: 0px;
}
.product-sidebar .sidebar-content .single-box .item-name h6 a{
color: #222;
text-decoration: none;
}
.product-sidebar .sidebar-content .single-box .item-name .price{
position: absolute;
top: 0px;
right: 0px;
font-size: 16px;
color: red;
}
.product-sidebar .sidebar-content .single-box .item-name .price del{
color: #848484;
}
.product-sidebar .sidebar-content .single-box{
margin-bottom: 30px;
}
.product-sidebar .sidebar-content .single-box .single-item{
margin-bottom: 20px;
}