@charset "UTF-8";
.wpcf7 .screen-reader-response {
position: absolute;
overflow: hidden;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
width: 1px;
margin: -1px;
padding: 0;
border: 0;
word-wrap: normal !important;
}
.wpcf7 .hidden-fields-container {
display: none;
}
.wpcf7 form .wpcf7-response-output {
margin: 2em 0.5em 1em;
padding: 0.2em 1em;
border: 2px solid #00a0d2; }
.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
border-color: #46b450; }
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
border-color: #dc3232; }
.wpcf7 form.spam .wpcf7-response-output {
border-color: #f56e28; }
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
border-color: #ffb900; }
.wpcf7-form-control-wrap {
position: relative;
}
.wpcf7-not-valid-tip {
color: #dc3232; font-size: 1em;
font-weight: normal;
display: block;
}
.use-floating-validation-tip .wpcf7-not-valid-tip {
position: relative;
top: -2ex;
left: 1em;
z-index: 100;
border: 1px solid #dc3232;
background: #fff;
padding: .2em .8em;
width: 24em;
}
.wpcf7-list-item {
display: inline-block;
margin: 0 0 0 1em;
}
.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
content: " ";
}
.wpcf7-spinner {
visibility: hidden;
display: inline-block;
background-color: #23282d; opacity: 0.75;
width: 24px;
height: 24px;
border: none;
border-radius: 100%;
padding: 0;
margin: 0 24px;
position: relative;
}
form.submitting .wpcf7-spinner {
visibility: visible;
}
.wpcf7-spinner::before {
content: '';
position: absolute;
background-color: #fbfbfc; top: 4px;
left: 4px;
width: 6px;
height: 6px;
border: none;
border-radius: 100%;
transform-origin: 8px 8px;
animation-name: spin;
animation-duration: 1000ms;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
@media (prefers-reduced-motion: reduce) {
.wpcf7-spinner::before {
animation-name: blink;
animation-duration: 2000ms;
}
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes blink {
from {
opacity: 0;
}
50% {
opacity: 1;
}
to {
opacity: 0;
}
}
.wpcf7 [inert] {
opacity: 0.5;
}
.wpcf7 input[type="file"] {
cursor: pointer;
}
.wpcf7 input[type="file"]:disabled {
cursor: default;
}
.wpcf7 .wpcf7-submit:disabled {
cursor: not-allowed;
}
.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
direction: ltr;
}
.wpcf7-reflection > output {
display: list-item;
list-style: none;
}
.wpcf7-reflection > output[hidden] {
display: none;
}
 .animated {
animation-duration: 1s;
animation-fill-mode: both;
}
.animated.infinite {
animation-iteration-count: infinite;
}
.animated.hinge {
animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
animation-duration: .75s;
}
@keyframes bounce {
from, 20%, 53%, 80%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transform: translate3d(0,0,0);
}
40%, 43% {
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transform: translate3d(0, -30px, 0);
}
70% {
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transform: translate3d(0, -15px, 0);
}
90% {
transform: translate3d(0,-4px,0);
}
}
.bounce {
animation-name: bounce;
transform-origin: center bottom;
}
@keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
animation-name: flash;
} @keyframes pulse {
from {
transform: scale3d(1, 1, 1);
}
50% {
transform: scale3d(1.05, 1.05, 1.05);
}
to {
transform: scale3d(1, 1, 1);
}
}
.pulse {
animation-name: pulse;
}
@keyframes rubberBand {
from {
transform: scale3d(1, 1, 1);
}
30% {
transform: scale3d(1.25, 0.75, 1);
}
40% {
transform: scale3d(0.75, 1.25, 1);
}
50% {
transform: scale3d(1.15, 0.85, 1);
}
65% {
transform: scale3d(.95, 1.05, 1);
}
75% {
transform: scale3d(1.05, .95, 1);
}
to {
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
animation-name: rubberBand;
}
@keyframes shake {
from, to {
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
transform: translate3d(10px, 0, 0);
}
}
.shake {
animation-name: shake;
}
@keyframes headShake {
0% {
transform: translateX(0);
}
6.5% {
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
transform: translateX(5px) rotateY(7deg);
}
31.5% {
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
transform: translateX(2px) rotateY(3deg);
}
50% {
transform: translateX(0);
}
}
.headShake {
animation-timing-function: ease-in-out;
animation-name: headShake;
}
@keyframes swing {
20% {
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
transform: rotate3d(0, 0, 1, -5deg);
}
to {
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
transform-origin: top center;
animation-name: swing;
}
@keyframes tada {
from {
transform: scale3d(1, 1, 1);
}
10%, 20% {
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
transform: scale3d(1, 1, 1);
}
}
.tada {
animation-name: tada;
} @keyframes wobble {
from {
transform: none;
}
15% {
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
transform: none;
}
}
.wobble {
animation-name: wobble;
}
@keyframes jello {
from, 11.1%, to {
transform: none;
}
22.2% {
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
animation-name: jello;
transform-origin: center;
}
@keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
20% {
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
animation-name: bounceIn;
}
@keyframes bounceInDown {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, 25px, 0);
}
75% {
transform: translate3d(0, -10px, 0);
}
90% {
transform: translate3d(0, 5px, 0);
}
to {
transform: none;
}
}
.bounceInDown {
animation-name: bounceInDown;
}
@keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(25px, 0, 0);
}
75% {
transform: translate3d(-10px, 0, 0);
}
90% {
transform: translate3d(5px, 0, 0);
}
to {
transform: none;
}
}
.bounceInLeft {
animation-name: bounceInLeft;
}
@keyframes bounceInRight {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(-25px, 0, 0);
}
75% {
transform: translate3d(10px, 0, 0);
}
90% {
transform: translate3d(-5px, 0, 0);
}
to {
transform: none;
}
}
.bounceInRight {
animation-name: bounceInRight;
}
@keyframes bounceInUp {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, -20px, 0);
}
75% {
transform: translate3d(0, 10px, 0);
}
90% {
transform: translate3d(0, -5px, 0);
}
to {
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
animation-name: bounceInUp;
}
@keyframes bounceOut {
20% {
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
animation-name: bounceOut;
}
@keyframes bounceOutDown {
20% {
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
20% {
opacity: 1;
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
20% {
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
animation-name: bounceOutUp;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
animation-name: fadeIn;
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInDown {
animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
from {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInDownBig {
animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInLeft {
animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInLeftBig {
animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
from {
opacity: 0;
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInRight {
animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
from {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInRightBig {
animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInUp {
animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
from {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInUpBig {
animation-name: fadeInUpBig;
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
animation-name: fadeOut;
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
animation-name: fadeOutUpBig;
}
@keyframes flip {
from {
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
animation-timing-function: ease-out;
}
40% {
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
animation-timing-function: ease-out;
}
50% {
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
animation-timing-function: ease-in;
}
80% {
transform: perspective(400px) scale3d(.95, .95, .95);
animation-timing-function: ease-in;
}
to {
transform: perspective(400px);
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
animation-name: flip;
}
@keyframes flipInX {
from {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
animation-timing-function: ease-in;
opacity: 0;
}
40% {
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
animation-timing-function: ease-in;
}
60% {
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-name: flipInX;
}
@keyframes flipInY {
from {
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
animation-timing-function: ease-in;
opacity: 0;
}
40% {
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
animation-timing-function: ease-in;
}
60% {
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-name: flipInY;
}
@keyframes flipOutX {
from {
transform: perspective(400px);
}
30% {
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@keyframes flipOutY {
from {
transform: perspective(400px);
}
30% {
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-name: flipOutY;
}
@keyframes lightSpeedIn {
from {
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
transform: skewX(20deg);
opacity: 1;
}
80% {
transform: skewX(-5deg);
opacity: 1;
}
to {
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
animation-name: lightSpeedIn;
animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
animation-name: lightSpeedOut;
animation-timing-function: ease-in;
}
@keyframes rotateIn {
from {
transform-origin: center;
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
transform-origin: center;
transform: none;
opacity: 1;
}
}
.rotateIn {
animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
transform-origin: left bottom;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
transform-origin: right bottom;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
transform-origin: left bottom;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
transform-origin: right bottom;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
animation-name: rotateInUpRight;
}
@keyframes rotateOut {
from {
transform-origin: center;
opacity: 1;
}
to {
transform-origin: center;
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
from {
transform-origin: left bottom;
opacity: 1;
}
to {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
from {
transform-origin: right bottom;
opacity: 1;
}
to {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
from {
transform-origin: left bottom;
opacity: 1;
}
to {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
from {
transform-origin: right bottom;
opacity: 1;
}
to {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
animation-name: rotateOutUpRight;
}
@keyframes hinge {
0% {
transform-origin: top left;
animation-timing-function: ease-in-out;
}
20%, 60% {
transform: rotate3d(0, 0, 1, 80deg);
transform-origin: top left;
animation-timing-function: ease-in-out;
}
40%, 80% {
transform: rotate3d(0, 0, 1, 60deg);
transform-origin: top left;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
animation-name: hinge;
}
@keyframes jackInTheBox {
from {
opacity: 0;
transform: scale(0.1) rotate(30deg);
transform-origin: center bottom;
}
50% {
transform: rotate(-10deg);
}
70% {
transform: rotate(3deg);
}
to {
opacity: 1;
transform: scale(1);
}
}
.jackInTheBox {
animation-name: jackInTheBox;
} @keyframes rollIn {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
transform: none;
}
}
.rollIn {
animation-name: rollIn;
} @keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
animation-name: rollOut;
}
@keyframes zoomIn {
from {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
animation-name: zoomIn;
}
@keyframes zoomInDown {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
animation-name: zoomInDown;
}
@keyframes zoomInLeft {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
animation-name: zoomInLeft;
}
@keyframes zoomInRight {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
animation-name: zoomInRight;
}
@keyframes zoomInUp {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
animation-name: zoomInUp;
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
.zoomOut {
animation-name: zoomOut;
}
@keyframes zoomOutDown {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform-origin: center bottom;
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
transform: scale(.1) translate3d(-2000px, 0, 0);
transform-origin: left center;
}
}
.zoomOutLeft {
animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
transform: scale(.1) translate3d(2000px, 0, 0);
transform-origin: right center;
}
}
.zoomOutRight {
animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform-origin: center bottom;
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
animation-name: zoomOutUp;
}
@keyframes slideInDown {
from {
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
animation-name: slideInDown;
}
@keyframes slideInLeft {
from {
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
animation-name: slideInLeft;
}
@keyframes slideInRight {
from {
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
animation-name: slideInRight;
}
@keyframes slideInUp {
from {
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
animation-name: slideInUp;
}
@keyframes slideOutDown {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
animation-name: slideOutDown;
}
@keyframes slideOutLeft {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
animation-name: slideOutLeft;
}
@keyframes slideOutRight {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
animation-name: slideOutRight;
}
@keyframes slideOutUp {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
animation-name: slideOutUp;
}@font-face {
font-family: 'icomoon';
src:  url(//pianoguitartuition.nz/wp-content/themes/PianoGuitarTuitionTheme/assets/icomoon/fonts/icomoon.eot?lp9cga);
src:  url(//pianoguitartuition.nz/wp-content/themes/PianoGuitarTuitionTheme/assets/icomoon/fonts/icomoon.eot?lp9cga#iefix) format('embedded-opentype'),
url(//pianoguitartuition.nz/wp-content/themes/PianoGuitarTuitionTheme/assets/icomoon/fonts/icomoon.ttf?lp9cga) format('truetype'),
url(//pianoguitartuition.nz/wp-content/themes/PianoGuitarTuitionTheme/assets/icomoon/fonts/icomoon.woff?lp9cga) format('woff'),
url(//pianoguitartuition.nz/wp-content/themes/PianoGuitarTuitionTheme/assets/icomoon/fonts/icomoon.svg?lp9cga#icomoon) format('svg');
font-weight: normal;
font-style: normal;
font-display: block;
}
[class^="icon-"], [class*=" icon-"] { font-family: 'icomoon' !important;
speak: never;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-award:before {
content: "\e909";
}
.icon-triangle-up:before {
content: "\e91d";
}
.icon-triangle-right:before {
content: "\e91e";
}
.icon-triangle-left:before {
content: "\e91f";
}
.icon-triangle-down:before {
content: "\e920";
}
.icon-mobile:before {
content: "\e91c";
}
.icon-map-marker:before {
content: "\e902";
}
.icon-home:before {
content: "\e907";
}
.icon-pencil:before {
content: "\e90b";
}
.icon-phone:before {
content: "\e942";
}
.icon-phone1:before {
content: "\e943";
}
.icon-clock2:before {
content: "\e94f";
}
.icon-bin:before {
content: "\e9ac";
}
.icon-checkmark:before {
content: "\ea10";
}
.icon-square:before {
content: "\ea1e";
}
.icon-checkbox-checked:before {
content: "\ea52";
}
.icon-new-tab:before {
content: "\ea7e";
}
.icon-facebook2:before {
content: "\ea91";
}
.icon-instagram:before {
content: "\ea92";
}
.icon-linkedin:before {
content: "\eac9";
}
.icon-quote:before {
content: "\e919";
}
.icon-pause:before {
content: "\e915";
}
.icon-play:before {
content: "\e914";
}
.icon-unmute:before {
content: "\e913";
}
.icon-close:before {
content: "\e911";
}
.icon-menu:before {
content: "\e910";
}
.icon-user-icon:before {
content: "\e908";
}
.icon-chevron-right-light:before {
content: "\e90a";
}
.icon-chevron-left-light:before {
content: "\e90d";
}
.icon-chevron-down-light:before {
content: "\e90e";
}
.icon-chevron-up-light:before {
content: "\e90f";
}
.icon-facebook:before {
content: "\e904";
}
.icon-handshake-o:before {
content: "\e91a";
}
.icon-check-square-o:before {
content: "\e918";
}
.icon-info-circle:before {
content: "\e91b";
}
.icon-facebook-square:before {
content: "\e917";
}
.icon-circle:before {
content: "\e916";
}
.icon-shopping-cart:before {
content: "\e912";
}
.icon-question-circle:before {
content: "\e90c";
}
.icon-chevron-down:before {
content: "\e900";
}
.icon-chevron-up:before {
content: "\e901";
}
.icon-envelope:before {
content: "\e903";
}
.icon-chevron-right:before {
content: "\e905";
}
.icon-chevron-left:before {
content: "\e906";
}:root { --red: var(--wp--preset--color--red);
--blue: var(--wp--preset--color--blue);
--green: var(--wp--preset--color--green);
--cream: var(--wp--preset--color--cream);
--cream-tint: var(--wp--preset--color--cream-tint);
--light-grey: var(--wp--preset--color--light-grey);
--grey: var(--wp--preset--color--grey);
--dark-grey: var(--wp--preset--color--dark-grey);
--grey-tint: var(--wp--preset--color--grey-tint);
--green-tint: var(--wp--preset--color--green-tint);
--dark: var(--wp--preset--color--dark); --xs: var(--wp--preset--font-size--x-small); --sm: var(--wp--preset--font-size--small); --m: var(--wp--preset--font-size--medium); --l: var(--wp--preset--font-size--large); --xl: var(--wp--preset--font-size--x-large); --xx: var(--wp--preset--font-size--xx-large); --xxx: var(--wp--preset--font-size--xxx-large);  --sp1: var(--wp--preset--spacing--10); --sp2: var(--wp--preset--spacing--20); --sp3: var(--wp--preset--spacing--30); --sp4: var(--wp--preset--spacing--40); --sp5: var(--wp--preset--spacing--50); --sp6: var(--wp--preset--spacing--60); --sp7: var(--wp--preset--spacing--70); --header-height-full: 150px;
--header-height-mobile-full: 100px;
--sticky-height: 80px;
}  body {
max-width: 3000px;
margin-left: auto;
margin-right: auto;
min-width: 300px;
background: var(--cream) url(//pianoguitartuition.nz/wp-content/themes/PianoGuitarTuitionTheme/images/bg.webp) center top repeat;
} body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
width: 90%;
} .block-editor-block-list__layout figure {
width: auto;
}
h3 a {
text-decoration: none;
color: var(--dark);
}
h3 a:hover {
color: var(--blue);
} header.wp-block-group {
background-color: var(--cream-tint);
padding: 0;
}
#header-container {
height: var(--header-height-full);
display: flex;
justify-content: space-between;
align-items: center;
}
#headerleft {
flex-grow: 0;
flex-shrink: 1;
position: relative;
flex-basis: 300px;
}
#headerright {
flex-grow: 1;
}
header #logo {
display: block;
max-width: 366px;
width: 20vw;
min-width: 200px;
height: auto;
transition: all 0.25s;
}
header #logo img {
width: 100%;
height: 100%;
object-fit: contain;
overflow: hidden;
transition: all 0.2s;
}
header #headertext {
float: right;
padding-bottom: 20px;
}
header #headertext a {
text-decoration: none;
}
header #headertext .phone {
font-size: 26px;
font-weight: bold;
color: var(--red);
}
header #headertext .email {
margin: 0;
}
header #headertext .social {
font-size: 32px;
text-align: right;
}  #header-sticky.sticky {
position: fixed;
top: 0;
width: 100%;
z-index: 10; box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
background-color: rgba(255,255,255,0.9);
}
#header-sticky.mobile-menu-open { height: auto;
}
#header-sticky.sticky #header-container {
max-height: var(--sticky-height);
}
#header-sticky.mobile-menu-open #header-container {
max-height: var(--header-height-mobile-full);
}
.admin-bar #header-sticky {
top: 32px;
}
@media screen and (max-width: 782px) {
.admin-bar #header-sticky {
top: 46px;
}
}
@media screen and (max-width: 600px) {
.admin-bar #header-sticky {
top: 0;
}
}
#header-sticky.sticky #logo {
width: 130px;
}
#header-sticky.sticky #headertext {
display: none;
}  #header-sticky.sticky + * {
XXXpadding-top: var(--header-height-full);
} nav {
text-align: center;
}
#topnav {
float: right;
clear: right;
line-height: 30px;
}
nav a {
margin: 0 var(--sp2);
padding: 5px 0;
text-decoration:none;
font-weight: normal;
font-size: var(--m);
display: inline-block;
color: var(--blue);
transition: all 0.4s ease;
}
#topnav a:hover {
color: var(--red);
}
#topnav a {
position: relative;
}
#topnav li:first-child a {
padding-left: 0;
margin-left: 0;
}
#topnav li:last-child a {
padding-right: 0;
margin-right: 0;
}
nav ul, #subnav ul, footer nav ul {
list-style: none;
margin: 0;
padding: 0;
}
nav li, #subnav li, footer nav li {
display: inline;
list-style: none;
margin: 0;
padding: 0;
background: none;
} #topnav ul.sub-menu { 
display: none; 
position: absolute; 
top: 30px;
left: 0;
min-width: 150px;
z-index: 21;
background-color: white;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
padding: 3px 20px;
}
.sticky #topnav ul.sub-menu { 
background-color: rgba(250,250,250,0.9);
} #topnav ul.sub-menu ul.sub-menu { 
position: static;
padding: 0 0 0 15px;
}
#topnav ul.sub-menu ul.sub-menu a { 
padding: 0;
margin: 0;
}
#topnav ul.sub-menu ul.sub-menu a::before { 
content: " - ";
}
#topnav ul.sub-menu > li.menu-item-has-children > a {
margin-bottom: 0;
}
#topnav ul.sub-menu li { 
display: block;
text-align: left;
}
#topnav ul.sub-menu.open {
display: block;
}
#topnav ul.sub-menu a {
opacity: 0.9;
}
#menu-main-menu > li {
position: relative;
}
#menu-main-menu > li::before { position: absolute;
content: '';
width: 100%;
height: 60px;
top: -10px;
left: 0;
z-index: -1;
}
#topnav ul.sub-menu li { 
margin:0;
}
#topnav ul.sub-menu a { 
display: inline-block;
padding: 2px 0;
margin: 10px 0;
} #topnav ul:not(.sub-menu) > li.menu-item-has-children > a:after {
font-family: 'icomoon';
content: '\e90e';
font-size: 14px;
display: inline-block;
padding-left: 10px;
}
.sticky #topnav ul:not(.sub-menu) > li.menu-item-has-children > a:after {
color: initial;
}
@media screen and (max-width: 700px) {
#topnav ul:not(.sub-menu) > li.menu-item-has-children > a:after {
color: initial;
}
} ul.is-style-fancy,
ul.is-style-checkmark {
list-style-type: none;
padding-left: 20px;
}
ul.is-style-fancy li,
ul.is-style-checkmark li {
margin: 15px 0;
padding-left: 30px;
position: relative;
}
ul.is-style-fancy li::before,
ul.is-style-checkmark li::before {
font-family: 'icomoon';
content: '\ea1e';
color: var(--red);
padding-right: 10px;
position: absolute;
left: 0;
top: 3px;
}
ul.is-style-fancy li a {
text-decoration: none;
}
ul.is-style-fancy li a:hover {
text-decoration: underline;
}
ul.is-style-checkmark li {
padding-left: 2rem;
}
ul.is-style-checkmark li::before {
content: '\ea52';
top: 4px;
} blockquote.is-style-fancy {
position: relative;
}
blockquote.is-style-fancy::before {
content: "";
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: url(//pianoguitartuition.nz/wp-content/themes/PianoGuitarTuitionTheme/images/quotes.svg) left center no-repeat;
}  .fb-icon::before {
font-family: 'icomoon';
content: '\e904';
display: inline-block;
padding-right: 6px;
}
.phone-icon::before {
font-family: 'icomoon';
content: '\e942';
display: inline-block;
padding-right: 6px;
}
.mobile-icon::before {
font-family: 'icomoon';
content: '\e91c';
display: inline-block;
padding-right: 6px;
}
.mail-icon::before {
font-family: 'icomoon';
content: '\e903';
display: inline-block;
padding-right: 6px;
} .plain-links a {
text-decoration: none;
color: black;
}
.plain-links a:hover {
color: var(--red);
}
.hero h2 {
font-size: var(--xxx);
}
.hero hr {
width: 160px;
height: 6px;
}
.hero::after {
content: "";
height: 18px;
width: 100%;
position: absolute;
bottom: 0;
left: 0;
background: url(//pianoguitartuition.nz/wp-content/themes/PianoGuitarTuitionTheme/images/zigzag-over.png) left top repeat-x;
}
.panels {
justify-content: space-around;
max-width: 1920px;
margin-left: auto;
margin-right: auto;
}
.panels .wp-block-column {
max-width: 600px;
} .wp-block-group.is-style-no-padding {
padding: 0;
} @media (max-width: 781px) {
.wp-block-columns.is-style-2col-image-right {
flex-direction: column-reverse;
}
.wp-block-columns.is-style-2col-image-right .wp-block-column > figure,
.wp-block-columns.is-style-2col-image-left .wp-block-column > figure {
max-width: 400px;
margin:auto;
}
} .wp-block-cover.topheader {
padding: 0;
min-height: clamp(230px, 180px + 13vw, 430px);
}
.wp-block-cover.topheader h1 {
font-size: var(--xl);
color: white;
padding: 5px 15px;
display: inline-block;
}
.wp-block-cover.topheaderplain, .topheaderplain {
min-height: 200px;
}
.wp-block-cover.topheader::after {
content: "";
height: 18px;
width: 100%;
position: absolute;
bottom: 0;
left: 0;
background: url(//pianoguitartuition.nz/wp-content/themes/PianoGuitarTuitionTheme/images/zigzag-over.png) left top repeat-x;
}
.editor-styles-wrapper .wp-block-cover::after {
display: none;
} .wp-block-cover.cta {
padding-top: var(--sp7);
padding-bottom: var(--sp7);
}
.wp-block-cover.cta p {
font-size: var(--xl);
border-left: var(--sp3) solid var(--red);
padding-left: var(--sp3);
text-shadow: 0 0 10px black; 
} footer {
background: var(--blue);
color: #fff;
overflow: hidden;
position: relative;
}
footer::before {
content: "";
height: 18px;
width: 100%;
position: absolute;
top: 0;
left: 0;
background: url(//pianoguitartuition.nz/wp-content/themes/PianoGuitarTuitionTheme/images/zigzag-top.png) left top repeat-x;
}
#footer-container {
padding: var(--sp5) 0;
}
.footerlogo {
text-align: center;
width: fit-content;
}
.footerlogo img {
width: 30vw;
max-width: 436px;
min-width: 270px;
height: auto;   
padding: 0; 
z-index: 10;
}
footer h4 {
color: #fff;
margin-bottom: 5px;
}
footer a {
color: #fff;
text-decoration:none;
}
.footercols {
display: flex;
align-items: center;
}
.footercol {
flex-basis: 50%;
}
footer nav ul {
text-align: center;
}
footer nav li {
display: block;
padding: 0;
text-align: left;
line-height: 1.5em;
}
footer nav li a {
font-size: 20px;
padding: 0;
margin: 0;
font-weight: normal;
}
footer nav li.current_page_item > a {
color: white;
}
footer .phone {
font-size: 24px;
font-weight: bold;
margin: 1em 0;
}
footer .email, footer .contact {
font-size: 20px;
font-weight: bold;
margin: 1em 0;
width: fit-content;
float: right;
}
#credits {
text-align: center;
font-size: 14px;
color: #999;
background-color: #000;
padding: 10px 0;
width: 100%;
}
#credits a {
text-decoration: none;
color: #999;
}
#credits a:hover {
text-decoration: underline;
}
a.scrollup {
width: 67px;
height: 67px;
position: fixed;
bottom: 25px;
right: 25px;
display: none;
text-indent: -9999px;
background: url(//pianoguitartuition.nz/wp-content/themes/PianoGuitarTuitionTheme/images/top.png) no-repeat;
opacity: 0.3;
}
@media screen and (max-width: 750px) {
.footercols {
flex-direction: column;
text-align: center;
}
.footercols ul {
width: fit-content;
margin: auto;
}
}  @supports (-webkit-touch-callout: inherit) {
.wp-block-cover .has-parallax {
background-attachment: scroll !important;
}
}
.wp-block-cover {
overflow: hidden;
}
main .wp-block-cover .wp-block-cover__image-background {
margin: auto;
}
.wp-block-spacer {
margin: 0 !important;
}  div.grecaptcha-badge {
visibility: hidden; 
} 
p.recaptchanote {
font-size: 14px;
text-align: center; 
}  #mobile-menu-btn { display: none; }
img {
max-width: 100%; 
height: auto; 
}  @media screen and (max-width: 1200px) {
}  @media screen and (max-width: 1000px) {	
header #header-container {
flex-direction: column;
align-items: stretch;
height: var(--header-height-mobile-full);
}
#headerleft {
height: var(--header-height-mobile-full);
width: 90%;
margin-left: auto;
margin-right: auto;
flex-basis: auto;
flex-shrink: 0;
display: flex;
align-items: center;
}   
#topnav {
background-color: #fff;
}
#header-sticky.sticky #headerleft {
height: var(--sticky-height);
}
#header-sticky.sticky + * {
padding-top: var(--header-height-mobile-full);
}
#header-container {
width: 100%;
}
#mobile-menu-btn { 
display: inline-block;
width: 32px;
height: 32px;
padding: 4px;
cursor: pointer;
position: absolute;
top: -70px;
right: 30px;
}
#mobile-menu-btn::after { 
font-family: 'icomoon';
content: '\e910';
font-size: 36px;
color: var(--blue);
display: inline-block;
}
header.mobile-menu-open #mobile-menu-btn::after {
content: '\e911';
}   
#topnav { 
float: none; 
width: auto; 
clear: both;
position: relative;
z-index: 9999;
}
#topnav a::before { 
display: none;
}
#headertext {
display: none;
}      
#header-sticky.sticky #topnav {
padding-top: 0;
}   
#topnav .menu { 
padding-bottom: 15px;
}
#topnav ul { display:none; }
#topnav ul#menu-main-menu.open {  
width: 100%;  
display: block;  
height: auto;  
padding-top: 0;
margin-top:0;
box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
}  
#topnav li {  
width: auto;  
float: none;  
position: relative;  
}  
#topnav li a {  
display: block;
margin: 0;
padding: 6px 0px;
text-align: left;  
width: 100%;  
text-indent: 25px;  
line-height: 30px;
border-left: 15px solid rgba(255,255,255,0);
}
#topnav li.current_page_item > a {
border-left: 15px solid var(--red);
}
#topnav ul.sub-menu { 
display: block; 
position: static; 
background-color: transparent !important;
padding: 3px 10px;
box-shadow: none;
}
#topnav ul.sub-menu a {
margin: 0 0 0 10px;
padding: 0;
}
#topnav ul li.menu-item-has-children > a:after {
content: '';
padding: 0;
}
}  @media screen and (max-width: 700px) {	
}