@charset "UTF-8";

 .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
@-webkit-keyframes bounce {
0%, 20%, 50%, 80%, 100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
40% {
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
60% {
-webkit-transform: translateY(-15px);
transform: translateY(-15px);
}
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
40% {
-webkit-transform: translateY(-30px);
-ms-transform: translateY(-30px);
transform: translateY(-30px);
}
60% {
-webkit-transform: translateY(-15px);
-ms-transform: translateY(-15px);
transform: translateY(-15px);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
}
@-webkit-keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes pulse {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
100% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes shake {
0%, 100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translateX(-10px);
transform: translateX(-10px);
}
20%, 40%, 60%, 80% {
-webkit-transform: translateX(10px);
transform: translateX(10px);
}
}
@keyframes shake {
0%, 100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translateX(-10px);
-ms-transform: translateX(-10px);
transform: translateX(-10px);
}
20%, 40%, 60%, 80% {
-webkit-transform: translateX(10px);
-ms-transform: translateX(10px);
transform: translateX(10px);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate(15deg);
transform: rotate(15deg);
}
40% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
}
60% {
-webkit-transform: rotate(5deg);
transform: rotate(5deg);
}
80% {
-webkit-transform: rotate(-5deg);
transform: rotate(-5deg);
}
100% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate(15deg);
-ms-transform: rotate(15deg);
transform: rotate(15deg);
}
40% {
-webkit-transform: rotate(-10deg);
-ms-transform: rotate(-10deg);
transform: rotate(-10deg);
}
60% {
-webkit-transform: rotate(5deg);
-ms-transform: rotate(5deg);
transform: rotate(5deg);
}
80% {
-webkit-transform: rotate(-5deg);
-ms-transform: rotate(-5deg);
transform: rotate(-5deg);
}
100% {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
}
}
.swing {
-webkit-transform-origin: top center;
-ms-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
10%, 20% {
-webkit-transform: scale(0.9) rotate(-3deg);
transform: scale(0.9) rotate(-3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale(1.1) rotate(3deg);
transform: scale(1.1) rotate(3deg);
}
40%, 60%, 80% {
-webkit-transform: scale(1.1) rotate(-3deg);
transform: scale(1.1) rotate(-3deg);
}
100% {
-webkit-transform: scale(1) rotate(0);
transform: scale(1) rotate(0);
}
}
@keyframes tada {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
10%, 20% {
-webkit-transform: scale(0.9) rotate(-3deg);
-ms-transform: scale(0.9) rotate(-3deg);
transform: scale(0.9) rotate(-3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale(1.1) rotate(3deg);
-ms-transform: scale(1.1) rotate(3deg);
transform: scale(1.1) rotate(3deg);
}
40%, 60%, 80% {
-webkit-transform: scale(1.1) rotate(-3deg);
-ms-transform: scale(1.1) rotate(-3deg);
transform: scale(1.1) rotate(-3deg);
}
100% {
-webkit-transform: scale(1) rotate(0);
-ms-transform: scale(1) rotate(0);
transform: scale(1) rotate(0);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
0% {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
15% {
-webkit-transform: translateX(-25%) rotate(-5deg);
transform: translateX(-25%) rotate(-5deg);
}
30% {
-webkit-transform: translateX(20%) rotate(3deg);
transform: translateX(20%) rotate(3deg);
}
45% {
-webkit-transform: translateX(-15%) rotate(-3deg);
transform: translateX(-15%) rotate(-3deg);
}
60% {
-webkit-transform: translateX(10%) rotate(2deg);
transform: translateX(10%) rotate(2deg);
}
75% {
-webkit-transform: translateX(-5%) rotate(-1deg);
transform: translateX(-5%) rotate(-1deg);
}
100% {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
}
@keyframes wobble {
0% {
-webkit-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%);
}
15% {
-webkit-transform: translateX(-25%) rotate(-5deg);
-ms-transform: translateX(-25%) rotate(-5deg);
transform: translateX(-25%) rotate(-5deg);
}
30% {
-webkit-transform: translateX(20%) rotate(3deg);
-ms-transform: translateX(20%) rotate(3deg);
transform: translateX(20%) rotate(3deg);
}
45% {
-webkit-transform: translateX(-15%) rotate(-3deg);
-ms-transform: translateX(-15%) rotate(-3deg);
transform: translateX(-15%) rotate(-3deg);
}
60% {
-webkit-transform: translateX(10%) rotate(2deg);
-ms-transform: translateX(10%) rotate(2deg);
transform: translateX(10%) rotate(2deg);
}
75% {
-webkit-transform: translateX(-5%) rotate(-1deg);
-ms-transform: translateX(-5%) rotate(-1deg);
transform: translateX(-5%) rotate(-1deg);
}
100% {
-webkit-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%);
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes bounceIn {
0% {
opacity: 0;
-webkit-transform: scale(.3);
transform: scale(.3);
}
50% {
opacity: 1;
-webkit-transform: scale(1.05);
transform: scale(1.05);
}
70% {
-webkit-transform: scale(.9);
transform: scale(.9);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes bounceIn {
0% {
opacity: 0;
-webkit-transform: scale(.3);
-ms-transform: scale(.3);
transform: scale(.3);
}
50% {
opacity: 1;
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05);
}
70% {
-webkit-transform: scale(.9);
-ms-transform: scale(.9);
transform: scale(.9);
}
100% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(30px);
transform: translateY(30px);
}
80% {
-webkit-transform: translateY(-10px);
transform: translateY(-10px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes bounceInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(30px);
-ms-transform: translateY(30px);
transform: translateY(30px);
}
80% {
-webkit-transform: translateY(-10px);
-ms-transform: translateY(-10px);
transform: translateY(-10px);
}
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(30px);
transform: translateX(30px);
}
80% {
-webkit-transform: translateX(-10px);
transform: translateX(-10px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes bounceInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(30px);
-ms-transform: translateX(30px);
transform: translateX(30px);
}
80% {
-webkit-transform: translateX(-10px);
-ms-transform: translateX(-10px);
transform: translateX(-10px);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(-30px);
transform: translateX(-30px);
}
80% {
-webkit-transform: translateX(10px);
transform: translateX(10px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes bounceInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(-30px);
-ms-transform: translateX(-30px);
transform: translateX(-30px);
}
80% {
-webkit-transform: translateX(10px);
-ms-transform: translateX(10px);
transform: translateX(10px);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
80% {
-webkit-transform: translateY(10px);
transform: translateY(10px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes bounceInUp {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(-30px);
-ms-transform: translateY(-30px);
transform: translateY(-30px);
}
80% {
-webkit-transform: translateY(10px);
-ms-transform: translateY(10px);
transform: translateY(10px);
}
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
25% {
-webkit-transform: scale(.95);
transform: scale(.95);
}
50% {
opacity: 1;
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
100% {
opacity: 0;
-webkit-transform: scale(.3);
transform: scale(.3);
}
}
@keyframes bounceOut {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
25% {
-webkit-transform: scale(.95);
-ms-transform: scale(.95);
transform: scale(.95);
}
50% {
opacity: 1;
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
100% {
opacity: 0;
-webkit-transform: scale(.3);
-ms-transform: scale(.3);
transform: scale(.3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
}
@keyframes bounceOutDown {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
@keyframes bounceOutLeft {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
}
@keyframes bounceOutRight {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
@keyframes bounceOutUp {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
}
@keyframes fadeOutDown {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
}
@keyframes fadeOutDownBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-20px);
transform: translateX(-20px);
}
}
@keyframes fadeOutLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
@keyframes fadeOutLeftBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(20px);
transform: translateX(20px);
}
}
@keyframes fadeOutRight {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
}
@keyframes fadeOutRightBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
}
@keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
@keyframes fadeOutUpBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
0% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
100% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
0% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
-ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
-ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
-ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
100% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
-ms-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateX(-10deg);
transform: perspective(400px) rotateX(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateX(10deg);
transform: perspective(400px) rotateX(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
}
@keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotateX(90deg);
-ms-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateX(-10deg);
-ms-transform: perspective(400px) rotateX(-10deg);
transform: perspective(400px) rotateX(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateX(10deg);
-ms-transform: perspective(400px) rotateX(10deg);
transform: perspective(400px) rotateX(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateX(0deg);
-ms-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateY(-10deg);
transform: perspective(400px) rotateY(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateY(10deg);
transform: perspective(400px) rotateY(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
}
@keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotateY(90deg);
-ms-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateY(-10deg);
-ms-transform: perspective(400px) rotateY(-10deg);
transform: perspective(400px) rotateY(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateY(10deg);
-ms-transform: perspective(400px) rotateY(10deg);
transform: perspective(400px) rotateY(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateY(0deg);
-ms-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
0% {
-webkit-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
}
@keyframes flipOutX {
0% {
-webkit-transform: perspective(400px) rotateX(0deg);
-ms-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateX(90deg);
-ms-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
0% {
-webkit-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
}
@keyframes flipOutY {
0% {
-webkit-transform: perspective(400px) rotateY(0deg);
-ms-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateY(90deg);
-ms-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
0% {
-webkit-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: translateX(-20%) skewX(30deg);
transform: translateX(-20%) skewX(30deg);
opacity: 1;
}
80% {
-webkit-transform: translateX(0%) skewX(-15deg);
transform: translateX(0%) skewX(-15deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
}
@keyframes lightSpeedIn {
0% {
-webkit-transform: translateX(100%) skewX(-30deg);
-ms-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: translateX(-20%) skewX(30deg);
-ms-transform: translateX(-20%) skewX(30deg);
transform: translateX(-20%) skewX(30deg);
opacity: 1;
}
80% {
-webkit-transform: translateX(0%) skewX(-15deg);
-ms-transform: translateX(0%) skewX(-15deg);
transform: translateX(0%) skewX(-15deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(0%) skewX(0deg);
-ms-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
0% {
-webkit-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
0% {
-webkit-transform: translateX(0%) skewX(0deg);
-ms-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(100%) skewX(-30deg);
-ms-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
0% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(-200deg);
transform: rotate(-200deg);
opacity: 0;
}
100% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateIn {
0% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(-200deg);
-ms-transform: rotate(-200deg);
transform: rotate(-200deg);
opacity: 0;
}
100% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
0% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(200deg);
transform: rotate(200deg);
opacity: 0;
}
}
@keyframes rotateOut {
0% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(200deg);
-ms-transform: rotate(200deg);
transform: rotate(200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes slideInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes slideInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
@keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
}
@keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
@keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate(80deg);
transform: rotate(80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40% {
-webkit-transform: rotate(60deg);
transform: rotate(60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
80% {
-webkit-transform: rotate(60deg) translateY(0);
transform: rotate(60deg) translateY(0);
opacity: 1;
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
100% {
-webkit-transform: translateY(700px);
transform: translateY(700px);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate(80deg);
-ms-transform: rotate(80deg);
transform: rotate(80deg);
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40% {
-webkit-transform: rotate(60deg);
-ms-transform: rotate(60deg);
transform: rotate(60deg);
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
80% {
-webkit-transform: rotate(60deg) translateY(0);
-ms-transform: rotate(60deg) translateY(0);
transform: rotate(60deg) translateY(0);
opacity: 1;
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
100% {
-webkit-transform: translateY(700px);
-ms-transform: translateY(700px);
transform: translateY(700px);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translateX(-100%) rotate(-120deg);
transform: translateX(-100%) rotate(-120deg);
}
100% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg);
}
}
@keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translateX(-100%) rotate(-120deg);
-ms-transform: translateX(-100%) rotate(-120deg);
transform: translateX(-100%) rotate(-120deg);
}
100% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
-ms-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg);
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
0% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg);
}
100% {
opacity: 0;
-webkit-transform: translateX(100%) rotate(120deg);
transform: translateX(100%) rotate(120deg);
}
}
@keyframes rollOut {
0% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
-ms-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg);
}
100% {
opacity: 0;
-webkit-transform: translateX(100%) rotate(120deg);
-ms-transform: translateX(100%) rotate(120deg);
transform: translateX(100%) rotate(120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}.slicknav_menu {
display: none;
}
.header-wr {
padding: 12px 0 6px;
background-color: #f7f7f7;
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
transition: 1s;
}
.header-logo {
width: 140px;
}
.header-logo a {
display: block;
}
.header-nav-btn {
width: 88%;
margin-top: 22px;
}
.header-navbar, .header-btn {
display: inline-block;
vertical-align: middle;
}
.navbar-wr ul li {
display: inline-block;
margin-left: 38px;
position: relative;
padding-bottom: 20px;
}
.navbar-wr ul li:first-child {
margin-left: 0;
}
.navbar-wr ul li a {
font-size: 16px;
line-height: 20px;
font-weight: 700;
text-transform: uppercase;
position: relative;
padding-bottom: 3px;
}
.navbar-wr ul li a::after, .footer-links ul li a::after, .send-enquiry li a::after, .copyright-para a::after, .address-blk a::after {
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
height: 2px;
bottom: 0;
left: 0;
background-color: #00b3f0;
transform-origin: bottom right;
transition: transform 0.25s ease;
}
.navbar-wr ul li.current-menu-item a, .footer-links ul li.current-menu-item a {
color: #00b3f0;
}
.navbar-wr ul li.current-menu-item a::after {
transform: scale(1.0);
transform-origin: bottom left;
}
.navbar-wr ul li a:hover::after, .footer-links ul li a:hover::after, .footer-links ul li.current-menu-item a::after, .send-enquiry li a:hover::after, .copyright-para a:hover::after, .address-blk a:hover::after {
transform: scale(1.0);
transform-origin: bottom left;
}
.navbar-wr ul li a.active::after {
transform: scale(1.0);
transform-origin: bottom left;
}
.navbar-wr .sub-menu li a.active {
background-color: #f2f9fc;
color: #00b3f0;
}
.footer-links ul li a.active {
color: #00b3f0;
}
.navbar-wr ul li a.active {
color: #00b3f0 ;
}
.header-navbar {
width: 75%;
}
.header-btn {
width: 20%;
margin-left: 23px;
margin-bottom: 25px;
}
.sticky {
position: fixed;
width: 100%;
left: 0;
right: 0;
margin: 0 auto;
padding: 7px 0;
z-index: 1111;
box-shadow: 0 10px 40px 0 rgb(0 0 0 / 5%);
animation: smoothScroll 0.5s linear;
}
@keyframes smoothScroll {
0% {
transform: translateY(-50px);
}
100% {
transform: translateY(0px);
}
}
.sticky .header-logo {
width: 125px;
}
.sticky .header-nav-btn {
margin-top: 17px;
}
.navbar-wr .sub-menu {
position: absolute;
z-index: 111;
left: 0;
text-align: left;
width: 280px;
background-color: #ffffff;
margin-top: 0;
top: 135%;
margin-left: 0;
box-shadow: 2px 2px 6px rgb(0 0 0 / 20%);
display: none;
}
.navbar-wr .sub-menu.hoverup {
top: 100%;
transition: 0.5s;
}
.navbar-wr .menu-item-has-children {
cursor: pointer;
}
.navbar-wr .menu-item-has-children:hover > a {
color: #00b3f0;
}
.navbar-wr .menu-item-has-children:hover > a::after {
transform: scale(1.0);
transform-origin: bottom left;
}
.navbar-wr ul li.current-menu-ancestor > a::after {
transform: scale(1.0);
transform-origin: bottom left;
}
.navbar-wr .sub-menu li {
margin-left: 0;
display: block;
}
.navbar-wr .sub-menu li {
padding-bottom: 0;
}
.navbar-wr .sub-menu li a {
display: block;
padding: 15px 20px;
border-top: 1px solid #eef2f5;
font-size: 15px;
color: #222222;
font-weight: 500;
}
.navbar-wr .sub-menu li:first-child a {
border-top: unset;
}
.navbar-wr .sub-menu li a::after {
content: unset;
}
.navbar-wr .sub-menu li a:hover {
background-color: #f2f9fc;
}
.navbar-wr ul li.current-menu-ancestor > a {
color: #00b3f0;
}  .comn-text-img-wr {
padding: 100px 0;
}
.comn-text-img-left {
width: 42%;
margin-top: 23px;
}
.comn-text-img-right {
width: 51%;
}
.comn-text-img-para {
margin-top: 30px;
}
.comn-text-img-para p {
margin-top: 15px;
}
.comn-text-img-para p:first-child {
margin-top: 0;
}
.comn-text-img-btn {
margin-top: 30px;
}
.comn-text-img-con-inner img {
width: 100%;
}
.comn-text-img-right figure {
position: relative;
}
.comn-text-img-right figure::after, .comn-text-img-right figure::before {
content: "";
position: absolute;
width: 0;
height: 0;
top: 0;
}  .comn-text-img-right figure::before {
border-top: 702px solid #ffffff;
border-right: 113px solid transparent;
}
.comn-text-img-right figure::after {
border-bottom: 675px solid #ffffff;
border-left: 94px solid transparent;
right: 0;
}  .comn-text-img-alternate-wr .comn-text-img-left {
float: right;
}
.comn-text-img-alternate-wr .comn-text-img-right {
float: left;
}
.comn-text-img-alternate-wr .comn-text-img-right figure::before {
border-bottom: 643px solid #ffffff;
border-top: unset;
}
.comn-text-img-alternate-wr .comn-text-img-right figure::after {
border-top: 643px solid #ffffff;
border-bottom: unset;
}   .plumbing-issue-heading h3 span {
display: inline-block;
}
.plumbing-issue-wr {
padding: 195px 0;
background: url(//thefastplumber.com.au/wp-content/themes/fastPlumber/assets/images/Emergency_Service_Image.jpg) no-repeat center/cover;
position: relative;
}
.plumbing-issue-wr::after {
content: "";
position: absolute;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
left: 0;
top: 0;
}
.plumbing-issue-wr::before {
content: "";
position: absolute;
width: 370px;
height: 370px;
border: 10px solid rgba(225, 225, 225, 0.3);
z-index: 1;
top: 50%;
transform: translateY(-50%);
left: 0;
right: 0;
margin: 0 auto;
}
.plumbing-issue-content {
z-index: 111;
position: relative;
}
.plumbing-issue-heading {
width: 60%;
margin: 0 auto;
}
.plumbing-issue-heading h3 {
color: #ffffff;
}
.plumbing-issue-btn {
display: inline-block;
margin-left: 20px;
}
.plumbing-issue-btn:first-child {
margin-left: 0;
}
.plumbing-issue-btn:first-child a {
background-color: #231f20;
}
.plumbing-issue-btn:first-child a:hover {
background-color: #00b3f0;
}
.plumbing-issue-button {
margin-top: 44px;
} .footer-middle-wr {
background-color: #F5F5F5;
padding: 95px 0 0;
}
.footer-content {
padding-bottom: 55px;
border-bottom: 1px solid #000000;
}
.footer-blk {
width: 20.5%;
}
.ftr-block1 {
width: 17.5%;
}
.ftr-block4 {
width: 41%;
padding-left: 38px;
}
.ftr-block4 iframe {
width: 100% !important;
height: 228px !important;
}
.ftr-block3 .footer-social-icon {
margin: 20px 0 0;
}
.footer-links {
margin-top: 24px;
}
.footer-links ul li {
margin-top: 8px;
}
.footer-links ul li:first-child {
margin-top: 0;
}
.footer-links ul li a {
text-transform: capitalize;
font-size: 16px;
line-height: 20px;
font-weight: 400;
padding-bottom: 3px;
position: relative;
}
.send-enquiry {
margin-top: 25px;
}
.send-enquiry li {
margin-top: 5px;
}
.send-enquiry li a {
position: relative;
padding-bottom: 3px;
}
.copyright-wr {
background-color: #F5F5F5;
padding: 35px 0;
}
.copyright-para p {
text-transform: capitalize;
}
.copyright-para a {
position: relative;
}
.footer-social-icon {
margin-right: 100px;
}
.footer-social-icon a {
font-size: 22px;
line-height: 26px;
color: #666666;
width: 32px;
height: 32px;
border-radius: 50%;
text-align: center;
line-height: 32px;
}
.web-design-by a, .web-design-by span {
display: inline-block;
vertical-align: middle;
} .address-blk li a{
position: relative;
padding-bottom: 3px;
}
.address-blk p {
padding: 18px 0px 6px 0px;
}  .scroll-top {
position: fixed;
right: 3%;
bottom: 5%;
width: 45px;
height: 45px;
background-color: rgba(51, 51, 51, 0.7);
color: #ffffff;
font-size: 24px;
border-radius: 10px;
line-height: 45px;
text-align: center;
cursor: pointer;
transition: 0.3s;
display: none;
z-index: 111;
}
.scroll-top i {
transition: 0.3s;
}
.scroll-top:hover {
background-color: #333333;
}
.scroll-top:hover i {
transform: translateY(-3px);
}
#more {display: none;}
button#myBtn{
border: 0px;
margin-top: 30px;
cursor: pointer;
transition: 0.5s;
}
span#more p {
margin-top: 20px;
}
button:hover{
background-color: #231f20;
color: #ffffff;
}
#dots p{
margin-top: 20px;
}
.happy-customer-wr .comn-text-img-right{
margin-top: 0px !important;
}
#dots {
display: none;
width: 1170px;
}
.postid-104 .comn-text-img-right figure::before {
border-top: 759px solid #ffffff;
}
.postid-104 .comn-text-img-right figure::after {
border-bottom: 757px solid #ffffff;
border-left: 112px solid transparent;
right: 0;
} 
.postid-96 .comn-text-img-right figure::before {
border-top: 792px solid #ffffff;
border-right: 103px solid transparent;
}
.postid-96 .comn-text-img-right figure::after {
border-bottom: 800px solid #ffffff;
border-left: 63px solid transparent;
right: 0;
}
.postid-96 .service-left-right-wr .comn-text-img-wr:nth-child(2n) .comn-text-img-right figure::before {
border-bottom: 772px solid #F0F0F0;
}  .trusted-plumbing-wr .comn-text-img-left {
width: 45%;
margin-top: 0px;
}
.trusted-plumbing-wr .comn-text-img-right {
width: 55%;
}
.trusted-plumbing-wr .comn-text-img-right figure::before{
border-top: 637px solid #ffffff;
}
.trusted-plumbing-wr  .comn-text-img-right figure::after {
border-bottom: 699px solid #ffffff;
}.home-banner-wr {
padding: 12px 0 0;
background-color: #F7F7F7;
}
.banner-text, .banner-img {
display: inline-block;
vertical-align: middle;
}
.banner-text {
width: 45%;
}
.banner-wr {
margin: 24px 0px 62px;
}
.banner-img {
width: 52.2%;
padding: 52px;
position: relative;
z-index: 1;
}
.banner-img:before {
content: '';
width: 100%;
height: 100%;
position: absolute;
left: 0px;
right: 0;
margin: 0px auto;
border-radius: 50%;
top: 50%;
transform: translateY(-50%);
background: url(//thefastplumber.com.au/wp-content/themes/fastPlumber/assets/images/Blue-round.png) no-repeat center, url(//thefastplumber.com.au/wp-content/themes/fastPlumber/assets/images/Dotted-circle.png) no-repeat center;
z-index: -1;
animation: rotate 15s ease-in-out infinite, rotate 15s 0.4s ease-in-out infinite;
background-size: 100%, 90%;
}
@keyframes rotate {
100%{
transform: translateY(-50%) rotate(360deg);
}
}
.home-banner-wr {
overflow: hidden;
}
@keyframes zoomDrop {
0%{
transform: scale(0);
}
100%{
transform: scale(1.05);
}
}
.banner-inner-image img {
border-radius: 50%;
overflow: hidden;
width: 100%;
}
.banner-inner-image {
position: relative;
}
.banner-inner-image:before, .banner-inner-image:after {
content: '';
position: absolute;
bottom: 0;
right: 0;
opacity: 0.2;
background-color: #fff;
border-radius: 50%;
animation: zoomDrop 3s ease-in-out infinite;
}
.banner-inner-image:after {
width: 20px;
height: 20px;
border: 5px solid #000;
right: -10px;
bottom: -13px;
animation-delay: 0.4s;
}
.banner-inner-image:before {
width: 57px;
height: 57px;
background-color: #00b2f0;
right: -57px;
bottom: 33px;
}
.banner-top-title h4 {
font-size: 16px;
line-height: 20px;
font-weight: 900;
text-transform: uppercase;
}
.banner-main-heading {
max-width: 400px;
margin-top: 20px;
}
.banner-btn {
margin-top: 30px;
} .services-wr {
padding: 100px 0 70px;
background-color: #f0f0f0;
}
.services-card-con {
margin-top: 40px;
}
.services-card {
width: 31.6%;
margin: 0 2.6% 30px 0;
}
.services-card:nth-child(3n) {
margin-right: 0;
}
.services-card-bottom {
padding: 35px 25px 42px;
background-color: #ffffff;
transition: 0.5s;
}
.services-card-para {
margin-top: 12px;
}
.services-card-img a {
display: block;
}
.services-card-img img, .services-card-heading h4 {
transition: 0.5S;
}
.services-card-img img {
width: 100%;
}
.services-card-img {
overflow: hidden;
}
.services-card:hover img {
transform: scale(1.1);
}
.services-card:hover .services-card-heading h4 {
color: #00b3f0;
}
.services-card:hover .services-card-bottom {
box-shadow: 0px 5px 20px 5px rgb(0 0 0 / 10%);
} .customer-rating-blk {
margin-top: 40px;
}
.customer-name {
margin-top: 25px;
}
.customer-rating-star {
margin-left: 8px;
}
.customer-rating-star:first-child {
margin-left: 0px;
}
.happy-customer-wr .comn-text-img-right {
width: 52%;
}
.happy-customer-wr .comn-text-img-left {
position: relative;
width: 41%;
margin-top: 50px;
}
.happy-customer-wr .bx-pager.bx-default-pager {
position: absolute;
right: 0;
left: 0;
text-align: center;
margin-top: 40px;
}
.happy-customer-wr .bx-pager-item {
display: inline-block;
margin-left: 15px;
}
.happy-customer-wr .bx-pager-item:first-child {
margin-left: 0;
}
.happy-customer-wr .bx-pager-item a {
font-size: 0;
width: 15px;
height: 15px;
border: 1px solid #00b3f0;
line-height: 32px;
border-radius: 50%;
}
.happy-customer-wr .bx-pager-item a.active {
background-color: #00b3f0;
}  .latest-blog-wr {
padding: 90px 0 60px;
}
.latest-blog {
transition: 0.3s;
padding-top: 20px;
}
.blog-slider-inner {
transition: 0.5s;
}
.latest-blog:hover .blog-slider-inner {
margin-top: -20px;
box-shadow: 0px 5px 20px 5px rgb(0 0 0 / 7%);
}
.latest-blog:hover .blog-heading h4 {
color: #00b3f0;
}
.latest-blog:first-child { 
margin-left: 0;
}
.blog-blk {
margin-top: 40px;
position: relative;
}
.blog-date {
margin-top: -21px;
}
.blog-date p {
background-color: #00b3f0;
display: inline-block;
color: #ffffff;
padding: 5px 39px;
font-weight: 700;
}
.blog-heading {
margin-top: 20px;
padding: 0 15px;
}
.blog-heading h4 {
line-height: 28px;
transition: 0.5s;
}
.blog-para {
margin-top: 15px;
padding: 0 15px 20px 15px;
}
.blog-blk a.bx-prev, .blog-blk a.bx-next {
color: #999999;
position: absolute;
top: 31%;
transform: translateY(-31%);
font-size: 0;
padding: 12px 7px;
background: url(//thefastplumber.com.au/wp-content/themes/fastPlumber/assets/images/Right_Arrow_grey.svg) no-repeat;
}
.blog-blk a.bx-prev {
left: -85px;
}
.blog-blk a.bx-prev:hover {
background-image: url(//thefastplumber.com.au/wp-content/themes/fastPlumber/assets/images/Right_Arrow.svg);
}
.blog-blk a.bx-next {
right: -85px;
background: url(//thefastplumber.com.au/wp-content/themes/fastPlumber/assets/images/Left_Arrow_grey.svg) no-repeat;
}
.blog-blk a.bx-next:hover {
background-image: url(//thefastplumber.com.au/wp-content/themes/fastPlumber/assets/images/Left_Arrow.svg);
}
.blog-blk .active-slide {
margin-top: 50px;
transition: 0.3s;
}
.blog-blk .bx-viewport {
padding: 0 25px 60px;
}
a.bx-next.disabled, a.bx-prev.disabled {
display: none;
}@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"); * {
margin: 0;
padding: 0;
box-sizing: border-box;
list-style: none;
text-decoration: none;
}
body {
letter-spacing: 0;
font-family: 'Inter', sans-serif;
-webkit-text-size-adjust: 100%;
}
html {
scroll-behavior: smooth;
} .center-wr {
width: 1170px;
margin: 0 auto;
}
.left {
float: left;
}
.right {
float: right;
}
.clearfix:before, .clearfix:after {
content: "";
display: table;
}
.clearfix:after {
clear: both;
}
.clearfix {
*zoom: 1;
}
a {
display: inline-block;
transition: 0.5s;
color: #333333;
text-decoration: none;
}
a:hover {
color: #00b3f0;   
}
img {
max-width: 100%;
display: block;
}
.align-right {
text-align: right;
}
.align-center {
text-align: center;
}
.site-btn {
font-size: 18px;
line-height: 20px;
color: #ffffff;
font-weight: 700;
background-color: #00b3f0;
padding: 22px 15px;
border-radius: 10px;
text-transform: uppercase;
width: 270px;
text-align: center;
}
.site-btn:hover {
background-color: #231f20;
color: #ffffff;
}
.site-btn-sm {
font-size: 16px;
padding: 12px 25px 12px 48px;
background: #00b3f0 url(//thefastplumber.com.au/wp-content/themes/fastPlumber/assets/images/phone.svg) no-repeat 26px 50%;
width: unset;
}
.site-btn-sm:hover {
background-color: #231f20;
color: #ffffff;
}
.site-btn-blue {
background-color: #00b3f0;
}
.site-btn-blue:hover {
background-color: #231f20;
}
h1 {
font-size: 72px;
line-height: 86px;
font-weight: 700;
text-transform: uppercase;
}
h1 span {
color: #00b3f0;
}
h4 {
font-size: 20px;
line-height: 24px;
font-weight: 700;
color: #333333;
text-transform: uppercase;
}
h5 {
font-size: 24px;
line-height: 28px;
font-weight: 700;
color: #333333;
text-transform: uppercase;
}
h6 {
font-size: 18px;
line-height: 28px;
font-weight: 700;
color: #00b3f0;
text-transform: uppercase;
} .large-heading {
font-size: 50px;
line-height: 65px;
color: #333333;
font-weight: 700;
text-transform: uppercase;
}
.large-heading span {
display: block;
color: #ffffff;
} p{
font-size: 15px;
line-height: 22px;
font-weight: 400;
}
.page-medium-heading h4 {
font-size: 20px;
line-height: 30px;
font-weight: 400;
color: #ffffff;
}
h3 {
font-size: 36px;
line-height: 44px;
font-weight: 700;
color: #333333;
text-transform: uppercase;
}
h3 span {
color: #00b3f0;
display: block;
}  ul, li, p, h1, h2, h3, h4, h5, h6 {
margin: unset;
letter-spacing: normal;
}
li {
line-height: unset;
font-size: initial;
}
section {
padding: 0;
} .service-banner-wr {
position: relative;
}
.service-banner-wr::after {
content: "";
position: absolute;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
top: 0;
left: 0;
}
.service-banner-content {
position: relative;
z-index: 9;
text-align: center;
}
.single-services .service-banner-content {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 11;
text-align: left;
}
.service-banner-wr img {
width: 100%;
}
.service-banner-top-title h4 {
font-size: 16px;
line-height: 20px;
font-weight: 700;
text-transform: uppercase;
color: #00b3f0;
}
.service-banner-main-heading {
margin-top: 20px;
}
.service-banner-main-heading h1 {
color: #ffffff;
}
.service-banner-btn {
margin-top: 30px;
}
.single-post .service-banner-content {
width: 85%;
margin: 0 auto;
}
.single-post .content-wr h3 {
font-size: 32px;
line-height: 40px;
color: #333333;
text-transform: none;
}
.single-post .content-wr a {
color: #00b3f0;
}
.single-post .content-wr a:hover {
color: #333333;
}  .one-call-wr {
padding: 126px 0;
background: url(//thefastplumber.com.au/wp-content/themes/fastPlumber/assets/images/one_call_bg_img.jpg) repeat;
background-color: #00b3f0;
}
.one-call-top-heading {
width: 52%;
margin: 0 auto;
}
.one-call-phone {
margin-top: 27px;
}
.one-call-phone p, .one-call-phone a {
font-size: 72px;
line-height: 82px;
font-weight: 700;
color: #ffffff;
}
.one-call-phone a:hover {
color: #333333;
}
.one-call-bottom-heading {
margin-top: 20px;
}
.one-call-bottom-heading h4 {
text-transform: none;
}  .service-left-right-wr .comn-text-img-wr:nth-child(2n) {
background-color: #F0F0F0;
}
.service-left-right-wr .comn-text-img-wr:nth-child(2n) .comn-text-img-left {
float: right;
}
.service-left-right-wr .comn-text-img-wr:nth-child(2n) .comn-text-img-right {
float: left;
}
.service-left-right-wr .comn-text-img-wr:nth-child(2n) .comn-text-img-right figure::before {
border-bottom: 706px solid #F0F0F0;
border-top: unset;
}
.service-left-right-wr .comn-text-img-wr:nth-child(2n) .comn-text-img-right figure::after {
border-top: 726px solid #F0F0F0;
border-bottom: unset;
}  .service-leaking-tap {
padding: 0px 0 90px;
}
.service-leaking-tap-para {
margin-top: 33px;
width: 88%;
margin: 33px auto 0;
text-align: left;
}
.service-leaking-tap-para p {
margin-top: 30px;
}
.service-leaking-tap-para p:first-child {
margin-top: 0;
}  .why-choose-wr {
padding: 70px 0;
background-color: #00b3f0;
}
.why-choose-heading {
width: 30%;
margin-top: 110px;
} .why-choose-heading-para{
margin-left: 20px;
width: 71%;
}
.why-choose-detail-blk {
width: 70%;
}
.why-choose-img, .why-choose-heading-para {
display: inline-block;
vertical-align: middle;
}
.why-choose-img {
position: relative;
text-align: center;
width: 140px;
height: 126px;
filter: drop-shadow(36px 21px 16px rgba(0, 0, 0, 0.2));
-webkit-filter: drop-shadow(36px 21px 16px rgba(0, 0, 0, 0.2));
box-shadow: unset;
transform: translate3d(0, 0, 0);
transition: 0.8s;
}
.why-choose-img figure {
display: block;
width: 125px;
height: 115px;
-webkit-clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
background: #ffffff;
box-shadow: unset;
transition: 0.5s;
}
.why-choose-img img {
display: inline-block;
position: absolute;
top: 42%;
transform: translateY(-50%);
left: -6px;
right: 0;
margin: 0 auto;
}
.why-choose-detail-heading h5 {
transition: 0.5s;
} .why-choose-detail-para {
margin-top: 10px;
}
.why-choose-detail-para p {
color: #ffffff;
transition: 0.5s;
}
.why-choose-detail {
margin-top: 0px;
transition: 0.8s;
padding: 18px 0 18px 18px;
position: relative;
z-index: 11;
}
.why-choose-detail:first-child {
margin-top: 0px;
}
.why-choose-detail:nth-child(2n) {
margin-left: 60px;
}
.why-choose-detail:nth-child(2n) .why-choose-heading-para {
width: 68%;
}
.why-choose-detail:hover {
background-color: #ffffff;
box-shadow: 0px 10px 20px 5px rgb(0 0 0 / 10%);
box-shadow: 44.2px 31px 50px 0 rgba(0, 0, 0, 0.2);
}
.why-choose-detail:hover .why-choose-detail-heading h5 {
color: #00b3f0;
}
.why-choose-detail:hover .why-choose-detail-para p {
color: #333333;
}
.why-choose-detail:hover .why-choose-img figure {
background-color: #00b3f0;
}
.why-choose-detail:hover .why-choose-img {
filter: unset;
}  .service-faq-wr {
padding: 90px 0 60px;
}
.faq-accordion-blk {
text-align: left;
margin: 28px auto 0;
width: 66%;
}
.faq-accordion {
padding: 25px 0 30px;
border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.faq-accordion:last-child {
border-bottom: unset;
padding-bottom: 25px;
}
.faq-accordion-content {
padding: 20px 0 14px 35px;
display: none;
}
.faq-accordion:last-child .faq-accordion-content {
padding-bottom: 0;
}
.faq-accordion-heading h4 {
padding-left: 38px;
position: relative;
transition: 0.3s;
cursor: pointer;
display: inline-block;
background: url(//thefastplumber.com.au/wp-content/themes/fastPlumber/assets/images/Plus.svg) no-repeat 0;
}
.faq-accordion-heading h4:hover {
color: #00b3f0;
background-image: url(//thefastplumber.com.au/wp-content/themes/fastPlumber/assets/images/plus_Blue.svg);
}
.faq-accordion-heading h4.accordion-icon, .faq-accordion-heading.accordion-icon h4 {
background-image: url(//thefastplumber.com.au/wp-content/themes/fastPlumber/assets/images/Minus_blue.svg);
color: #00b3f0;
}
.faq-accordion-heading h4.accordion-icon:hover {
background-image: url(//thefastplumber.com.au/wp-content/themes/fastPlumber/assets/images/Minus_blue.svg);
}  .error404 .error-page-content h1 {
font-size: 55px;
}
.error404 .error-page-image-wr, .error404 .error-page-content {
display: inline-block;
vertical-align: middle;
} 
.error404 .error-page-image-wr {
width: 35%;
}
.error404 .error-page-content {
width: 64%;
}
.error404 main#site-content {
padding: 80px 0 !important;
}
.page-id-506 ul#menu-footer-menu > li>ul {
margin-left: 22px;
margin-bottom: 10px;
}
.error404 .search-form .search-submit, .search .search-form .search-submit {
background-color: #00b3f0;
transition: 0.3s;
border-radius: 10px;
}
.error404 .search-form .search-submit:hover, .search .search-form .search-submit:hover {
background-color: #333333;
}
.error404 .search-form .search-field:focus, .search .search-form .search-field:focus {
outline: unset !important;
}
.error404 .search-form .search-field, .search .search-form .search-field {
border-radius: 10px;
}
.error404 .error-page-content form {
width: 80%;
} .search #site-content .archive-header {
padding: 0 !important;
}
.search #site-content {
padding: 80px 0;
}
.search .archive-title {
line-height: 30px;
}
.search .no-search-results-form {
padding-top: 30px;
}
.search .archive-title span {
color: #00b3f0;
}
.search .service-banner-main-heading {
margin-top: 0;
} .search-results .searchpage-blog-post .featuredimg-card {
width: 13%;
}
.search-results .search-cntnt {
width: 87%;
padding-left: 45px;
}
.search-results .search-cntnt p {
margin-top: 15px;
}
.search-results .searchpage-blog-post hr {
margin: 60px 0px;
}
.search-results .searchpage-blog-post p {
margin-top: 15px;
}
.search-results #site-content .searchpage-blog-post h3 {
transition: 0.3s;
font-size: 30px;
line-height: 35px;
}
.search-results #site-content .searchpage-blog-post h3:hover {
color: #00b3f0;
}
.search-results .search-cntnt-main-block {
padding-top: 60px;
}
.search-results #site-content .searchpage-blog-post a {
margin-top: 15px;
}
.search-results #site-content .search-cntnt a:first-child {
margin-top: 0;
}
.search-results hr {
margin: 60px 0 45px;
}
.searchpage-blog-post a.read-more {
display: block;
width: 150px;
padding: 12px 15px;
text-align: center;
font-size: 16px;
}
.search-results #site-content .searchpage-blog-post a:hover {
text-decoration: none;
}
.search-results #site-content .searchpage-blog-post .nav-links .current {
color: #00b3f0;
} .default-page blockquote {
border-color: #00b3f0;
}
.default-page h1, .default-page h3 {
padding-bottom: 10px;
padding-top: 10px;
}
.default-page img {
padding-bottom: 20px;
}
.default-page {
padding: 60px 0px 50px;
}
.default-page ul, .default-page ol {
margin: 0 0 20px 0px;
}
.default-page ul li, .default-page ol li {
list-style-type: disc;
list-style-position: inside;
font-size: 16px;
line-height: 30px;
color: #333333;
font-weight: 400;
}
.default-page p {
padding-bottom: 15px;
} .service-banner-wr.small-banner {
padding: 140px 0px;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.page-template-template-contactus .service-banner-wr.small-banner {
background-position: top;
}
.small-banner .service-banner-main-heading {
margin-top: 0;
}
.contact-main-wr {
padding: 100px 0;
}
.contact-left-blk {
width: 37%;
}
.contact-right-blk {
width: 53%;
}
.contact-form-inner {
padding: 50px 40px 70px;
box-shadow: 0px 10px 20px 5px rgb(0 0 0 / 10%);
position: relative;
}
.contact-right-blk h5 {
padding-bottom: 30px;
text-transform: capitalize;
font-weight: 500;
}
.contact-right-blk .form-field:before, .contact-right-blk .form-field:after {
content: "";
display: table;
}
.contact-right-blk .form-field:after {
clear: both;
}
.contact-right-blk .form-field .form-group {
float: left;
width: 48%;
}
.contact-right-blk .form-field .form-group:nth-child(2) {
float: right;
}
.contact-right-blk .form-field .form-group input, .contact-right-blk .form-group textarea {
padding: 9px 15px;
width: 100%;
font-size: 16px;
line-height: 20px;
font-family: 'Inter', sans-serif;
margin-bottom: 25px;
color: #333333;
}
.contact-right-blk .form-field .form-group input:focus, .contact-right-blk .form-group textarea:focus {
box-shadow: 0 0 0 1px rgb(0 179 240 / 60%);
}
.contact-right-blk .form-field .form-group input:focus-visible, .contact-right-blk .form-group textarea:focus-visible {
outline: 1px solid transparent;
border: 1px solid transparent;
}
.contact-right-blk .form-group textarea {
resize: none;
}
.contact-right-blk .submit-wr input {
font-size: 18px;
line-height: 20px;
color: #ffffff;
font-weight: 700;
background-color: #00b3f0;
text-transform: uppercase;
text-align: center;
padding: 15px 70px;
font-family: 'Inter', sans-serif;
transition: 0.5s;
}
.contact-right-blk .submit-wr input:hover {
text-decoration: none;
background-color: #231f20;
color: #ffffff;
}
.contact-right-blk .submit-wr input:focus {
text-decoration: none;
}
.contact-right-blk .wpcf7-form-control-wrap {
position: relative;
display: inline-block;
}
.form-textarea span.wpcf7-form-control-wrap {
display: block;
}
.contact-right-blk .wpcf7-not-valid-tip {
position: absolute;
bottom: 7px;
font-size: 14px;
}
::-webkit-input-placeholder {
color: #888f93;
}
::-moz-placeholder {
color: #888f93;
}
:-ms-input-placeholder {
color: #888f93;
}
::-moz-placeholder {
opacity: 1;
color: #888f93;
}
.contact-right-blk .wpcf7-response-output {
position: absolute;
margin: 0 !important;
bottom: 22px;
font-size: 14px;
}
.contact-left-con h6 {
text-transform: none;
font-weight: 400;
}
.contact-left-blk .contact-left-detail {
margin-top: 20px;
position: relative;
}
.contact-left-blk .contact-left-detail:first-child {
margin-top: 0;
}
.contact-left-blk .contact-left-detail a {
padding: 5px 0 5px 55px;
position: relative;
}
.contact-left-blk .contact-left-detail a::after {
content: '\f095';
position: absolute;
top: 7px;
left: 0;
font-family: 'FontAwesome';
color: #00b3f0;
font-size: 30px;
}
.contact-left-blk .contact-call a::after {
content: '\f10b';
font-size: 42px;
}
.contact-left-blk .contact-email a::after {
content: '\f0e0';
top: 5px;
}
.contact-left-blk .contact-left-address a::after {
content: '\f041';
font-size: 38px;
top: 10px;
}
.contact-left-address {
margin-top: 25px;
}
.contact-help-you h5 {
text-transform: none;
font-weight: 500;
}
.contact-para {
margin-top: 15px;
}
.contact-para p {
margin-top: 10px;
}
.contact-para p:first-child {
margin-top: 0;
}
.contact-left-con {
margin-top: 30px;
}  .faq-main-wr {
padding: 70px 0 65px;
}
.faq-main-wr .faq-accordion-blk {
width: 66%;
margin-top: 0;
}  .blog-post-wr {
padding: 100px 0 55px;
}
.blpgpage-post-wr .blogpage-innr-block {
display: inline-block;
vertical-align: top;
width: 30.4%;
margin: 0 30px 50px 0;
box-shadow: 0px 10px 20px 5px rgb(0 0 0 / 3%);
transition: 0.5s;
}
.blpgpage-post-wr .blogpage-innr-block:hover {
box-shadow: 0px 10px 20px 5px rgb(0 0 0 / 10%);
}
.blpgpage-post-wr .blog-img {
overflow: hidden;
}
.blpgpage-post-wr .blog-img img {
transition: 0.5s;
width: 100%;
}
.blpgpage-post-wr .blog-img a {
display: block;
}
.blpgpage-post-wr .blog-date {
margin-top: -20px;
}
.blpgpage-post-wr .blog-date p {
background-color: #00b3f0;
display: inline-block;
color: #ffffff;
padding: 5px 39px;
font-weight: 700;
z-index: 11;
position: relative;
}
.blpgpage-post-wr .blog-heading {
margin-top: 20px;
padding: 0 18px;
min-height: 56px;
}
.blpgpage-post-wr .blog-heading h4 {
line-height: 28px;
transition: 0.5s;
font-size: 18px;
}
.blpgpage-post-wr .blog-para {
margin-top: 15px;
padding: 0 15px 20px 15px;
}
.blpgpage-post-wr .blogpage-innr-block:hover .blog-img img {
transform: scale(1.1);
}
.blpgpage-post-wr .blogpage-innr-block:hover h4 {
color: #00b3f0;
}
.service-blog-blk .blog-heading {
min-height: unset;
}
.service-blog-blk .blog-para {
min-height: 140px;
}  .blog-head-title h2 {
font-size: 45px;
line-height: 60px;
color: #00b3f0;
padding-bottom: 25px;
} .breadcrumbs {
font-size: 14px;
line-height: 20px;
text-transform: uppercase;
color: #000;
padding-bottom: 40px;
}  .privacy-policy-wr {
padding: 100px 0;
}
.privacy-policy-wr .privacy-content {
background-color: #fff;
box-shadow: 0px 0px 15px 5px rgb(0 0 0 / 5%);
padding: 15px 50px 40px;
}
.privacy-policy-wr h5 {
padding: 30px 0 10px;
text-transform: none;
font-weight: 600;
}
.postid-96 .service-left-right-wr .comn-text-img-wr:nth-child(2n) .comn-text-img-right figure::after {
border-top: 772px solid #F0F0F0;
}  body.page-template-template-aboutus .about-sec-block:first-child .comn-text-img-right figure::before {
border-top: 780px solid #ffffff!important;  
}
body.page-template-template-aboutus .about-sec-block:first-child  .comn-text-img-right figure::after {
border-bottom: 692px solid #ffffff;
}
body.page-template-template-aboutus .service-left-right-wr .comn-text-img-wr:nth-child(2n) .comn-text-img-right figure::before {
border-bottom: 730px solid #F0F0F0;
border-top: unset;
}
.postid-104 .comn-text-img-wr:first-child .comn-text-img-right figure::before {
border-top: 770px solid #ffffff;
}
.postid-104 .comn-text-img-wr:first-child .comn-text-img-right figure::after {
border-bottom: 771px solid #ffffff; 
}
.postid-96 .comn-text-img-wr:first-child .comn-text-img-right figure::before {
border-top: 798px solid #ffffff;
}
.postid-96 .comn-text-img-wr:first-child .comn-text-img-right figure::after {
border-bottom: 796px solid #ffffff;
}
.postid-96 .comn-text-img-wr:nth-child(2) .comn-text-img-right figure::before {
border-bottom: 795px solid #F0F0F0!important;
}
.postid-96 .comn-text-img-wr:nth-child(2) .comn-text-img-right figure::after {
border-top: 805px solid #F0F0F0!important;
}
.faq-accordion-heading {
cursor: pointer;
}
.faq-accordion-content p {
margin-bottom: 15px;
}
.faq-accordion-content p:last-child {
margin-bottom: 0;
}
.comn-text-img-con-inner {
overflow: hidden;
}
.postid-100 .comntext-0 .comn-text-img-left {
width: 45%;
}
.postid-98 .comntext-0 .comn-text-img-left {
width: 46%;
}
span.ft-heart img {
display: inline-block;
}
.footer-blk h6 {
text-transform: inherit;
}
.trusted-plumbing-wr .comn-text-img-left #dots p:first-child {
width: 45%;
}@media only screen and (max-width: 1439px) { .blog-blk a.bx-next {
right: -60px;
}
.blog-blk a.bx-prev {
left: -60px;
}
}
@media only screen and (max-width: 1365px) { .center-wr {
width: 94%;
}
.header-nav-btn {
width: 87%;
}
.comn-text-img-right figure::after {
border-bottom: 685px solid #ffffff;
}
.comn-text-img-right figure::before {
border-top: 685px solid #ffffff;
}
.comn-text-img-alternate-wr .comn-text-img-right figure::before {
border-bottom: 665px solid #ffffff;
}
.comn-text-img-alternate-wr .comn-text-img-right figure::after {
border-top: 665px solid #ffffff;
}
.comn-text-img-right figure::after {
border-bottom: 760px solid #ffffff;
}
.comn-text-img-right figure::before {
border-top: 760px solid #ffffff;
}
.service-left-right-wr .comn-text-img-wr:nth-child(2n) .comn-text-img-right figure::before {
border-bottom: 725px solid #F0F0F0;
}
body.page-template-template-aboutus .service-left-right-wr .comn-text-img-wr:nth-child(2n) .comn-text-img-right figure::before {
border-bottom: 750px solid #F0F0F0;
}
.service-left-right-wr .comn-text-img-wr:nth-child(2n) .comn-text-img-right figure::after {
border-top: 750px solid #F0F0F0;
}
.comn-text-img-left {
margin-top: 50px;
}
.why-choose-heading-para {
width: 70%;
}
.why-choose-detail:nth-child(2n) .why-choose-heading-para {
width: 66%;
}
.blog-blk a.bx-prev, .blog-blk a.bx-next {
top: auto;
bottom: -20px;
}
.blog-blk a.bx-prev {
left: 0;
}
.blog-blk a.bx-next {
right: 0;
}
.services-card-para {
min-height: 120px;
} .blpgpage-post-wr .blogpage-innr-block {
width: 30.3%;
}  .search .service-banner-main-heading h1 {
color: #ffffff;
font-size: 55px;
} .contact-left-blk {
width: 38%;
} .faq-main-wr .faq-accordion-blk {
width: 60%;
}
.postid-96 .comn-text-img-wr:first-child .comn-text-img-right figure::after {
border-bottom: 817px solid #ffffff;
}
.postid-96 .comn-text-img-wr:first-child .comn-text-img-right figure::before {
border-top: 830px solid #ffffff;
}
.postid-96 .comn-text-img-wr:nth-child(2) .comn-text-img-right figure::before {
border-bottom: 820px solid #F0F0F0!important;
}
.postid-96 .comn-text-img-wr:nth-child(2) .comn-text-img-right figure::after {
border-top: 840px solid #F0F0F0!important;
}
.postid-104 .comn-text-img-wr:first-child .comn-text-img-right figure::after {
border-bottom: 800px solid #ffffff;
}
.postid-104 .comn-text-img-wr:first-child .comn-text-img-right figure::before {
border-top: 800px solid #ffffff;
}
}
@media only screen and (max-width: 1199px) { .center-wr {
width: 96%;
}
.header-navbar {
width: 74%;
}
.header-btn {
width: 23%;
margin-left: 19px;
}
.header-nav-btn {
width: 85%;
}
h3 {
font-size: 33px;
line-height: 41px;
}
.comn-text-img-left {
margin-top: 0;
}
.services-card-para p {
font-size: 15px;
line-height: 28px;
}
.comn-text-img-alternate-wr .comn-text-img-right figure::before {
border-bottom: 620px solid #ffffff;
}
.comn-text-img-alternate-wr .comn-text-img-right figure::after {
border-top: 620px solid #ffffff;
}
.comn-text-img-right figure::after {
border-bottom: 615px solid #ffffff;
}
.comn-text-img-right figure::before {
border-top: 600px solid #ffffff;
}
.why-choose-heading-para {
width: 64%;
}
.why-choose-detail:nth-child(2n) .why-choose-heading-para {
width: 59%;
}
.plumbing-issue-heading {
width: 65%;
}
.footer-middle-wr {
padding: 65px 0 0;
}
.footer-content {
padding-bottom: 45px;
}
.comn-text-img-para {
position: relative;
} .blpgpage-post-wr .blogpage-innr-block {
width: 40%;
}
.blpgpage-post-wr .blogpage-innr-block:nth-child(2n) {
margin-right: 0;
}
.service-banner-wr.small-banner {
padding: 120px 0;
} .service-leaking-tap-para {
width: 100%;
}
.faq-accordion-blk {
width: 80%;
}
.service-left-right-wr .comn-text-img-wr:nth-child(2n) .comn-text-img-right figure::before {
border-bottom: 615px solid #F0F0F0;
} .search-results #site-content .searchpage-blog-post h3 {
font-size: 26px;
line-height: 30px;
}
.search-results .searchpage-blog-post p {
margin-top: 5px;
}
.search-results .searchpage-blog-post hr {
margin: 40px 0px 20px;
} .faq-main-wr .faq-accordion-blk {
width: 70%;
} .blog-head-title h2 {
font-size: 42px;
line-height: 57px;
padding-bottom: 20px;
}
.happy-customer-wr .comn-text-img-left {
margin-top: 10px;
}
.ftr-block4 {
padding-left: 45px;
}
.service-left-right-wr .comn-text-img-left {
width: 54%;
}
.service-left-right-wr .comn-text-img-right {
width: 46%;
}
#dots {
width: 980px;
}
.trusted-plumbing-wr .comn-text-img-left #dots p:first-child {
width: 100%;
}  .banner-inner-image:before {
right: -28px;
bottom: -50px;
}
.banner-inner-image:after {
right: 46px;
bottom: -80px;
}
.banner-img:before{
background-size: 100%, 88%;
}
} @media only screen and (max-width: 1023px) { .header-navbar {
width: 73%;
}
.header-btn {
width: 23%;
}
.navbar-wr ul li {
margin-left: 30px;
}
.header-logo {
width: 135px;
}
h1 {
font-size: 68px;
line-height: 82px;
}
.comn-text-img-left {
margin-top: 0;
}
.comn-text-img-right figure::before {
border-top: 560px solid #ffffff;
}
.comn-text-img-right figure::after {
border-bottom: 560px solid #ffffff;
}
h3 {
font-size: 30px;
line-height: 38px;
}
.services-card-con {
text-align: center;
}
.services-card {
width: 40%;
margin: 0 3.4% 30px 0;
float: unset;
display: inline-block;
vertical-align: top;
}
.services-card:nth-child(2n) {
margin-right: 0;
}
.services-card:nth-child(3n) {
margin-right: 3.4%;
}
.services-card:last-child {
margin-right: 0;
}
.comn-text-img-alternate-wr .comn-text-img-right figure::before {
border-bottom: 590px solid #ffffff;
}
.comn-text-img-alternate-wr .comn-text-img-right figure::after {
border-top: 590px solid #ffffff;
}
.large-heading {
font-size: 54px;
line-height: 64px;
}
.why-choose-heading-para {
margin-left: 13px;
}
.why-choose-detail-para {
margin-top: 15px;
}
.why-choose-heading-para {
width: 66%;
}
.why-choose-detail:nth-child(2n) .why-choose-heading-para {
width: 61%;
}
.why-choose-heading-para {
width: 66%;
margin-left: 30px;
}
.why-choose-detail-blk {
width: 67%;
}
.blog-heading h4 {
font-size: 18px;
line-height: 24px;
}
.one-call-wr {
padding: 95px 0;
}
.plumbing-issue-wr {
padding: 135px 0;
}
.plumbing-issue-wr::before {
width: 330px;
height: 330px;
}
.services-card-para p {
font-size: 16px;
line-height: 30px;
} .service-left-right-wr .comn-text-img-wr:nth-child(2n) .comn-text-img-right figure::before {
border-bottom: 600px solid #F0F0F0;
}
.service-left-right-wr .comn-text-img-wr:nth-child(2n) .comn-text-img-right figure::after {
border-top: 600px solid #F0F0F0;
} .contact-left-blk {
width: 41%;
}
.contact-right-blk {
width: 55%;
}
.footer-blk {
width: 24%;
}
.ftr-block4 {
padding-left: 30px;
width: 32.5%;
}
.ftr-block1 {
width: 19.5%;
}
#dots {
width: 975px;
} } @media only screen and (max-width: 979px) { .trusted-plumbing-wr .comn-text-img-right{
width: 70%;
}
.trusted-plumbing-wr .comn-text-img-left{
margin-top: 50px;
}
.slicknav_menu {
display: inline-block;
vertical-align: top;
margin-left: 20px;
}
.slicknav_icon-bar {
display: block;
width: 30px;
height: 4px;
border-radius: 10px;
background-color: #00b3f0;
margin: 5px auto 0;
transition: 0.5s;
}
.slicknav_icon .slicknav_icon-bar:first-child {
margin-top: unset;
}
.header-wr {
position: relative;
}
.slicknav_nav {
position: absolute;
right: 26px;
background-color: #ffffff;
box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 10%);
z-index: 111;
width: 300px;
top: 100%;
}
.slicknav_menu ul li {
text-align: left;
border-bottom: 1px solid #00b3f0;
}
.slicknav_menu ul li:last-child {
margin-right: unset;
border-bottom: unset;
}
.slicknav_menu ul li a {
padding: 15px 30px;
display: block;
text-transform: uppercase;
}
.slicknav_menu a.slicknav_btn {
padding: 11px 10px;
background-color: #ffffff;
border-radius: 8px;
display: block;
width: 50px;
margin-left: auto;
}
.slicknav_open .slicknav_icon-bar:first-child {
transform: translate(0px, 10px) rotate(45deg);
}
.slicknav_open .slicknav_icon-bar:nth-child(2) {
transform: translateX(-12px);
opacity: 0;
}
.slicknav_open .slicknav_icon-bar:nth-child(3) {
transform: translate(0px, -8px) rotate(-45deg);
}
nav.navbar-wr {
display: none;
}
.header-nav-btn {
width: 80%;
margin-top: 16px;
}
.header-btn {
width: 32%;
}
.header-navbar {
width: 20%;
}
.header-navbar, .header-btn {
vertical-align: top;
}
span.slicknav_arrow {
display: none;
}
.slicknav_menu ul li.slicknav_parent > a {
padding: 0;
}
.slicknav_menu ul li.slicknav_parent ul.sub-menu {
background-color: #00b3f0;
margin: unset;
}
.slicknav_menu ul li.slicknav_parent ul.sub-menu li a {
color: #ffffff;
border-top: 1px solid #ffffff;
}
.slicknav_menu ul li.slicknav_parent a a {
position: relative;
}
.slicknav_menu ul li .slicknav_parent-link.slicknav_row {
position: relative;
display: inherit;
}
.slicknav_menu ul li .slicknav_parent-link.slicknav_row::after {
content: '';
position: absolute;
font-size: 20px;
right: 30px;
top: 50%;
transform: translateY(-50%);
background: url(//thefastplumber.com.au/wp-content/themes/fastPlumber/assets/images/fst_Black_Arrow.svg) no-repeat;
padding: 7px 4px;
transition: 0.5s;
z-index: -1;
}
.slicknav_menu ul li.slicknav_open .slicknav_parent-link.slicknav_row::after {
transform: translateY(-50%) rotate(90deg);
background-image: url(//thefastplumber.com.au/wp-content/themes/fastPlumber/assets/images/fst_Blue_Arrow.svg);
}
.slicknav_menu ul li a.active {
color: #00b3f0;
}
.slicknav_menu ul li.slicknav_parent ul.sub-menu li a.active { }
.slicknav_menu ul li.current_page_ancestor span > a {
color: #00b3f0;
}
span.slicknav_parent-link.slicknav_row {
position: relative;
}
ul.slicknav_nav .slicknav_parent-link a:last-child {
position: absolute;
height: 50px;
right: 0px;
width: 100px;
top: 0;
box-shadow: unset;
}
.banner-text {
width: 100%;
display: block;
}
.banner-img {
width: 70%;
display: block;
margin: 40px auto 0;
}
.home-banner-wr {
padding-top: 60px;
text-align: center;
}
.banner-main-heading {
margin: 20px auto 0;
max-width: 100%;
}
h1 {
font-size: 62px;
line-height: 75px;
}
.one-call-top-heading {
width: 85%;
}
.one-call-phone p, .one-call-phone a {
font-size: 62px;
line-height: 72px;
}
.comn-text-img-left {
width: 100%;
float: unset;
text-align: center;
margin-top: 50px;
}
.comn-text-img-right {
float: unset;
width: 70%;
margin: 0 auto;
}
.comn-text-img-right figure::after, .comn-text-img-right figure::before {
content: unset;
}
.customer-rating-star {
float: unset;
display: inline-block;
}
.services-card {
width: 46%;
}
.comn-text-img-alternate-wr .comn-text-img-right, .comn-text-img-alternate-wr .comn-text-img-left {
float: unset;
}
.services-wr {
padding: 60px 0 40px;
}
.why-choose-heading, .why-choose-detail-blk {
float: unset;
width: 100%;
text-align: center;
}
.why-choose-heading-para, .why-choose-detail:nth-child(2n) .why-choose-heading-para {
text-align: left;
width: 69%;
}
.why-choose-heading {
margin-top: 0;
}
.why-choose-detail-blk {
margin-top: 50px;
}
.why-choose-detail {
padding: 18px;
}
.why-choose-detail:nth-child(2n) {
margin-left: 0;
}
.blog-blk .bx-viewport {
padding-bottom: 0;
}
.blog-blk a.bx-prev, .blog-blk a.bx-next {
bottom: -65px;
}
.latest-blog-wr {
padding: 60px 0 100px;
}
.plumbing-issue-heading {
width: 75%;
}
.footer-blk {
width: 32%;
text-align: center;
margin-top: 30px;
padding-left: 0;
}
.footer-social-icon {
margin-right: 0;
}
.one-call-wr, .why-choose-wr, .service-leaking-tap, .contact-main-wr {
padding: 60px 0;
}
.service-leaking-tap {
padding-top: 10px !important;
}
.footer-middle-wr {
padding: 30px 0 0;
}
.large-heading {
font-size: 45px;
line-height: 55px;
}
.services-wr {
padding-bottom: 40px;
}
.blog-blk .active-slide {
margin-top: 0;
} .blpgpage-post-wr .blogpage-innr-block {
width: 47%;
}
section.blog-post-wr {
padding: 60px 0 10px;
}
.service-banner-wr.small-banner {
padding: 90px 0;
} .service-banner-wr img {
height: 500px;
object-fit: cover;
}
.service-left-right-wr {
padding: 0;
}
.comn-text-img-wr {
padding: 60px 0;
}
.service-left-right-wr .comn-text-img-wr:nth-child(2n) .comn-text-img-left {
float: unset;
}
.service-left-right-wr .comn-text-img-wr:nth-child(2n) .comn-text-img-right {
float: unset;
}
.faq-accordion-blk {
width: 100%;
}
.happy-customer-wr {
padding: 68px 0 120px;
} .error404 .error-page-content {
display: block;
width: 100%;
text-align: center;
}
.error404 .error-page-image-wr {
display: block;
width: 70%;
margin: 50px auto 0;
}
.error404 .error-page-content form {
margin: 0 auto;
}
.error404 main#site-content {
padding: 0;
}
.search .service-banner-wr img {
height: 300px;
}
.search #site-content {
padding: 60px 0;
}
.search-results .searchpage-blog-post .featuredimg-card {
width: 21%;
}
.search-results .search-cntnt {
width: 79%;
padding-left: 35px;
}
.search-results #site-content .searchpage-blog-post h3 {
font-size: 21px;
line-height: 26px;
} .contact-left-blk {
width: 75%;
float: unset;
}
.contact-right-blk {
width: 100%;
float: unset;
margin-top: 50px;
} .faq-main-wr .faq-accordion-blk {
width: 100%;
}
.faq-main-wr {
padding: 60px 0 55px;
} .single-post main#site-content {
padding: 0;
}
.single-post .default-page .content-wr p:last-child {
padding-bottom: 0;
}
.blog-head-title h2 {
font-size: 38px;
line-height: 48px;
} .service-faq-wr {
padding: 60px 0 50px;
}
.page-id-232 .service-banner-wr.small-banner {
background-position: -370px 0px;
} .postid-100 .service-banner-wr img {
object-position: 0;
} .page-template-template-privacy-policy .service-banner-main-heading h1 {
font-size: 42px;
line-height: 46px;
}
.happy-customer-wr .comn-text-img-left {
width: 100%;
}
.happy-customer-wr .comn-text-img-right {
margin-bottom: 35px;
}
.footer-blk.left.ftr-block4 {
width: 100%;
} 
.service-left-right-wr .comn-text-img-right{
width: 70%;
} 
.service-left-right-wr .comn-text-img-left, .trusted-plumbing-wr .comn-text-img-left {
width: 100%;
}
#dots {
width: 100%;
} .breadcrumbs{
padding: 22px 0;
} .banner-inner-image:before {
width: 50px;
height: 50px;
}
.banner-inner-image:after {
width: 15px;
height: 15px;
border: 3px solid #000;
}
} @media only screen and (max-width: 767px) { .header-nav-btn {
margin-top: 18px;
}  
.header-btn {
width: 40%;
}
.header-nav-btn {
width: 77%;
}
h1 {
font-size: 55px;
line-height: 65px;
}
.site-btn {
padding: 18px 15px;
}
.site-btn-sm {
padding: 12px 25px 12px 48px;
}
h3 {
font-size: 26px;
line-height: 34px;
}
.one-call-phone p, .one-call-phone a {
font-size: 55px;
line-height: 65px;
}
.comn-text-img-right {
width: 80%;
}
.large-heading {
font-size: 40px;
line-height: 50px;
}
.blog-blk {
margin-top: 20px;
}
.blog-blk .bx-viewport {
padding: 0 25px 60px;
}
.latest-blog:hover .blog-slider-inner {
margin-top: 0;
box-shadow: unset;
}
section.latest-blog-wr {
padding-bottom: 20px;
}
.blog-blk a.bx-prev, .blog-blk a.bx-next {
bottom: 10px;
}
.plumbing-issue-wr {
padding: 105px 0;
}
.plumbing-issue-heading {
width: 85%;
}
.plumbing-issue-wr::before {
width: 280px;
height: 280px;
}
.services-card-para p {
font-size: 15px;
line-height: 28px;
}
.services-card {
width: 47.9%;
}
.services-card-bottom {
padding: 20px 11px 32px;
} .blpgpage-post-wr .blogpage-innr-block {
width: 65%;
margin: 50px 0 0 0;
}
.blpgpage-post-wr .blogpage-innr-block:first-child {
margin-top: 0;
}
section.blog-post-wr {
padding: 60px 0;
}
.service-banner-wr.small-banner {
padding: 80px 0;
} .faq-accordion-heading h4 {
font-size: 18px;
line-height: 22px;
}
.faq-accordion-blk {
margin-top: 15px;
} .error404 .error-page-content h1 {
font-size: 50px;
line-height: 55px;
}
.search .service-banner-main-heading h1 {
font-size: 50px;
}
.searchpage-blog-post a.read-more {
width: 130px;
padding: 10px 15px;
font-size: 15px;
}
.search-results #site-content .searchpage-blog-post h3 {
font-size: 20px;
line-height: 25px;
}
.search-results .search-cntnt-main-block {
padding-top: 40px;
} .contact-left-blk {
width: 90%;
} .faq-main-wr {
padding: 45px 0 40px;
} .single-post .content-wr h3 {
padding: 10px 0;
}
section.content-block {
padding: 40px 0;
}
.blog-head-title h2 {
font-size: 35px;
line-height: 45px;
}
.blpgpage-post-wr .blog-heading {
min-height: unset;
}
.service-blog-blk .blog-para {
min-height: unset;
} .privacy-policy-wr {
padding: 50px 0;
}
.footer-content {
text-align: center;
}
.footer-blk {
width: 49%;
text-align: center;
margin-top: 30px;
padding-left: 0;
display: inline-block;
float: unset;
vertical-align: top;
}
.copyright-wr .copyright-para, .copyright-wr .web-design-by {
width: 100%;
text-align: center;
}
.copyright-wr .copyright-para {
margin-bottom: 10px;
}
.why-choose-detail-blk {
margin-top: 22px;
} .breadcrumbs {
padding: 0px 0px 20px 0;
}
} @media only screen and (max-width: 649px) { .trusted-plumbing-wr .comn-text-img-right {
width: 80%;
}
.header-nav-btn {
width: 74%;
}
.header-btn {
width: 46%;
}
h1 {
font-size: 48px;
line-height: 58px;
}
h3 span {
display: inline-block;
}
.banner-img {
width: 80%;
}
h3 {
font-size: 25px;
line-height: 33px;
}
.one-call-phone p, .one-call-phone a {
font-size: 48px;
line-height: 58px;
}
.page-medium-heading h4 {
font-size: 18px;
line-height: 28px;
}
.services-wr {
padding: 60px 0;
}
.services-card-con {
margin: 40px auto 0;
width: 70%;
position: relative;
}
.services-card-img img {
width: 100%;
}
.services-card-con .bx-prev, .services-card-con .bx-next {
background: url(//thefastplumber.com.au/wp-content/themes/fastPlumber/assets/images/Right_Arrow_grey.svg) no-repeat;
position: absolute;
top: 50%;
transform: translateY(-50%);
font-size: 0;
padding: 12px 7px;
}
.services-card-con .bx-prev {
left: -50px;
}
.services-card-con .bx-next {
background: url(//thefastplumber.com.au/wp-content/themes/fastPlumber/assets/images/Left_Arrow_grey.svg) no-repeat;
right: -50px;
}
.services-card-para {
min-height: unset;
}
.services-card-para p {
font-size: 16px;
line-height: 30px;
}
.large-heading {
font-size: 35px;
line-height: 45px;
}
.why-choose-heading-para, .why-choose-detail:nth-child(2n) .why-choose-heading-para {
width: 66%;
}
.why-choose-img, .why-choose-img figure {
width: 130px;
height: 116px;
}
h4 {
font-size: 18px;
}
.blog-heading h4 {
line-height: 22px;
}
.blog-blk .bx-viewport {
padding: 0 15px 0;
}
section.latest-blog-wr {
padding-bottom: 50px;
}
.blog-blk a.bx-prev, .blog-blk a.bx-next {
bottom: -35px;
}
.site-btn {
width: 250px;
}
.site-btn-sm {
width: unset;
}
.service-banner-wr.small-banner {
padding: 70px 0;
} .service-banner-wr img {
height: 450px;
} .error404 .error-page-content h1 {
font-size: 45px;
line-height: 50px;
} .search .service-banner-main-heading h1 {
font-size: 40px;
}
.search .service-banner-wr img {
height: 230px;
}
.search-results .searchpage-blog-post .featuredimg-card {
width: 28%;
}
.search-results .search-cntnt {
width: 72%;
padding-left: 30px;
} .contact-left-blk {
width: 100%;
} .single-post .content-wr h3 {
font-size: 27px;
line-height: 37px;
}
.blog-head-title h2 {
font-size: 32px;
line-height: 42px;
}
.service-left-right-wr .comn-text-img-right{
width: 100%;
} .breadcrumbs {
padding: 22px 0px 20px 0;
}
}
@media only screen and (max-width: 567px) { .header-nav-btn {
width: 70%;
}
.header-btn {
width: 53%;
}
.header-navbar {
width: auto;
}
h1 {
font-size: 42px;
line-height: 52px;
}
.site-btn {
font-size: 16px;
padding: 15px;
width: 210px;
}
.banner-img {
width: 100%;
}
.one-call-phone p, .one-call-phone a {
font-size: 40px;
line-height: 50px;
}
.one-call-phone {
margin-top: 15px;
}
.one-call-bottom-heading {
margin-top: 15px;
}
.comn-text-img-para {
margin-top: 15px;
}
.comn-text-img-para p {
margin-top: 20px;
}
.comn-text-img-right {
width: 100%;
}
.comn-text-img-left {
margin-top: 30px;
}
.services-card-con {
margin: 30px auto 0;
width: 80%;
}
.services-card-img img {
height: 320px;
object-fit: cover;
}
.large-heading {
font-size: 30px;
line-height: 40px;
}
.why-choose-detail-blk {
margin-top: 30px
}
.why-choose-heading-para {
margin-left: 10px;
}
.why-choose-heading-para, .why-choose-detail:nth-child(2n) .why-choose-heading-para {
margin-top: 10px;
width: 100%;
text-align: center;
}
.why-choose-img, .why-choose-heading-para {
display: block;
margin: 10px auto 0;
}
h5 {
font-size: 20px;
line-height: 24px;
}
.why-choose-detail-para {
margin-top: 8px;
}
.why-choose-img, .why-choose-img figure {
width: 109px;
height: 95px;
}
.why-choose-img img {
width: 40%;
}
.blog-blk {
margin: 20px auto 0;
width: 85%;
}
.plumbing-issue-wr {
padding: 70px 0;
}
.plumbing-issue-heading {
width: 100%;
}
.plumbing-issue-btn {
margin-left: 15px;
}
.plumbing-issue-wr::before {
width: 260px;
height: 230px;
}
.copyright-wr {
padding: 20px 0;
text-align: center;
}
.footer-content {
padding-bottom: 30px;
}
.copyright-para, .footer-social-icon {
float: unset;
}
.footer-social-icon {
margin-top: 10px;
}
.footer-middle-wr {
padding: 5px 0 0;
}
.site-btn-sm {
padding: 10px 22px 10px 38px;
background-position: 18px 50%;
width: unset;
}
.trusted-plumbing-wr .comn-text-img-right {
width: 100%;
}
.trusted-plumbing-wr .comn-text-img-left {
margin-top: 30px;
} .blpgpage-post-wr .blogpage-innr-block {
width: 80%;
} .service-banner-wr img {
height: 400px;
}
.service-banner-main-heading {
margin-top: 10px;
}
.service-banner-btn {
margin-top: 20px;
}
.service-leaking-tap-para {
margin: 20px auto 0;
}
.service-leaking-tap-para p {
margin-top: 20px;
}
.faq-accordion {
padding: 20px 0 25px;
}
.faq-accordion-heading h4 {
font-size: 17px;
line-height: 21px;
}
.faq-accordion-content {
padding: 10px 0 0 38px;
}
.faq-accordion-blk {
margin-top: 10px;
}
.send-enquiry li a {
word-break: keep-all;
} .error404 .error-page-content form {
width: 100%;
}
.error404 .error-page-content h1 {
font-size: 40px;
line-height: 45px;
}
.error404 .error-page-image-wr {
width: 95%;
margin: 20px auto 0;
}
.error404 .error-page-content h1 {
font-size: 38px;
line-height: 43px;
} .searchpage-blog-post a.read-more {
margin: 0 auto;
}
.search #site-content {
padding: 45px 0;
}
.search .pagination .nav-links {
justify-content: center;
}
.search .archive-subtitle {
margin-top: 5px;
} .search-results .searchpage-blog-post .featuredimg-card {
width: 45%;
margin: 0 auto;
float: unset;
}
.search-results .search-cntnt {
width: 100%;
padding-left: 0;
margin-top: 30px;
text-align: center;
float: unset;
}
.search-cntnt-main-block .no-search-results-form {
width: 100%;
}
.search-results .searchpage-blog-post {
text-align: center;
}
.search-results .searchpage-blog-post .featuredimg-card img {
width: 100%;
} .contact-right-blk {
margin-top: 30px;
}
.contact-right-blk .form-field .form-group {
float: unset;
width: 100%;
}
.contact-form-inner {
padding: 30px 24px 70px;
}
.contact-right-blk .wpcf7-response-output {
padding: 5px 10px;
width: 350px;
bottom: 10px;
} .faq-main-wr {
padding: 35px 0 30px;
} .single-post main#site-content .content-block {
text-align: center;
}
.single-post .default-page p {
padding-bottom: 14px;
}
.blog-head-title h2 {
font-size: 30px;
line-height: 35px;
}
.single-post .content-wr h3 {
font-size: 25px;
line-height: 30px;
} .page-template-template-privacy-policy .service-banner-main-heading h1 {
font-size: 33px;
line-height: 39px;
}
.privacy-policy-wr .privacy-content {
padding: 15px 20px 40px;
}
section.content-block {
padding: 0;
} .breadcrumbs {
font-size: 12px;
line-height: 18px;
}
}
@media only screen and (max-width: 479px) { .header-btn .site-btn-sm {
font-size: 0;
padding: 12px 24px;
}
.site-btn-sm {
background-position: 16px 50%;
}
.header-btn {
width: 20%;
}
.header-nav-btn {
width: 62%;
}
.header-logo {
width: 140px;
}
p {
line-height: 28px;
}
h1 {
font-size: 36px;
line-height: 46px;
}
.banner-btn {
margin-top: 15px;
}
.home-banner-wr {
padding-top: 40px;
}
h3 {
font-size: 22px;
line-height: 30px;
}
.one-call-phone p, .one-call-phone a {
font-size: 36px;
line-height: 46px;
}
.services-card-con {
margin: 30px auto 0;
width: 90%;
}
.services-card-con .bx-prev, .services-card-con .bx-next {
top: auto;
transform: unset;
bottom: -55px;
}
.services-card-con .bx-next {
right: 10px;
}
.services-card-con .bx-prev {
left: 10px;
}
.services-card-para p {
font-size: 16px;
line-height: 26px;
}
.services-wr {
padding: 45px 0 80px;
}
.customer-rating-blk {
margin-top: 20px;
}
.happy-customer-wr .bx-pager.bx-default-pager {
margin-top: 20px;
}
.happy-customer-wr {
padding: 60px 0 95px;
}
.large-heading {
font-size: 28px;
line-height: 38px;
}
.why-choose-detail {
margin-top: 20px;
}
.why-choose-detail {
margin-top: 0;
}
.why-choose-detail-blk {
margin-top: 10px;
}
.blog-img img {
width: 100%;
}
.blog-blk {
width: 94%;
}
.plumbing-issue-wr {
padding: 50px 0;
}
.plumbing-issue-heading h3 {
font-size: 21px;
line-height: 31px;
}
.plumbing-issue-btn {
display: block;
margin: 10px 0 0 0;
}
.plumbing-issue-button {
margin-top: 20px;
}
.footer-blk {
width: 100%;
float: unset;
}
.footer-blk:first-child {
margin-top: 0;
}
.footer-middle-wr {
padding: 40px 0 0;
}
.send-enquiry {
margin-top: 20px;
}
.footer-links {
margin-top: 10px;
}
h4 {
font-size: 18px;
line-height: 22px;
} section.blog-post-wr {
padding: 45px 0;
}
.blpgpage-post-wr .blogpage-innr-block {
width: 90%;
margin-top: 30px;
}
.service-banner-wr.small-banner {
padding: 60px 0;
} .service-banner-wr img {
height: 300px;
}
.faq-accordion-heading h4 {
font-size: 16px;
line-height: 20px;
} .error404 .search-form .search-field, .search .search-form .search-field {
height: 48px;
font-size: 16px;
}
.error404 .search-form .search-submit, .search .search-form .search-submit {
height: 48px;
} .search .service-banner-main-heading h1 {
font-size: 33px;
}
.search .service-banner-wr img {
height: 200px;
}
.search-results .searchpage-blog-post .featuredimg-card {
width: 60%;
} .contact-right-blk .form-field .form-group input, .contact-right-blk .form-group textarea {
margin-bottom: 18px;
}
.contact-right-blk .wpcf7-not-valid-tip {
bottom: 3px;
font-size: 12px;
}
.contact-right-blk .submit-wr input {
font-size: 16px;
line-height: 18px;
padding: 12px 50px;
} .faq-main-wr {
padding: 25px 0 20px;
} .single-post .content-wr h3 {
font-size: 22px;
line-height: 27px;
}
.blog-head-title h2 {
font-size: 27px;
line-height: 32px;
}
.one-call-wr, .why-choose-wr, .service-leaking-tap, .contact-main-wr {
padding: 45px 0;
} .service-faq-wr {
padding: 50px 0 35px;
}
}
@media only screen and (max-width: 413px) { .header-nav-btn {
width: 58%;
margin-top: 20px;
}
.header-btn {
width: 25%;
}
.slicknav_menu {
margin-left: 10PX;
}
h1 {
font-size: 32px;
line-height: 42px;
}
h3 {
font-size: 21px;
line-height: 29px;
}
.banner-main-heading {
margin-top: 10px;
}
.site-btn {
width: 200px;
font-size: 15px;
padding: 12px 15px;
}
.header-btn .site-btn-sm {
width: unset;
}
.one-call-phone p, .one-call-phone a {
font-size: 33px;
line-height: 43px;
}
.services-card-con {
width: 94%;
}
.blog-blk {
margin-top: 10px;
}
.blog-heading {
padding: 0 10px;
}
.blog-para {
padding: 0 10px 20px 10px;
}
.plumbing-issue-heading h3 {
font-size: 18px;
line-height: 28px;
}
.plumbing-issue-wr::before {
width: 240px;
height: 200px;
}
.scroll-top {
width: 40px;
height: 40px;
font-size: 22px;
line-height: 40px;
} .blpgpage-post-wr .blogpage-innr-block {
width: 95%;
} .service-banner-wr.small-banner {
padding: 50px 0;
}
.faq-accordion {
padding: 15px 0 20px;
} .error404 .error-page-content h1 {
font-size: 35px;
line-height: 40px;
}
.error404 .search-form .search-field, .search .search-form .search-field, .error404 
.search-form .search-submit, .search .search-form .search-submit {
height: 45px;
padding: 10px 15px;
}
.error404 .error-page-content p {
font-size: 14px;
}
.error404 .error-page-content form {
margin-top: 20px;
}
.error404 .error-page-image-wr {
width: 100%;
} .search .service-banner-main-heading h1 {
font-size: 28px;
}
.search-results #site-content .searchpage-blog-post h3 {
font-size: 18px;
line-height: 23px;
}
.search .archive-header .archive-header-inner {
width: 100%;
}
.search-results .searchpage-blog-post hr {
margin: 25px 0px 25px;
}
.search .service-banner-main-heading h1 {
font-size: 27px;
}
.search .service-banner-wr img {
height: 150px;
}
.search-results .searchpage-blog-post .featuredimg-card {
width: 70%;
} .contact-form-inner {
padding: 25px 15px 70px;
}
.contact-form-inner .form-group input::placeholder, .contact-form-inner .form-group textarea::placeholder {
color: #888f93;
}
.contact-right-blk h5 {
padding-bottom: 20px;
}
.contact-right-blk .wpcf7-response-output {
width: 300px;
} .single-post .content-wr h3 {
font-size: 21px;
line-height: 26px;
}
.blog-head-title h2 {
font-size: 25px;
line-height: 30px;
} .page-id-232 .service-banner-wr.small-banner {
background-position: -270px 0px;
} .banner-inner-image:before {
width: 45px;
height: 45px;
}
.banner-inner-image:after {
width: 10px;
height: 10px;
border: 2px solid #000;
right: 30px;
bottom: -65px;
}
.banner-img{
padding: 32px;
}
.banner-wr {
margin: 14px 0px 46px;
}
}
@media only screen and (max-width: 374px) { .header-nav-btn {
width: 51%;
}
.header-btn {
width: 33%;
}
.slicknav_icon-bar {
width: 26px;
height: 4px;
}
.slicknav_menu a.slicknav_btn {
padding: 10px;
}
.header-btn .site-btn-sm {
padding: 10px 22px;
}
.site-btn-sm {
background-position: 14px 50%;
}
.slicknav_nav {
width: 280px;
right: 15px;
}
h1 {
font-size: 29px;
line-height: 39px;
}
h3 {
font-size: 21px;
line-height: 29px;
}
.one-call-top-heading h3 {
font-size: 18px;
line-height: 26px;
}
.one-call-phone p, .one-call-phone a {
font-size: 28px;
line-height: 38px;
}
.why-choose-detail-blk {
margin-top: 20px;
}
h5 {
font-size: 18px;
line-height: 22px;
}
.services-card-img img {
height: 280px;
}
.happy-customer-wr .bx-pager-item a {
width: 17px;
height: 17px;
}
.happy-customer-wr .bx-pager-item {
margin-left: 15px;
}
.page-medium-heading h4 {
font-size: 17px;
line-height: 27px;
}
h4 {
font-size: 16px;
line-height: 21px;
}
.large-heading {
font-size: 26px;
line-height: 36px;
}
.copyright-para span {
display: block;
}
.copyright-para p {
line-height: 22px;
}
.footer-social-icon {
margin-top: 20px;
}
.plumbing-issue-wr::before {
width: 220px;
height: 230px;
} .service-banner-wr img {
height: 250px;
}
.comn-text-img-wr {
padding: 50px 0;
}
.happy-customer-wr {
padding: 50px 0 80px;
}
.faq-accordion-heading h4 {
font-size: 15px;
line-height: 20px;
} .error404 .error-page-content h1 {
font-size: 32px;
line-height: 37px;
} .search-results .searchpage-blog-post .featuredimg-card {
width: 90%;
} .contact-left-blk .contact-left-detail h6 {
font-size: 16px;
line-height: 26px;
}
.contact-left-blk .contact-left-detail a::after {
font-size: 25px;
}
.contact-left-blk .contact-call a::after {
font-size: 35px;
}
.contact-left-blk .contact-left-address a::after {
font-size: 32px;
}
.contact-left-blk .contact-left-detail a {
padding: 5px 0 5px 45px;
}
.contact-right-blk .form-field .form-group input, .contact-right-blk .form-group textarea {
font-size: 15px;
}
.contact-right-blk .wpcf7-response-output {
width: 250px;
} .blog-head-title h2 {
font-size: 23px;
line-height: 27px;
}
.single-post .content-wr h3 {
font-size: 20px;
line-height: 25px;
}
}
@media only screen and (max-width: 359px) and (min-width:  320px) {
h3 {
font-size: 18px;
line-height: 26px;
}
.error404 .search-form .search-submit, .search .search-form .search-submit {
width: 84px;
padding: 0;
}
.error404 .error-page-content p {
font-size: 16px;
}
.error404 .search-form .search-field, .search .search-form .search-field, .error404 .search-form .search-submit, .search .search-form .search-submit {
height: 40px;
}
}