@charset "UTF-8";

 .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
@-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 rubberBand {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
30% {
-webkit-transform: scaleX(1.25) scaleY(0.75);
transform: scaleX(1.25) scaleY(0.75);
}
40% {
-webkit-transform: scaleX(0.75) scaleY(1.25);
transform: scaleX(0.75) scaleY(1.25);
}
60% {
-webkit-transform: scaleX(1.15) scaleY(0.85);
transform: scaleX(1.15) scaleY(0.85);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes rubberBand {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
30% {
-webkit-transform: scaleX(1.25) scaleY(0.75);
-ms-transform: scaleX(1.25) scaleY(0.75);
transform: scaleX(1.25) scaleY(0.75);
}
40% {
-webkit-transform: scaleX(0.75) scaleY(1.25);
-ms-transform: scaleX(0.75) scaleY(1.25);
transform: scaleX(0.75) scaleY(1.25);
}
60% {
-webkit-transform: scaleX(1.15) scaleY(0.85);
-ms-transform: scaleX(1.15) scaleY(0.85);
transform: scaleX(1.15) scaleY(0.85);
}
100% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-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% {
opacity: 1;
-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% {
opacity: 1;
-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 slideInUp {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes slideInUp {
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);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
}
@keyframes slideOutDown {
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);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-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);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
100% {
-webkit-transform: 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);
-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;
opacity: 1;
}
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;
}
@-webkit-keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale(.3);
transform: scale(.3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale(.3);
-ms-transform: scale(.3);
transform: scale(.3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale(.1) translateY(-2000px);
transform: scale(.1) translateY(-2000px);
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
60% {
opacity: 1;
-webkit-transform: scale(.475) translateY(60px);
transform: scale(.475) translateY(60px);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
}
@keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale(.1) translateY(-2000px);
-ms-transform: scale(.1) translateY(-2000px);
transform: scale(.1) translateY(-2000px);
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
60% {
opacity: 1;
-webkit-transform: scale(.475) translateY(60px);
-ms-transform: scale(.475) translateY(60px);
transform: scale(.475) translateY(60px);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale(.1) translateX(-2000px);
transform: scale(.1) translateX(-2000px);
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
60% {
opacity: 1;
-webkit-transform: scale(.475) translateX(48px);
transform: scale(.475) translateX(48px);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
}
@keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale(.1) translateX(-2000px);
-ms-transform: scale(.1) translateX(-2000px);
transform: scale(.1) translateX(-2000px);
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
60% {
opacity: 1;
-webkit-transform: scale(.475) translateX(48px);
-ms-transform: scale(.475) translateX(48px);
transform: scale(.475) translateX(48px);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale(.1) translateX(2000px);
transform: scale(.1) translateX(2000px);
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
60% {
opacity: 1;
-webkit-transform: scale(.475) translateX(-48px);
transform: scale(.475) translateX(-48px);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
}
@keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale(.1) translateX(2000px);
-ms-transform: scale(.1) translateX(2000px);
transform: scale(.1) translateX(2000px);
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
60% {
opacity: 1;
-webkit-transform: scale(.475) translateX(-48px);
-ms-transform: scale(.475) translateX(-48px);
transform: scale(.475) translateX(-48px);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale(.1) translateY(2000px);
transform: scale(.1) translateY(2000px);
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
60% {
opacity: 1;
-webkit-transform: scale(.475) translateY(-60px);
transform: scale(.475) translateY(-60px);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
}
@keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale(.1) translateY(2000px);
-ms-transform: scale(.1) translateY(2000px);
transform: scale(.1) translateY(2000px);
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
60% {
opacity: 1;
-webkit-transform: scale(.475) translateY(-60px);
-ms-transform: scale(.475) translateY(-60px);
transform: scale(.475) translateY(-60px);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
0% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
opacity: 0;
-webkit-transform: scale(.3);
transform: scale(.3);
}
100% {
opacity: 0;
}
}
@keyframes zoomOut {
0% {
opacity: 1;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
50% {
opacity: 0;
-webkit-transform: scale(.3);
-ms-transform: scale(.3);
transform: scale(.3);
}
100% {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale(.475) translateY(-60px);
transform: scale(.475) translateY(-60px);
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translateY(2000px);
transform: scale(.1) translateY(2000px);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale(.475) translateY(-60px);
-ms-transform: scale(.475) translateY(-60px);
transform: scale(.475) translateY(-60px);
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translateY(2000px);
-ms-transform: scale(.1) translateY(2000px);
transform: scale(.1) translateY(2000px);
-webkit-transform-origin: center bottom;
-ms-transform-origin: center bottom;
transform-origin: center bottom;
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale(.475) translateX(42px);
transform: scale(.475) translateX(42px);
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translateX(-2000px);
transform: scale(.1) translateX(-2000px);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale(.475) translateX(42px);
-ms-transform: scale(.475) translateX(42px);
transform: scale(.475) translateX(42px);
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translateX(-2000px);
-ms-transform: scale(.1) translateX(-2000px);
transform: scale(.1) translateX(-2000px);
-webkit-transform-origin: left center;
-ms-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale(.475) translateX(-42px);
transform: scale(.475) translateX(-42px);
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translateX(2000px);
transform: scale(.1) translateX(2000px);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale(.475) translateX(-42px);
-ms-transform: scale(.475) translateX(-42px);
transform: scale(.475) translateX(-42px);
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translateX(2000px);
-ms-transform: scale(.1) translateX(2000px);
transform: scale(.1) translateX(2000px);
-webkit-transform-origin: right center;
-ms-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale(.475) translateY(60px);
transform: scale(.475) translateY(60px);
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translateY(-2000px);
transform: scale(.1) translateY(-2000px);
-webkit-transform-origin: center top;
transform-origin: center top;
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale(.475) translateY(60px);
-ms-transform: scale(.475) translateY(60px);
transform: scale(.475) translateY(60px);
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translateY(-2000px);
-ms-transform: scale(.1) translateY(-2000px);
transform: scale(.1) translateY(-2000px);
-webkit-transform-origin: center top;
-ms-transform-origin: center top;
transform-origin: center top;
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}.owl-carousel {
display: none;
width: 100%;
-webkit-tap-highlight-color: transparent; position: relative;
z-index: 1; }
.owl-carousel .owl-stage {
position: relative;
-ms-touch-action: pan-Y;
-moz-backface-visibility: hidden; }
.owl-carousel .owl-stage:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0; }
.owl-carousel .owl-stage-outer {
position: relative;
overflow: hidden; -webkit-transform: translate3d(0px, 0px, 0px); }
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0); }
.owl-carousel .owl-item {
position: relative;
min-height: 1px;
float: left;
-webkit-backface-visibility: hidden;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none; }
.owl-carousel .owl-item img {
display: block;
width: 100%; }
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
display: none; }
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
cursor: pointer;
cursor: hand;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.owl-carousel.owl-loaded {
display: block; }
.owl-carousel.owl-loading {
opacity: 0;
display: block; }
.owl-carousel.owl-hidden {
opacity: 0; }
.owl-carousel.owl-refresh .owl-item {
visibility: hidden; }
.owl-carousel.owl-drag .owl-item {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.owl-carousel.owl-grab {
cursor: move;
cursor: grab; }
.owl-carousel.owl-rtl {
direction: rtl; }
.owl-carousel.owl-rtl .owl-item {
float: right; } .no-js .owl-carousel {
display: block; } .owl-carousel .animated {
animation-duration: 1000ms;
animation-fill-mode: both; }
.owl-carousel .owl-animated-in {
z-index: 0; }
.owl-carousel .owl-animated-out {
z-index: 1; }
.owl-carousel .fadeOut {
animation-name: fadeOut; }
@keyframes fadeOut {
0% {
opacity: 1; }
100% {
opacity: 0; } } .owl-height {
transition: height 500ms ease-in-out; } .owl-carousel .owl-item .owl-lazy {
opacity: 0;
transition: opacity 400ms ease; }
.owl-carousel .owl-item img.owl-lazy {
transform-style: preserve-3d; } .owl-carousel .owl-video-wrapper {
position: relative;
height: 100%;
background: #000; }
.owl-carousel .owl-video-play-icon {
position: absolute;
height: 80px;
width: 80px;
left: 50%;
top: 50%;
margin-left: -40px;
margin-top: -40px;
background: url(//multixapa.com/wp-content/themes/preschool-and-kindergarten/css/owl.video.play.png) no-repeat;
cursor: pointer;
z-index: 1;
-webkit-backface-visibility: hidden;
transition: transform 100ms ease; }
.owl-carousel .owl-video-play-icon:hover {
-ms-transform: scale(1.3, 1.3);
transform: scale(1.3, 1.3); }
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
display: none; }
.owl-carousel .owl-video-tn {
opacity: 0;
height: 100%;
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
transition: opacity 400ms ease; }
.owl-carousel .owl-video-frame {
position: relative;
z-index: 1;
height: 100%;
width: 100%; }@font-face {
font-family: 'reckoner_boldcondensed_bold';
src: url(//multixapa.com/wp-content/themes/preschool-and-kindergarten/fonts/reckoner_bold-webfont.woff2) format('woff2'),
url(//multixapa.com/wp-content/themes/preschool-and-kindergarten/fonts/reckoner_bold-webfont.woff) format('woff');
font-weight: normal;
font-style: normal;
}
html {
font-family: 'PT Serif', serif;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust:     100%;
}
body {
margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
display: block;
}
audio,
canvas,
progress,
video {
display: inline-block;
vertical-align: baseline;
}
audio:not([controls]) {
display: none;
height: 0;
}
[hidden],
template {
display: none;
}
a {
text-decoration:none;
color:#bbbcc1;
outline:none;
}
a:active,
a:hover {
text-decoration:underline;
color: #bbbcc1;
}
a:focus{outline: none;}
abbr[title] {
border-bottom: 1px dotted;
}
b,
strong {
font-weight: bold;
}
dfn {
font-style: italic;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
mark {
background: #ff0;
color: #000;
}
small {
font-size: 80%;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
img {
border: 0;
}
svg:not(:root) {
overflow: hidden;
}
figure {
margin: 0 0 30px;
}
hr {
box-sizing: content-box;
height: 0;
}
pre {
overflow: auto;
}
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
color: inherit;
font: inherit;
margin: 0;
}
button {
overflow: visible;
}
button,
select {
text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
button[disabled],
html input[disabled] {
cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
input {
line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
input[type="search"] {
-webkit-appearance: textfield;
box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
legend {
border: 0;
padding: 0;
}
textarea {
overflow: auto;
}
optgroup {
font-weight: bold;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
td,
th {
padding: 0;
} body,
button,
input,
select,
textarea {
color: #616161;
font-family: 'Lato', sans-serif;
font-size: 16px;
font-size: 1rem;
line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
clear: both;
margin-top: 0;
}
p {
margin-bottom: 1.5em;
margin-top: 0
}
dfn,
cite,
em,
i {
font-style: italic;
}
blockquote {
margin: 0 1.5em;
}
address {
margin: 0 0 1.5em;
}
pre {
background: #f9f9f9;
font-family: "Courier 10 Pitch", Courier, monospace;
font-size: 16px;
font-size: 0.9375rem;
line-height: 1.6;
margin-bottom: 1.5em;
max-width: 100%;
overflow: auto;
padding: 1.6em;
}
code,
kbd,
tt,
var {
font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
font-size: 15px;
font-size: 0.9375rem;
}
abbr,
acronym {
border-bottom: 1px dotted #666;
cursor: help;
}
mark,
ins {
background: #fff9c0;
text-decoration: none;
}
big {
font-size: 125%;
} html {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
*,
*:before,
*:after { -webkit-box-sizing: inherit;
-moz-box-sizing: inherit;
box-sizing: inherit;
}
body {
color:#616161;
font:18px/24px 'Lato', sans-serif;
background:#fff;
overflow-y: scroll;
-webkit-text-size-adjust:100%;
-ms-text-size-adjust:none;
min-width: 320px;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: "";
}
blockquote,
q {
quotes: "" "";
}
hr {
background-color: #ccc;
border: 0;
height: 1px;
margin-bottom: 1.5em;
}
ul,
ol {
margin: 0 0 1.5em 0;
}
ul {
list-style: square;
padding: 0 0 0 22px;
}
ol {
list-style: decimal;
padding: 0 0 0 22px;
}
li > ul,
li > ol {
margin-bottom: 0;
margin-left: 0;
}
dt {
font-weight: bold;
}
dd {
margin: 0 1.5em 1.5em;
}
img {
height: auto; max-width: 100%; }
table {
margin: 0 0 1.5em;
width: 100%;
} button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
border: 2px solid #5fc210;
float: left;
font-size: 16px;
font-weight: 700;
letter-spacing: 1px;
line-height: 28px;
padding: 8px 28px;
text-transform: uppercase;
background: none;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
background: #5fc210;
color: #fff;
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
background: #5fc210;
color: #fff;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
color: #666;
border: 1px solid #dbdbdb;
border-radius: 0;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
padding: 10px 15px;
}
textarea {
padding: 10px 15px;
width: 100%;
height: 155px;
resize: none;
}  a {
color: #5fc210;
}
a:hover,
a:focus,
a:active {
color: #5fc210;
text-decoration: underline;
}
a:focus {
outline: none;
}
a:hover,
a:active {
outline: none;
} .main-navigation {
float: right;
margin: 21px 9px 0 0;
}
.main-navigation ul {
display: none;
list-style: none;
margin: 0;
padding-left: 0;
font-size: 16px;
font-weight: 700;
}
.main-navigation li {
float: left;
position: relative;
margin-left: 48px;
}
.main-navigation ul li:first-child{margin-left: 0;}
.main-navigation a {
display: block;
text-decoration: none;
padding: 0 0 16px;
}
.main-navigation ul ul {
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
float: left;
position: absolute;
top: 100%;
left: -22px;
z-index: 99999;
width: 180px;
background: #5fc210;
display: none;
}
.main-navigation ul ul:before{
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 10px solid #5fc210;
content: '';
position: absolute;
top: -10px;
left: 30px;
}
.main-navigation ul ul ul {
left: -100%;
top: 0;
}
.main-navigation ul ul ul:before{display: none;}
.main-navigation ul ul a {
color: #fff;
border-bottom: 1px solid #54b3d8;
padding: 10px 23px;
}
.main-navigation ul ul li a:hover,
.main-navigation ul ul li a:focus{
background: #54b3d8;
color: #fff;
}
.main-navigation ul ul li {
float: none;
display: block;
margin: 0;
}
.main-navigation li:hover > a,
.main-navigation li:focus > a,
.main-navigation li.focus > a {
color: #4fbba9;
}
.main-navigation ul ul :hover > a,
.main-navigation ul ul :focus > a,
.main-navigation ul ul .focus > a,
.main-navigation ul ul .current-menu-item > a {
background: #54b3d8;
color: #fff;
}
.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
display: block;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
display: block;
}
.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a,
.main-navigation ul li a:hover,
.main-navigation ul li a:focus {
color: #4fbba9;
} .menu-toggle,
.main-navigation.toggled ul {
display: block;
}
@media screen and (min-width: 37.5em) {
.menu-toggle {
display: none;
}
.main-navigation ul {
display: block;
}
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
margin: 0 0 1.5em;
overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
float: left;
width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
float: right;
text-align: right;
width: 50%;
}  .screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
}
.screen-reader-text:focus {
background-color: #f1f1f1;
border-radius: 3px;
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
clip: auto !important;
color: #21759b;
display: block;
font-size: 14px;
font-size: 0.875rem;
font-weight: bold;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000; } #content[tabindex="-1"]:focus {
outline: 0;
} .alignleft {
display: inline;
float: left;
margin-right: 1.5em;
}
.alignright {
display: inline;
float: right;
margin-left: 1.5em;
}
.aligncenter {
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
} .clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
}
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
clear: both;
} .widget {
margin: 0 0 1.5em;
} .widget select {
max-width: 100%;
}  .sticky {
display: block;
}
.hentry {
margin: 0 0 1.5em;
}
.byline,
.updated:not(.published) {
display: none;
}
.single .byline,
.group-blog .byline {
display: inline;
}
.page-content,
.entry-content,
.entry-summary {
margin: 1.5em 0 0;
}
.page-links {
clear: both;
margin: 0 0 1.5em;
} .blog .format-aside .entry-title,
.archive .format-aside .entry-title {
display: none;
} .comment-content a {
word-wrap: break-word;
}
.bypostauthor {
display: block;
}  .infinite-scroll .posts-navigation, .infinite-scroll.neverending .site-footer { display: none;
} .infinity-end.neverending .site-footer {
display: block;
} .page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
border: none;
margin-bottom: 0;
margin-top: 0;
padding: 0;
} embed,
iframe,
object {
max-width: 100%;
} .wp-caption {
margin-bottom: 1.5em;
max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
display: block;
margin-left: auto;
margin-right: auto;
}
.wp-caption .wp-caption-text {
margin: 0.8075em 0;
}
.wp-caption-text {
text-align: center;
background: #5fc210;
color: #fff;
display: block;
padding: 5px 0;
} .gallery {
margin-bottom: 1.5em;
margin-left: -15px;
margin-right: -15px;
}
.gallery-item {
float: left;
text-align: center;
vertical-align: top;
width: 100%;
padding-left: 15px;
padding-right: 15px;
margin-bottom: 30px;
}
.gallery-item img{
width: 100%;
vertical-align: top;
}
.gallery-columns-2 .gallery-item {
max-width: 50%;
}
.gallery-columns-3 .gallery-item {
max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
max-width: 25%;
}
.gallery-columns-5 .gallery-item {
max-width: 20%;
}
.gallery-columns-6 .gallery-item {
max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
max-width: 11.11%;
}
.gallery-caption {
display: block;
background: #5fc210;
color: #fff;
padding: 5px 0;
text-align: center;
}
.site{background: #fff;}
.custom-background .site{margin: 20px;} .container{
max-width: 1170px;
margin: 0 auto;
padding-left: 15px;
padding-right: 15px;
}
.container:after{
content: '';
display: block;
clear: both;
}
.row{
margin-left: -15px;
margin-right: -15px;
}
.row:after{
content: '';
display: block;
clear: both;
} .header-t{
background: #f9f9f9 url(//multixapa.com/wp-content/themes/preschool-and-kindergarten/images/line.png) repeat-x 0 100%;
padding: 8px 0 17px;
}
.header-t .contact-info{
float: left;
margin: 0;
padding: 0;
list-style: none;
overflow: hidden;
font-size: 16px;
}
.header-t .contact-info li{
float: left;
margin-right: 38px;
}
.header-t .contact-info li a{color: #919191;}
.header-t .contact-info li a:hover,
.header-t .contact-info li a:focus{
color: #5fc210;
text-decoration: none;
}
.header-t .contact-info li a .fa{
font-size: 15px;
margin-right: 5px;
}
.header-t .social-networks{
float: right;
margin: 0;
padding: 0;
list-style: none;
overflow: hidden;
font-size: 15px;
}
.header-t .social-networks li{
float: left;
margin-left: 19px;
}
.header-t .social-networks li:first-child{margin-left: 19px;}
.header-t .social-networks li a{color: #919191;}
.header-t .social-networks li a:hover,
.header-t .social-networks li a:focus{
text-decoration: none;
color: #5fc210;
}
.header-b{padding: 23px 0 30px;}
.site-branding{
float: left;
}
.site-branding .custom-logo-link{
float: left;
margin-right: 10px;
}
.site-branding .custom-logo-link a{
display: block;
height: 100%;
}
.site-branding .custom-logo-link img{vertical-align: top;}
.site-branding .text-logo{float: left;}
.site-branding .site-title{
font-size: 32px;
line-height: 36px;
margin: 0 0 5px;
font-weight: 400;
font-family: 'Pacifico', cursive;
}
.site-branding .site-title a:hover,
.site-branding .site-title a:focus{text-decoration: none;}
.site-branding .site-description{
font-size: 14px;
line-height: 17px;
color: #919191;
margin: 0;
} .banner{
position: relative;
background: #000;
} .banner .flexslider .slides > li{position: relative;}
.banner img{
width: 100%;
vertical-align: top;
opacity: 0.5;
}
.banner .banner-text{
position: absolute;
top: 24.5%;
left: 0;
width: 100%;
color: #fff;
font-size: 24px;
line-height: 32px;
z-index: 2;
}
.banner .banner-text .text-holder{
max-width: 454px;
float: left;
}
.banner .banner-text .title{
font-size: 60px;
line-height: 64px;
display: block;
margin: 0 0 13px;
}
.banner .banner-text .btn-enroll{
background: #5fc210;
font-size: 16px;
line-height: 20px;
color: #fff;
font-weight: 700;
text-transform: uppercase;
float: left;
padding: 13px 42px 14px 42px;
}
.banner .banner-text .btn-enroll:hover,
.banner .banner-text .btn-enroll:focus{
text-decoration: none;
background: #3995ba;
}
.banner .banner-text p{margin: 0 0 26px;}
.banner .owl-nav .owl-prev{
background: url(//multixapa.com/wp-content/themes/preschool-and-kindergarten/images/btn-prev.png) no-repeat;
width: 55px;
height: 55px;
text-indent: -9999px;
position: absolute;
top: 50%;
left: 10px;
margin-top: -55px;
opacity: 0.5;
}
.banner .owl-nav .owl-prev:hover{
background: url(//multixapa.com/wp-content/themes/preschool-and-kindergarten/images/btn-prev.png) no-repeat;
opacity: 1;
}
.banner .owl-nav .owl-next{
background: url(//multixapa.com/wp-content/themes/preschool-and-kindergarten/images/btn-next.png) no-repeat;
width: 55px;
height: 55px;
text-indent: -9999px;
font-size: 0;
line-height: 0;
position: absolute;
top: 50%;
right: 10px;
margin-top: -55px;
opacity: 0.5; 
}
.banner .owl-nav .owl-next:hover{
background: url(//multixapa.com/wp-content/themes/preschool-and-kindergarten/images/btn-next.png) no-repeat;
opacity: 1;
}
.banner .owl-carousel .owl-dots{
position: absolute;
width: 100%;
bottom: 40px;
text-align: center;
display: inline-block;
}
.banner .owl-carousel .owl-dots .owl-dot{
display: inline-block;
}
.banner .owl-carousel .owl-dots span{
background: none;
width: 13px;
height: 13px;
border: 2px solid #fff;
margin: 0 5px;
display: inline-block;
border-radius: 50%;
}
.banner .owl-carousel .owl-dots .active span,
.banner .owl-carousel .owl-dots .owl-dot:hover span{
background: #fff;
} .welcome{
padding: 75px 0 83px;
}
.welcome .img-holder{
float: left;
width: 50%;
padding-left: 15px;
padding-right: 15px;
margin-top: 3px;
}
.welcome .img-holder img{vertical-align: top;}
.welcome .text-holder{
float: left;
width: 50%;
padding-left: 15px;
padding-right: 15px;
}
.welcome .text-holder .title{
font-size: 36px;
line-height: 40px;
font-weight: 700;
color: #f380b2;
margin: 0 0 10px;
}
.welcome .text-holder .btn-more{
font-size: 16px;
line-height: 20px;
font-weight: 700;
text-transform: uppercase;
border: 2px solid #5fc210;
float: left;
padding: 11px 58px 12px 58px;
}
.welcome .text-holder .btn-more:hover,
.welcome .text-holder .btn-more:focus{
text-decoration: none;
background: #5fc210;
color: #fff;
} .section-2{
background: #f9f9f9;
padding: 63px 0 26px;
text-align: center;
}
.section-2 .header{
max-width: 780px;
margin: 0 auto 48px;
font-size: 24px;
line-height: 32px;
}
.section-2 .header .title{
font-size: 42px;
line-height: 48px;
color: #f380b2;
margin: 0 0 21px;
font-weight: 400;
}
.section-2 .col{
float: left;
width: 33.3333%;
padding-left: 15px;
padding-right: 15px;
margin-bottom: 30px;
}
.section-2 .col .img-holder{margin: 0 0 33px;}
.section-2 .col .img-holder img{
vertical-align: top;
-webkit-border-radius: 100px;
border-radius: 50%;
}
.section-2 .col .text-holder{padding: 0 40px;}
.section-2 .col .text-holder .title{
font-size: 24px;
line-height: 28px;
font-weight: 400;
color: #313131;
margin: 0 0 18px;
}
.section-2 .col .text-holder .title a{color: #313131;}
.section-2 .col .text-holder .title a:hover,
.section-2 .col .text-holder .title a:focus{
text-decoration: none;
color: #5fc210;
} .section-3{padding: 66px 0 0;}
.section-3 .header{
font-size: 24px;
line-height: 32px;
max-width: 780px;
}
.section-3 .header .title{
color: #f380b2;
font-size: 42px;
font-weight: 400;
line-height: 48px;
margin: 0 0 10px;
}
.section-3 .header p{margin: 0 0 23px;}
.section-3 .text-holder{
float: left;
width: 66.6667%;
padding-left: 15px;
padding-right: 15px;
}
.section-3 ul{
margin: 0 -15px 50px;
padding: 0;
list-style: none;
overflow: hidden;
}
.section-3 ul li{
float: left;
padding-left: 60px;
padding-right: 15px;
padding-top: 8px;
width: 50%;
position: relative;
}
.section-3 ul li:before{
content: '\f00c';
font-family: 'FontAwesome';
position: absolute;
top: 0;
left: 0;
font-size: 18px;
line-height: 45px;
color: #fff;
width: 45px;
height: 45px;
background: #4fbba9;
text-align: center;
-webkit-border-radius: 100px;
border-radius: 50%;
}
.section-3 ul li .title{
font-size: 20px;
line-height: 24px;
font-weight: 700;
color: #313131;
margin: 0 0 7px;
}
.section-3 .text-holder .btn-detail{
border: 2px solid #5fc210;
float: left;
font-size: 16px;
font-weight: 700;
line-height: 20px;
padding: 11px 58px 12px;
text-transform: uppercase;
}
.section-3 .text-holder .btn-detail:hover,
.section-3 .text-holder .btn-detail:focus{
text-decoration: none;
background: #5fc210;
color: #fff;
}
.section-3 .img-holder{
float: left;
width: 33.3333%;
padding-left: 15px;
padding-right: 15px;
margin-top: -107px;
}
.section-3 .img-holder img{vertical-align: top;} .promotional-block{
background: url(//multixapa.com/wp-content/themes/preschool-and-kindergarten/images/img37.jpg) no-repeat;
background-size: cover;
color: #fff;
font-size: 24px;
line-height: 32px;
text-align: center;
padding: 130px 0 119px;
position: relative;
}
.promotional-block:before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.3);
}
.promotional-block .container{
position: relative;
z-index: 1;
}
.promotional-block .title{
font-size: 60px;
line-height: 66px;
font-weight: 700;
margin: 0 0 20px;
}
.promotional-block .btn-detail{
border: 2px solid #fff;
font-size: 16px;
font-weight: 700;
line-height: 20px;
padding: 11px 58px 12px;
text-transform: uppercase;
color: #fff;
display: inline-block;
}
.promotional-block .btn-detail:hover,
.promotional-block .btn-detail:focus{
text-decoration: none;
background: #fff;
color: #313131;
} .featured{
background: #f9f9f9;
padding: 70px 0;
text-align: center;
}
.featured .header{
font-size: 24px;
line-height: 32px;
margin: 0 auto 90px;
max-width: 780px;
}
.featured .header .title{
color: #f380b2;
font-size: 42px;
font-weight: 400;
line-height: 48px;
margin: 0 0 21px;
}
.featured .col{
float: left;
width: 33.3333%;
padding-left: 15px;
padding-right: 15px;
margin-bottom: 30px;
}
.featured .col .holder{
background: #fff;
padding: 0 40px 50px;
}
.featured .col .img-holder{margin: 0 0 33px;}
.featured .col .img-holder img{
vertical-align: top;
-webkit-border-radius: 100px;
border-radius: 50%;
border: 10px solid #fff;
margin: -45px 0 0;
}
.featured .col .text-holder{ }
.featured .col .text-holder .title{
color: #313131;
font-size: 24px;
font-weight: 400;
line-height: 28px;
margin: 0 0 18px;
}
.featured .col .text-holder .btn-detail{
border: 2px solid #5fc210;
display: block;
font-size: 16px;
font-weight: 700;
line-height: 20px;
padding: 11px 10px 12px;
text-transform: uppercase;
}
.featured .col .text-holder .btn-detail:hover,
.featured .col .text-holder .btn-detail:focus{
text-decoration: none;
background: #5fc210;
color: #fff;
} .testimonial{padding: 70px 0;}
.testimonial .table{
display: table;
width: 100%;
background: #3ca4d0;
}
.testimonial .table .table-row{
display: table-row;
}
.testimonial .text-holder,
.testimonial .img-holder{
display: table-cell;
vertical-align: middle;
width: 50%;
}
.testimonial .img-holder img{
vertical-align: top;
}
.testimonial .text-holder{
color: #fff;
padding: 50px;
}
.testimonial .text-holder .header{
font-size: 24px;
line-height: 32px;
}
.testimonial .text-holder .header .title{
font-size: 42px;
font-weight: 400;
line-height: 48px;
margin: 0 0 10px;
}
.testimonial .text-holder .header p{margin: 0 0 26px;}
.testimonial .text-holder .name{
display: block;
font-weight: 700;
}
.testimonial .lSAction > .lSNext{
background: url(//multixapa.com/wp-content/themes/preschool-and-kindergarten/images/btn-next2.png) no-repeat;
width: 45px;
height: 45px;
right: 0;
}
.testimonial .lSAction > .lSPrev{
background: url(//multixapa.com/wp-content/themes/preschool-and-kindergarten/images/btn-prev2.png) no-repeat;
width: 45px;
height: 45px;
left: 0;
} .our-staff{
background: #f9f9f9;
padding: 70px 0 40px;
}
.our-staff .header {
font-size: 24px;
line-height: 32px;
margin: 0 auto 48px;
max-width: 780px;
text-align: center;
}
.our-staff .header .title {
color: #f380b2;
font-size: 42px;
font-weight: 400;
line-height: 48px;
margin: 0 0 21px;
}
.our-staff .col{
float: left;
width: 33.3333%;
padding-left: 15px;
padding-right: 15px;
margin-bottom: 30px;
}
.our-staff .col .img-holder img{
width: 100%;
vertical-align: top;
}
.our-staff .col .text-holder{
background: #fff;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
padding: 23px 30px;
}
.our-staff .col .text-holder .name{
display: block;
font-size: 20px;
line-height: 24px;
font-weight: 700;
color: #313131;
margin: 0 0 5px;
}
.our-staff .col .text-holder .name a{
color: #313131;
}
.our-staff .col .text-holder .name a:hover,
.our-staff .col .text-holder .name a:focus{
text-decoration: none;
color: #5fc210;
}
.our-staff .col .text-holder .designation{
font-size: 18px;
line-height: 22px;
color: #919191;
display: block;
} .news{padding: 70px 0 40px;}
.news .header {
font-size: 24px;
line-height: 32px;
margin: 0 auto 48px;
max-width: 780px;
text-align: center;
}
.news .header .title {
color: #f380b2;
font-size: 42px;
font-weight: 400;
line-height: 48px;
margin: 0 0 21px;
}
.news .post{
float: left;
width: 33.3333%;
padding-left: 15px;
padding-right: 15px;
margin-bottom: 30px;
}
.news .post .posted-on{
float: left;
width: 65px;
margin-right: 30px;
border: 1px solid #4fbba9;
text-align: center;
color: #4fbba9;
padding: 10px 0;
}
.news .post .posted-on strong{
display: block;
font-size: 32px;
line-height: 33px;
font-weight: 400;
}
.news .post .posted-on span{
display: block;
font-size: 12px;
text-transform: uppercase;
line-height: 15px;
}
.news .post .text-holder{overflow: hidden;}
.news .post .entry-title{
font-size: 20px;
line-height: 24px;
font-weight: 700;
color: #616161;
margin: 0 0 15px;
}
.news .post .entry-title a{color: #616161;}
.news .post .entry-title a:hover,
.news .post .entry-title a:focus{
text-decoration: none;
color: #5fc210;
}
.news .post .entry-content{margin: 0;}
.news .post .entry-footer{overflow: hidden;}
.news .post .readmore{
font-size: 15px;
font-weight: 700;
text-transform: uppercase;
} .top-bar{
background: #f9f9f9;
border-top: 1px solid #e9e9e9;
border-bottom: 1px solid #e9e9e9;
padding: 24px 0 31px;
}
.page-header{
float: left;
}
.page-header .page-title{
font-size: 36px;
line-height: 43px;
font-weight: 700;
color: #f380b2;
margin: 0;
}
#crumbs{
float: right;
font-size: 14px;
line-height: 17px;
color: #919191;
padding: 15px 2px 0 0;
}
#content{padding: 43px 0;}
#primary{
float: left;
width: 75%;
padding-left: 15px;
padding-right: 15px;
}
#primary .site-main{padding-right: 15px;}
#primary .post,
.search #primary .page{
border-bottom: 1px solid #e9e9e9;
padding-bottom: 37px;
margin-bottom: 40px;
}
#primary .post .post-thumbnail,
.search #primary .page .post-thumbnail{
display: block;
height: 100%;
margin: 0 0 23px;
}
#primary .post .post-thumbnail img,
.search #primary .page .post-thumbnail img{vertical-align: top;}
#primary .post .entry-header,
.search #primary .page .entry-header{margin: 0 0 21px;}
#primary .post .entry-header .entry-title,
.search #primary .page .entry-header .entry-title{
font-size: 28px;
line-height: 38px;
font-weight: 400;
color: #313131;
margin: 0 0 14px;
}
#primary .post .entry-header .entry-title a,
.search #primary .page .entry-header .entry-title a{color: #313131;}
#primary .post .entry-header .entry-title a:hover,
#primary .post .entry-header .entry-title a:focus,
.search #primary .page .entry-header .entry-title a:hover,
.search #primary .page .entry-header .entry-title a:focus{
text-decoration: none;
color: #5fc210;
}
#primary .post .entry-meta{
font-size: 16px;
color: #6c6c6c;
}
#primary .post .entry-meta span{
display: inline-block;
margin-right: 23px;
}
#primary .post .entry-meta a:hover,
#primary .post .entry-meta a:focus{
text-decoration: none;
color: #6c6c6c;
}
#primary .post .entry-meta .comments-link a:before{
content: '\f0e5';
font-family: 'FontAwesome';
font-size: 13px;
margin-right: 5px;
color: #6c6c6c;
vertical-align: top;
}
#primary .post .entry-content,
.search #primary .page .entry-content,
#primary .page .entry-content{margin: 0;}
#primary .post .entry-footer,
.search #primary .page .entry-footer{overflow: hidden;}
#primary .post .btn-readmore,
.search #primary .page .btn-readmore{
font-size: 16px;
line-height: 28px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
border: 2px solid #5fc210;
float: left;
padding: 8px 28px;
-webkit-transition: all 0.2s;
-moz-transition: all 0.2s;
transition: all 0.2s;
}
.edit-link{float: right;}
#primary .post .btn-readmore:hover,
#primary .post .btn-readmore:focus,
.search #primary .page .btn-readmore:hover,
.search #primary .page .btn-readmore:focus,
.edit-link a:hover,
.post .edit-link a:focus{
text-decoration: none;
background: #5fc210;
color: #fff;
}
#primary .post .entry-content iframe,
#primary .page .entry-content iframe{
width: 100%;
height: 475px;
vertical-align: top;
margin: 0 0 30px;
}
#primary .post.format-status .entry-header .entry-title,
#primary .post.format-aside .entry-header .entry-title,
#primary .post.format-link .entry-header .entry-title{display: none;}
#primary .post .entry-content h1,
#primary .page .entry-content h1{
font-size: 60px;
line-height: 72px;
font-weight: 400;
color: #313131;
margin: 0 0 10px;
}
#primary .post .entry-content h2,
#primary .page .entry-content h2{
font-size: 42px;
line-height: 50px;
font-weight: 400;
color: #313131;
margin: 0 0 13px;
}
#primary .post .entry-content h3,
#primary .page .entry-content h3{
font-size: 36px;
line-height: 43px;
font-weight: 400;
color: #313131;
margin: 0 0 17px;
}
#primary .post .entry-content h4,
#primary .page .entry-content h4{
font-size: 24px;
line-height: 29px;
font-weight: 400;
color: #313131;
margin: 0 0 20px;
}
#primary .post .entry-content h5,
#primary .page .entry-content h5{
font-size: 20px;
line-height: 24px;
font-weight: 400;
color: #313131;
margin: 0 0 18px;
}
#primary .post .entry-content h6,
#primary .page .entry-content h6{
font-size: 16px;
line-height: 19px;
font-weight: 400;
color: #313131;
margin: 0 0 18px;
}
#primary .post .entry-content blockquote,
#primary .page .entry-content blockquote{
margin: 0 0 1.5em;
background: #f9f9f9 url(//multixapa.com/wp-content/themes/preschool-and-kindergarten/images/bg-quote.png) no-repeat 50px 20px;
padding: 50px 50px 30px;
border-left: 2px solid #4fbba9;
color: #919191;
font-style: italic;
}
#primary .post .entry-content blockquote cite,
#primary .page .entry-content blockquote cite{
font-size: 16px;
font-style: normal;
text-transform: uppercase;
color: #313131;
font-weight: 700;
}
#primary .post .entry-content .pull-right,
#primary .page .entry-content .pull-right{
float: right;
text-align: right;
width: 263px;
margin-left: 15px;
margin-bottom: 30px;
border-top: 3px solid #f1f1f2;
padding-top: 10px;
}
#primary .post .entry-content .pull-left,
#primary .page .entry-content .pull-left{
float: left;
text-align: left;
width: 263px;
margin-right: 15px;
margin-bottom: 30px;
border-top: 3px solid #f1f1f2;
padding-top: 10px;
}
#primary .post .entry-content .dropcap,
#primary .page .entry-content .dropcap{
font-size: 115px;
line-height: 100px;
float: left;
margin-right: 15px;
}
#primary .post .entry-content .highlight,
#primary .page .entry-content .highlight{
background: #72c9ba;
color: #fff;
}
#primary .post .entry-content table,
#primary .page .entry-content table{color: #919191;}
#primary .post .entry-content table thead,
#primary .page .entry-content table thead{
background: #e9e9e9;
font-weight: 700;
color: #616161;
}
#primary .post .entry-content table thead th,
#primary .page .entry-content table thead th{
font-weight: 700;
color: #616161;
}
#primary .post .entry-content table th,
#primary .page .entry-content table th,
#primary .post .entry-content table td,
#primary .page .entry-content table td{
padding: 1vw 2vw;
text-align: left;
}
#primary .post .entry-content table tr,
#primary .page .entry-content table tr{border-bottom: 1px solid #ebebeb;}
.author{
margin: 0 0 40px;
background: #f9f9f9;
padding: 30px 26px; 
}
.author .img-holder{
float: left;
width: 105px;
margin-right: 20px;
}
.author .text-holder{overflow: hidden;}
.author .name{
font-size: 21px;
line-height: 28px;
font-weight: 400;
color: #313131;
} .pagination{
margin: 0 0 30px;
}
.pagination .nav-links{overflow: hidden;}
.pagination a,
.pagination .current{
font-size: 16px;
line-height: 40px;
height: 40px;
float: left;
color: #bebebe;
margin: 0 3px 0 0;
padding: 0 14px; }
.pagination .current,
.pagination a:hover,
.pagination a:focus{
background: #919191; color: #fff;
text-decoration: none;
}
.pagination .dots{
float: left;
margin: 0 3px 0 0;
line-height: 36px;
}
.search #primary .search-form{
width: 100%;
margin: 0 0 42px;
background: #f8f8f8;
} .comments-area{margin: 0 0 40px;}
.comments-area .comments-title,
.comments-area .comment-reply-title{
font-size: 28px;
line-height: 32px;
font-weight: 400;
color: #313131;
}
.comments-area ol{
margin: 0;
padding: 0;
list-style: none;
}
.comments-area .comment-body .avatar{
float: left;
margin-right: 20px;
}
.comments-area .comment-body .fn{
float: left;
font-weight: 700;
font-size: 18px;
line-height: 24px;
color: #313131;
margin-right: 15px;
}
.comments-area .comment-body .says{display: none;}
.comments-area .comment-body .comment-metadata{
float: left;
font-size: 14px;
color: #919191;
}
.comments-area .comment-body .comment-metadata a{color: #919191;}
.comments-area .comment-body .comment-metadata a:hover,
.comments-area .comment-body .comment-metadata a:focus{
text-decoration: none;
color: #5fc210;
}
.comment-author{float: left;
}
.comment-meta{overflow: hidden;}
.comments-area .comment-body .comment-content{
margin-left: 97px; }
.comments-area .comment-body .reply{
margin-left: 97px;
font-size: 16px;
font-weight: 700;
text-transform: uppercase;
}
.comments-area .comment-body{
border-bottom: 1px solid #f3f3f3;
padding-bottom: 25px;
margin-bottom: 25px;
}
.comments-area .comment-list .children{padding-left: 97px;}
.comments-area .comment-form label{display: none;}
.comments-area .comment-form .comment-form-author{
float: left;
width: 267px;
margin-right: 15px;
}
.comments-area .comment-form .comment-form-email{
float: left;
width: 267px;
margin-right: 15px;
}
.comments-area .comment-form .comment-form-url{
float: left;
width: 267px;
}
.comments-area .comment-form input[type="text"],
.comments-area .comment-form input[type="email"],
.comments-area .comment-form input[type="url"]{
width: 100%;
padding: 10px 15px;
}
.full-width #primary{width: 100%;} #secondary{
float: right;
width: 25%;
padding-left: 15px;
padding-right: 15px;
}
.search #primary .search-form{
background: #f8f8f8;
margin: 0 15px 42px 0;
overflow: hidden;
padding: 15px;
}
.search #primary .search-form label{
float: left;
width: 85%
}
.search #primary .search-form input[type="search"]{
background: none;
border: 0;
border-radius: 0;
float: left;
width: 100%;
margin: 0;
padding: 0;
font-size: 15px;
}
.search #primary .search-form input[type="submit"]{
float: right;
background: url(//multixapa.com/wp-content/themes/preschool-and-kindergarten/images/bg-search.png) no-repeat;
width: 17px;
height: 18px;
border: 0;
border-radius: 0;
text-indent: -9999px;
} .widget_search .search-form{
background: #f8f8f8;
margin: 0;
overflow: hidden;
padding: 15px;
}
.widget_search .search-form label{
float: left;
width: 85%
}
.widget_search .search-form input[type="search"]{
background: none;
border: 0;
border-radius: 0;
float: left;
width: 100%;
margin: 0;
padding: 0;
font-size: 15px;
}
.widget_search .search-form input[type="submit"]{
float: right;
background: url(//multixapa.com/wp-content/themes/preschool-and-kindergarten/images/bg-search.png) no-repeat;
width: 17px;
height: 18px;
border: 0;
border-radius: 0;
text-indent: -9999px;
padding: 0;
} .widget .widget-title{
font-size: 16px;
line-height: 28px;
font-weight: 700;
color: #313131;
text-transform: uppercase;
}
.widget ul{
margin: 0;
padding: 0;
list-style: none;
font-size: 16px;
line-height: 20px;
color: #919191;
}
.widget ul li{
padding-left: 17px;
margin: 0 0 15px;
position: relative;
}
.widget ul li:before{
position: absolute;
top: 0;
left: 0;
content: '\f105';
font-size: 13px;
font-family: 'FontAwesome';
}
.widget ul li a{color: #919191;}
.widget ul li a:hover,
.widget ul li a:focus{
text-decoration: none;
color: #5fc210;
} .widget.widget_flickr_photo ul{
margin-left: -1px;
margin-right: -1px;
overflow: hidden;
}
.widget.widget_flickr_photo ul li{
padding-left: 1px;
padding-right: 1px;
float: left;
margin-bottom: 2px;
width: 25%;
text-align: center;
}
.widget.widget_flickr_photo ul li:before{display: none;}
.widget.widget_flickr_photo ul li img{vertical-align: top;} .widget.widget_preschool_and_kindergarten_recent_post ul li{
padding-left: 0;
margin-bottom: 28px;
overflow: hidden;
}
.widget.widget_preschool_and_kindergarten_recent_post ul li:before{
display: none;
}
.widget.widget_preschool_and_kindergarten_recent_post ul li .post-thumbnail{
float: left;
width: 60px;
margin-right: 19px;
}
.widget.widget_preschool_and_kindergarten_recent_post ul li .post-thumbnail img{vertical-align: top;}
.widget.widget_preschool_and_kindergarten_recent_post ul li .entry-header{overflow: hidden;}
.widget.widget_preschool_and_kindergarten_recent_post ul li .entry-header .entry-title{
font-size: 16px;
line-height: 20px;
font-weight: 400;
color: #313131;
margin: 0 0 3px;
}
.widget.widget_preschool_and_kindergarten_recent_post ul li .entry-header .entry-title a{color: #313131;}
.widget.widget_preschool_and_kindergarten_recent_post ul li .entry-header .entry-title a:hover,
.widget.widget_preschool_and_kindergarten_recent_post ul li .entry-header .entry-title a:focus{
color: #5fc210;
text-decoration: none;
}
.widget.widget_preschool_and_kindergarten_recent_post ul li .entry-header .posted-on{
display: block;
font-size: 14px;
color: #919191;
}  .widget.widget_preschool_and_kindergarten_popular_post ul li{
padding-left: 0;
margin-bottom: 28px;
overflow: hidden;
}
.widget.widget_preschool_and_kindergarten_popular_post ul li:before{
display: none;
}
.widget.widget_preschool_and_kindergarten_popular_post ul li .post-thumbnail{
float: left;
width: 60px;
margin-right: 19px;
}
.widget.widget_preschool_and_kindergarten_popular_post ul li .post-thumbnail img{vertical-align: top;}
.widget.widget_preschool_and_kindergarten_popular_post ul li .entry-header{overflow: hidden;}
.widget.widget_preschool_and_kindergarten_popular_post ul li .entry-header .entry-title{
font-size: 16px;
line-height: 20px;
font-weight: 400;
color: #313131;
margin: 0 0 3px;
}
.widget.widget_preschool_and_kindergarten_popular_post ul li .entry-header .entry-title a{color: #313131;}
.widget.widget_preschool_and_kindergarten_popular_post ul li .entry-header .entry-title a:hover,
.widget.widget_preschool_and_kindergarten_popular_post ul li .entry-header .entry-title a:focus{
color: #5fc210;
text-decoration: none;
}
.widget.widget_preschool_and_kindergarten_popular_post ul li .entry-header .posted-on{
display: block;
font-size: 14px;
color: #919191;
} .widget.widget_tag_cloud .tagcloud{
overflow: hidden;
}
.widget.widget_tag_cloud .tagcloud a{
font-size: 14px;
line-height: 17px;
color: #919191;
float: left;
margin-right: 10px;
margin-bottom: 10px;
padding: 5px 8px;
border: 2px solid #dbdbdb;
}
.widget.widget_tag_cloud .tagcloud a:hover,
.widget.widget_tag_cloud .tagcloud a:focus{
background: #5fc210;
border-color: #5fc210;
color: #fff;
text-decoration: none;
} .widget.widget_calendar caption{
font-size: 16px;
color: #fff;
line-height: 20px;
background: #4fbba9;
padding: 12px 0;
font-weight: 700;
}
.widget.widget_calendar table{
position: relative;
font-family: 'Lato', sans-serif;
}
.widget.widget_calendar thead th{
font-size: 14px;
background: #fff;
color: #616161;
font-weight: 400;
height: 35px;
}
.widget.widget_calendar tbody{background: #f9f9f9;}
.widget.widget_calendar tbody td{
text-align: center;
font-size: 14px;
height: 35px;
line-height: 35px;
color: #919191;
}
.widget_calendar table #prev a{
left: 15px;
position: absolute;
top: 20px;
background: url(//multixapa.com/wp-content/themes/preschool-and-kindergarten/images/btn-prev-month.png) no-repeat;
width: 7px;
height: 11px;
text-indent: -9999px;
}
.widget.widget_calendar table #next a {
position: absolute;
right: 15px;
top: 20px;
background: url(//multixapa.com/wp-content/themes/preschool-and-kindergarten/images/btn-next-month.png) no-repeat;
width: 7px;
height: 11px;
text-indent: -9999px;
}
.widget.widget_calendar table tbody td a{
display: block;
height: 100%;
color: #5fc210;
} .widget.widget_text{
font-size: 16px;
line-height: 22px;
color: #616161;
} .widget.widget_preschool_and_kindergarten_social_links ul:after{
content: '';
display: block;
clear: both;
}
.widget.widget_preschool_and_kindergarten_social_links li:before{display: none;}
.widget.widget_preschool_and_kindergarten_social_links li{
float: left;
padding: 0;
margin-right: 20px;
margin-bottom: 15px;
}
.widget.widget_preschool_and_kindergarten_social_links li a{
font-size: 17px;
color: #5d5f61;
}
.widget.widget_preschool_and_kindergarten_social_links li a:hover,
.widget.widget_preschool_and_kindergarten_social_links li a:focus{
text-decoration: none;
} .site-footer{
background: #f9f9f9 url(//multixapa.com/wp-content/themes/preschool-and-kindergarten/images/line.png) repeat-x;
}
.site-footer .footer-t{
border-bottom: 1px solid #e0e0e0;
padding: 60px 0 0;
}
.site-footer .column{
float: left;
width: 25%;
padding-left: 15px;
padding-right: 15px;
margin-bottom: 30px;
}
.widget.widget_preschool_and_kindergarten_contact_info address{
font-size: 16px;
line-height: 24px;
font-style: normal;
color: #616161
}
.widget.widget_preschool_and_kindergarten_contact_info .email,
.widget.widget_preschool_and_kindergarten_contact_info .tel-link{
display: block;
font-size: 16px;
line-height: 20px;
color: #919191;
padding-left: 26px;
position: relative;
margin: 0 0 15px;
}
.widget.widget_preschool_and_kindergarten_contact_info .email:before,
.widget.widget_preschool_and_kindergarten_contact_info .tel-link:before{
content: '\f0e0';
font-family: 'FontAwesome';
position: absolute;
top: 0;
left: 0;
}
.widget.widget_preschool_and_kindergarten_contact_info .tel-link:before{content: '\f095';}
.widget.widget_preschool_and_kindergarten_contact_info .email:hover,
.widget.widget_preschool_and_kindergarten_contact_info .email:focus,
.widget.widget_preschool_and_kindergarten_contact_info .tel-link:hover,
.widget.widget_preschool_and_kindergarten_contact_info .tel-link:focus{
text-decoration: none;
color: #5fc210;
}
.site-info{
font-size: 12px;
line-height: 24px;
text-transform: uppercase;
color: #919191;
padding: 15px 0;
}
#mobile-header{display: none;} .error-holder{
max-width: 750px;
margin: 0 auto;
text-align: center;
} .error-holder h2{
font-size: 90px;
line-height: 90px;
margin: 0 0 30px;
color: #5fc210;
}
.error-holder .search-form{
background: #f8f8f8;
overflow: hidden;
padding: 15px;
max-width: 450px;
margin: 0 auto;
border-radius: 50px;
}
.error-holder .search-form label{
float: left;
width: 85%
}
.error-holder .search-form input[type="search"]{
background: none;
border: 0;
border-radius: 0;
float: left;
width: 100%;
margin: 0;
padding: 0;
font-size: 15px;
}
.error-holder .search-form input[type="submit"]{
float: right;
background: url(//multixapa.com/wp-content/themes/preschool-and-kindergarten/images/bg-search.png) no-repeat;
width: 17px;
height: 18px;
border: 0;
border-radius: 0;
text-indent: -9999px;
padding: 0;
} @media only screen and (max-width: 1199px){
.container{max-width: 970px;}
.banner .banner-text{
top: 10%;
}
.banner .banner-text .title{
font-size: 40px;
line-height: 44px;
}
.banner .banner-text p{margin: 0 0 15px;}
.section-3 .img-holder{margin-top: 60px;}
}
@media only screen and (max-width: 991px){
.container{max-width: 750px;}
#mobile-header{
display: block;
float: right;
margin: 16px 0 0;
}
#mobile-header a{
border: 1px solid #5fc210;
border-radius: 2px;
width: 35px;
height: 35px;
text-align: center;
display: block;
padding: 4px 0;
}
#site-navigation{display: none;}
.banner .banner-text{
font-size: 20px;
line-height: 26px;
}
.banner .banner-text .title{
font-size: 30px;
line-height: 34px;
}
.banner .banner-text .text-holder{
padding-left: 46px;
max-width: 470px;
}
.welcome .img-holder,
.section-3 .text-holder{
width: 100%;
margin-bottom: 30px;
}
.welcome .text-holder,
.section-2 .col{width: 100%;}
.section-3 .img-holder{
width: 100%;
margin-top: 0;
}
.featured .col{
width: 100%;
margin-bottom: 90px;
}
.testimonial .text-holder,
.testimonial .img-holder{
display: block;
width: 100%;
}
.testimonial .img-holder img{width: 100%;}
.our-staff .col{width: 100%;}
.news .post{width: 100%;}
.site-footer .widget{width: 50%;}
.widget.widget_flickr_photo ul li img{width: 100%;}
#primary,
#secondary{width: 100%;}
.site-footer .column{
width: 50%;
}
}
@media only screen and (max-width: 767px){
.container{width: 100%;}
.header-t .contact-info{
width: 100%;
text-align: center;
}
.header-t .contact-info li{
float: none;
display: inline-block;
margin: 0 6px;
}
.header-t .social-networks{
width: 100%;
text-align: center;
}
.header-t .social-networks li{
float: none;
display: inline-block;
margin: 0 5px;
}
.banner .banner-text{
position: relative;
top: 0;
padding: 25px 0 55px;
}
.banner .flex-direction-nav a{top: 50px;}
.banner .banner-text .text-holder{padding-left: 0;}
.welcome,
.section-2,
.promotional-block,
.featured,
.testimonial,
.our-staff,
.news{padding: 20px 0;}
.section-3 .header,
.section-2 .header,
.promotional-block,
.featured .header,
.testimonial .text-holder .header,
.our-staff .header,
.news .header {
font-size: 18px;
line-height: 24px;
}
.welcome .text-holder .title,
.section-2 .header .title,
.section-3 .header .title,
.promotional-block .title,
.featured .header .title,
.testimonial .text-holder .header .title,
.our-staff .header .title,
.news .header .title{
font-size: 24px;
line-height: 32px;
}
.section-3{padding-top: 20px;}
.section-3 ul li{width: 100%;}
.testimonial .text-holder{
padding-top: 20px;
padding-bottom: 20px;
}
.news .post .posted-on{margin-right: 15px;}
.site-footer .widget{width: 100%;}
.site-footer .column{
width: 100%;
}
}