@charset "UTF-8";

 .animated {
animation-duration: 1s;
animation-fill-mode: both;
}
.animated.infinite {
animation-iteration-count: infinite;
}
.animated.hinge {
animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
animation-duration: .75s;
}
@keyframes bounce {
from, 20%, 53%, 80%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transform: translate3d(0,0,0);
}
40%, 43% {
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transform: translate3d(0, -30px, 0);
}
70% {
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transform: translate3d(0, -15px, 0);
}
90% {
transform: translate3d(0,-4px,0);
}
}
.bounce {
animation-name: bounce;
transform-origin: center bottom;
}
@keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
animation-name: flash;
} @keyframes pulse {
from {
transform: scale3d(1, 1, 1);
}
50% {
transform: scale3d(1.05, 1.05, 1.05);
}
to {
transform: scale3d(1, 1, 1);
}
}
.pulse {
animation-name: pulse;
}
@keyframes rubberBand {
from {
transform: scale3d(1, 1, 1);
}
30% {
transform: scale3d(1.25, 0.75, 1);
}
40% {
transform: scale3d(0.75, 1.25, 1);
}
50% {
transform: scale3d(1.15, 0.85, 1);
}
65% {
transform: scale3d(.95, 1.05, 1);
}
75% {
transform: scale3d(1.05, .95, 1);
}
to {
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
animation-name: rubberBand;
}
@keyframes shake {
from, to {
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
transform: translate3d(10px, 0, 0);
}
}
.shake {
animation-name: shake;
}
@keyframes headShake {
0% {
transform: translateX(0);
}
6.5% {
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
transform: translateX(5px) rotateY(7deg);
}
31.5% {
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
transform: translateX(2px) rotateY(3deg);
}
50% {
transform: translateX(0);
}
}
.headShake {
animation-timing-function: ease-in-out;
animation-name: headShake;
}
@keyframes swing {
20% {
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
transform: rotate3d(0, 0, 1, -5deg);
}
to {
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
transform-origin: top center;
animation-name: swing;
}
@keyframes tada {
from {
transform: scale3d(1, 1, 1);
}
10%, 20% {
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
transform: scale3d(1, 1, 1);
}
}
.tada {
animation-name: tada;
} @keyframes wobble {
from {
transform: none;
}
15% {
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
transform: none;
}
}
.wobble {
animation-name: wobble;
}
@keyframes jello {
from, 11.1%, to {
transform: none;
}
22.2% {
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
animation-name: jello;
transform-origin: center;
}
@keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
20% {
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
animation-name: bounceIn;
}
@keyframes bounceInDown {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, 25px, 0);
}
75% {
transform: translate3d(0, -10px, 0);
}
90% {
transform: translate3d(0, 5px, 0);
}
to {
transform: none;
}
}
.bounceInDown {
animation-name: bounceInDown;
}
@keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(25px, 0, 0);
}
75% {
transform: translate3d(-10px, 0, 0);
}
90% {
transform: translate3d(5px, 0, 0);
}
to {
transform: none;
}
}
.bounceInLeft {
animation-name: bounceInLeft;
}
@keyframes bounceInRight {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(-25px, 0, 0);
}
75% {
transform: translate3d(10px, 0, 0);
}
90% {
transform: translate3d(-5px, 0, 0);
}
to {
transform: none;
}
}
.bounceInRight {
animation-name: bounceInRight;
}
@keyframes bounceInUp {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, -20px, 0);
}
75% {
transform: translate3d(0, 10px, 0);
}
90% {
transform: translate3d(0, -5px, 0);
}
to {
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
animation-name: bounceInUp;
}
@keyframes bounceOut {
20% {
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
animation-name: bounceOut;
}
@keyframes bounceOutDown {
20% {
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
20% {
opacity: 1;
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
20% {
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
animation-name: bounceOutUp;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
animation-name: fadeIn;
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInDown {
animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
from {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInDownBig {
animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInLeft {
animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInLeftBig {
animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
from {
opacity: 0;
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInRight {
animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
from {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInRightBig {
animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInUp {
animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
from {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInUpBig {
animation-name: fadeInUpBig;
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
animation-name: fadeOut;
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
animation-name: fadeOutUpBig;
}
@keyframes flip {
from {
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
animation-timing-function: ease-out;
}
40% {
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
animation-timing-function: ease-out;
}
50% {
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
animation-timing-function: ease-in;
}
80% {
transform: perspective(400px) scale3d(.95, .95, .95);
animation-timing-function: ease-in;
}
to {
transform: perspective(400px);
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
animation-name: flip;
}
@keyframes flipInX {
from {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
animation-timing-function: ease-in;
opacity: 0;
}
40% {
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
animation-timing-function: ease-in;
}
60% {
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-name: flipInX;
}
@keyframes flipInY {
from {
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
animation-timing-function: ease-in;
opacity: 0;
}
40% {
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
animation-timing-function: ease-in;
}
60% {
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-name: flipInY;
}
@keyframes flipOutX {
from {
transform: perspective(400px);
}
30% {
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@keyframes flipOutY {
from {
transform: perspective(400px);
}
30% {
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-name: flipOutY;
}
@keyframes lightSpeedIn {
from {
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
transform: skewX(20deg);
opacity: 1;
}
80% {
transform: skewX(-5deg);
opacity: 1;
}
to {
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
animation-name: lightSpeedIn;
animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
animation-name: lightSpeedOut;
animation-timing-function: ease-in;
}
@keyframes rotateIn {
from {
transform-origin: center;
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
transform-origin: center;
transform: none;
opacity: 1;
}
}
.rotateIn {
animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
transform-origin: left bottom;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
transform-origin: right bottom;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
transform-origin: left bottom;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
transform-origin: right bottom;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
animation-name: rotateInUpRight;
}
@keyframes rotateOut {
from {
transform-origin: center;
opacity: 1;
}
to {
transform-origin: center;
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
from {
transform-origin: left bottom;
opacity: 1;
}
to {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
from {
transform-origin: right bottom;
opacity: 1;
}
to {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
from {
transform-origin: left bottom;
opacity: 1;
}
to {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
from {
transform-origin: right bottom;
opacity: 1;
}
to {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
animation-name: rotateOutUpRight;
}
@keyframes hinge {
0% {
transform-origin: top left;
animation-timing-function: ease-in-out;
}
20%, 60% {
transform: rotate3d(0, 0, 1, 80deg);
transform-origin: top left;
animation-timing-function: ease-in-out;
}
40%, 80% {
transform: rotate3d(0, 0, 1, 60deg);
transform-origin: top left;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
animation-name: hinge;
}
@keyframes jackInTheBox {
from {
opacity: 0;
transform: scale(0.1) rotate(30deg);
transform-origin: center bottom;
}
50% {
transform: rotate(-10deg);
}
70% {
transform: rotate(3deg);
}
to {
opacity: 1;
transform: scale(1);
}
}
.jackInTheBox {
animation-name: jackInTheBox;
} @keyframes rollIn {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
transform: none;
}
}
.rollIn {
animation-name: rollIn;
} @keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
animation-name: rollOut;
}
@keyframes zoomIn {
from {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
animation-name: zoomIn;
}
@keyframes zoomInDown {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
animation-name: zoomInDown;
}
@keyframes zoomInLeft {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
animation-name: zoomInLeft;
}
@keyframes zoomInRight {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
animation-name: zoomInRight;
}
@keyframes zoomInUp {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
animation-name: zoomInUp;
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
.zoomOut {
animation-name: zoomOut;
}
@keyframes zoomOutDown {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform-origin: center bottom;
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
transform: scale(.1) translate3d(-2000px, 0, 0);
transform-origin: left center;
}
}
.zoomOutLeft {
animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
transform: scale(.1) translate3d(2000px, 0, 0);
transform-origin: right center;
}
}
.zoomOutRight {
animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform-origin: center bottom;
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
animation-name: zoomOutUp;
}
@keyframes slideInDown {
from {
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
animation-name: slideInDown;
}
@keyframes slideInLeft {
from {
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
animation-name: slideInLeft;
}
@keyframes slideInRight {
from {
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
animation-name: slideInRight;
}
@keyframes slideInUp {
from {
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
animation-name: slideInUp;
}
@keyframes slideOutDown {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
animation-name: slideOutDown;
}
@keyframes slideOutLeft {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
animation-name: slideOutLeft;
}
@keyframes slideOutRight {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
animation-name: slideOutRight;
}
@keyframes slideOutUp {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
animation-name: slideOutUp;
}.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(//g2ls.nc/wp-content/plugins/clever-fox//inc/assets/css/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}.mb-7{
margin-bottom: 5rem!important;
} .section-padding {
padding: 100px 0 100px;
}
.section-padding-top {
padding: 100px 0 0;
}
.section-title {
margin-bottom: 50px;
}
.section-title h2 {
margin-bottom: 20px;
display: inline-block;
}
.section-title h2 span:not(.customize-partial-edit-shortcut) {
width: 60px;
height: 3px;
float: right;
margin-top: 10px;
margin-left: 30px;
}
.owl-item {
float: left;
}
.owl-stage-outer {
overflow: hidden;
}
.owl-nav {
display: none;
}
.header-btn a.boxed-btn {
font-weight: 600;
letter-spacing: 1px;
} input[type="button"], input[type="reset"], input[type="submit"],
.wp-block-search__button,
.blog-post .read-more-link,
.blog-post .more-link,
.boxed-btn, .wp-block-loginout a,
.wp-block-button a {
white-space: nowrap;
line-height: 1.5;
display: inline-block;
vertical-align: middle;
color: #fff !important;
border: 0;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px transparent;
border-radius: 0 20px 0 20px;
padding: 10px 30px;
position: relative;
z-index: 0;
overflow: hidden;
-webkit-transition-property: color;
transition-property: color;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
}
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
.wp-block-search__button:hover,
.wp-block-search__button:focus,
.blog-post .read-more-link:hover,
.blog-post .read-more-link:focus,
.blog-post .more-link:hover,
.blog-post .more-link:focus,
.boxed-btn:focus,
.boxed-btn:hover {
color: #ffffff;
}
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
background-color: #111111;
}
.wp-block-search__button:before,
.blog-post .read-more-link:before,
.blog-post .more-link:before,
.boxed-btn:before,
.wp-block-loginout a:before {
content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #333;
border-radius: 100%;
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transition-property: transform;
-webkit-transition-property: -webkit-transform;
transition-property: -webkit-transform;
transition-property: transform;
transition-property: transform, -webkit-transform;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.wp-block-search__button:hover:before,
.wp-block-search__button:focus:before,
.blog-post .read-more-link:focus:before,
.blog-post .read-more-link:hover:before,
.blog-post .more-link:focus:before,
.blog-post .more-link:hover:before,
.boxed-btn:focus:before,
.boxed-btn:hover:before,
.wp-block-loginout a:hover:before,
.wp-block-loginout a:focus:before {
-webkit-transform: scale(2);
transform: scale(2);
}
.wp-block-search .wp-block-search__button {
border: 0 !important;
}
.boxed-btn i {
margin-left: 10px;
}
a {
text-decoration: underline;
}
a:hover, a:focus{
text-decoration:dotted underline;
}  .header-above {
color: #fff;
padding: .962em 0;
}
.header-above a {
color: #fff;
}
.header-above i {
width: 30px;
height: 30px;
background: #ffffff;
border-radius: 50%;
color: #111111;
text-align: center;
}
.header-above .trh-social li:not(:last-child) {
padding-right: 16px;
}
.header-above .header-info i {
margin-right: 10px;
}
.header-above li {
display: inline-block;
position: relative;
}
.header-info li {
padding-right: 28px;
margin-right: 15px;
position: relative;
}
.header-above ul.trh-social li:last-child:after {
visibility: hidden;
}
.header-above li:after {
content: '';
position: absolute;
top: 0;
bottom: 0;
right: 6px;
width: 1px;
height: 15px;
margin: auto 0;
background: #ffffff;
}
.header-info li:last-child {
padding-right: 0;
margin-right: 0;
border-right: none;
}
.header-info li:last-child:after {
display: none;
}
.header-social li {
padding-right: 10px;
margin-right: 10px;
}
.header-social li:last-child {
padding-right: 0;
margin-right: 0;
border-right: none;
}
.header-social li:last-child:after {
display: none;
}
.header-social li a {
color: #fff;
-webkit-transition: .3s;
transition: .3s;
}
.header-social li a:hover {
color: #eee;
}
.header-social li i {
margin-right: 0 !important;
}
.header-social a:hover i.fa-facebook-f {
color: #3B5999 !important;
}
.header-social a:hover i.fa-twitter {
color: #1da1f2 !important;
}
.header-social a:hover i.fa-linkedin-in {
color: #0077B5 !important;
}
.header-social a:hover i.fa-google-plus-g {
color: #DA4835 !important;
} .header.active-three .menubar .menu-wrap > li > a {
line-height: 40px;
}
.theme-mobile-nav .header-cart-box-wrapper {
right: 0;
left: auto;
} .menu-right li.search-button {
margin-left: 16px;
padding-left: 10px;
border-left: 1px solid #e6e6e6;
}
.menu-right .header-search-toggle {
width: 30px;
}
.menu-right .cart-wrap {
margin-right: 6px;
}
.cart-icon-wrapper {
position: relative;
text-align: left;
cursor: pointer;
display: flex;
align-items: center;
}
.cart-wrap {
width: 40px;
height: 40px;
flex-shrink: 0;
}
.header-right-bar a {
color: #111111;
} .header-cart-box-wrapper {
background: #fff;
position: absolute;
left: 0;
text-align: left;
top: 50%;
width: 270px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
box-shadow: 0 0 5px 0 rgba(0, 0, 0, .2);
z-index: 999;
-webkit-transition: .3s;
transition: .3s;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
visibility: hidden;
}
.cart-icon:focus-within .header-cart-box-wrapper,
.cart-icon:hover .header-cart-box-wrapper {
top: 120%;
opacity: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
visibility: visible;
}
.cart-image img{
float: left;
margin-top: 16px;
margin-right: 18px;
background: #000;
height: 85px;
width: 75px;
}
.cart-heading {
margin-bottom: 8px;
padding-top: 15px;
}
.cart-heading a {
color: #333;
}
.cart-qty {
margin-bottom: 8px;
}
.cart-price {
color: #666;
margin-right: 19px;
margin-top: 27px !important;
}
.cart-remove {
position: absolute;
right: 1px;
top: 16px;
}
.cart-remove.deft-remove-icon a {
margin-left: 2px;
}
.single-cart-box {
position: relative;
padding-bottom: 10px;
border-bottom: 1px solid #ccc;
}
.cart-qty {
color: #9c9b9b
}
.shipping-amt {
float: right;
}
.cart-subtotal {
margin-top: 5px;
color: #333;
}
.subttl-text {
margin-right: 31px;
}
.subttl-amt {
float: right;
margin-right: 17px;
} .sticky-nav.is-sticky {
position: fixed;
top: 0;
right: 0;
left: 0;
background: #ffffff;
box-shadow: 0px 0 1px rgba(0, 0, 0, .2);
}
.admin-bar .sticky-nav.is-sticky {
top: 32px;
}
.sticky-nav.is-sticky {
-webkit-animation: fadeInDown 1s both;
animation: fadeInDown 1s both;
}
.navbar-toggler-icon {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
cursor: pointer;
} .header-slider {
cursor: crosshair;
overflow: hidden;
display: block;
position: relative;
z-index: 0;
}
.header-single-slider img {
display: block;
margin: 0;
}
.header-slider .item img {
width: 100%;
height: 100%;
}
.theme-slider:not(.azwa-slider):after,
.theme-slider:not(.azwa-slider) {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
}
.theme-slider:not(.azwa-slider):after {
content: "";
z-index: -1;
background-color: #000000;
opacity: 0.5;
}
.theme-slider {
z-index: 0;
}
.theme-table {
overflow: hidden;
display: table;
width: 100%;
height: 100%;
}
.theme-table-cell {
display: table-cell;
vertical-align: middle;
}
.theme-slider div.theme-content {
overflow: hidden;
position: relative;
max-width: 650px;
width: 100%;
margin-bottom: 100px; } .theme-slider .text-left {
margin-right: auto;
}
.theme-slider .text-center {
margin: auto;
}
.theme-slider .text-right {
margin-left: auto;
}
.theme-slider:not(.azwa-slider) h1 {
color: #ffffff;
margin-bottom: 10px;
}
.header-slider h1 span {
text-transform: uppercase;
}
.header-slider p {
margin-bottom: 50px;
}
.theme-slider:not(.azwa-slider) p {
color: #fff;
}
.owl-thumb-item img {
width: 40px;
height: 40px;
border-radius: 100%;
object-fit: cover;
border: 2px solid transparent;
}
.owl-thumbs {
display: none;
}
.header-slider .owl-thumbs {
position: absolute;
bottom: 160px;
left: 0;
display: table;
width: 100%;
text-align: center;
}
button.owl-thumb-item {
display: table-cell;
border: none;
outline: none;
background: none;
padding: 0;
}
.owl-thumb-item:not(:last-child) {
margin-right: 10px;
}
.owl-thumb-item.active img {
border-color: #ff5d00;
} .contact-wrapper {
position: relative;
background: #ffffff;
box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.1);
margin-top: -130px;
border-width: 0;
border-style: solid;
border-color: #ff5d00;
border-bottom-width: 3px;
z-index: 1;
}
.single-contact {
flex: 1;
position: relative;
padding: 33px 30px 30px;
background: #fff;
-webkit-transition: .3s;
transition: .3s;
}
.single-contact:after {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 1px;
height: 50px;
margin: auto 0;
background: #e6e6e6;
}
.single-contact:last-child:after {
display: none;
}
.single-icon {
position: relative;
display: inline-flex;
align-items: center;
text-align: center;
margin-right: 16px;
width: 65px;
height: 65px;
padding: 10px;
border-radius: 100%;
-webkit-transition: .5s;
transition: .5s;
}
.single-icon * {
z-index: 1;
}
.single-icon:after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
border-radius: inherit;
opacity: 0.2;
z-index: 0;
}
.single-icon .spin-circle {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
border-radius: 50%;
-webkit-animation-name: rotateme;
animation-name: rotateme;
-webkit-animation-duration: 30s;
animation-duration: 30s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
}
.single-icon .spin-circle:after {
content: "";
position: absolute;
left: 8px;
bottom: 0;
width: 12px;
height: 12px;
z-index: 1;
border-radius: 50%;
background-color: #ff5d00;
}
.single-contact:nth-child(2) .single-icon .spin-circle,
.single-contact:nth-child(8) .single-icon .spin-circle,
.single-contact:nth-child(14) .single-icon .spin-circle {
-webkit-animation-name: rotatemetwo;
animation-name: rotatemetwo;
}
.single-icon i,
.single-icon img {
width: 40px;
margin: auto;
-webkit-transition: .3s;
transition: .3s;
}
.contact-wrapper .single-contact:hover i,
.contact-wrapper .single-contact:hover img {
-webkit-transform: scale(1.075);
transform: scale(1.075);
}
.single-contact:hover .single-icon {
background-color: #ffffff;
-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.single-contact:hover .single-icon:after {
background-color: #ffffff;
}
@keyframes rotateme {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes rotatemetwo {
from {
transform: rotate(0deg);
}
to {
transform: rotate(-360deg);
}
} .service-box {
padding: 60px 25px;
z-index: 1;
position: relative;
-webkit-transition: .3s;
transition: .3s;
color: #111111;
overflow: hidden;
box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.085);
}
.service-box:focus-within,
.service-box:hover {
color: #fff;
box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.10);
}
.service-box:after {
content: '';
width: 100%;
height: 100%;
background: #000;
position: absolute;
top: 0;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
visibility: hidden;
left: 0;
z-index: -1;
-webkit-transition: .1s;
transition: .1s;
-webkit-transform: scale(.9);
transform: scale(.9);
}
.service-box:focus-within:after,
.service-box:hover:after {
opacity: .75;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
visibility: visible;
-webkit-transform: scale(1);
transform: scale(1);
}
.service-box img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
-webkit-transition: .3s;
transition: .3s;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
visibility: hidden;
-webkit-transform: scale(.9);
transform: scale(.9);
}
.service-box:focus-within img,
.service-box:hover img {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
visibility: visible;
}
.service-icon i {
margin-bottom: 20px;
}
.service-box h3 {
margin-bottom: 20px;
}
.service-box .devider {
width: 60px;
height: 3px;
margin-bottom: 20px;
}
.service-box p {
margin-bottom: 30px;
}
#service-contents .single_serv {
margin-bottom: 30px !important;
}
#service-contents .single_serv:last-child {
margin-bottom: 0px !important;
} #ourfeatures {
background: #f9f9f9;
z-index: 0;
}
#ourfeatures .shape15 {
opacity: 0.35;
}
.features-box {
position: relative;
-webkit-transition: 0.5s;
transition: 0.5s;
}
.features-box:hover {
background-color: #ffffff;
-webkit-box-shadow: 0 2px 45px 0 rgba(0, 0, 0, 0.018);
box-shadow: 0 2px 45px 0 rgba(0, 0, 0, 0.1);
}
.features-box h3 {
padding-left: 10px;
position: relative;
margin-bottom: 10px;
}
.features-box h3:before {
position: absolute;
content: '';
top: 0;
left: 0;
width: 5px;
height: 100%;
}
.more-load {
text-align: center;
}
#ourfeatures .boxed-btn {
margin: 40px auto 0;
}
#ourfeatures .features-box:nth-child(2):after,
#ourfeatures .features-box:nth-child(3):after,
#ourfeatures .features-box:nth-child(1):after {
content: '';
width: 100%;
height: 1px;
background: #e6e6e6;
right: 0;
bottom: 0;
position: absolute;
}
#ourfeatures .features-box:nth-child(8):before,
#ourfeatures .features-box:nth-child(7):before,
#ourfeatures .features-box:nth-child(5):before,
#ourfeatures .features-box:nth-child(4):before,
#ourfeatures .features-box:nth-child(2):before,
#ourfeatures .features-box:nth-child(1):before {
content: '';
height: 100%;
width: 1px;
background: #e6e6e6;
right: 0;
bottom: 0;
position: absolute;
}
#ourfeatures .features-box:nth-child(9):after,
#ourfeatures .features-box:nth-child(8):after,
#ourfeatures .features-box:nth-child(7):after {
content: '';
width: 100%;
height: 1px;
background: #e6e6e6;
right: 0;
top: 0;
position: absolute;
}
.widget_contact_widget li {
vertical-align: middle;
display: block;
font-size: 15px;
}
.widget_contact_widget li i,
.header-above i,
.features-box-icon i,
.features-box-icon img {
-webkit-transition: .3s;
transition: .3s;
}
.features-box-icon i {
font-size: 45px;
color: #f55d00;
}
.widget_contact_widget ul > li:hover i,
.header-above a:hover i,
.header-above a:focus i,
.features-box:hover .features-box-icon i,
.features-box:hover .features-box-icon img {
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
-webkit-filter: FlipH;
filter: FlipH;
-ms-filter: "FlipH";
} #cta {
background: url(//g2ls.nc/wp-content/themes/img/bg/cta-bg.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: #fff;
padding: 50px 0;
background-color: #777 !important;
}
.purchase-btn {
border-radius: 0 20px 0 20px;
padding: 15px 20px 15px 60px;
text-transform: capitalize;
color: #fff;
position: relative;
margin-top: 5px;
display: inline-block;
}
.purchase-btn i {
padding: 16px 14px;
border-radius: 0 0 0 19px;
background: #fff;
text-align: center;
position: absolute;
top: 0;
left: -10px;
} #latest-news .blog-post {
margin: 0 0;
}
#latest-news .blog-post {
-webkit-transition: .3s;
transition: .3s;
padding: 0;
}
#latest-news .blog-post figure {
margin-bottom: 0;
}
#latest-news .blog-post:hover {
box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.12)
}
#latest-news .post-thumbnail {
position: relative;
z-index: 2;
}
#latest-news .post-thumbnail:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
background-color: #111111;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
visibility: hidden;
z-index: 1;
-webkit-transition: all 0.4s;
transition: all 0.4s;
-webkit-transition-delay: 0.3s;
transition-delay: 0.3s;
}
#latest-news .blog-post:focus-within .post-thumbnail:after,
#latest-news .blog-post:hover .post-thumbnail:after {
opacity: .75;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
visibility: visible;
}
.blog-post .post-overlay img {
z-index: 2;
}
#latest-news .meta-info {
padding: 10px 16px;
}
#latest-news .post-content {
padding: 40px 15px;
position: relative;
}
#latest-news .post-content:before {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 100%;
border-width: 0;
border-style: solid;
border-color: #ff5d00;
border-bottom-width: 2px;
-ms-transform: scale(0);
transform: scale(0);
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
#latest-news .blog-post:focus-within .post-content:before,
#latest-news .blog-post:hover .post-content:before {
-ms-transform: scale(1);
transform: scale(1);
}
.post-content .post-title a {
-webkit-transition: .3s;
transition: .3s;
color: #242424;
margin-bottom: 16px;
display: block;
}
.blog-post .more-link,
.blog-post .read-more-link {
margin-top: 20px;
}
.blog-post:hover .more-link:before,
.blog-post .more-link:focus:before,
.blog-post:hover .read-more-link:before,
.blog-post .read-more-link:focus:before {
background: #111111;
}
#latest-news .news {
margin-bottom: 30px !important;
}   
#latest-news .news:last-child{
margin-bottom: 0px !important; 
} #our-partners {
background-color: #222222;
padding: 60px 0;
background-size: cover;
background-position: center;
position: relative;
z-index: 2;
}
#our-partners:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000;
opacity: .85;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
z-index: -1;
}
.partner-carousel .single-partner {
margin-bottom: 0;
}
.single-partner {
box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
height: 120px;
margin-bottom: 20px;
position: relative;
}
.single-partner a {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #2f2f2f;
cursor: crosshair;
-webkit-transition: .3s;
transition: .3s;
}
.inner-partner {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
text-align: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
opacity: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
} #footer-copyright {
background: #1d1a1a;
color: #ffffff;
padding: 20px 0;
}
#footer-copyright .copyright-text p {
font-size: 15px;
}
.payment-method li {
display: inline-block;
padding: 0 20px;
border-right: 1px solid #3f3c3c;
}
.payment-method li i {
color: #ffffff;
-webkit-transition: .3s;
transition: .3s;
}
.payment-method li:last-child {
border: none;
padding-right: 0;
}
.payment-method li img {
height: 24px;
width: 24px;
} #breadcrumb-area {
position: relative;
background-size: cover;
background-position: center;
z-index: 2;
padding: 100px 0 100px;
color: #fff;
}
#breadcrumb-area:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000000;
opacity: .75;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
z-index: -2;
}
#breadcrumb-area ul li {
display: inline-block;
position: relative;
margin-right: 10px;
}
#breadcrumb-area ul li a:after {
content: '\f105';
font-family: FontAwesome;
margin-left: 10px;
}
#breadcrumb-area ul li:last-child:after {
display: none;
}
#breadcrumb-area ul li,
#breadcrumb-area ul li a {
color: #fff;
} nav.navigation.pagination h2 {
display: none;
}
.posts-navigation,
.pagination, .page-links {
margin: 50px auto;
justify-content: center;
}
.posts-navigation .nav-links,
.pagination .nav-links {
display: inherit;
}
.pagination .nav-links .current {
background: #c8c8c8;
color: #fff;
border-color: #c8c8c8;
}
.posts-navigation .nav-links a:hover,
.posts-navigation .nav-links a:focus,
.pagination .nav-links .page-numbers.current,
.pagination .nav-links .page-numbers:focus,
.pagination .nav-links .page-numbers:hover, .post-page-numbers.current, .post-page-numbers:hover, .post-page-numbers:focus {
color:#fff;
}
.posts-navigation .nav-links a,
.pagination .nav-links .current,
.pagination .nav-links .page-numbers, .post-page-numbers {
margin-right: 10px;
border: 1px solid #e6e6e6;
color: #111111;
-webkit-transition: .3s;
transition: .3s;
border-radius: 0 10px 0 10px;
padding: 10px 14px;
text-decoration: none;
}
.page-item:first-child .page-link,
.page-item:last-child .page-link,
.page-link {
border-radius: 0 10px 0 10px;
}
.page-link {
margin-right: 10px;
border: 1px solid #c8c8c8;
color: #111111;
-webkit-transition: .3s;
transition: .3s;
}
.page-link:hover {
color: #fff;
}
.page-item.active .page-link {
background: #c8c8c8;
color: #fff;
border-color: #c8c8c8;
}
.page-item.next .page-link,
.page-item.prev .page-link {
color: #fff;
}
.posts-navigation .nav-links a{
color: #fff;
}
.posts-navigation .nav-previous, 
.posts-navigation .nav-next {
display: inline-block;
}
.navigation.posts-navigation .nav-links .nav-next {
float: right;
} #exclusive {
background: #f5f5f5;
}
.single-exclusive {
position: relative;
}
.single-exclusive img {
width: 100%;
}
.single-exclusive .exclusive-content {
position: absolute;
bottom: 0;
left: 0;
padding: 20px 20px;
color: #fff;
}
.single-exclusive .exclusive-content h3 {
margin-top: 5px;
-webkit-transition: .3s;
transition: .3s;
}
#exclusive .owl-dots {
width: 300px;
text-align: center;
margin: 40px auto -8px;
}
#exclusive .owl-dots div {
display: inline-block;
width: 15px;
height: 15px;
margin-right: 10px;
border: 1px solid #111111;
border-radius: 50%;
cursor: pointer;
} .full-width {
padding-bottom: 20px;
}
.blog-post {
position: relative;
padding: 10px 10px;
box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.085);
background: #fff;
margin-top: 4px;
margin-bottom: 40px;
}
.blog-details-page .blog-post {
padding: 10px 10px; 
box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.085);  
background: #fff;   
margin-top: 4px;    
margin-bottom: 40px;    
position: relative; 
z-index: 0;
}
.blog-post .post-thumb {
position: relative;
text-align: center;
cursor: pointer;
margin-bottom: 40px;
}
.blog-post .post-thumb:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
background-color: #111111;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
-webkit-transform: scale(0);
transform: scale(0);
visibility: hidden;
-webkit-transition: .3s;
transition: .3s;
z-index: 1;
}
.blog-post .post-overlay,
.blog-post .post-thumb figcaption {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
color: #fff;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
text-align: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
-webkit-transition: all 0.3s ease-in;
-webkit-transition: all 0.4s ease-in;
transition: all 0.4s ease-in;
padding: 0 15px;
z-index: 2;
}
.blog-post:focus-within .post-overlay,  
.blog-post:focus-within .post-thumb figcaption:not(.blocks-gallery-item__caption),  
.blog-post:hover .post-overlay, 
.blog-post:hover .post-thumb figcaption:not(.blocks-gallery-item__caption) {
opacity: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.blog-post figure img {
border-radius: 0; }
.blog-post:focus-within .post-overlay:after,    
.blog-post:focus-within .post-thumb:after,  
.blog-post:hover .post-overlay:after,   
.blog-post:hover .post-thumb:after {
opacity: .75;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
visibility: visible;
-webkit-transform: scale(1);
transform: scale(1);
}
.blog-post .post-overlay:before,
.blog-post .post-overlay:after,
.blog-post .post-thumb figcaption:before,
.blog-post .post-thumb figcaption:after {
position: absolute;
content: '';
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
z-index: 2;
}
.blog-post .post-overlay:before,
.blog-post .post-thumb figcaption:before {
top: 70px;
right: 50px;
bottom: 70px;
left: 50px;
border-top: 1px solid #fff;
border-bottom: 1px solid #fff;
-webkit-transform: scale(0, 1);
transform: scale(0, 1);
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
}
.blog-post .post-overlay:after,
.blog-post .post-thumb figcaption:after {
top: 50px;
right: 70px;
bottom: 50px;
left: 70px;
border-right: 1px solid #fff;
border-left: 1px solid #fff;
-webkit-transform: scale(1, 0);
transform: scale(1, 0);
-webkit-transform-origin: 100% 0;
transform-origin: 100% 0;
}
#latest-news .blog-post .post-overlay:after {
top: 30px;
right: 50px;
bottom: 30px;
left: 50px;
}
#latest-news .blog-post .post-overlay:before {
top: 50px;
right: 30px;
bottom: 50px;
left: 30px;
}
.blog-post .post-overlay img,
.blog-post figure figcaption img {
text-align: center;
background: #fff;
color: #da4f00;
border-radius: 50%;
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
.blog-post .post-overlay img,
.blog-post figure figcaption img,
.blog-post .post-overlay:after,
.blog-post .post-overlay:before,
.blog-post figure figcaption:before,
.blog-post figure figcaption:after {
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}
.blog-post:focus-within .post-overlay:after,    
.blog-post:focus-within .post-overlay:before,   
.blog-post:focus-within figure figcaption:before,   
.blog-post:focus-within figure figcaption:after,    
.blog-post:hover .post-overlay:after,   
.blog-post:hover .post-overlay:before,  
.blog-post:hover figure figcaption:before,  
.blog-post:hover figure figcaption:after {
opacity: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
-webkit-transform: scale(1);
transform: scale(1);
}
.blog-post:focus-within .post-overlay img,  
.blog-post:focus-within figure figcaption img,  
.blog-post:hover .post-overlay img, 
.blog-post:hover figure figcaption img {
opacity: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.blog-post:focus-within figure figcaption:after,    
.blog-post:focus-within figure figcaption img,  
.blog-post:hover figure figcaption:after,   
.blog-post:hover figure figcaption img {
-webkit-transition-delay: 0.15s;
transition-delay: 0.15s;
}
.meta-info {
text-align: left;
padding: 10px 35px;
border-radius: 0px 20px 0 20px;
width: 90%;
position: absolute;
top: -10%;
left: 5%;
z-index: 2;
-webkit-transition: .3s;
transition: .3s;
}
.post-thumb + .post-content .meta-info {
top: -12%;
}
.post-content .meta-info {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.post-thumb .meta-info,
.post-thumbnail .meta-info {
top: auto;
bottom: -6%;
height: max-content;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.blog-post:hover .post-content .meta-info,
.blog-post:focus-within .post-content .meta-info {
bottom: auto;
top: -23px;
opacity: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.blog-post:focus-within .post-thumb .meta-info,
.blog-post:hover .post-thumb .meta-info,
.blog-post:focus-within .post-thumbnail .meta-info,
.blog-post:hover .post-thumbnail .meta-info {
bottom: -23px;
opacity: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.blog-post:focus-within .post-thumbnail img + .meta-info,   
.blog-post:focus-within .post-thumbnail img + .post-overlay + .meta-info,   
.blog-post:focus-within .post-thumb img + figcaption + .meta-info,  
.blog-post:focus-within .post-thumb img + .meta-info,   
.blog-post:hover .post-thumbnail img + .meta-info,  
.blog-post:hover .post-thumbnail img + .post-overlay + .meta-info,  
.blog-post:hover .post-thumb img + figcaption + .meta-info, 
.blog-post:hover .post-thumb img + .meta-info {
bottom: -23px;
}
.blog-post .meta-info li {
display: inline-block;
}
.blog-post .meta-info li:not(:last-child) a {
border-right: 1px solid #ffffff;
margin-right: 10px;
padding-right: 10px;
}
.blog-post .meta-info li {
color: #fff;
}
.blog-post .meta-info li a {
color: #ffffff;
line-height: 1;
display: inline-block;
}
.blog-post .meta-info li i {
margin-right: 10px;
}
.post-content {
padding: 0 30px 30px;
display: flow-root;
}
.post-content .post-title a {
-webkit-transition: .3s;
transition: .3s;
color: #242424;
margin-bottom: 16px;
display: block;
}
.full-width figure {
margin-bottom: 50px;
} ol.comment-list .comment {
border-bottom: 1px solid #f7f7f7;
margin: 0;
padding: 25px 0;
align-items: flex-start;
}
.comment-respond {
width: 100%;
}
.auth-mata {
padding-right: 10px;
}
.blog-author-social {
margin: 10px 0 0;
padding: 0;
}
.media-body ul li {
list-style: none;
display: inline-block;
padding: 5px;
}
.comment-meta .vcard img {
width: 70px;
height: 70px;
border-radius: 50%;
border: solid 1px #ccc;
display: inline-block;
position: relative;
margin-top: 15px;
margin-right: 10px;
}
.comment-metadata {
margin-bottom: 15px;
margin-top: -30px;
margin-left: 77px;
}
.reply {
text-align: right;
}
.comment article {
width: 100%;
}
.post-comments-area {
margin-top: 30px;
}
.comment-author a {
color: #111111;
}
.post-comments-area .comment-time-left {
margin-bottom: 7px;
} .comment-respond .comment-reply-title {
padding: 0;
margin: 0 !important;
}
.comment-form {
padding: 0 !important;
}
.comment-respond .comment-form > p:not(:last-child) {
margin-bottom: 15px;
}
form.comment-form p.logged-in-as, form.comment-form p.comment-notes {
margin: 0 !important;
padding: 0 !important;
border: none !important;
}
#respond textarea {
width: 100%;
}
#respond label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: bold;
}
.comment-respond input:not([type="submit"]) {
width: 100% !important;
font-size: 14px;
height: 50px;
line-height: 1.42857;
}
p.comment-form-cookies-consent {
display: none;
}
.comment-respond .form-submit input {
border: none;
cursor: pointer;
background: #ff5d00;
font-size: 18px;
display: inline-block;
vertical-align: middle;
color: #fff !important;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px transparent;
border-radius: 0 20px 0 20px;
padding: 14px 30px 10px;
position: relative;
overflow: hidden;
-webkit-transition-property: color;
transition-property: color;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
font-weight: 500;
font-family: 'Raleway', sans-serif;
margin: 25px 0px 21px 0px;
}
.comment-respond .form-submit input:hover,
.comment-respond .form-submit input:focus {
background: #333333;
}
.comment-notes, .comment-awaiting-moderation, .logged-in-as, .no-comments {
border-top: 1px solid #d1d1d1;
font-family: 'Poppins', sans-serif;
font-weight: 700;
margin: 0;
padding-top: 1.75em;
}
.blog-post.author-details {
padding: 25px;
}
.author-details .section-title {
text-align: center;
margin-bottom: 0;
}
.auth-mata {
padding-right: 10px;
}
.author-details img {
width: 70px;
height: 70px;
border-radius: 50%;
border: solid 1px #ccc;
display: inline-block;
position: relative;
margin-top: 15px;
margin-left: 20px;
}
.author-meta-det {
padding: 10px;
}
.author-details p {
font-size: 14px;
}
.blog-author-social {
margin: 10px 0 0;
padding: 0;
}
.post-comment-area .media {
margin-bottom: 30px;
padding: 4px 12px;
}
ul.media-list li h2 {
font-size: 24px !important;
margin: 0 !important;
}
.comment-list article {
margin-bottom: 20px;
padding: 10px 20px;
box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
-webkit-transition: .3s all;
transition: .3s all;
}
.comment-author img {
width: 60px;
height: 60px;
border-radius: 50%;
border: solid 1px #ccc;
display: inline-block;
position: relative;
margin-top: 15px;
}
.comment-metadata {
margin-bottom: 15px;
margin-top: -30px;
margin-left: 84px;
}
.comment-metadata span.edit-link {
float: right;
}
ol.comment-list {
padding: 0;
}
ol.comment-list, ol.children {
list-style: none;
}
.comment-content p {
font-size: 14px;
} .wpcf7 select {
color: #23292e;
font-weight: normal;
}
input.wpcf7-form-control {
-webkit-transition: all 0.30s ease-in-out;
-moz-transition: all 0.30s ease-in-out;
-ms-transition: all 0.30s ease-in-out;
-o-transition: all 0.30s ease-in-out;
outline: none;
padding: 3px 0px 3px 3px;
margin: 5px 1px 3px 0px;
border: 1px solid #DDDDDD;
width: 100%;
}
.wpcf7-form [class*="date-"], .wpcf7-form span:nth-child(3) {
display: inline-block;
width: 49%;
}
.wpcf7-form span:nth-child(3) {
margin-left: 5px;
}
.wpcf7-form p > label, .wpcf7-form span > label {
width: 100%;
font-size: inherit;
display: inline-grid;
font-weight: 500;
margin-bottom: 25px;
text-transform: capitalize;
}
.wpcf7-form [class*="checkbox-"] {
width: 100% !important;
margin: 0 !important;
}
.wpcf7-form input[type=checkbox], input[type=radio] {
width: 15px;
height: 15px;
}
.wpcf7-form .wpcf7-checkbox, .wpcf7-form .wpcf7-radio, .wpcf7-form .wpcf7-acceptance {
padding: 5px 0;
display: block;
}
.wpcf7-form span .wpcf7-radio .wpcf7-list-item-label, .wpcf7-form .wpcf7-acceptance span.wpcf7-list-item {
margin-left: 0;
margin-right: 5px;
}
.wpcf7-form .wpcf7-acceptance span.wpcf7-list-item label {
display: inline-block;
margin: 0;
}
.wpcf7-checkbox .wpcf7-list-item, .wpcf7-radio span.wpcf7-list-item {
margin-left: 10px;
}
.wpcf7-checkbox .wpcf7-list-item:first-child, .wpcf7-radio span.wpcf7-list-item:first-child {
margin: 0;
}
.wpcf7-form span.wpcf7-list-item-label {
display: inline-block;
vertical-align: text-bottom;
margin-left: 5px;
text-transform: capitalize;
}
.wpcf7-form textarea:focus,
.wpcf7-form input:focus {
border: 1px solid !important;
outline: 0 !important;
box-shadow: none;
}
.wpcf7-form .wpcf7-submit {
display: inline-block;
vertical-align: middle;
color: #fff!important;
border-radius: 0 20px 0 20px;
margin-top: 15px;
padding: 10px 30px;
box-shadow: 0 0 1px transparent;
font-weight: 500;
text-transform: capitalize;
font-size: 15px;
line-height: 1.5;
position: relative;
overflow: hidden;
border: none;
cursor: pointer;
-webkit-transition: all 0.3s;
transition: all 0.3s;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
-webkit-transition-property: color;
transition-property: color;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
border: 0;
margin-left: 15px;
cursor: pointer;
}
.wpcf7-form .wpcf7-submit:before{
content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #333;
border-radius: 100%;
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transition-property: transform;
-webkit-transition-property: -webkit-transform;
transition-property: -webkit-transform;
transition-property: transform;
transition-property: transform, -webkit-transform;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.wpcf7-form .wpcf7-submit:hover {
background: #333 !important;
color: #fff;
}  #page-404 {
padding-bottom: 80px;
}
#page-404 h1 {
margin: 40px 0 20px;
}
#page-404 h3 {
margin: 0 0 20px;
opacity: .8;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}
#page-404 .boxed-btn {
text-transform: capitalize;
} .scrollup.boxed-btn {
width: 50px;
height: 50px;
border-radius: 0px 20px 0 20px;
text-align: center;
position: fixed;
top: 0;
right: 15px;
padding: 0;
color: #ffffff;
opacity: 0;
visibility: hidden;
-webkit-transition: .9s;
transition: .9s;
z-index: 888;
box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .5);
}
.scrollup.is-active {
top: 98%;
-webkit-transform: translateY(-98%);
transform: translateY(-98%);
opacity: 1;
visibility: visible;
}
.scrollup.boxed-btn i {
margin: 0;
}
.overlay-enabled .scrollup.boxed-btn {
z-index: 0;
} .project-masonary,
.service-section {
position: relative;
}
.shape2 {
position: absolute;
left: 4%;
top: 21%;
z-index: -1;
}
.shape2 img {
-webkit-animation: movebounce 5s linear infinite;
animation: movebounce 5s linear infinite;
}
@keyframes movebounce {
0% {
transform: translateY(0px); 
}
50% {
transform: translateY(20px); 
}
100% {
transform: translateY(0px); 
} 
}
.shape3 {
position: absolute;
left: 85%;
top: 20%;
z-index: -1;
}
.shape3 img {
-webkit-animation: moveleftbounce 5s linear infinite;
animation: moveleftbounce 5s linear infinite;
}
@keyframes moveleftbounce {
0% {
transform: translateX(0px); 
}
50% {
transform: translateX(20px); 
}
100% {
transform: translateX(0px); 
} 
}
.shape4 {
position: absolute;
left: 47%;
bottom: 10%;
z-index: 1;
}
.shape4 img {
-webkit-animation: moveleftbounce 5s linear infinite;
animation: moveleftbounce 5s linear infinite;
}
.projects-mockup .shape4 {
left: 62%;
bottom: 85%;
}
.shape5 {
position: absolute;
left: 9%;
bottom: 10%;
z-index: -1;
}
.shape5 img {
-webkit-animation: animationFramesOne 20s infinite linear;
animation: animationFramesOne 20s infinite linear;
}
@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) ;
}
}
.shape6 {
position: absolute;
right: 5%;
bottom: 15%;
z-index: -1;
}
.shape6 img {
-webkit-animation-name: rotateme;
animation-name: rotateme;
-webkit-animation-duration: 30s;
animation-duration: 30s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
}
@keyframes rotateme {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.shape7 {
position: absolute;
left: 35%;
bottom: 8%;
z-index: -1;
}
.shape7 img {
-webkit-animation-name: rotateme;
animation-name: rotateme;
-webkit-animation-duration: 20s;
animation-duration: 20s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
}
.shape8 {
position: absolute;
left: 38%;
bottom: 22%;
z-index: -1;
}
#breadcrumb-area .shape8 {
left: 90%;
}
.shape8 img {
-webkit-animation: moveleftbounce 5s linear infinite;
animation: moveleftbounce 5s linear infinite;
}
.shape13 {
position: absolute;
left: 50%;
top: 12%;
z-index: -1;
}
.projects-mockup .shape13 {
top: auto;
bottom: -10%;
}
.shape13 img {
-webkit-animation-name: rotateme;
animation-name: rotateme;
-webkit-animation-duration: 20s;
animation-duration: 20s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
}
.shape15 {
position: absolute;
right: 0;
top: 10%;
text-align: right;
z-index: -1;
}
.shape15 img {
-webkit-animation: movebounce 5s linear infinite;
animation: movebounce 5s linear infinite;
max-width: 50%;
margin-left: auto;
}
@keyframes movebounce {
0% {
transform: translateY(0px); 
}
50% {
transform: translateY(20px); 
}
100% {
transform: translateY(0px); 
} 
}
.shape16 {
position: absolute;
right: 0;
bottom: 0;
z-index: -1;
}
.shape17 {
position: absolute;
left: 0;
bottom: 0;
z-index: -1;
}
.project-masonary .shape17 {
right: 0;
left: auto;
transform: rotateY(180deg);
}
.shape18 {
position: absolute;
left: -15%;
bottom: 5%;
z-index: -1;
}
.shape19 {
position: absolute;
right: 0;
bottom: 0;
z-index: -1;
}
.shape19 img {
transform: rotate(-45deg);
}
.lines {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 100%;
margin: auto;
width: 90vw;
z-index: -1;
}
.lines .line {
position: absolute;
width: 1px;
height: 100%;
top: 0;
left: 50%;
background: rgba(255, 255, 255, 0.1);
overflow: hidden;
}
.lines .line::after {
content: "";
display: block;
position: absolute;
height: 15vh;
width: 100%;
top: -50%;
left: 0;
background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(75%, #ffffff), to(#ffffff));
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
-webkit-animation: run 7s 0s infinite;
animation: run 7s 0s infinite;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
-webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}
.lines .line:nth-child(1) {
margin-left: -25%;
}
.lines .line:nth-child(1)::after {
-webkit-animation-delay: 2s;
animation-delay: 2s;
}
.lines .line:nth-child(3) {
margin-left: 25%;
}
.lines .line:nth-child(3)::after {
-webkit-animation-delay: 2.5s;
animation-delay: 2.5s;
}
@keyframes run {
0% {
top: -50%;
}
100% {
top: 110%;
}
}    .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;
width: 1px;
word-wrap: normal; }
.screen-reader-text:focus {
background-color: #f1f1f1;
border-radius: 3px;
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
clip: auto;
clip-path: none;
color: #21759b;
display: block;
font-size: 14px;
font-size: 0.875rem;
font-weight: bold;
height: auto;
right: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000; } #content[tabindex="-1"]:focus {
outline: 0;
}
.wp-block-embed-facebook .wp-block-embed__wrapper {
overflow: hidden;
overflow-x: auto;
} .header-above {
padding: .35em 0;
}
.header-above .header-above {
border-bottom: 1px solid rgb(255 255 255 / 21%);
}
.header-abover-mobile {
display: block;
width: 100%;
}
.header-above .header-above-desk {
display: none;
width: 100%;
}
.mobi-above {
width: 100%;
padding: 20px 0;
display: none;
}
.header-above-button {
text-align: center;
display: block;
}
.pull-down-toggle {
border: none;
outline: none;
width: 100%;
display: block;
padding: 5px;
}
.pull-down-toggle i {
width: 35px;
height: 35px;
line-height: 35px;
-moz-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
transition: all 0.3s linear;
}
.pull-down-toggle.is-active i {
-moz-transform: rotate(180deg);
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
.pull-down-toggle.is-active {
border-bottom: 1px solid rgb(255 255 255 / 21%);
padding-bottom: 10px;
}
@media only screen and (min-width:992px) {
.header-above {
padding: .962em 0;
}
.header-above .header-above-desk {
display: block;
}
.header-abover-mobile {
display: none;
}
} .post-content-inner .wp-block-categories li {
display: inline-block;
}
.post-content-inner .wp-block-calendar {
margin-top: 20px;
}
.wp-block-table figcaption {
text-align: center;
}
.wp-block-image figcaption {
text-align: center;
}
#footer-widgets .widget_media_image figcaption,
.wp-block-table figcaption,
figcaption.blocks-gallery-caption {
font-weight: 600;
}
.woocommerce a.button {
color: #ffffff;
}
.blog-post .gallery figure img {
width: 100%;
} button.featherlight-close-icon.featherlight-close {
background-color: #ff5d00;
border: 1px solid #ff5d00;
top: 40px;
right: 40px;
border-radius: 0;
} .is-style-circle figure.tiled-gallery__item:before {
content: '';
position: absolute;
inset: 0;
background: #000;
border-radius: 100%;
opacity: 0;
visibility: hidden;
transition: 0.65s;
}
.is-style-circle figure.tiled-gallery__item:hover:before,
.is-style-circle figure.tiled-gallery__item:focus:before{
visibility: visible;
opacity: 0.5;
} .wp-block-jetpack-tiled-gallery .tiled-gallery__row{
margin-right: calc(-.4 * var(--bs-gutter-x));
margin-left: calc(-.4 * var(--bs-gutter-x));
--bs-gutter-x: 1.5rem;
}
.wp-block-jetpack-tiled-gallery .tiled-gallery__row>* {
padding-right: calc(var(--bs-gutter-x) * .4);
padding-left: calc(var(--bs-gutter-x) * .4);
}
.wp-block-jetpack-tiled-gallery .tiled-gallery__row:not(:last-child) {
margin-bottom: 20px;
}
.wp-block-jetpack-tiled-gallery .tiled-gallery__row+.tiled-gallery__row {
margin-top: 0px;
}
.wp-block-jetpack-tiled-gallery .tiled-gallery__col+.tiled-gallery__col {
margin-left: 0px;
} .wp-block-jetpack-tiled-gallery.is-style-circle .tiled-gallery__item {
border-radius: 50%;
box-shadow: rgb(14 30 37 / 12%) 0px 2px 4px 0px, rgb(14 30 37 / 32%) 0px 2px 16px 0px;
}
.wp-block-jetpack-tiled-gallery.is-style-rectangular .tiled-gallery__item {
width: 100%!important;
height: 100%!important;
box-shadow: rgb(14 30 37 / 12%) 0px 2px 4px 0px, rgb(14 30 37 / 32%) 0px 2px 16px 0px;
}
.wp-block-jetpack-tiled-gallery .tiled-gallery__item {
box-shadow: rgb(14 30 37 / 12%) 0px 2px 4px 0px, rgb(14 30 37 / 32%) 0px 2px 16px 0px;
}
.wp-block-jetpack-tiled-gallery .tiled-gallery__gallery{
justify-content: center;
}
.wp-block-jetpack-tiled-gallery.is-style-columns .tiled-gallery__item{
width: 100%!important;
margin-bottom: 20px
}
.wp-block-jetpack-tiled-gallery.is-style-columns .tiled-gallery__item:last-child{
margin-bottom: 0px
}
.wp-block-jetpack-tiled-gallery.is-style-columns .tiled-gallery__item {
margin-top: 0px;
}
blockquote.wp-block-quote.has-text-color p,blockquote.wp-block-quote.has-text-color p var,blockquote.wp-block-quote.has-text-color p cite,blockquote.wp-block-quote.has-text-color cite {
color: inherit;
}
.wp-block-table figcaption {
text-align: center;
}
.sidebar .widget .wp-block-group .wp-block-image {
margin-bottom: 0;
}
ul.wp-block-rss {
list-style: disc;
}
.has-text-color a:hover, .has-text-color a:focus {
color: inherit;
}
.entry-content ul:last-child {
margin-bottom: 0;
}
.wp-block-code.has-text-color code {
color: inherit;
}
.sidebar .widget .wp-block-group .is-nowrap p {
padding: 0;
}
.sidebar .widget .wp-block-group .wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-date {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
font-size: 0.875rem;
} ul.wp-block-rss {
list-style: none;
margin-left: 0;
}
ul.wp-block-rss li.wp-block-rss__item {
margin-bottom: 1rem;
}
ul.wp-block-rss li.wp-block-rss__item:last-child {
margin-bottom: 0;
}
.sidebar .widget .wp-block-group .wp-block-pullquote blockquote {
margin-top: 0;
margin-bottom: 0;
}
.sidebar .widget .wp-block-group .wp-block-rss .wp-block-rss__item-title > a {
font-weight: 600;
}
.wp-block-quote.is-style-large {
padding-top: 1.10rem;
padding-bottom: 1.10rem;
}
.sidebar .widget .wp-block-group .wp-block-file, .sidebar .widget .wp-block-group .wp-block-image {
padding: 1.563rem 1.000rem 1.563rem;
}
.widget .wp-block-group .is-vertical a {
color: inherit;
}
.entry-content ol.wp-block-latest-comments {
padding-left: 2rem;
}
.wp-block-table figcaption {
text-align: center;
}
.post .entry-content ul.wp-block-archives {
margin-left: 1.125rem;
list-style: disc
}
.wp-block-code.has-background code {
background: inherit;
}
.wp-block-group .wp-block-embed,
.wp-block-group .wp-block-image {
padding: 1.563rem 1.000rem 1.563rem;
}
.wp-block-archives-dropdown select,
.wp-block-categories-dropdown select {
width: auto;
}
.widget .wp-block-group .wp-block-columns {
margin-bottom: 0;
}
.widget .wp-block-group .wp-block-rss li:last-child {
padding-bottom: 0;
}
ul.wp-block-page-list a {
text-decoration: none;
}
.sidebar .wp-block-group .is-nowrap {
margin: 1.563rem 1.000rem 1.563rem;
}
.sidebar .widget .wp-block-group .wp-block-latest-comments__comment-meta {
font-weight: 600;
line-height: 1.5;
}
​.wp-block-woocommerce-customer-account a .wc-block-customer-account__account-icon {
height: 2em;
width: 2em;
}
.sidebar .widget .wp-block-group .is-layout-flow h2 {
border-left: 0 none;
}
.wc-block-components-product-title a,
.wc-block-components-product-title a:hover,
.wc-block-components-product-title a:focus {
text-decoration: none;
}
.wp-block-details summary {
font-weight: 600; 
}
.wp-block-verse {
padding: 10px;
}
.wp-block-calendar .wp-calendar-nav {
position: relative;
top: 0;
left: 0;
width: 100%;
}
.wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-cart__totals-title {
font-size: 24px;
line-height: 34px;
text-transform: capitalize;
margin-bottom: 15px;
}
.sidebar .widget .wp-block-group .wp-block-latest-comments,
.sidebar .widget .wp-block-group .wp-block-loginout,
.sidebar .widget .wp-block-group .wp-block-table,
.sidebar .widget .wp-block-group .wp-block-buttons {
padding: 1.563rem 1.000rem 1.563rem;
}
.sidebar .widget .wp-block-group .wp-block-embed {
margin: 0;
}
.sidebar .widget .wp-block-group ol li {
padding-bottom: 0.625rem;
}
p:last-of-type:has([class*='align'])::after {
display: table;
clear: both;
content: "";
}
.wp-block-details summary {
font-weight: 600;
padding: 10px;
}
a.wc-block-grid__product-link {
text-decoration: none;
}
.wp-block-latest-posts__post-author {
font-size: 1.7rem;
font-weight: 600;
}
.wp-block-cover.has-background-dim-60.has-background-dim .wp-block-cover-text a:hover {
color: inherit;
}
.sidebar .widget .wp-block-group .wp-block-cover,
.sidebar .widget .wp-block-group .wp-block-separator {
margin-bottom: 0rem;
}
.wp-block-quote .wp-block-search {
padding-bottom: 5px;
}
.wc-block-mini-cart__icon,
.wc-block-mini-cart__badge {
color: inherit;
}
.sidebar .widget .wp-block-pullquote cite {
z-index: 1;
}
.sidebar .widget .wp-block-group .is-nowrap {
margin: 1.563rem 1.000rem 1.563rem;
}
.wp-block-post-title a {
text-decoration: none;
}
.wp-block-details summary {
font-weight: 600;
}
.wp-block-group.has-black-border-color {
border-color: #333 !important;
}   
.widget .wp-block-group .wp-block-preformatted a {
color: inherit;
}
.wp-block-woocommerce-single-product .wp-block-post-title a {
text-decoration: none;
}
.wc-block-grid__products .wc-block-components-product-sale-badge.wc-block-grid__product-onsale {
letter-spacing: 0.2px;
border: none;
}
.footer-sidebar .widget .wp-block-group .wp-block-image .wp-element-caption a {
color:inherit;
}
.sidebar .widget .wp-block-group .is-nowrap p {
padding: 0;
}
.sidebar .widget.widget_block .wp-block-group ul.wp-block-latest-posts__list {
margin-left: 0;
}
.sidebar .widget .wp-block-group .wp-block-latest-comments__comment-meta {
font-weight: 600;
line-height: 1.5;
}
.wc-block-components-product-title a.wc-block-components-product-name:hover,
.wc-block-components-product-title a.wc-block-components-product-name:focus {
color: inherit;
}
.wp-block-code.has-text-color code {
color: inherit;
}
.wc-block-grid__products .wc-block-components-product-button__button {
border-radius: 0;
}
.widget .wp-block-heading:before {
left: 0;
top: 0;
}
div.wc-block-components-sidebar-layout.wc-block-cart .wc-block-cart__totals-title {
font-weight: 700;
font-size: 24px;
}
.wc-block-components-checkout-place-order-button{
background: inherit;
}
.widget .wp-block-social-links {
margin-bottom: 0;
}
.wp-block-latest-comments article{
margin-bottom: 0px;
}
.sidebar .widget .wp-block-group .wp-block-button .wp-block-button__link {
color: #fff;
}
button.wp-block-search__button.wp-element-button:hover,
button.wp-block-search__button.wp-element-button:focus{
border: 2px solid;
}
.wc-block-components-totals-coupon__content button.components-button {
border-radius: 4px;
}
.wp-block-code code img {
padding: 10px;
}
.wp-block-latest-posts__list .wp-block-latest-posts__post-author,
.wp-block-latest-posts__list .wp-block-latest-posts__post-date {
text-decoration: none;
}
.wc-block-cart-items td {
color: inherit;
}
.wc-block-components-totals-coupon__content button.components-button {
border-radius: 0;
}
ul.wp-block-page-list a {
text-decoration: none;
}
.wc-block-featured-category__link .wp-block-button__link:focus {
color: #fff;
}
.wc-block-featured-product__price .woocommerce-Price-amount.amount {
color: inherit;
}
.wp-block-post-comments-form .comment-reply-title {
margin-bottom: 1.4rem;
}
.wp-block-group .wp-block-details p {
margin-top: 1rem;
padding-top: 1rem;
}
.woocommerce table.shop_attributes td {
text-decoration: none;
}
.wc-block-cart-items th {
color: inherit;
}
.wp-block-latest-posts__post-author {
font-size: 18px;
font-weight: 600;
}
.post .entry-content ul.wp-block-post-template li.wp-block-post .wp-block-post-date {
padding-bottom: 1.2rem;
}
.wc-block-mini-cart__empty-cart-wrapper .wc-block-mini-cart__shopping-button:focus {
color: #fff;
}
.wc-block-featured-product__price .woocommerce-Price-amount.amount {
text-decoration: none;
}
.widget .wp-block-group pre.wp-block-preformatted {
background: rgba(26, 26, 26, 0.8);
color: #ddd;
}
.sidebar .widget .wp-block-file .wp-block-file__button {
background-color: #1b8415;
}
.wp-block-social-links .wp-social-link:last-child {
margin-bottom: 8px;
}
.wp-block-code.has-background code {
background: inherit;
}
.wc-block-mini-cart__footer-checkout:focus {
background-color: inherit;
color: #fff;
}
.wc-block-cart__submit-button,
.wc-block-cart__submit-button:hover,
.wc-block-cart__submit-button:focus {
text-decoration: none;
}
.wc-block-mini-cart__badge {
color: inherit;
}
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
line-height: 16px;
}
.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions a {
font-size: 1.2rem;
text-decoration: none;
}
.wc-block-mini-cart__footer span.wc-block-components-totals-item__label {
font-size: 16px;
line-height: 20px;
}
.wp-block-file.has-background {
padding: 0.5rem;
}@media only screen and (min-width:992px) {
.ameya-template.admin-bar .header {
top: 32px;
}
.ameya-template .header {
position: absolute;
top: 0;
left: 0;
}
}
@media only screen and (min-width: 992px){
.ameya-template .header, .ameya-template .header-above {
background: transparent;
}
} .ameya-template .header-above {
padding: 0;
line-height: 52px;
border-bottom: 1px solid rgb(255 255 255 / 21%);
}
.ameya-template .header-above i {
background: rgb(255 255 255 / 9%);
color: #ffffff;
}
.ameya-template .header-info li:not(:last-child) {
padding-right: 20px;
margin-right: 15px;
}
.ameya-template .header-above li:after {
right: 0px;
height: 100%;
background: rgb(255 255 255 / 21%);
}
.ameya-template .header-above .trh-social li a i {
opacity: .7;
}
.ameya-template .header-above .trh-social li a:hover i,
.ameya-template .header-above .trh-social li a:focus i {
opacity: 1;
}
.ameya-template .header-above .trh-social li:after {
visibility: hidden;
}  .ameya-template .navbar-area:not(.pagination) {
padding: 1rem 0;
min-height: 87px;
}
.ameya-template .navbar-area:not(.pagination):not(.sticky-menu) {
box-shadow: none;
}
.ameya-template .navbar-area.sticky-menu .logo,
.ameya-template .theme-mobile-nav {
background-color: #0f1425;
border-bottom: 5px solid #ff6a3e;
}
.ameya-template .navbar-area.sticky-menu .logo {
text-align: center;
line-height: 70px;
}
.ameya-template .mobile-logo a,
.ameya-template .navbar-area.sticky-menu .logo a.custom-logo-link {
vertical-align: middle;
}
.ameya-template .navbar-area:not(.sticky-menu) .menubar .menu-wrap > li.menu-item:not(:hover):not(.active):not(.focus) > a, .ameya-template .navbar-area:not(.sticky-menu) .menubar .menu-wrap > li.nav-item:not(:hover):not(.active):not(.focus) > a {
color: #ffffff;
}
.active-ameya .navbar-area:not(.pagination) {
padding: 0;
}
.active-ameya .navbar-area .menubar .menu-wrap > li > a {
line-height: 87px;
}
.active-ameya .menubar .menu-wrap > li:before,
.active-ameya .menubar .menu-wrap > li:after {
content: '';
position: absolute;
left: 50%;
margin-left: -1px;
width: 2px;
height: 0;
background: #ff6a3e;
transition: 0s;
}
.active-ameya .menubar .menu-wrap > li:before {
top: 0;
}
.active-ameya .menubar .menu-wrap > li:after {
bottom: 67%;
transition: height 0.4s;
}
.active-ameya .menubar .menu-wrap > li:hover:before,
.active-ameya .menubar .menu-wrap > li.focus:before {
height: 33%;
transition: height 0.4s;
}
.active-ameya .menubar .menu-wrap > li:hover:after,
.active-ameya .menubar .menu-wrap > li.focus:after {
height: 33%;
transition: 0s;
background: transparent;
}
.active-ameya .menubar .menu-wrap > li:hover:before,
.active-ameya .menubar .menu-wrap > li.active:before,
.active-ameya .menubar .menu-wrap > li.focus:before {
height: 33%;
}
.active-ameya .menubar .menu-wrap > li:-webkit-any(:hover, :focus, .focus, .active) > a {
color: #ff6a3e;
}
.active-ameya .menubar .dropdown-menu li a::before {
content: "";
width: 0;
height: 2px;
position: absolute;
left: 0;
top: 50%;
background: #ff6a3e;
transform: translateY(-50%);
transition: 200ms;
}
.active-ameya .menubar .dropdown-menu li:hover > a:before,
.active-ameya .menubar .dropdown-menu li.focus > a:before {
transition: 300ms;
width: 15px;
}
.active-ameya .menubar .dropdown-menu li:hover > a,
.active-ameya .menubar .dropdown-menu li.focus > a {
background: none;
}
.active-ameya .menubar .dropdown-menu li.focus > a,
.active-ameya .menubar .dropdown-menu li:hover > a {
-webkit-transition: 200ms;
-o-transition: 200ms;
transition: 200ms;
padding-left: 20px;
color: #ff6a3e;
}
.menu-right li.search-button {
border-left: 0;
margin-left: 0;
}
.ameya-template .header-search-close,
.ameya-template .menu-right .header-search-toggle {
color: #ffffff;
border: 2px solid rgb(238 238 238 / 40%);
background: transparent;
}
.ameya-template .menu-right .header-search-toggle {
border-radius: 50px;
width: 48px;
height: 48px;
line-height: 1.5;
}
.ameya-template .sticky-menu .menu-right .header-search-toggle {
background: #ff6a3e;
}
.ameya-template .header-search-close {
padding: 0;
width: 55px;
height: 55px;
border-radius: 55px;
}
.ameya-template .header-search-close:hover,
.ameya-template .header-search-close:focus,
.ameya-template .navbar-area:not(.sticky-menu) .menu-right .header-search-toggle:hover,
.ameya-template .navbar-area:not(.sticky-menu) .menu-right .header-search-toggle:focus {
border: 2px solid rgb(239 239 239 / 40%);
background: rgb(255 255 255 / 8%);
}
.ameya-template .menu-right .header-search-toggle:hover i,
.ameya-template .menu-right .header-search-toggle:focus i {
-webkit-transition: 300ms;
-o-transition: 300ms;
transition: 300ms;
-webkit-transform: rotateZ(90deg);
-ms-transform: rotate(90deg);
transform: rotateZ(90deg);
}
.ameya-template .header-btn a.boxed-btn {
padding: 12px 30px;
}
.ameya-template .navbar-area:not(.sticky-menu) .header-btn a.boxed-btn:hover,
.ameya-template .navbar-area:not(.sticky-menu) .header-btn a.boxed-btn:focus {
color: #111111 !important;
}
.ameya-template .navbar-area:not(.sticky-menu) .header-btn a.boxed-btn:before {
background: #ffffff;
} .ameya-template input[type="button"], .ameya-template input[type="reset"],
.ameya-template input[type="submit"], .ameya-template .wp-block-search__button,
.ameya-template .blog-post .read-more-link, .ameya-template .blog-post .more-link,
.ameya-template .boxed-btn,
.ameya-template .navigation.posts-navigation .nav-links a,
.wp-block-loginout a, .wp-block-button a{
border-radius: 50px;
}
.ameya-template .header-slider .boxed-btn i {
margin-left: 10px;
display: inline-block;
padding: 10px;
border-radius: 60px;
background: rgb(0 0 0 / 6%);
}
.ameya-template .header-slider .boxed-btn:focus,
.ameya-template .header-slider .boxed-btn:hover {
transition: 300ms;
transform: translateX(10px);
} .ameya-template .theme-slider div.theme-content {
margin-top: 50px;
margin-bottom: 80px;
}
.ameya-template .header-slider p {
color: rgba(255, 255, 255, 0.85);
}
.ameya-template .theme-slider:after {
opacity: 0.8;
background-color: #0F1425;
}
.ameya-template .header-slider .owl-nav {
display: none;
}
.ameya-template .header-slider .owl-nav .owl-prev,
.ameya-template .header-slider .owl-nav .owl-next {
display: block;
margin: auto 0;
position: absolute;
top: 0;
bottom: 0;    
z-index: 100;
border-radius: 0;
padding: 0;
font-size: 0;
font-weight: 300;
letter-spacing: 0;
text-align: center;
text-indent: 0;
cursor: pointer;
opacity: 1;
background: #ffffff;
width: 55px;
transition: 0.5s;
line-height: unset;
height: 30px;
border: 14px solid rgba(255, 255, 255, 0);
border-left: unset;
border-right: unset;
background-clip: padding-box;
}
.ameya-template .header-slider .owl-nav .owl-prev {
left: 30px;
}
.ameya-template .header-slider .owl-nav .owl-next {
right: 30px;
}
.ameya-template .header-slider .owl-nav .owl-prev:before,
.ameya-template .header-slider .owl-nav .owl-next:before,
.ameya-template .header-slider .owl-nav .owl-prev:after,
.ameya-template .header-slider .owl-nav .owl-next:after {
content: '';
position: absolute;
width: 20px;
height: 10px;
transition: 0.4s;
color: #ffffff;
}
.ameya-template .header-slider .owl-nav .owl-prev:before {
bottom: 0;
left: 0;
border-bottom: 2px solid;
transform: rotate(-45deg);
transform-origin: 0% 100%;
}
.ameya-template .header-slider .owl-nav .owl-prev:after {
top: 0;
left: 0;
border-top: 2px solid;
transform: rotate(45deg);
transform-origin: 0% 0%;
}
.ameya-template .header-slider .owl-nav .owl-prev:focus-within:before,
.ameya-template .header-slider .owl-nav .owl-prev:hover:before {
width: 25px;
transform: rotate(-20deg);
}
.ameya-template .header-slider .owl-nav .owl-prev:focus-within:after,
.ameya-template .header-slider .owl-nav .owl-prev:hover:after {
width: 25px;
transform: rotate(20deg);
}
.ameya-template .header-slider .owl-nav .owl-next:before {
bottom: 0;
right: 0;
border-bottom: 2px solid;
transform: rotate(45deg);
transform-origin: 100% 100%;
transition: 0.5s;
}
.ameya-template .header-slider .owl-nav .owl-next:after {
top: 0;
right: 0;
border-top: 2px solid;
transform: rotate(-45deg);
transform-origin: 100% 0;
transition: 0.5s;
}
.ameya-template .header-slider .owl-nav .owl-next:focus-within:before,
.ameya-template .header-slider .owl-nav .owl-next:hover:before {
transform: rotate(20deg);
width: 25px;
transition: 0.5s;
}
.ameya-template .header-slider .owl-nav .owl-next:focus-within:after,
.ameya-template .header-slider .owl-nav .owl-next:hover:after {
transform: rotate(-20deg);
width: 25px;
transition: 0.5s;
}
.ameya-template .header-slider .owl-thumbs {
display: none;
}  .ameya-template .single-contact {
padding: 30px 20px 30px 35px;
overflow: hidden;
}
.ameya-template .single-contact:before {
content: "\f013";
font-family: fontawesome;
position: absolute;
top: -200%;
right: -200%;
color: #ffffff;
font-size: 195px;
opacity: 0.17;
z-index: -1;
-webkit-animation: spin 12s linear infinite;
-moz-animation: spin 12s linear infinite;
animation: spin 12s linear infinite;
transition: all .5s ease;
}
.ameya-template .single-contact:hover:before {
top: -113%;
right: -15%;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
.ameya-template .single-contact .single-icon {
border: 2px solid transparent;
}
.ameya-template .single-contact:hover .single-icon {
background: none;
border-color: #ff6a3e;
}
.ameya-template .single-contact:hover i {
color: #ffffff;
}
.ameya-template .single-contact:hover .spin-circle:after {
background: #ffffff;
}
.ameya-template .contact-wrapper h5 {
font-size: 17px;
letter-spacing: 0.75px;
}
.ameya-template .contact-wrapper p {
margin-top: 5px;
}
.ameya-template .single-icon:after {
background: #ffffff;
box-shadow: 5px 10px 20px rgb(0 0 0 / 0.2);
opacity: 1;
}
.ameya-template .header-above i:after,
.ameya-template .single-contact .single-icon:before {
position: absolute;
content: "";
width: 0;
height: 65px;
top: -2px;
right: 0;
bottom: 0;
left: -2px;
background: #ff6a3e;
border-radius: 50%;
z-index: 1;
opacity: 0;
transition: all .5s ease;
}
.ameya-template .single-contact:focus-within .single-icon:before,
.ameya-template .single-contact:hover .single-icon:before {
width: 65px;
opacity: 1;
}
.ameya-template .header-above i {
position: relative;
display: inline-table;
}
.ameya-template .header-above i:before {
position: relative;
z-index: 2;
}
.header-above a:hover i, .header-above a:focus i {
transform: none;
color: #ffffff;
}
.ameya-template .header-above i:after {
height: 32px;
}
.header-above a:hover i:after, .header-above a:focus i:after {
width: 32px;
opacity: 1;
}  .ameya-template .service-box {
overflow: hidden;
padding: 40px;
border-radius: 3px;
}
.ameya-template .service-box figure {
margin: 0;
}
.ameya-template .service-box h3 {
font-size: 18px;
margin-bottom: 7px;
}
.ameya-template .service-box h3 br,
.ameya-template .service-box .devider {
display: none;
}
.ameya-template .service-box p {
font-size: 15px;
color: #969696;
line-height: 1.8em;
margin-bottom: 5px;
}
.ameya-template .service-box a.boxed-btn {
padding: 0;
line-height: normal;
background: none;
font-weight: 600;
color: inherit !important;
letter-spacing: 0.25px;
text-decoration: underline;
transition: none;
border-radius: 0;
}
.ameya-template .service-box a.boxed-btn i,
.ameya-template .service-box a.boxed-btn:before {
display: none;
}
.ameya-template .service-box figcaption {
position: relative;
z-index: 1;
}
.ameya-template .service-box:before {
content: "";
width: 100%;
height: 100%;
background: rgb(0 0 0 / 0.5);
position: absolute;
top: 0;
left: -100%;
opacity: 1;
z-index: 0;
}
.ameya-template .service-box:focus-within:before,
.ameya-template .service-box:hover:before {
left: 0;
transition: 300ms;
transition-delay: 200ms;
}
.ameya-template .service-icon {
width: 70px;
height: 70px;
padding: 5px;
line-height: 70px;
text-align: center;
display: inline-block;
color: #ffffff;
background: #ff6a3e;
border-radius: 100px;
margin-bottom: 20px;
-webkit-transition: all .3s;
transition: all .3s;
}
.ameya-template .service-box:focus-within .service-icon,
.ameya-template .service-box:hover .service-icon {
animation-name: iconsrvbox;
animation-duration: 1s;
}
@keyframes iconsrvbox{
0%{
transform:scale(1)
}
50%{
transform:scale(1.1)
}
100%{
transform:scale(1)
}
}
.ameya-template .service-icon i {
margin: 0;
font-size: 32px;
}  .blog-unique {
background-color: #f9f9f9;
}
.unique-blog-post {
margin-bottom: 30px;
padding: 12px 12px 25px;
border-radius: 5px;
background-color: #ffffff;
-webkit-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
}
.unique-blog-post:focus-within,
.unique-blog-post:hover {
-webkit-box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.1);
box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.1);
-webkit-transform: translateY(-10px);
transform: translateY(-10px);
}
.unique-blog-post .image {
border-radius: 5px;
margin: 0;
overflow: hidden;
}
.unique-blog-post .image img {
border-radius: 5px;
transition: all .8s;
-moz-transition: all .8s;
-webkit-transition: all .8s;
-o-transition: all .8s;
}
.unique-blog-post .image:focus-within img,
.unique-blog-post .image:hover img,
.unique-blog-post:focus-within .image img,
.unique-blog-post:hover .image img {
-webkit-transform: scale(1.1) rotate(-5deg);
transform: scale(1.1) rotate(-5deg);
}
.unique-blog-post .unique-post-content {
padding-top: 25px;
padding-left: 8px;
padding-right: 8px;
}
.unique-blog-post .unique-post-content h3,
.unique-blog-post .unique-post-content h3 a {
margin-bottom: 0;
font-size: 24px;
line-height: 1.3;
font-weight: 700;
}
.unique-blog-post .unique-post-content .d-flex {
margin-top: 20px;
}
.unique-blog-post .unique-post-content .d-flex img {
width: 55px;
height: 55px;
border-radius: 50%;
}
.unique-blog-post .unique-post-content .d-flex .info {
margin-left: 15px;
}
.unique-blog-post .unique-post-content h5,
.unique-blog-post .unique-post-content h5 a {
font-weight: 600;
margin-bottom: 0;
font-size: 18px;
text-transform: capitalize;
}
.unique-blog-post .unique-post-content .info span {
display: block;
line-height: 1;
}
.unique-blog-post .unique-post-content h3 a,
.unique-blog-post .unique-post-content h5 a,
.unique-blog-post .unique-post-content .info span a {
color: #111111;
} .special-blog {
position: relative;
padding: 20px;
padding-bottom: 15px;
border-radius: 10px;
margin-bottom: 30px;
transition: 0.3s;
box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
}
.special-blog:focus-within,
.special-blog:hover {
box-shadow: 6px 5px 30px 0px rgba(0, 0, 0, 0.1);
}
.special-blog > .image {
overflow: hidden;
border-radius: 10px;
}
.post_date {
width: 60px;
min-width: fit-content;
height: 60px;
position: relative;
z-index: 1;
padding: 0 9px;
border-radius: 5px;
display: flex;
font-size: 12px;
text-transform: uppercase;
color: #ffffff;
text-align: center;
flex-direction: column;
line-height: 1;
font-weight: 700;
justify-content: center;
background: #ff6a3e;
box-shadow: 6px 5px 16px 0px rgba(0, 0, 0, 0.15);
}
.post_date span {
font-size: 26px;
margin-bottom: 2px;
}
.unique-blog-post .post_date {
margin-top: -50px;
margin-right: 15px;
margin-left: auto;
}
.special-blog .post_date {
margin-top: -35px;
}
.special-blog .unique-post-content {
padding: 0;
}
.post_meta-categories span a {
display: inline-block;
position: relative;
font-size: 14px;
font-weight: 600;
color: #989898;
line-height: 1.2;
letter-spacing: 0.25px;
text-transform: capitalize;
}
.post_meta-categories span a i {
color: #ff6a3e;
margin-right: 3px;
font-size: 18px;
}
.special-blog p {
font-size: 15px;
margin: 5px 0 0;
}
.unique-blog-post .read-more-link,
.unique-blog-post .more-link {
display: inline-block;
position: relative;
z-index: 1;
font-size: 14px;
font-weight: 700;
line-height: 1.2;
text-transform: uppercase;
overflow: hidden;
margin-top: 10px;
letter-spacing: 0.25px;
transition: 0.5s;
transition-delay: 0.4s;
}
.unique-blog-post .read-more-link:hover,
.unique-blog-post .read-more-link:focus,
.unique-blog-post .more-link:hover,
.unique-blog-post .more-link:focus {
padding-left: 45px;
transition-delay: 0s;
}
.unique-blog-post .read-more-link:before,
.unique-blog-post .read-more-link:after,
.unique-blog-post .more-link:before,
.unique-blog-post .more-link:after {
position: absolute;
top: 0;
bottom: 0;
margin: auto 0;
opacity: 0;
visibility: hidden;
transition: 0.5s;
transition-delay: 0.4s;
}
.unique-blog-post .read-more-link:before,
.unique-blog-post .more-link:before {
content: '';
left: 0;
width: 0;
height: 2px;
background: #ff6a3e;
}
.unique-blog-post .read-more-link:after,
.unique-blog-post .more-link:after {
content: '\f105';
font-family: fontawesome;
font-size: 20px;
line-height: 15px;
font-weight: bolder;
top: 0.5px;
left: 0;
}
.unique-blog-post .read-more-link:hover:before,
.unique-blog-post .read-more-link:focus:before,
.unique-blog-post .more-link:hover:before,
.unique-blog-post .more-link:focus:before,
.unique-blog-post .read-more-link:hover:after,
.unique-blog-post .read-more-link:focus:after,
.unique-blog-post .more-link:hover:after,
.unique-blog-post .more-link:focus:after {
opacity: 1;
visibility: visible;
transition-delay: 0s;
}
.unique-blog-post .read-more-link:hover:before,
.unique-blog-post .read-more-link:focus:before,
.unique-blog-post .more-link:hover:before,
.unique-blog-post .more-link:focus:before {
width: 38px;
}
.unique-blog-post .read-more-link:hover:after,
.unique-blog-post .read-more-link:focus:after,
.unique-blog-post .more-link:hover:after,
.unique-blog-post .more-link:focus:after {
left: 34px;
}
.unique-blog-post .read-more-link:hover,
.unique-blog-post .more-link:hover,
.unique-blog-post .read-more-link:focus,
.unique-blog-post .more-link:focus,
.unique-blog-post .unique-post-content h3 a:hover,
.unique-blog-post .unique-post-content h3 a:focus,
.post_meta-categories span a:hover,
.post_meta-categories span a:focus {
color: #ff6a3e;
} .ameya-template #breadcrumb-area {
padding-top: 205px;
}
.ameya-template #breadcrumb-area:after {
background: #0F1425;
opacity: 0.8;
}
@media only screen and (max-width:767px) {
.ameya-template .header-slider p {
display: block;
width: 230px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ameya-template .theme-slider .text-center p {
margin-left: auto;
margin-right: auto;
}
.ameya-template .theme-slider .text-right p {
margin-left: auto;
}
.ameya-template .header-slider .boxed-btn {
padding: 6px 30px;
}
.ameya-template .header-slider .boxed-btn i {
padding: 6px;
font-size: 11px;
vertical-align: bottom;
}
}
@media only screen and (min-width:992px) {
.ameya-template .single-contact .d-flex {
text-align: center;
}
.ameya-template .header-above {
display: block;
}
.ameya-template .header-slider .owl-thumbs {
bottom: 190px;
}
.ameya-template .contact-wrapper {
margin-top: -160px;
background: none;
border-bottom: 0;
}
.ameya-template .single-contact {
color: #ffffff;
background: rgba(13, 20, 30, 0.47);        
border: 1px solid #1E253D;
}
.ameya-template .single-contact:focus-within,
.ameya-template .single-contact:hover {
background: rgba(35, 44, 57, 0.47);
}
.ameya-template .single-contact:not(:last-child) {
margin-right: 15px;
}
.ameya-template .single-contact:after {
visibility: hidden;
}
.ameya-template .contact-wrapper p {
color: rgba(231, 231, 231, 0.82);
}
.ameya-template .header-slider .owl-nav {
display: block;
}
} .sidebar .widget_block { }
.unique-post-content .wp-block-categories li {
display: inline-block;
}
.unique-blog-post .unique-post-content .wp-block-search__button {
font-size: 16px;
padding: 0 25px 0px 7px;
}
.unique-post-content .wp-block-calendar {
margin-top: 20px;
}
#footer-copyright .copyright-text p {
font-size: 15px;
}
.wp-block-table figcaption {
text-align: center;
font-weight: 600;
}
.wp-block-table table td {
text-align: center;
}
.wp-block-image figcaption {
text-align: center;
}
.wp-block-table table td {
text-align: center;
}
ul.wp-block-social-links li a {
font-size: 24px;
}
.sidebar .wp-block-latest-comments {
padding: 0;
}
#wp-calendar td:not(#prev):not(#next) a {
text-decoration: none;
}
#footer-widgets .wp-block-latest-comments__comment a {
word-break: break-word;
}
.woocommerce a.button {
color: #ffffff;
}
.unique-post-content ol.wp-block-latest-comments {
padding: 0;
}
.site-content .wp-block-latest-comments {
padding: 0;
}
.widget .tagcloud a, .wp-block-tag-cloud a {
border-radius: 50px;
}	
#footer-widgets .wp-block-latest-comments {
padding: 0;
}
.sidebar .wp-block-file {
padding: 20px;
}
.wp-block-embed iframe {
height: auto;
}
.site-content ol.wp-block-latest-comments {
padding: 0;
}
.site-content .wp-block-site-logo {
padding: 15px 0;
}
.widget_product_search button, .widget_search button {
line-height: 1.8;
}
.wp-block-buttons {
margin: 15px 0;
}
.wc-block-product-categories li {
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
align-items: center;
}
.wp-block-search .wp-block-search__button {
position: relative;
padding: 0 30px 0 10px;
border-radius:0;
}
.aligncenter {
margin-left: auto;
margin-right: auto;
}
.blog-post .gallery figure img {
width: 100%;
}
.wp-block-embed figcaption {
text-align: center;
}
.wp-block-code code img {
display: inline-block;
margin-left: 20px;
}
.wp-block-pullquote.has-background blockquote {
background: inherit;
}
.site-content .wp-block-loginout,
.site-content .wp-block-search {
padding: 20px 0;
}
pre.has-background code {
background-color: inherit;
}
p.has-text-color em {
color: inherit;
}
.site-content .wp-block-group.has-background {
padding: 0 20px;
}
.wp-block-group em {
color: inherit;
}
.wp-block-button.is-style-outline a.wp-block-button__link {
border-color: inherit;
}
.has-text-color em,
.has-text-color h2 {
color: inherit;
}
a.wp-block-file__button,
a.wp-block-file__button:hover,
a.wp-block-file__button:focus {
color: #fff;
}
.has-text-color * {
color: inherit;
}
.has-text-color a:hover, 
.has-text-color a:focus {
color: inherit;
}
.wp-block-pullquote.has-text-color blockquote {
border-color: inherit;
}    
blockquote {
border-color: inherit !important;
}
.has-background.wp-block-read-more {
padding: 5px 10px;
}
.wp-block-calendar table caption {
font-weight: 500;
}
.wp-block-avatar img {
border-radius: 50%;
} .wp-block-tag-cloud {
padding: 20px;
}
.wp-block-tag-cloud a {
border-radius: 0 20px 0 20px;
border: 1px solid #f1f1f1;
color: #111111;
background: #fff;
padding: 6px 16px;
display: block;
margin-bottom: 10px;
-webkit-transition: .3s;
transition: .3s;
}
.wp-block-tag-cloud a {
display: inline-block !important;
margin-right: 10px;
}
.sidebar .wp-block-search__label {
position: relative;
text-transform: capitalize;
background-color: #f7f1ee;
padding: 10px 20px;
}
.sidebar .wp-block-search__label::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 3px;
height: 100%;
}
.sidebar .wp-block-search__inside-wrapper {
margin: 20px;
position: relative;
}
.sidebar .wp-block-search .wp-block-search__button {
position: absolute;
right: 0;
height: 100%;
padding: 8px;
}
.wp-block-image figcaption {
margin-bottom: 0;
} button.featherlight-close-icon.featherlight-close {
background-color: #ff5d00;
border: 1px solid #ff5d00;
top: 40px;
right: 40px;
border-radius: 0;
} .is-style-circle figure.tiled-gallery__item:before {
content: '';
position: absolute;
inset: 0;
background: #000;
border-radius: 100%;
opacity: 0;
visibility: hidden;
transition: 0.65s;
}
.is-style-circle figure.tiled-gallery__item:hover:before,
.is-style-circle figure.tiled-gallery__item:focus:before{
visibility: visible;
opacity: 0.5;
} .wp-block-jetpack-tiled-gallery .tiled-gallery__row{
margin-right: calc(-.4 * var(--bs-gutter-x));
margin-left: calc(-.4 * var(--bs-gutter-x));
--bs-gutter-x: 1.5rem;
}
.wp-block-jetpack-tiled-gallery .tiled-gallery__row>* {
padding-right: calc(var(--bs-gutter-x) * .4);
padding-left: calc(var(--bs-gutter-x) * .4);
}
.wp-block-jetpack-tiled-gallery .tiled-gallery__row:not(:last-child) {
margin-bottom: 20px;
}
.wp-block-jetpack-tiled-gallery .tiled-gallery__row+.tiled-gallery__row {
margin-top: 0px;
}
.wp-block-jetpack-tiled-gallery .tiled-gallery__col+.tiled-gallery__col {
margin-left: 0px;
} .wp-block-jetpack-tiled-gallery.is-style-circle .tiled-gallery__item {
border-radius: 50%;
box-shadow: rgb(14 30 37 / 12%) 0px 2px 4px 0px, rgb(14 30 37 / 32%) 0px 2px 16px 0px;
}
.wp-block-jetpack-tiled-gallery.is-style-rectangular .tiled-gallery__item {
width: 100%!important;
height: 100%!important;
box-shadow: rgb(14 30 37 / 12%) 0px 2px 4px 0px, rgb(14 30 37 / 32%) 0px 2px 16px 0px;
}
.wp-block-jetpack-tiled-gallery .tiled-gallery__item {
box-shadow: rgb(14 30 37 / 12%) 0px 2px 4px 0px, rgb(14 30 37 / 32%) 0px 2px 16px 0px;
}
.wp-block-jetpack-tiled-gallery .tiled-gallery__gallery{
justify-content: center;
}
.wp-block-jetpack-tiled-gallery.is-style-columns .tiled-gallery__item{
width: 100%!important;
margin-bottom: 20px
}
.wp-block-jetpack-tiled-gallery.is-style-columns .tiled-gallery__item:last-child{
margin-bottom: 0px
}
.wp-block-jetpack-tiled-gallery.is-style-columns .tiled-gallery__item {
margin-top: 0px;
}
blockquote.wp-block-quote.has-text-color p, blockquote.wp-block-quote.has-text-color p var, blockquote.wp-block-quote.has-text-color p cite, blockquote.wp-block-quote.has-text-color cite {
color: inherit;
}
.wp-block-table figcaption {
text-align: center;
}
.sidebar .widget .wp-block-group .wp-block-image {
margin-bottom: 0;
}
ul.wp-block-rss {
list-style: disc;
}
.has-text-color a:hover, .has-text-color a:focus {
color: inherit;
}
.entry-content ul:last-child {
margin-bottom: 0;
}
.wp-block-code.has-text-color code {
color: inherit;
}
.sidebar .widget .wp-block-group .is-nowrap p {
padding: 0;
}
.sidebar .widget .wp-block-group .wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-date {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
font-size: 0.875rem;
} ul.wp-block-rss {
list-style: none;
margin-left: 0;
}
ul.wp-block-rss li.wp-block-rss__item {
margin-bottom: 1rem;
}
ul.wp-block-rss li.wp-block-rss__item:last-child {
margin-bottom: 0;
}
.sidebar .widget .wp-block-group .wp-block-pullquote blockquote {
margin-top: 0;
margin-bottom: 0;
}
.sidebar .widget .wp-block-group .wp-block-rss .wp-block-rss__item-title > a {
font-weight: 600;
}
.wp-block-quote.is-style-large {
padding-top: 1.10rem;
padding-bottom: 1.10rem;
}
.sidebar .widget .wp-block-group .wp-block-file, .sidebar .widget .wp-block-group .wp-block-image {
padding: 1.563rem 1.000rem 1.563rem;
}
.widget .wp-block-group .is-vertical a {
color: inherit;
}
.entry-content ol.wp-block-latest-comments {
padding-left: 2rem;
}
.wp-block-table figcaption {
text-align: center;
}
.post .entry-content ul.wp-block-archives {
margin-left: 1.125rem;
list-style: disc
}
.wp-block-code.has-background code {
background: inherit;
}
.wp-block-group .wp-block-embed,
.wp-block-group .wp-block-image {
padding: 1.563rem 1.000rem 1.563rem;
}
.wp-block-archives-dropdown select,
.wp-block-categories-dropdown select {
width: auto;
}
.widget .wp-block-group .wp-block-columns {
margin-bottom: 0;
}
.widget .wp-block-group .wp-block-rss li:last-child {
padding-bottom: 0;
}
ul.wp-block-page-list a {
text-decoration: none;
}
.sidebar .wp-block-group .is-nowrap {
margin: 1.563rem 1.000rem 1.563rem;
}
.sidebar .widget .wp-block-group .wp-block-latest-comments__comment-meta {
font-weight: 600;
line-height: 1.5;
}
​.wp-block-woocommerce-customer-account a .wc-block-customer-account__account-icon {
height: 2em;
width: 2em;
}
.sidebar .widget .wp-block-group .is-layout-flow h2 {
border-left: 0 none;
}
.wc-block-components-product-title a,
.wc-block-components-product-title a:hover,
.wc-block-components-product-title a:focus {
text-decoration: none;
}
.wp-block-verse {
padding: 10px;
}
.wp-block-details summary {
font-weight: 600; 
}
.wp-block-calendar .wp-calendar-nav {
position: relative;
top: 0;
left: 0;
width: 100%;
}
.sidebar .widget .wp-block-group .wp-block-latest-comments,
.sidebar .widget .wp-block-group .wp-block-loginout,
.sidebar .widget .wp-block-group .wp-block-table,
.sidebar .widget .wp-block-group .wp-block-buttons {
padding: 1.563rem 1.000rem 1.563rem;
}
.wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-cart__totals-title {
font-size: 24px;
line-height: 34px;
text-transform: capitalize;
margin-bottom: 15px;
}
.sidebar .widget .wp-block-group .wp-block-embed {
margin: 0;
}
.sidebar .widget .wp-block-group ol li {
padding-bottom: 0.625rem;
}
.wp-block-details summary {
font-weight: 600;
padding: 10px;
}
.wp-block-latest-posts__post-author {
font-size: 1.7rem;
font-weight: 600;
}
a.wc-block-grid__product-link {
text-decoration: none;
}
.wp-block-cover.has-background-dim-60.has-background-dim .wp-block-cover-text a:hover {
color: inherit;
}
.sidebar .widget .wp-block-group .wp-block-cover,
.sidebar .widget .wp-block-group .wp-block-separator {
margin-bottom: 0rem;
}
.wp-block-quote .wp-block-search {
padding-bottom: 5px;
}
.wc-block-mini-cart__icon,
.wc-block-mini-cart__badge {
color: inherit;
}
.sidebar .widget .wp-block-pullquote cite {
z-index: 1;
}
.sidebar .widget .wp-block-group .is-nowrap {
margin: 1.563rem 1.000rem 1.563rem;
}
.wp-block-post-title a {
text-decoration: none;
}
.wp-block-details summary {
font-weight: 600;
}
.wp-block-group.has-black-border-color {
border-color: #333 !important;
}   
.widget .wp-block-group .wp-block-preformatted a {
color: inherit;
}
.wp-block-woocommerce-single-product .wp-block-post-title a {
text-decoration: none;
}
.footer-sidebar .widget .wp-block-group .wp-block-image .wp-element-caption a {
color:inherit;
}
.sidebar .widget .wp-block-group .is-nowrap p {
padding: 0;
}
.sidebar .widget.widget_block .wp-block-group ul.wp-block-latest-posts__list {
margin-left: 0;
}
.sidebar .widget .wp-block-group .wp-block-latest-comments__comment-meta {
font-weight: 600;
line-height: 1.5;
}
.wc-block-components-product-title a.wc-block-components-product-name:hover,
.wc-block-components-product-title a.wc-block-components-product-name:focus {
color: inherit;
}
.wp-block-code.has-text-color code {
color: inherit;
}
.wc-block-grid__products .wc-block-components-product-button__button {
border-radius: 0;
}
.widget .wp-block-heading:before {
left: 0;
top: 0;
}
div.wc-block-components-sidebar-layout.wc-block-cart .wc-block-cart__totals-title {
font-weight: 700;
font-size: 24px;
}
.wc-block-components-checkout-place-order-button{
background: inherit;
}
.widget .wp-block-social-links {
margin-bottom: 0;
}
.wp-block-latest-comments article{
margin-bottom: 0px;
}
.sidebar .widget .wp-block-group .wp-block-button .wp-block-button__link {
color: #fff;
}
button.wp-block-search__button.wp-element-button:hover,
button.wp-block-search__button.wp-element-button:focus{
border: 2px solid;
}
.wc-block-components-totals-coupon__content button.components-button {
border-radius: 4px;
}
.wp-block-code code img {
padding: 10px;
}
.wp-block-latest-posts__list .wp-block-latest-posts__post-author,
.wp-block-latest-posts__list .wp-block-latest-posts__post-date {
text-decoration: none;
}
.wc-block-cart-items td {
color: inherit;
}
.wc-block-components-totals-coupon__content button.components-button {
border-radius: 0;
}
ul.wp-block-page-list a {
text-decoration: none;
}
.wc-block-featured-category__link .wp-block-button__link:focus {
color: #fff;
}
.wc-block-featured-product__price .woocommerce-Price-amount.amount {
color: inherit;
}
.wp-block-post-comments-form .comment-reply-title {
margin-bottom: 1.4rem;
}
.wp-block-group .wp-block-details p {
margin-top: 1rem;
padding-top: 1rem;
}
.woocommerce table.shop_attributes td {
text-decoration: none;
}
.wc-block-cart-items th {
color: inherit;
}
.wp-block-latest-posts__post-author {
font-size: 18px;
font-weight: 600;
}
.post .entry-content ul.wp-block-post-template li.wp-block-post .wp-block-post-date {
padding-bottom: 1.2rem;
}
.wc-block-mini-cart__empty-cart-wrapper .wc-block-mini-cart__shopping-button:focus {
color: #fff;
}
.wc-block-featured-product__price .woocommerce-Price-amount.amount {
text-decoration: none;
}
.widget .wp-block-group pre.wp-block-preformatted {
background: rgba(26, 26, 26, 0.8);
color: #ddd;
}
.sidebar .widget .wp-block-file .wp-block-file__button {
background-color: #1b8415;
}
.wp-block-social-links .wp-social-link:last-child {
margin-bottom: 8px;
}
.wp-block-code.has-background code {
background: inherit;
}
.wc-block-mini-cart__footer-checkout:focus {
background-color: inherit;
color: #fff;
}
.wc-block-cart__submit-button,
.wc-block-cart__submit-button:hover,
.wc-block-cart__submit-button:focus {
text-decoration: none;
}
.wc-block-mini-cart__badge {
color: inherit;
}
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
line-height: 16px;
}
.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions a {
font-size: 1.2rem;
text-decoration: none;
}
.wc-block-mini-cart__footer span.wc-block-components-totals-item__label {
font-size: 16px;
line-height: 20px;
}
.wp-block-file.has-background {
padding: 0.5rem;
}.active-three .menubar .menu-wrap > li:-webkit-any(:hover, :focus, .focus, .active) > a {
color: #ff6a3e;
}
.active-three .menubar .menu-wrap > li:-webkit-any(li,.dropdown) > a:after {
border-bottom-color: #ff6a3e;
} .navigation.posts-navigation .nav-links a,
.single-icon .spin-circle:after,
.single-icon:after,
input[type="button"],
input[type="reset"],
input[type="submit"],
.wp-block-search__button,
.mobile-menu-right .header-search-toggle,
.blog-post .more-link,
.blog-post .read-more-link,
.header-search-popup .search-submit,
.close-style,
.menu-toggle,
.mobile-menu .dropdown > .mobi_drop > button,
.mobile-menu .dropdown.current > .mobi_drop button,
.section-title h2 span:not(.customize-partial-edit-shortcut),
.boxed-btn,
.header-above,
.mean-container a.meanmenu-reveal,
#search,
.service-box .devider,
.features-box h3:before,
.gallery-items div.single-item a div i,
.meta-info,
#latest-news .post-content:before,
#latest-news .blog-post:hover .boxed-btn:before,
.section-before-border:before,
.page-link:hover,
.page-item.next .page-link,
.page-item.prev .page-link,
.post-new-comment .boxed-btn,
.scrollup.boxed-btn,
button.subscribe-btn,
.widget_search button,
.widget .tagcloud a:hover,
.widget .tagcloud a:focus,
.wp-block-tag-cloud a:hover,
.wp-block-tag-cloud a:focus,
.search-icon i,
.widget-enter-mail,
.pagination .nav-links .page-numbers.current,
.pagination .nav-links .page-numbers:hover,
.pagination .nav-links .page-numbers:focus,
.woocommerce table.shop_table th,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wpcf7-form .wpcf7-submit,
.comment-respond .form-submit input,
table th, .sidebar .wp-block-calendar table th,
.unique-blog-post .unique-post-content .wp-block-search__button,
.wp-block-calendar table th,
.wp-block-file .wp-block-file__button,
.wp-block-loginout a,
.widget_product_search button,
.wp-block-button a,.sidebar .wp-block-search__label::before {
background: #ff6a3e;
}
.wp-block-post-terms a:hover,
.ameya-template .features-box-icon i,
.widget_contact_widget li i,
.header .widget_nav_menu .menu > li:hover > a,
.header .widget_nav_menu .menu > li.focus > a,
.mobile-menu .menu-wrap li.active > a,
.mobile-menu .menu-wrap li.current > a,
.mobile-menu .menu-wrap li > a:focus,
.mobile-menu .menu-wrap li > a:hover,
.header-slider h1 span,
.contact-wrapper i,
.purchase-btn i,
.blog-post:hover .post-title a,
.blog-post .post-title a:focus,
.blog-post .post-title a:hover,
.copyright-text a,
.copyright a,
.payment-method a i:hover,
.payment-method a:focus i,
#breadcrumb-area ul li a,
.masonary-meta-info li a:hover,
.comment-reply,
#contact-info .single-box i,
.widget a:hover,
.widget a:focus,
li.latest-news:hover h5,
.menu-primary-container ul li a:hover,
.menu-primary-container ul li:hover:before,
.recent-post:hover h6,
.days li .active,
.author-meta-det h6 a, .blog-author-social li i,
.widget_recent_entries ul li a:hover,
li.recentcomments a:hover,
.reply a, .comment-metadata time, .edit-link a,
.comment-respond .comment-reply-title,
.post-comment-area .media,
p.logged-in-as a,
#wp-calendar td a,a,
.site-first-letter,
.site-last-letter,
em, cite, q {
color: #ff6a3e;
}
.contact-wrapper,
.header-search-popup form .search-field:hover,
.header-search-popup form .search-field:focus,
.mobile-menu-right .header-search-toggle,
.menu-toggle,
.header-close-menu,
.single-partner a:hover,
.single-partner a:focus,
.page-link:hover,
.page-item.next .page-link,
.page-item.prev .page-link,
.days li .active,
.header-slider .owl-thumbs.active,
#wp-calendar td a {
border-color: #ff6a3e;    
}
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .button:focus {
background: #1d1a1a;
color: #fff;
}
.wp-block-button.is-style-outline a.wp-block-button__link {
background: transparent;
color: #ff6a3e !important;
border: 2px solid #ff6a3e;
}
.wp-block-button.is-style-outline a:hover, .wp-block-button.is-style-outline a:focus {
color: #fff !important;
background: #ff6a3e;
border-color: #ff6a3e;
}@media only screen and (min-width:992px) {
.features-box {
padding: 1.5rem!important;
}
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
.shape1, .shape2, .shape3, .shape4, .shape5, .shape6, .shape7,
.shape8, .shape9, .shape10, .shape11, .shape12, .shape13, .shape14, .shape15, .shape17, .shape18 {
display: none;
}
}
@media only screen and (max-width:1200px) and (min-width:991px) {
#wp-calendar th, #wp-calendar td {
padding: 0px !important;
}
.scrollup.boxed-btn {
bottom: 70px;
}
.header-slider h1 {
font-size: 46px;
}
.header-slider p {
margin-bottom: 30px;
}
.header-slider .owl-thumbs {
bottom: 70px;
}
.contact-wrapper {
margin-top: 50px;
}
.single-contact {
padding: 28px 20px;
}
.main-menu li {
margin-left: 10px;
}
} @media only screen and (min-width:992px) {
.search-icon {
display: none;
}
}
@media only screen and (min-width:601px) and (max-width:767px) {
.header-above ul:not(.trh-social) li:nth-child(2) {
padding-right: 0;
margin-right: 0;
}
.header-above ul:not(.trh-social) li:nth-child(2):after {
visibility: hidden;
}
} @media only screen and (min-width:768px) and (max-width:991px) {
.gallery-items div.single-item {
width: 33.333%;
}
.gallery-items div.single-item img {
width: 100%;
}
#latest-news .blog-post:hover .post-overlay img {
top: 40% !important;
}
} @media only screen and (max-width:991px) {
.header-right-bar {
padding-right: 42px;
}
.bb {
border-bottom: 1px solid rgba(0,0,0,.2);
}
.gallery-items div.single-item {
width: 50%;
}
.recent-post {
margin-bottom: 10px;
} 
#latest-news .post-thumbnail img {
width: 100%;
}
#latest-news .post-overlay img {
width: 110px;
height: 110px;
border-radius: 50%;
}
.theme-slider div.theme-content {
margin-bottom: 0;
}
.header-slider h1 {
font-size: 36px;
}
.header-slider p {
margin-bottom: 30px;
}
.header-slider .owl-thumbs {
bottom: 20px;
text-align: center;
}
.header-above li {
border-right: none !important;
}
.contact-wrapper {
margin-top: 40px;
border-bottom-width: 0;
box-shadow: none;
}
.single-icon {
margin-right: 0px;
}
.single-contact {
box-shadow: 0 15px 45px -5px rgba(0,0,0,.10);
border-width: 0;
border-style: solid;
border-color: inherit;
border-bottom-width: 3px;
background-color: #ffffff;
margin-bottom: 20px;
}
.single-contact:after {
display: none;
}
.blog-post:hover .post-thumbnail img + .meta-info,
.blog-post:hover .post-thumbnail img + .post-overlay + .meta-info,
.blog-post:hover .post-thumb img + figcaption + .meta-info,
.blog-post:hover .post-thumb img + .meta-info {
bottom: -3%;
}
.single-contact.info-third:last-child {
margin: auto;
}
#ourfeatures .features-box:before,
#ourfeatures .features-box:after {
display: none;
}
.sidebar {
padding-top: 50px;
}
}
@media (min-width: 601px) and (max-width: 991px) {
.single-contact {
flex: auto;
max-width: 48%;
padding: 28px 20px;
margin-right: 20px;
}
.single-contact:nth-child(2n+2),
.single-contact:last-child {
margin-right: 0;
}
}
@media (min-width: 783px) and (max-width: 991px) {
.admin-bar .theme-mobile-nav.sticky-menu {
top: 32px;
}
}
@media (min-width: 601px) and (max-width: 782px) {
.admin-bar .theme-mobile-nav.sticky-menu {
top: 45px;
}
}
@media only screen and (max-width:767px) {
.shape1, .shape2, .shape3, .shape4, .shape5, .shape6, .shape7,
.shape8, .shape9, .shape10, .shape11, .shape12, .shape13, .shape14, .shape15, .shape16, .shape17, .shape18 {
display: none;
}
.single-icon {
margin-bottom: 10px;
}
.single-icon img,
.single-icon i {
margin: auto;
}
.theme-mobile-menu .header-wrap-right .header-btn {
display: none;
}
.section-title h2 {
line-height: 1.2;
}
#cta h3 {
font-size: 32px;
margin-bottom: 8px;
}
.header-single-slider .container.inner-content {
width: 100%;
margin-left: 0;
}
.header-single-slider .container.inner-content.text-right {
margin-right: 0;
}
.header-above li {
margin-bottom: 5px;
}
.header-slider .owl-thumbs {
bottom: 50px;
} #contact-info .single-box:after {
display: none;
}
.scrollup.boxed-btn {
width: 40px;
height: 40px;
right: 10px;
bottom: 10px;
line-height: 40px;
}
.header-slider h1 {
font-size: 25px;
margin-bottom: 6px;
}
.header-slider p {
font-size: 15px;
line-height: 1.2;
margin-bottom: 10px;
}
}
@media only screen and (max-width:782px) {
.admin-bar .sticky-nav.is-sticky {
top: 46px;
}
}
@media only screen and (max-width:600px) {
.single-contact {
flex-basis: 100%;
}
.admin-bar .sticky-nav.is-sticky {
top: 0px;
}
.header-above ul.header-info li {
margin-bottom: 5px;
margin-right: 0;
display: block;
padding: 0;
}
.header-above ul.header-info li:after {
visibility: hidden;
}
.header-slider .owl-thumbs {
display: none;
}
.blog-post {
margin-bottom: 60px;
}
}
@media only screen and (max-width:480px) {    
.bb {
border-bottom: 0;
}
.gallery-items div.single-item {
width: 100%;
}
.blog-post figure:not(.gallery-item) img {
height: 300px;
}
.blog-post figure figcaption img {
height: 80px;
width: 80px;
}
.blog-post:hover .meta-info {
bottom: -10%;
width: 100%;
left: 0;
padding: 10px 20px;
}
.blog-post .meta-info li {
margin-right: 6px;
padding-right: 6px;
}
.blog-post .meta-info li a {
font-size: 10px;
}
.header-info li:after {
display: none !important;
}
}
@media only screen and (max-width:400px) { 
.logo a, .mobile-logo a, .site-title {
display: inline-block;
font-size: 23px;
}
}
@media only screen and (max-width: 352px) {
.section-padding {
overflow: hidden;
}
.section-title h2 {
font-size: 26px;
}
.comment-author.vcard {
display: grid;
}
}
@media only screen and (max-width: 280px) {
.ameya-template .theme-slider div.theme-content {
margin-top: 10px;
}
.section-title h2 span:not(.customize-partial-edit-shortcut) {
margin-top: 15px;
}
.blog-post .meta-info li {
margin-right: 0;
padding-right: 0;
}
.blog-post .meta-info li:not(:last-child) a {
margin-right: 3px;
padding-right: 3px;
}
.pagination .nav-links .current, .pagination .nav-links .page-numbers {
margin-right: 5px;
}
#footer-copyright .copyright-text p {
font-size: 14px;
}
.mobile-menu li.dropdown ul.dropdown-menu li > a {
font-size: 15px;
}
}