@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */

:root {
  --org-color: #1e367d;
  --org2-color: #C49A6D;
  --threshold: 0.5;
  --border-threshold: 0.8;
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%));
  --border-alpha: calc((var(--perceived-lightness) - var(--border-threshold)) * 100);
  --border-color: rgba(calc(var(--r) - 50), calc(var(--g) - 50), calc(var(--b) - 50), var(--border-alpha));
}

@-webkit-keyframes bounce {

  0%,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translateZ(0);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: translateZ(0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    -webkit-transform: translate3d(0, -30px, 0);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    -webkit-transform: translate3d(0, -15px, 0);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {

  0%,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translateZ(0);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: translateZ(0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    -webkit-transform: translate3d(0, -30px, 0);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    -webkit-transform: translate3d(0, -15px, 0);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@-webkit-keyframes flash {

  0%,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {

  0%,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  30% {
    -webkit-transform: scale3d(1.25, .75, 1);
    transform: scale3d(1.25, .75, 1);
  }

  40% {
    -webkit-transform: scale3d(.75, 1.25, 1);
    transform: scale3d(.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, .85, 1);
    transform: scale3d(1.15, .85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  30% {
    -webkit-transform: scale3d(1.25, .75, 1);
    transform: scale3d(1.25, .75, 1);
  }

  40% {
    -webkit-transform: scale3d(.75, 1.25, 1);
    transform: scale3d(.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, .85, 1);
    transform: scale3d(1.15, .85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@-webkit-keyframes shake {

  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {

  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-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);
  }

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@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);
  }

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-animation-name: swing;
  -webkit-transform-origin: top center;
  animation-name: swing;
  transform-origin: top center;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
    transform: scale3d(.9, .9, .9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
    transform: scale3d(.9, .9, .9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes jello {

  0%,
  11.1%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
    transform: skewX(-.78125deg) skewY(-.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(.390625deg) skewY(.390625deg);
    transform: skewX(.390625deg) skewY(.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
    transform: skewX(-.1953125deg) skewY(-.1953125deg);
  }
}

@keyframes jello {

  0%,
  11.1%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
    transform: skewX(-.78125deg) skewY(-.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(.390625deg) skewY(.390625deg);
    transform: skewX(.390625deg) skewY(.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
    transform: skewX(-.1953125deg) skewY(-.1953125deg);
  }
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes bounceIn {

  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    -webkit-transform: scale3d(.3, .3, .3);
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    -webkit-transform: scaleX(1);
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes bounceIn {

  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    -webkit-transform: scale3d(.3, .3, .3);
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    -webkit-transform: scaleX(1);
    opacity: 1;
    transform: scaleX(1);
  }
}

@-webkit-keyframes bounceInDown {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    -webkit-transform: translate3d(0, -3000px, 0);
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    -webkit-transform: translate3d(0, 25px, 0);
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInDown {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    -webkit-transform: translate3d(0, -3000px, 0);
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    -webkit-transform: translate3d(0, 25px, 0);
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes bounceInLeft {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    -webkit-transform: translate3d(-3000px, 0, 0);
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(25px, 0, 0);
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInLeft {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    -webkit-transform: translate3d(-3000px, 0, 0);
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(25px, 0, 0);
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes bounceInRight {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    -webkit-transform: translate3d(3000px, 0, 0);
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-25px, 0, 0);
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInRight {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    -webkit-transform: translate3d(3000px, 0, 0);
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-25px, 0, 0);
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes bounceInUp {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    -webkit-transform: translate3d(0, 3000px, 0);
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    -webkit-transform: translate3d(0, -20px, 0);
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInUp {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    -webkit-transform: translate3d(0, 3000px, 0);
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    -webkit-transform: translate3d(0, -20px, 0);
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%,
  55% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    -webkit-transform: scale3d(.3, .3, .3);
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%,
  55% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    -webkit-transform: scale3d(.3, .3, .3);
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    -webkit-transform: translate3d(0, -20px, 0);
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 2000px, 0);
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    -webkit-transform: translate3d(0, -20px, 0);
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 2000px, 0);
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@-webkit-keyframes bounceOutLeft {
  20% {
    -webkit-transform: translate3d(20px, 0, 0);
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(-2000px, 0, 0);
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    -webkit-transform: translate3d(20px, 0, 0);
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(-2000px, 0, 0);
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@-webkit-keyframes bounceOutRight {
  20% {
    -webkit-transform: translate3d(-20px, 0, 0);
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(2000px, 0, 0);
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    -webkit-transform: translate3d(-20px, 0, 0);
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(2000px, 0, 0);
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    -webkit-transform: translate3d(0, 20px, 0);
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    -webkit-transform: translate3d(0, -2000px, 0);
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    -webkit-transform: translate3d(0, 20px, 0);
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    -webkit-transform: translate3d(0, -2000px, 0);
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes fadeInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    -webkit-transform: translate3d(0, -2000px, 0);
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    -webkit-transform: translate3d(0, -2000px, 0);
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    -webkit-transform: translate3d(-2000px, 0, 0);
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    -webkit-transform: translate3d(-2000px, 0, 0);
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes fadeInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

@-webkit-keyframes fadeInRightBig {
  0% {
    -webkit-transform: translate3d(2000px, 0, 0);
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    -webkit-transform: translate3d(2000px, 0, 0);
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes fadeInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    -webkit-transform: translate3d(0, 2000px, 0);
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    -webkit-transform: translate3d(0, 2000px, 0);
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 100%, 0);
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 100%, 0);
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 2000px, 0);
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 2000px, 0);
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-2000px, 0, 0);
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-2000px, 0, 0);
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0);
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0);
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(2000px, 0, 0);
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(2000px, 0, 0);
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, -100%, 0);
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, -100%, 0);
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, -2000px, 0);
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, -2000px, 0);
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@-webkit-keyframes flip {
  0% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    animation-timing-function: ease-out;
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
  }

  40% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    animation-timing-function: ease-out;
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
  }

  50% {
    -webkit-animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    animation-timing-function: ease-in;
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
  }

  80% {
    -webkit-animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
    transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
  }

  to {
    -webkit-animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
  }
}

@keyframes flip {
  0% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    animation-timing-function: ease-out;
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
  }

  40% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    animation-timing-function: ease-out;
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
  }

  50% {
    -webkit-animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    animation-timing-function: ease-in;
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
  }

  80% {
    -webkit-animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
    transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
  }

  to {
    -webkit-animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
  }
}

.animated.flip {
  -webkit-animation-name: flip;
  -webkit-backface-visibility: visible;
  animation-name: flip;
  backface-visibility: visible;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }

  40% {
    -webkit-animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
    transform: perspective(400px) rotateX(-20deg);
  }

  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    opacity: 1;
    transform: perspective(400px) rotateX(10deg);
  }

  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }

  40% {
    -webkit-animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
    transform: perspective(400px) rotateX(-20deg);
  }

  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    opacity: 1;
    transform: perspective(400px) rotateX(10deg);
  }

  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }

  40% {
    -webkit-animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateY(-20deg);
    animation-timing-function: ease-in;
    transform: perspective(400px) rotateY(-20deg);
  }

  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    opacity: 1;
    transform: perspective(400px) rotateY(10deg);
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }

  40% {
    -webkit-animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateY(-20deg);
    animation-timing-function: ease-in;
    transform: perspective(400px) rotateY(-20deg);
  }

  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    opacity: 1;
    transform: perspective(400px) rotateY(10deg);
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
    transform: perspective(400px) rotateX(-20deg);
  }

  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
    transform: perspective(400px) rotateX(-20deg);
  }

  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
    transform: perspective(400px) rotateY(-15deg);
  }

  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
    transform: perspective(400px) rotateY(-15deg);
  }

  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
    transform: translate3d(100%, 0, 0) skewX(-30deg);
  }

  60% {
    -webkit-transform: skewX(20deg);
    opacity: 1;
    transform: skewX(20deg);
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
    transform: translate3d(100%, 0, 0) skewX(-30deg);
  }

  60% {
    -webkit-transform: skewX(20deg);
    opacity: 1;
    transform: skewX(20deg);
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
    transform: translate3d(100%, 0, 0) skewX(30deg);
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
    transform: translate3d(100%, 0, 0) skewX(30deg);
  }
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    -webkit-transform-origin: center;
    opacity: 0;
    transform: rotate(-200deg);
    transform-origin: center;
  }

  to {
    -webkit-transform: translateZ(0);
    -webkit-transform-origin: center;
    opacity: 1;
    transform: translateZ(0);
    transform-origin: center;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    -webkit-transform-origin: center;
    opacity: 0;
    transform: rotate(-200deg);
    transform-origin: center;
  }

  to {
    -webkit-transform: translateZ(0);
    -webkit-transform-origin: center;
    opacity: 1;
    transform: translateZ(0);
    transform-origin: center;
  }
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    -webkit-transform-origin: left bottom;
    opacity: 0;
    transform: rotate(-45deg);
    transform-origin: left bottom;
  }

  to {
    -webkit-transform: translateZ(0);
    -webkit-transform-origin: left bottom;
    opacity: 1;
    transform: translateZ(0);
    transform-origin: left bottom;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    -webkit-transform-origin: left bottom;
    opacity: 0;
    transform: rotate(-45deg);
    transform-origin: left bottom;
  }

  to {
    -webkit-transform: translateZ(0);
    -webkit-transform-origin: left bottom;
    opacity: 1;
    transform: translateZ(0);
    transform-origin: left bottom;
  }
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    -webkit-transform-origin: right bottom;
    opacity: 0;
    transform: rotate(45deg);
    transform-origin: right bottom;
  }

  to {
    -webkit-transform: translateZ(0);
    -webkit-transform-origin: right bottom;
    opacity: 1;
    transform: translateZ(0);
    transform-origin: right bottom;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    -webkit-transform-origin: right bottom;
    opacity: 0;
    transform: rotate(45deg);
    transform-origin: right bottom;
  }

  to {
    -webkit-transform: translateZ(0);
    -webkit-transform-origin: right bottom;
    opacity: 1;
    transform: translateZ(0);
    transform-origin: right bottom;
  }
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    -webkit-transform-origin: left bottom;
    opacity: 0;
    transform: rotate(45deg);
    transform-origin: left bottom;
  }

  to {
    -webkit-transform: translateZ(0);
    -webkit-transform-origin: left bottom;
    opacity: 1;
    transform: translateZ(0);
    transform-origin: left bottom;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    -webkit-transform-origin: left bottom;
    opacity: 0;
    transform: rotate(45deg);
    transform-origin: left bottom;
  }

  to {
    -webkit-transform: translateZ(0);
    -webkit-transform-origin: left bottom;
    opacity: 1;
    transform: translateZ(0);
    transform-origin: left bottom;
  }
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    -webkit-transform-origin: right bottom;
    opacity: 0;
    transform: rotate(-90deg);
    transform-origin: right bottom;
  }

  to {
    -webkit-transform: translateZ(0);
    -webkit-transform-origin: right bottom;
    opacity: 1;
    transform: translateZ(0);
    transform-origin: right bottom;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    -webkit-transform-origin: right bottom;
    opacity: 0;
    transform: rotate(-90deg);
    transform-origin: right bottom;
  }

  to {
    -webkit-transform: translateZ(0);
    -webkit-transform-origin: right bottom;
    opacity: 1;
    transform: translateZ(0);
    transform-origin: right bottom;
  }
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    opacity: 1;
    transform-origin: center;
  }

  to {
    -webkit-transform: rotate(200deg);
    -webkit-transform-origin: center;
    opacity: 0;
    transform: rotate(200deg);
    transform-origin: center;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    opacity: 1;
    transform-origin: center;
  }

  to {
    -webkit-transform: rotate(200deg);
    -webkit-transform-origin: center;
    opacity: 0;
    transform: rotate(200deg);
    transform-origin: center;
  }
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    opacity: 1;
    transform-origin: left bottom;
  }

  to {
    -webkit-transform: rotate(45deg);
    -webkit-transform-origin: left bottom;
    opacity: 0;
    transform: rotate(45deg);
    transform-origin: left bottom;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    opacity: 1;
    transform-origin: left bottom;
  }

  to {
    -webkit-transform: rotate(45deg);
    -webkit-transform-origin: left bottom;
    opacity: 0;
    transform: rotate(45deg);
    transform-origin: left bottom;
  }
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    opacity: 1;
    transform-origin: right bottom;
  }

  to {
    -webkit-transform: rotate(-45deg);
    -webkit-transform-origin: right bottom;
    opacity: 0;
    transform: rotate(-45deg);
    transform-origin: right bottom;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    opacity: 1;
    transform-origin: right bottom;
  }

  to {
    -webkit-transform: rotate(-45deg);
    -webkit-transform-origin: right bottom;
    opacity: 0;
    transform: rotate(-45deg);
    transform-origin: right bottom;
  }
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    opacity: 1;
    transform-origin: left bottom;
  }

  to {
    -webkit-transform: rotate(-45deg);
    -webkit-transform-origin: left bottom;
    opacity: 0;
    transform: rotate(-45deg);
    transform-origin: left bottom;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    opacity: 1;
    transform-origin: left bottom;
  }

  to {
    -webkit-transform: rotate(-45deg);
    -webkit-transform-origin: left bottom;
    opacity: 0;
    transform: rotate(-45deg);
    transform-origin: left bottom;
  }
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    opacity: 1;
    transform-origin: right bottom;
  }

  to {
    -webkit-transform: rotate(90deg);
    -webkit-transform-origin: right bottom;
    opacity: 0;
    transform: rotate(90deg);
    transform-origin: right bottom;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    opacity: 1;
    transform-origin: right bottom;
  }

  to {
    -webkit-transform: rotate(90deg);
    -webkit-transform-origin: right bottom;
    opacity: 0;
    transform: rotate(90deg);
    transform-origin: right bottom;
  }
}

@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    -webkit-transform-origin: top left;
    animation-timing-function: ease-in-out;
    transform-origin: top left;
  }

  20%,
  60% {
    -webkit-animation-timing-function: ease-in-out;
    -webkit-transform: rotate(80deg);
    -webkit-transform-origin: top left;
    animation-timing-function: ease-in-out;
    transform: rotate(80deg);
    transform-origin: top left;
  }

  40%,
  80% {
    -webkit-animation-timing-function: ease-in-out;
    -webkit-transform: rotate(60deg);
    -webkit-transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
    transform: rotate(60deg);
    transform-origin: top left;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    opacity: 0;
    transform: translate3d(0, 700px, 0);
  }
}

@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    -webkit-transform-origin: top left;
    animation-timing-function: ease-in-out;
    transform-origin: top left;
  }

  20%,
  60% {
    -webkit-animation-timing-function: ease-in-out;
    -webkit-transform: rotate(80deg);
    -webkit-transform-origin: top left;
    animation-timing-function: ease-in-out;
    transform: rotate(80deg);
    transform-origin: top left;
  }

  40%,
  80% {
    -webkit-animation-timing-function: ease-in-out;
    -webkit-transform: rotate(60deg);
    -webkit-transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
    transform: rotate(60deg);
    transform-origin: top left;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    opacity: 0;
    transform: translate3d(0, 700px, 0);
  }
}

@-webkit-keyframes jackInTheBox {
  0% {
    -webkit-transform: scale(.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    opacity: 0;
    transform: scale(.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    -webkit-transform: scale(1);
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  0% {
    -webkit-transform: scale(.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    opacity: 0;
    transform: scale(.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    -webkit-transform: scale(1);
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes rollIn {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes rollIn {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale3d(.3, .3, .3);
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale3d(.3, .3, .3);
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
  }

  60% {
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
  }
}

@keyframes zoomInDown {
  0% {
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
  }

  60% {
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
  }
}

@-webkit-keyframes zoomInLeft {
  0% {
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
  }

  60% {
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
  }
}

@keyframes zoomInLeft {
  0% {
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
  }

  60% {
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
  }
}

@-webkit-keyframes zoomInRight {
  0% {
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
  }

  60% {
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
  }
}

@keyframes zoomInRight {
  0% {
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
  }

  60% {
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
  }
}

@-webkit-keyframes zoomInUp {
  0% {
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
  }

  60% {
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
  }
}

@keyframes zoomInUp {
  0% {
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
  }

  60% {
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
  }
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    -webkit-transform: scale3d(.3, .3, .3);
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    -webkit-transform: scale3d(.3, .3, .3);
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
  }

  to {
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
  }
}

@keyframes zoomOutDown {
  40% {
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
  }

  to {
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
  }
}

@-webkit-keyframes zoomOutLeft {
  40% {
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

@-webkit-keyframes zoomOutRight {
  40% {
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

@-webkit-keyframes zoomOutUp {
  40% {
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
  }

  to {
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
  }
}

@keyframes zoomOutUp {
  40% {
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
  }

  to {
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
  }
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
  }
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
  }
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: hidden;
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: hidden;
  }
}

.animated {
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    -webkit-transition: none !important;
    animation: unset !important;
    transition: none !important;
  }
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */

.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.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 {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.owl-height {
  transition: height .5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity .4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.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(owl.video.play.html) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform .1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
  margin-top: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: .5;
  cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(.47, 0, .74, .71);
}

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity .25s ease, visibility 0s ease .25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  transition: opacity .25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide:before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image:before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(.5, 0, .14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-iframe,
.fancybox-video {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.fancybox-button {
  background: rgba(30, 30, 30, .6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color .2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--fsexit svg:first-child,
.fancybox-button--pause svg:first-child,
.fancybox-button--play svg:nth-child(2) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: .8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

.fancybox-caption {
  background: linear-gradient(0deg, rgba(0, 0, 0, .85) 0, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .15) 65%, rgba(0, 0, 0, .075) 75.5%, rgba(0, 0, 0, .037) 82.85%, rgba(0, 0, 0, .019) 88%, transparent);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding:max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

.fancybox-loading {
  animation: a 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes a {
  to {
    transform: rotate(1turn);
  }
}

.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, .25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translateZ(0);
}

.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(.5, .5, .5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-1turn);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(1turn);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

@media (max-height:576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

  @supports (padding:max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}

.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:link,
.fancybox-share__button:visited {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, .1);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a:before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all .2s cubic-bezier(.25, .46, .45, .94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus:before {
  opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1;
}

@media (max-width:576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

/* Generated by script */

@font-face {
  font-family: Vazirmatn RD FD;
  src: url('../fonts/webfonts/Vazirmatn-RD-FD-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn RD FD;
  src: url('../fonts/webfonts/Vazirmatn-RD-FD-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn RD FD;
  src: url('../fonts/webfonts/Vazirmatn-RD-FD-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn RD FD;
  src: url('../fonts/webfonts/Vazirmatn-RD-FD-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn RD FD;
  src: url('../fonts/webfonts/Vazirmatn-RD-FD-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn RD FD;
  src: url('../fonts/webfonts/Vazirmatn-RD-FD-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn RD FD;
  src: url('../fonts/webfonts/Vazirmatn-RD-FD-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn RD FD;
  src: url('../fonts/webfonts/Vazirmatn-RD-FD-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn RD FD;
  src: url('../fonts/webfonts/Vazirmatn-RD-FD-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/*! #######################################################################

	MeanMenu 2.0.7
	--------

	To be used with jquery.meanmenu.js by Chris Wharton (http://www.meanthemes.com/plugins/meanmenu/)

####################################################################### */

/* hide the link until viewport size is reached */

a.meanmenu-reveal {
  display: none;
}

/* when under viewport size, .mean-container is added to body */

.mean-container .mean-bar {
  float: right;
  width: 100%;
  position: absolute;
  background: transparent;
  padding: 0 0 0;
  z-index: 999;
}

.mean-container a.meanmenu-reveal {
  width: 35px;
  height: 30px;
  position: absolute;
  left: 0;
  cursor: pointer;
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  text-indent: -9999em;
  line-height: 22px;
  font-size: 1px;
  display: block;
  font-weight: 700;
  padding-top: 3px;
  -webkit-transform: translateY(9px);
  transform: translateY(9px);
}

.mean-container a.meanmenu-reveal span {
  display: block;
  background: #000000;
  height: 4px;
  margin-top: 3px;
  border-radius: 3px;
}

.mean-container .mean-nav {
  float: right;
  width: 100%;
  background: #ffffff;
  margin-top: 48px;
}

.mean-container .mean-nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  border: none;
  list-style-type: none;
}

.mean-container .mean-nav ul li {
  position: relative;
  float: right;
  width: 100%;
}

.mean-container .mean-nav ul li a i {
  display: none;
}

.mean-container .mean-nav ul li a {
  display: block;
  float: right;
  width: 90%;
  padding: 1em 5%;
  margin: 0;
  text-align: right;
  color: #677294;
  border-top: 1px solid #DBEEFD;
  text-decoration: none;
}

.mean-container .mean-nav ul li a.active {
  color: #000000;
}

.mean-container .mean-nav ul li li a {
  width: 80%;
  padding: 1em 10%;
  color: #677294;
  border-top: 1px solid #DBEEFD;
  opacity: 1;
  filter: alpha(opacity=75);
  text-shadow: none !important;
  visibility: visible;
  text-transform: none;
  font-size: 14px;
}

.mean-container .mean-nav ul li.mean-last a {
  margin-bottom: 0;
}

.mean-container .mean-nav ul li li li a {
  width: 70%;
  padding: 1em 15%;
}

.mean-container .mean-nav ul li li li li a {
  width: 60%;
  padding: 1em 20%;
}

.mean-container .mean-nav ul li li li li li a {
  width: 50%;
  padding: 1em 25%;
}

.mean-container .mean-nav ul li a:hover {
  background: #252525;
  background: rgba(255, 255, 255, 0.1);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 1px;
  width: 100%;
  height: 24px;
  padding: 12px !important;
  text-align: left;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  font-weight: 700;
  background: transparent;
  border: none !important;
}

.mean-container .mean-push {
  float: right;
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both;
}

.mean-nav .wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
}

/* Fix for box sizing on Foundation Framework etc. */

.mean-container .mean-bar,
.mean-container .mean-bar * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.mean-remove {
  display: none !important;
}

/*
@File: Fovia Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
** - Preloader Area CSS
** - Header Area CSS
** - Main Banner Area CSS
** - Main Services Area CSS
** - About Area CSS
** - Our Mission Area CSS
** - Our Approach Area CSS
** - Our Vision Area CSS
** - Fun Facts Area CSS
** - Services Area CSS
** - Services Details Area CSS
** - Doctor Area CSS
** - Doctor Details Area CSS
** - Appointment Area CSS
** - Doctor Calendar Area CSS
** - Feedback Area CSS
** - FAQ Area CSS
** - Partner Area CSS
** - Blog Area CSS
** - Blog Details Area CSS
** - Page Title Area CSS
** - Pagination Area CSS
** - Sidebar Widget Area CSS
** - Product Details Area CSS
** - Cart Area CSS
** - Checkout Area CSS
** - Contact Area CSS
** - 404 Error Area CSS
** - Subscribe Area CSS
** - Footer Area CSS
** - Go Top CSS
*/

/*================================================
Default CSS
=================================================*/

/* @import url("Vazirmatn-RD-FD-font-face.css"); */

/* :root {
  --org-color: #0b3e6d;
  --threshold: 0.5;
  --border-threshold: 0.8;
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color : hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%));
  --border-alpha: calc((var(--perceived-lightness) - var(--border-threshold)) * 100);
  --border-color: rgba(calc(var(--r) - 50), calc(var(--g) - 50), calc(var(--b) - 50), var(--border-alpha));
} */


body {
  padding: 0;
  margin: 0;
  font-family: "Vazirmatn RD FD", sans-serif;
  font-size: 15px;
}

a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: 0 !important;
  text-decoration: none;
  color: #121521;
}

a:hover {
  text-decoration: none;
  color: var(--org-color);
}

button {
  outline: 0 !important;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  color: #7d7d7d;
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 14.5px;
  font-family: "Vazirmatn RD FD", sans-serif;
}

p:last-child {
  margin-bottom: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #121521;
}

.bg-fefefe {
  background-color: #fefefe;
}

.bg-f4f9fd {
  background-color: #f4f9fd;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

/*btn(primary&light)*/

.btn {
  border: none;
  line-height: initial;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 17px 50px 15.5px 25px;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 14px;
  font-family: "Vazirmatn RD FD", sans-serif;
  font-weight: 500;
}

.btn.disabled,
.btn:disabled {
  opacity: 1;
}

.btn-primary {
  background: var(--org-color);
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%));
  color: var(--text-color);
}

.btn-primary .about-index-left {
  position: absolute;
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  height: 33px;
  width: 33px;
  line-height: 33px;
  color: var(--org-color);
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn-primary.disabled,
.btn-primary:disabled {
  background: var(--org-color);
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
  background: var(--org2-color) !important;
  color: #000 !important;
}

.btn-primary:hover .about-index-left,
.btn-primary:focus .about-index-left {
  color:var(--org-color);
}

.btn-light {
  background-color: #ffffff;
  color: var(--org-color);
}

.btn-light i {
  position: absolute;
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  display: inline-block;
  height: 33px;
  width: 33px;
  line-height: 34px;
  color: #121521;
  border-radius: 50%;
  background-color: #f0f0f0;
}

.btn-light.disabled,
.btn-light:disabled {
  background-color: #ffffff;
  color: #121521;
}

.btn-light:hover,
.btn-light:focus {
  background-color: #121521 !important;
  color: #ffffff !important;
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
}

/*section-title*/

.section-title {
  text-align: center;
  /* max-width: 700px; */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.section-title span {
  display: block;
  margin-bottom: 5px;
  color: var(--org-color);
  font-size: 17px;
  font-family: "Vazirmatn RD FD", sans-serif;
}

.section-title h2 {
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 600;
}

/*form-control*/

/*================================================
Preloader Area CSS
=================================================*/

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  z-index: 9999999;
  -webkit-transition: .9s;
  transition: .9s;
}

.preloader .loader {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 45%;
  -webkit-transform: translateY(-45%);
  transform: translateY(-45%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.preloader .loader .loader-outter {
  position: absolute;
  border: 4px solid #ffffff;
  border-left-color: transparent;
  border-bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.preloader .loader .loader-inner {
  position: absolute;
  border: 4px solid #ffffff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  left: calc(40% - 21px);
  top: calc(40% - 21px);
  border-right: 0;
  border-top-color: transparent;
  -webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.preloader .loader .indicator {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(1.5);
  transform: translateY(-50%) scale(1.5);
}

.preloader .loader .indicator svg polyline {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.preloader .loader .indicator svg polyline#back {
  stroke: #ffffff;
}

.preloader .loader .indicator svg polyline#front {
  stroke: var(--org-color);
  stroke-dasharray: 12, 36;
  stroke-dashoffset: 48;
  -webkit-animation: dash 1s linear infinite;
  animation: dash 1s linear infinite;
}

.preloader::before,
.preloader::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60%;
  z-index: -1;
  background: var(--org-color);
  -webkit-transition: .9s;
  transition: .9s;
}

.preloader::after {
  left: auto;
  right: 0;
}

.preloader.preloader-deactivate {
  visibility: hidden;
  display: none !important;
}

.preloader.preloader-deactivate::after,
.preloader.preloader-deactivate::before {
  width: 0;
}

.preloader.preloader-deactivate .loader {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@-webkit-keyframes dash {
  62.5% {
    opacity: 0;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  62.5% {
    opacity: 0;
  }

  to {
    stroke-dashoffset: 0;
  }
}

/*================================================
Header Area CSS
=================================================*/

.top-header {
  background-color: #f8f8f8;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-contact-info {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  display: flex;
}

.header-contact-info li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: #121521;
  font-family: "Vazirmatn RD FD", sans-serif;
  font-size: 14px;
}

.header-contact-info li .iconify {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  background: var(--org2-color);
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 31px;
  border-radius: 50%;
  text-align: center;
  font-size: 17px;
}

.header-contact-info li:last-child {
  margin-right: 0;
}

.header-contact-info li:hover i {
  background-color: var(--org-color);
  color: #ffffff;
}

.header-right-content {
  text-align: right;
}

.header-right-content .top-header-social {
  display: inline-block;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.header-right-content .top-header-social li {
  display: inline-block;
  margin-right: 4px;
}

.header-right-content .top-header-social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--org2-color);
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 31px;
  border-radius: 50%;
  text-align: center;
  font-size: 17px;
}

.header-right-content .top-header-social li a:hover {
  background-color: var(--org-color);
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.header-right-content .top-header-social li:last-child {
  margin-right: 0;
}

.header-right-content .lang-select {
  margin-left: 15px;
  display: inline-block;
}

.fovia-responsive-nav {
  display: none;
}

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

.fovia-nav {
  background-color: #ffffff;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 0;
  padding-left: 0;
}

.fovia-nav .navbar {
  padding-right: 0;
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
}

.fovia-nav .navbar ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.fovia-nav .navbar .navbar-nav {
  font-family: "Vazirmatn RD FD", sans-serif;
  margin-left: auto;
  margin-right: auto;
}

.fovia-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 0;
  padding-right: 0;
}

.fovia-nav .navbar .navbar-nav .nav-item a {
  font-size: 15.5px;
  font-weight: 500;
  color: #121521;
  text-transform: capitalize;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-left: 15px;
  margin-right: 15px;
}

.fovia-nav .navbar .navbar-nav .nav-item a:hover,
.fovia-nav .navbar .navbar-nav .nav-item a:focus,
.fovia-nav .navbar .navbar-nav .nav-item a.active {
  color: var(--org-color);
}

.fovia-nav .navbar .navbar-nav .nav-item a .plus-icon {
  position: relative;
  top: 5px;
}

.fovia-nav .navbar .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}

.fovia-nav .navbar .navbar-nav .nav-item:first-child a {
  margin-left: 0;
}

.fovia-nav .navbar .navbar-nav .nav-item:hover a,
.fovia-nav .navbar .navbar-nav .nav-item:focus a,
.fovia-nav .navbar .navbar-nav .nav-item.active a {
  color: var(--org-color);
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  position: absolute;
  border: none;
  top: 80px;
  left: 0;
  min-width: 230px;
  z-index: 99;
  display: none;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-top: 3px solid var(--org2-color);
  margin-top: 0;
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  padding: 0 25px;
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  text-transform: capitalize;
  padding: 10px 0;
  margin: 0;
  color: #121521;
  font-size: 14.5px;
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover,
.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus,
.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--org-color);
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: 220px;
  top: 0;
  display: none;
}

/* .fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu  {
  right: calc(100% + 25px);
  top: 0;
} */

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #121521;
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus,
.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: var(--org-color);
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: 220px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #121521;
  text-transform: capitalize;
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--org-color);
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #121521;
  text-transform: capitalize;
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--org-color);
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #121521;
  text-transform: capitalize;
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--org-color);
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #121521;
  text-transform: capitalize;
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--org-color);
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #121521;
  text-transform: capitalize;
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--org-color);
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--org-color);
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--org-color);
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--org-color);
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--org-color);
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: var(--org-color);
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: var(--org-color);
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  display: block;
  top: 0;
  right: 100%;
}

.fovia-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  display: block;
  top: 100%;
}

.fovia-nav .navbar .others-options .btn {
  margin-left: 15px;
  padding: 15px 25px 13.5px 25px;
}

.fovia-nav .navbar .others-options .option-item {
  color: #121521;
  display: inline-block;
  position: relative;
  line-height: initial;
  margin-left: 15px;
  top: 4px;
}

.fovia-nav .navbar .others-options .option-item .search-btn {
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #121521;
  font-size: 20px;
}

.fovia-nav .navbar .others-options .option-item .search-btn:hover {
  color: var(--org-color);
}

.fovia-nav .navbar .others-options .option-item .search-close-btn {
  cursor: pointer;
  display: none;
  font-size: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 20px;
  color: #121521;
}

.fovia-nav .navbar .others-options .option-item .search-close-btn.active {
  display: block;
}

.fovia-nav .navbar .others-options .option-item .search-close-btn:hover {
  color: var(--org-color);
}

.search-icon {
  font-size: 20px;
}

.navbar-area {
  background-color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0px 15px 10px -15px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 15px 10px -15px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 2;
}

.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  background: #ffffff !important;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.search-overlay {
  display: none;
}

.search-overlay.search-popup {
  position: absolute;
  top: 100%;
  width: 300px;
  right: 0;
  background: #ffffff;
  z-index: 2;
  padding: 20px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.search-overlay.search-popup .search-form {
  position: relative;
}

.search-overlay.search-popup .search-form .search-input {
  display: block;
  width: 100%;
  height: 40px;
  line-height: initial;
  border: 1px solid #eeeeee;
  padding-left: 10px;
  color: #121521;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 14px;
}

.search-overlay.search-popup .search-form .search-input:focus {
  border-color: var(--org-color);
}

.search-overlay.search-popup .search-form .search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  background: transparent;
  border: none;
  width: 40px;
  outline: 0;
  color: #7d7d7d;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-overlay.search-popup .search-form .search-button:hover,
.search-overlay.search-popup .search-form .search-button:focus {
  color: var(--org-color);
}

@media only screen and (max-width: 991px) {
  .navbar-area {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .navbar-area.is-sticky {
    border-bottom: none;
    -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
  }

  .fovia-responsive-nav {
    display: block;
  }

  .fovia-responsive-nav .fovia-responsive-menu {
    position: relative;
  }

  .fovia-responsive-nav .fovia-responsive-menu.mean-container .mean-nav ul {
    font-size: 14px;
  }

  .fovia-responsive-nav .fovia-responsive-menu.mean-container .mean-nav ul li a.active {
    color: var(--org-color);
  }

  .fovia-responsive-nav .fovia-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 13.5px;
  }

  .fovia-responsive-nav .fovia-responsive-menu.mean-container .navbar-nav {
    overflow-y: scroll;
    height: auto;
    -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
  }

  .fovia-responsive-nav .mean-container a.meanmenu-reveal {
    color: #121521;
    padding-top: 0;
  }

  .fovia-responsive-nav .mean-container a.meanmenu-reveal span {
    background: #121521;
  }

  .fovia-responsive-nav .logo {
    position: relative;
    width: 50%;
    z-index: 999;
  }

  .fovia-responsive-nav .others-options {
    position: absolute;
    right: 55px;
    top: -2px;
  }

  .fovia-responsive-nav .others-options .btn {
    display: none;
  }

  .fovia-responsive-nav .others-options .option-item {
    color: #121521;
    position: relative;
    line-height: initial;
    top: 4px;
  }

  .fovia-responsive-nav .others-options .option-item .search-btn {
    display: none !important;
  }

  .fovia-responsive-nav .others-options .option-item .search-close-btn {
    cursor: pointer;
    display: none;
    font-size: 17px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 17px;
    color: #121521;
  }

  .fovia-responsive-nav .others-options .option-item .search-close-btn.active {
    display: block;
  }

  .fovia-responsive-nav .others-options .option-item .search-close-btn:hover {
    color: var(--org-color);
  }

  .search-overlay.search-popup .search-form .search-input {
    width: 96%;
  }

  .search-overlay.search-popup .search-form .search-button {
    height: 43px;
  }

  .fovia-nav {
    display: none;
  }

  .appointment-content {
    margin-right: auto !important;
  }

  .appointment-content h2{
    font-size: 22px !important;
  }

  .contact-info ul li{
    font-size: 17px !important;
  }
}

/*================================================
Main Banner Area CSS
=================================================*/

.main-banner {
  height: 745px;
  position: relative;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* .item-bg1 {
  background-image: url(../img/1.webp);
} */

.home-slides .owl-stage-outer {
  height: auto !important;
}


.home-slides.owl-theme .owl-nav {
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.home-slides.owl-theme .owl-nav .owl-prev,
.home-slides.owl-theme .owl-nav .owl-next {
  color: #121521;
  margin: 0;
  padding: 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 51px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 30px;
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}

.home-slides.owl-theme .owl-nav .owl-prev:hover,
.home-slides.owl-theme .owl-nav .owl-next:hover {
  background-color: var(--org-color);
  color: #ffffff;
}

.home-slides.owl-theme .owl-nav .owl-next {
  left: auto;
  right: 15px;
}

.home-slides.owl-theme .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
}

.home-slides.owl-theme .slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
}

.home-slides.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 3px;
  margin: 0 2px;
  background: #121521;
  border-radius: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.home-slides.owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--org-color);
}

.home-slides.owl-theme .owl-dots .owl-dot.active span {
  width: 25px;
  background-color: var(--org-color);
}

.home-slides.owl-theme:hover .owl-nav {
  opacity: 1;
  visibility: visible;
}

.circle-shape1 {
  position: absolute;
  left: 80px;
  top: 80px;
  z-index: -1;
  -webkit-animation-name: rotateMe;
  animation-name: rotateMe;
  -webkit-animation-duration: 50s;
  animation-duration: 50s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.circle-shape1 img {
  opacity: .80;
}

.circle-shape2 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-animation-name: rotateMeTwo;
  animation-name: rotateMeTwo;
  -webkit-animation-duration: 50s;
  animation-duration: 50s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.circle-shape2 img {
  opacity: .80;
}

.shape1 {
  position: absolute;
  right: 25px;
  top: 25%;
  z-index: -1;
  -webkit-animation-name: rotateMe;
  animation-name: rotateMe;
  -webkit-animation-duration: 50s;
  animation-duration: 50s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes rotateMe {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotateMe {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotateMeTwo {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes rotateMeTwo {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

/*================================================
Main Services Area CSS
=================================================*/

.main-services-area {
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
}

.main-services-box {
  margin-bottom: 30px;
  height: calc(100% - 30px);
  background-color: #ffffff;
  -webkit-box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
  padding: 25px 20px;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
}

.main-services-box .icon {
  margin-bottom: 20px;
  text-align: center;
  width: 60px;
  height: 60px;
  line-height: 70px;
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  background-color: var(--org-color);
  color: #ffffff;
  font-size: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-services-box .icon img{
  vertical-align: text-bottom;
  width: 40px;
  height: 40px;
}

.main-services-box h3 {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 0;
  position: relative;
  padding-bottom: 5px;
  font-size: 19px;
  font-weight: 700;
}

.main-services-box h3 a {
  color: #121521;
}

.main-services-box h3::before {
  width: 0;
  height: 1px;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.main-services-box p {
  line-height: 1.7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-top: 10px;
  margin-bottom: 0;
}

.main-services-box::before {
  width: 0;
  height: 100%;
  z-index: -1;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--org-color);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/* .main-services-box::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border: 10px solid #ffffff;
  left: -80px;
  bottom: -80px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.15;
  -webkit-transition: 0.5s;
  transition: 0.5s;
} */

.main-services-box:hover {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.main-services-box:hover::before {
  width: 100%;
}

.main-services-box:hover .icon {
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%));
  color: var(--text-color);
}

.main-services-box:hover h3 a {
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%));
  color: var(--text-color);
}

.main-services-box:hover h3::before {
  width: 80px;
}

.main-services-box:hover p {
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%));
  color: var(--text-color);
}

.main-services-box:hover::after {
  left: -50px;
  bottom: -50px;
}

.shape2 {
  position: absolute;
  right: 0;
  bottom: -120px;
  z-index: -1;
  -webkit-animation: moveBounce 5s linear infinite;
  animation: moveBounce 5s linear infinite;
}

.shape2 img {
  opacity: .70;
}

@-webkit-keyframes moveBounce {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes moveBounce {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/*================================================
About Area CSS
=================================================*/

.about-area {
  position: relative;
  z-index: 1;
}

.about-image {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-image .h_iframe-aparat_embed_frame {
  position: relative;
}

.about-image .h_iframe-aparat_embed_frame .ratio {
  display: block;
  width: 100%;
  height: auto;
}

.about-image .h_iframe-aparat_embed_frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about-area .content-container {
  text-align: justify;
}

.about-area .content-container>p {
  margin: 20px 0;
}

.about-area .content-container>p>img {
  width: 500px;
  margin: 0 0 2rem 2rem;
  float: right;
}

.about-content {
  max-width: 555px;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 50px;
}

.content-container .about-content{
  padding-top: 0 !important;
}

.about-content span{
  display: block;
  margin-bottom: 5px;
  color: var(--org-color);
  font-size: 17px;
  font-family: "Vazirmatn RD FD", sans-serif;
}

.about-content h2 {
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 600;
}

.about-content p {
  margin-top: 10px;
  margin-bottom: 0;
}

.about-content ul{
  padding-right: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.about-content ul li{
  padding-right: 34px;
  padding-left: 0;
  margin-bottom: 16px;
  position: relative;
  font-family: "Vazirmatn RD FD", sans-serif;
}

.about-content ul li .about-icon-check{
  right: 0;
  left: auto;
  line-height: 25px;
  text-align: center;
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  background-color: var(--org2-color);
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  font-size: 11px;
  position: absolute;
  top: -2px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-content ul li:hover .about-icon-check{
  background-color: var(--org-color);
}

.about-content .btn {
  margin-top: 20px;
}

/*================================================
Our Mission Area CSS
=================================================*/

.our-mission-area {
  position: relative;
  z-index: 1;
}

.our-mission-image {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.our-mission-content {
  max-width: 555px;
  margin-left: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-right: 50px;
}

.our-mission-content .sub-title {
  display: block;
  margin-bottom: 5px;
  color: var(--org-color);
  font-size: 17px;
  font-family: "Vazirmatn RD FD", sans-serif;
}

.our-mission-content h2 {
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 600;
}

.our-mission-content p {
  margin-top: 10px;
  margin-bottom: 0;
}

.our-mission-content ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  margin-right: -15px;
  margin-left: -15px;
  margin-bottom: 0;
  margin-top: 0;
}

.our-mission-content ul li {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
  color: #7d7d7d;
  font-size: 14.5px;
  line-height: 1.7;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 25px;
}

.our-mission-content ul li .icon {
  margin-bottom: 13px;
  -webkit-box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.3);
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.3);
  width: 45px;
  height: 45px;
  line-height: 52px;
  text-align: center;
  border-radius: 50%;
  color: var(--org-color);
  font-size: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.our-mission-content ul li .icon img{
  width: 30px;
  height: 30px;
}

.our-mission-content ul li span {
  display: block;
  color: #121521;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 17px;
}

.our-mission-content ul li:hover .icon {
  background-color: var(--org-color);
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%));
  color: var(--text-color);
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
}

.shape3 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.shape3 img {
  opacity: .60;
}

/*================================================
Our Approach Area CSS
=================================================*/

.approach-image {
  width: 100%;
  height: 100%;
  background-image: url(../img/approach-img1.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.approach-image img {
  display: none;
}

.approach-content {
  max-width: 555px;
  margin-left: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-right: 50px;
}

.approach-content .sub-title {
  display: block;
  margin-bottom: 5px;
  color: var(--org-color);
  font-size: 17px;
  font-family: "Vazirmatn RD FD", sans-serif;
}

.approach-content h2 {
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 600;
}

.approach-content p {
  margin-top: 10px;
  margin-bottom: 0;
}

.approach-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 25px;
  margin-bottom: 0;
}

.approach-content ul li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 34px;
  font-family: "Vazirmatn RD FD", sans-serif;
}

.approach-content ul li i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  background-color: #d2f5e1;
  color: var(--org-color);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  font-size: 11px;
  position: absolute;
  left: 0;
  top: -2px;
}

.approach-content ul li:hover i {
  background-color: var(--org-color);
  color: #ffffff;
}

.approach-content ul li:last-child {
  margin-bottom: 0;
}

.approach-content .btn {
  margin-top: 30px;
}

/*================================================
Our Vision Area CSS
=================================================*/

/*================================================
Fun Facts Area CSS
=================================================*/

.fun-facts-area {
  position: relative;
  z-index: 1;
  background-color: var(--org-color);
}

.single-fun-facts {
  text-align: center;
}

.single-fun-facts .icon {
  font-size: 45px;
  color: var(--org2-color);
  margin-bottom: 10px;
}

.single-fun-facts h3 {
  color: #ffffff;
  margin-bottom: 0;
  position: relative;
  padding-left: 5px;
  font-size: 50px;
  font-weight: 600;
}

.single-fun-facts h3 .optional-icon {
  top: -25px;
  right: 5px;
  position: relative;
  font-size: 25px;
  font-weight: 300;
}

.single-fun-facts p {
  color: #fff;
  line-height: initial;
  margin-top: 5px;
}

/*================================================
Services Area CSS
=================================================*/

.services-area {
  position: relative;
  z-index: 1;
}

.service-img>img {
  width: 100%;
}

.single-services-box {
  margin-bottom: 30px;
  position: relative;
  padding: 30px;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #fff;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
}

.single-services-box:hover h3 a, 
.single-services-box:hover p{
  color: #fff;
}

.single-services-box:hover{
  background-color: var(--org-color);
}

.single-services-box .icon {
  text-align: center;
  width: 75px;
  height: 75px;
  line-height: 75px;
  color: var(--org-color);
  font-size: 40px;
  margin-bottom: 21px;
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  background-color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-services-box:hover .icon{
  border-radius: 50%;
}

.single-services-box .icon img {
  width: 50px;
  height: 50px;
}

.single-services-box h3{
  font-size: 20px;
}

.single-services-box h3 a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-box p {
  flex-grow: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-box .more-info .services-index-more {
  transform: translateY(5px);
}

.services-index-more {
  margin-right: 10px;
}

.service-text *{
  text-align: justify !important;
}

.service-text h1{
  text-align: right !important;
}

.service-bookmark-icon {
  font-size: 25px;
  margin-left: 10px;
}

.service-label {
  margin-left: 30px;
}

/*================================================
Services Details Area CSS
=================================================*/

.services-details-desc .services-details-image {
  margin-bottom: 30px;
}

.services-details-desc h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 23px;
  font-weight: 600;
}

/*================================================
Doctor Area CSS
=================================================*/

.doctor-area {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}

.satisfaction-part {
  padding-top: 100px;
}

.doctor-area .section-title {
  margin-bottom: 30px;
}

.single-doctor-box {
  text-align: center;
  margin-bottom: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.1);
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.1);
  padding: 25px;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-doctor-box .doctor-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.single-doctor-box .doctor-image::before{
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  border-radius: 30px;
  left: 0;
  top: 0;
  background-color:  var(--org-color);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-doctor-box .doctor-image img {
  display: inline-block !important;
  width: auto !important;
}

.single-doctor-box .doctor-image .details-btn {
  position: absolute;
  top: 50%;
  display: inline-block;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 35px;
  height: 35px;
  background-color: #ffffff;
  line-height: 35px;
  border-radius: 50%;
  color: var(--org-color);
  opacity: 0;
  visibility: hidden;
  margin-top: 25px;

}

.single-doctor-box .doctor-image .details-btn:hover {
  color: #ffffff;
  background-color: #121521;
}

/* .single-doctor-box .doctor-image::before {
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 0;
  background-color: var(--org-color);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
} */

.single-doctor-box .doctor-content {
  margin-top: 22px;
}

.single-doctor-box .doctor-content span {
  display: block;
  color: var(--org-color);
  font-size: 14.5px;
  margin-top: 5px;
}

.single-doctor-box:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.single-doctor-box:hover .doctor-image .details-btn {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-doctor-box:hover .doctor-image::before {
  opacity: .90;
  visibility: visible;
}

.doctor-slides .single-doctor-box {
  margin-top: 30px;
}

.doctor-slides.owl-theme .owl-nav {
  margin-top: 0;
}

.doctor-slides.owl-theme .owl-nav [class*=owl-] {
  color: var(--org-color);
  font-size: 14px;
  margin: 0;
  padding: 0;
  background: #f0f0f0;
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 19px;
  position: absolute;
  left: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.doctor-slides.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: var(--org-color);
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%));
  color: var(--text-color);
}

.doctor-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: -60px;
}

/*================================================
Doctor Details Area CSS
=================================================*/

.doctor-details-area {
  position: relative;
  z-index: 1;
}

.doctor-details-image {
  text-align: center;
  background-color: #ffffff;
  -webkit-box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.1);
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.1);
  padding: 30px;
}

.doctor-details-image h3 {
  margin-bottom: 0;
  margin-top: 25px;
  font-size: 20px;
  font-weight: 700;
}

.doctor-details-image h3 a {
  display: inline-block;
}

.doctor-details-image span {
  display: block;
  color: var(--org-color);
  font-size: 14.5px;
  margin-top: 7px;
}

.doctor-details-image .social {
  padding-left: 0;
  list-style-type: none;
  margin-top: 18px;
  margin-bottom: 0;
}

.doctor-details-image .social li {
  display: inline-block;
  margin-left: 2px;
  margin-right: 2px;
}

.doctor-details-image .social li a {
  display: block;
  color: var(--org-color);
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background-color: #def5ee;
  text-align: center;
  font-size: 14px;
}

.doctor-details-image .social li a:hover {
  color: #ffffff;
  background-color: var(--org-color);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.doctor-details-image .social li:first-child {
  margin-left: 0;
}

.doctor-details-image .social li:last-child {
  margin-right: 0;
}

.doctor-details-desc {
  padding-left: 20px;
}

.doctor-details-desc h2 {
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 600;
}

.doctor-details-desc p {
  margin-top: 15px;
}

/*================================================
Appointment Area CSS
=================================================*/
.appointment-area {
  position: relative;
  z-index: 1;
  background-image: url(../img/appointment-bg.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.appointment-content {
  background-color: #ffffff;
  padding: 50px;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin-left: auto;
  margin-right: 100px;
  text-align: right;
}

.appointment-content .sub-title {
  display: block;
  margin-bottom: 5px;
  color: var(--org-color);
  font-size: 17px;
  font-family: "Vazirmatn RD FD", sans-serif;
}

.appointment-content h2 {
  margin-bottom: 0;
  max-width: 520px;
  line-height: 1.3;
  font-size: 35px;
  font-weight: 600;
}


/*================================================
FAQ Area CSS
=================================================*/

.faq-image img {
  display: block;
}

.faq-accordion {
  max-width: 600px;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 50px;
}

.faq-accordion .sub-title {
  display: block;
  margin-bottom: 5px;
  color: var(--org-color);
  font-size: 17px;
  font-family: "Vazirmatn RD FD", sans-serif;
}

.faq-accordion h2 {
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 600;
}

.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 30px;
}

.faq-accordion .accordion .accordion-item {
  display: block;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  background: #ffffff;
  margin-bottom: 10px;
}

.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-title {
  padding: 12px 20px 12px 51px;
  color: #121521;
  position: relative;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  display: block;
  font-size: 15px;
  font-weight: 500;
  font-family: "Vazirmatn RD FD", sans-serif;
}

.faq-accordion .accordion .accordion-title .accordion-plus,
.faq-accordion .accordion .accordion-title .accordion-minus {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  text-align: center;
  height: 100%;
  background: var(--org2-color);
  color: #fff;
  font-size: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-accordion .accordion .accordion-title .accordion-minus {
  display: none;
}

.faq-accordion .accordion .accordion-title.active {
  border-bottom-color: #eeeeee;
}

.faq-accordion .accordion .accordion-title.active .accordion-minus {
  display: flex;
  background-color: var(--org-color);
  color: #ffffff;
}

.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 15px;
  font-size: 14.5px;
}

.faq-accordion .accordion .accordion-content.show {
  display: block;
}

.faq-contact-area {
  position: relative;
  z-index: 1;
}

.faq-contact-form {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.faq-contact-form form {
  text-align: center;
}

.faq-contact-form form .form-group {
  text-align: left;
}

.faq-contact-form form .row {
  margin-left: -7px;
  margin-right: -7px;
}

.faq-contact-form form .row .col-lg-12,
.faq-contact-form form .row .col-lg-6 {
  padding-left: 7px;
  padding-right: 7px;
}

.faq-contact-form form .btn {
  font-size: 16px;
  margin-top: 10px;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.5) !important;
  box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.5) !important;
}

.faq-contact-form form .btn.disabled {
  cursor: not-allowed !important;
}

.faq-contact-form form .btn.disabled:hover::before,
.faq-contact-form form .btn.disabled:focus::before {
  opacity: 1;
  visibility: visible;
}

.faq-contact-form form .btn.disabled:hover::after,
.faq-contact-form form .btn.disabled:focus::after {
  opacity: 0;
  visibility: hidden;
}

/*================================================
Partner Area CSS
=================================================*/

/*================================================
Blog Area CSS
=================================================*/

.blog-area {
  padding-bottom: 70px;
}

.blog-area .pagination-area {
  margin-bottom: 30px;
}

.single-blog-post {
  margin-bottom: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
}

.single-blog-post:hover {
  transform: translateY(-10px);
}

.single-blog-post .post-image a {
  display: block;
}

.single-blog-post .post-content {
  background-color: #ffffff;
  -webkit-box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
  padding: 25px;
  position: relative;
  z-index: 1;
  flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.single-blog-post .post-content .post-meta {
  margin-bottom: 9px;
}

.single-blog-post .post-content .post-meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.blogs-search-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 23px;
}

.single-blog-post .post-content .post-meta ul li {
  display: inline-block;
  margin-right: 15px;
  font-size: 14px;
  color: #595959;
  position: relative;
}

.single-blog-post .post-content .post-meta ul li::before {
  position: absolute;
  right: -11px;
  top: 3px;
  width: 1px;
  height: 13px;
  background-color: #7d7d7d;
  content: '';
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
}

.single-blog-post .post-content .post-meta ul li a {
  color: var(--org-color);
}

.single-blog-post .post-content .post-meta ul li:last-child {
  margin-right: 0;
}

.single-blog-post .post-content .post-meta ul li:last-child::before {
  display: none;
}

.single-blog-post .post-content h3 {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 20px;
  font-weight: 700;
}

.single-blog-post .post-content h3 a {
  display: inline-block;
}

.single-blog-post .post-content p {
  margin-top: 9px;
  margin-bottom: 0;
  overflow: hidden;
}


/*================================================
Blog Details Area CSS
=================================================*/

.article-image img {
  width: 100%;
}

.blog-details-desc .article-content {
  margin-top: 30px;
}

.blog-details-desc .article-content p {
  color: #595959;
}

.blog-details-desc .article-content .entry-meta {
  margin-bottom: -10px;
}

.blog-details-desc .article-content .entry-meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.blog-details-desc .article-content .entry-meta ul li {
  position: relative;
  display: inline-block;
  color: #121521;
  margin-right: 21px;
  font-family: "Vazirmatn RD FD", sans-serif;
}

.blog-details-desc .article-content .entry-meta ul li span {
  display: inline-block;
  color: #121521;
}

.blog-details-desc .article-content .entry-meta ul li a {
  display: inline-block;
  color: #595959;
}

.blog-details-desc .article-content .entry-meta ul li a:hover {
  color: var(--org-color);
}

.blog-details-desc .article-content .entry-meta ul li::before {
  content: '';
  position: absolute;
  top: 11px;
  right: -15px;
  width: 6px;
  height: 1px;
  background: var(--org-color);
}

.blog-details-desc .article-content .entry-meta ul li:last-child {
  margin-right: 0;
}

.blog-details-desc .article-content .entry-meta ul li:last-child::before {
  display: none;
}

.blog-details-desc .article-content h1 {
  margin-bottom: 13px;
  margin-top: 25px;
  font-size: 28px;
  font-weight: 600;
  text-align: right !important;
}

.blog-details-desc .article-content .article-content-text h1 , 
.blog-details-desc .article-content .article-content-text h2 ,
.blog-details-desc .article-content .article-content-text h3 ,
.blog-details-desc .article-content .article-content-text h4 ,
.blog-details-desc .article-content .article-content-text h5 ,
.blog-details-desc .article-content .article-content-text h6  {
  text-align: right !important;
}

/*================================================
Page Title Area CSS
=================================================*/

.page-title-area {
  height: 300px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-title-bg1 {
  background-image: url(../img/page-title/1.webp);
}

.page-title-bg2 {
  background-image: url(../img/page-title/2.webp);
}

.page-title-bg3 {
  background-image: url(../img/page-title/3.webp);
}

.page-title-bg5 {
  background-image: url(../img/page-title/5.webp);
}

.page-title-content {
  text-align: center;
}

.page-title-content h2 {
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 600;
}

.page-title-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 15px;
  margin-bottom: 0;
}

.page-title-content ul li {
  display: inline-block;
  position: relative;
  color: var(--org-color);
  font-size: 16px;
  font-family: "Vazirmatn RD FD", sans-serif;
  margin-left: 8px;
  margin-right: 8px;
}

.page-title-content ul li a {
  color: #545a73;
}

.page-title-content ul li a:hover {
  color: var(--org-color);
}

.page-title-content ul li .left-arrow-page-title {
  position: absolute;
  color: #545a73;
  left: -18px;
  top: 5px;
  font-weight: 900;
}

.page-title-content ul li:last-child::before {
  display: none;
}

/*================================================
Pagination Area CSS
=================================================*/

.pagination-area {
  margin-top: 30px;
  text-align: center;
}

.pagination-area .page-numbers {
  width: 40px;
  height: 40px;
  margin: 0 3px;
  display: inline-block;
  background-color: #ffffff;
  line-height: 40px;
  color: #121521;
  -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
  box-shadow: 0 2px 10px 0 #d8dde6;
  font-size: 17px;
  font-weight: 600;
}

.pagination-area .page-numbers.current,
.pagination-area .page-numbers:hover,
.pagination-area .page-numbers:focus {
  background: var(--org-color);
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%));
  color: var(--text-color);
  -webkit-box-shadow: 0 2px 10px 0 var(--org-color);
  box-shadow: 0 2px 10px 0 var(--org-color);
}

.page-numbers .pagination-icon {
  transform: translateY(5px);
}

.pagination-area .page-numbers.disable {
  cursor: default !important;
  opacity: .5;
  background-color: #fff;
  color: #000;
  box-shadow: 0 2px 10px 0 #888888;
}

/*================================================
Sidebar Widget Area CSS
=================================================*/

.widget-area .widget {
  margin-top: 35px;
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
  background-color: #ffffff;
  padding: 25px;
}

.widget-area .widget:first-child {
  margin-top: 0;
}

.widget-area .widget .widget-title {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-transform: capitalize;
  position: relative;
  font-weight: 600;
  font-size: 20px;
}

.widget-area .widget .widget-title::before {
  content: '';
  position: absolute;
  background: var(--org-color);
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}

.widget-area .widget_search form {
  position: relative;
}

.widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}

.widget-area .widget_search form .screen-reader-text {
  display: none;
}

.widget-area .widget_search form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.widget-area .widget_search form .search-field:focus {
  border-color: var(--org-color);
}

.widget-area .widget_search form button {
  position: absolute;
  right: 0;
  outline: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  border: none;
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%));
  color: var(--text-color);
  background-color: var(--org-color);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.widget-area .widget_search form button:hover {
  color: #ffffff;
  background-color: #121521;
}

.widget-area .widget_fovia_posts_thumb {
  position: relative;
  overflow: hidden;
}

.widget-area .widget_fovia_posts_thumb .item {
  overflow: hidden;
  margin-bottom: 20px;
}

.widget-area .widget_fovia_posts_thumb .item:last-child {
  margin-bottom: 0;
}

.widget-area .widget_fovia_posts_thumb .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  position: relative;
  width: 80px;
  margin-right: 15px;
}

.widget-area .widget_fovia_posts_thumb .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}

.widget-area .widget_fovia_posts_thumb .item .thumb .fullimage.bg1 {
  background-image: url(../img/blog/5.webp);
}

.widget-area .widget_fovia_posts_thumb .item .thumb .fullimage.bg2 {
  background-image: url(../img/blog/8.webp);
}

.widget-area .widget_fovia_posts_thumb .item .thumb .fullimage.bg3 {
  background-image: url(../img/blog/9.webp);
}

.widget-area .widget_fovia_posts_thumb .item .info {
  overflow: hidden;
}

.widget-area .widget_fovia_posts_thumb .item .info time {
  display: block;
  color: #595959;
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 500;
}

.widget-area .widget_fovia_posts_thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 15px;
  font-weight: 600;
}

.widget-area .widget_meta ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.widget-area .widget_meta ul li {
  position: relative;
  margin-bottom: 12px;
  color: #7d7d7d;
  padding-left: 17px;
  font-weight: 500;
}

.widget-area .widget_meta ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_meta ul li::before {
  background: var(--org-color);
  position: absolute;
  height: 7px;
  width: 7px;
  content: '';
  left: 0;
  top: 7px;
}

.widget-area .widget_services_list ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
  background-color: #ffffff;
}

.widget-area .widget_services_list ul li a {
  display: block;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 35px;
  color: #5d6576;
  z-index: 1;
  font-weight: 500;
}

.widget-area .widget_services_list ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #121521;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.widget-area .widget_services_list ul li a i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.widget-area .widget_services_list ul li a.active,
.widget-area .widget_services_list ul li a:hover {
  background-color: var(--org-color);
  color: #ffffff;
  padding-left: 20px;
}

.widget-area .widget_services_list ul li a.active::before,
.widget-area .widget_services_list ul li a:hover::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}

.widget-area .widget_services_list ul li:last-child a {
  border-bottom: none;
}

.widget-area .widget_download ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
  background-color: #ffffff;
}

.widget-area .widget_download ul li a {
  display: block;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 35px;
  color: #5d6576;
  z-index: 1;
  font-weight: 500;
}

.widget-area .widget_download ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #121521;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.widget-area .widget_download ul li a i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.widget-area .widget_download ul li a.active,
.widget-area .widget_download ul li a:hover {
  background-color: var(--org-color);
  color: #ffffff;
  padding-left: 20px;
}

.widget-area .widget_download ul li a.active::before,
.widget-area .widget_download ul li a:hover::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}

.widget-area .widget_download ul li:last-child a {
  border-bottom: none;
}

/*================================================
Shop Area CSS
=================================================*/

.single-product-box {
  margin-bottom: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
}

.single-product-box .product-image {
  overflow: hidden;
  position: relative;
  text-align: left;
}

.single-product-box .product-image a img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-product-box .product-image a img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  margin-left: 20px;
}

.single-product-box .product-content {
  padding: 25px;
}

.single-product-box .product-content h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}

.single-product-box:hover .product-image a img:nth-child(2) {
  opacity: 1;
  visibility: visible;
  margin-left: 0;
}

/*================================================
Product Details Area CSS
=================================================*/

.product-details-desc h3 {
  margin-bottom: 12px;
  font-size: 23px;
  font-weight: 600;
}

.product-details-desc p {
  margin-bottom: 0;
}

/*================================================
Cart Area CSS
=================================================*/

/*================================================
Checkout Area CSS
=================================================*/

.order-details .title {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  font-size: 21px;
  font-weight: 600;
}

.order-details .title::before {
  content: '';
  position: absolute;
  background: var(--org-color);
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}

.order-details .order-table table {
  margin-bottom: 0;
}

.order-details .order-table table thead tr th {
  border-bottom-width: 0;
  vertical-align: middle;
  border-color: #eaedff;
  padding-left: 20px;
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  font-weight: 500;
  font-size: 16px;
}

.order-details .order-table table tbody tr td {
  vertical-align: middle;
  color: #7d7d7d;
  border-color: #eaedff;
  padding-left: 20px;
  padding-right: 20px;
}

.order-details .order-table table tbody tr td.product-name a {
  color: #7d7d7d;
  display: inline-block;
  font-weight: 500;
}

.order-details .order-table table tbody tr td.product-name a:hover {
  color: var(--org-color);
}

/*================================================
Contact Area CSS
=================================================*/

.contact-area {
  position: relative;
  z-index: 1;
}

.contact-info {
  padding-left: 25px;
}

.contact-info ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.contact-info ul li {
  position: relative;
  padding-left: 95px;
  color: #595959;
  font-family: "Vazirmatn RD FD", sans-serif;
  margin-bottom: 55px;
}

.contact-info ul li:first-child {
  margin-top: 20px;
}

.contact-info ul li .contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 45px;
  height: 45px;
  color: #fff;
  top: 50%;
  background: var(--org2-color);
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  font-size: 25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: .2s linear;
  -webkit-transition: .2s linear;
}

.contact-info ul li:hover .contact-icon{
  background: var(--org-color);
} 

.contact-info ul li a {
  color: #595959;
  display: block;
}

.contact-info ul li a:hover {
  color: var(--org-color);
}

.contact-info ul li:last-child {
  margin-bottom: 0;
}

/*================================================
404 Error Area CSS
=================================================*/

.error-area {
  height: 100vh;
}

.error-content {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
}

.error-content h3 {
  font-size: 40px;
  font-weight: 700;
  margin-top: 45px;
  margin-bottom: 15px;
}

.error-content p {
  max-width: 520px;
  margin: 0 auto 20px;
}

/*================================================
Photos Area CSS
=================================================*/

.gallery-bg,
.about-bg2,
.contact-bg2,
.single-service {
  background-image: url(../img/page-title/1.webp);
}

/*================================================
video Area CSS
=================================================*/

.video-main .row h3 {
  font-size: 1rem;
  text-align: center;
  margin-top: 10px;
}

/*================================================
about Area CSS
=================================================*/



/*================================================
Subscribe Area CSS
=================================================*/

.subscribe-area {
  border-bottom: 1px solid #272a35;
  margin-bottom: 60px;
  padding-bottom: 60px;
}

/*================================================
Footer Area CSS
=================================================*/

.footer-area {
  background-color: #121521;
  padding-top: 80px;
}

.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget .logo a {
  display: inline-block;
}

.single-footer-widget .logo p {
  color: #cecece;
  margin-top: 15px;
  margin-bottom: 0;
}

.single-footer-widget .social {
  padding-left: 0;
  list-style-type: none;
  margin-top: 18px;
  margin-bottom: 0;
}

.single-footer-widget .social li {
  display: inline-block;
  margin-left: 2px;
  margin-right: 2px;
}

.single-footer-widget .social li a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background-color: #3a3c45;
  text-align: center;
  font-size: 17px;
}

.single-footer-widget .social li a:hover {
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%));
  color: var(--text-color);
  background-color: var(--org-color);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.single-footer-widget .social li:first-child {
  margin-left: 0;
}

.single-footer-widget .social li:last-child {
  margin-right: 0;
}

.single-footer-widget h3 {
  margin-bottom: 30px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.single-footer-widget .departments-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .departments-list li {
  margin-bottom: 10px;
  color: #cecece;
  font-size: 14.5px;
  font-family: "Vazirmatn RD FD", sans-serif;
}

.single-footer-widget .departments-list li a {
  display: inline-block;
  color: #cecece;
}

.single-footer-widget .departments-list li a:hover {
  color: var(--org2-color);
}

.single-footer-widget .departments-list li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .links-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .links-list li {
  margin-bottom: 10px;
  color: #cecece;
  font-size: 14.5px;
  font-family: "Vazirmatn RD FD", sans-serif;
}

.single-footer-widget .links-list li a {
  display: inline-block;
  color: #cecece;
}

.single-footer-widget .links-list li a:hover {
  color: var(--org2-color);
}

.single-footer-widget .links-list li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .opening-hours {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .opening-hours li {
  color: #cecece;
  border-bottom: 1px solid #393c49;
  overflow: hidden;
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-family: "Vazirmatn RD FD", sans-serif;
}

.single-footer-widget .opening-hours li span {
  float: right;
}

.single-footer-widget .opening-hours li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.copyright-area {
  text-align: center;
  border-top: 1px solid #272a35;
  margin-top: 50px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.copyright-area p {
  line-height: initial;
  color: #ffffff;
  margin-bottom: 0;
}

.copyright-area p a {
  color: #ffffff;
  display: inline-block;
}

.copyright-area p a:hover {
  color: var(--org2-color);
}

.contact-footer-info{
  margin: 20px 0;
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%));
  color: var(--text-color);
}

.contact-footer-info a {
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%));
  color: var(--text-color);
}

.contact-footer-info a:hover{
  color: var(--org2-color);
}

/*================================================
Go Top CSS
=================================================*/

.go-top {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  top: 50%;
  right: 15px;
  background: var(--org2-color);
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .9s;
  transition: .9s;
  color: #fff;
  border-radius: 3px;
  font-size: 20px;
}

.go-top.active {
  top: 98%;
  -webkit-transform: translateY(-98%);
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}

/*# sourceMappingURL=style.css.map */

body {
  direction: rtl;
}

[type="email"],
[type="number"],
[type="tel"],
[type="url"] {
  direction: rtl;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
span,
p,
li,
a {
  letter-spacing: 0px !important;
  font-family: "Vazirmatn RD FD", sans-serif;
}

button,
input,
optgroup,
select,
textarea {
  font-family: "Vazirmatn RD FD", sans-serif;
}

.btn-primary .about-index-left {
  right: auto;
  left: 7px;
}

.btn-light i {
  right: auto;
  left: 7px;
}

.btn {
  padding: 17px 25px 15.5px 50px;
}

.header-contact-info {
  padding-right: 0;
  text-align: right;
}

.header-contact-info li {
  margin-left: 20px;
  margin-right: 0;
}

.header-contact-info li:last-child {
  margin-left: 0;
}

.header-contact-info li i {
  margin-left: 4px;
  margin-right: 0;
}

.header-right-content {
  text-align: left;
}

.header-right-content .lang-select {
  margin-right: 15px;
  margin-left: 0;
}

.header-right-content .top-header-social {
  padding-right: 0;
}

.header-right-content .top-header-social li {
  margin-left: 4px;
  margin-right: 0;
}

.header-right-content .top-header-social li:last-child {
  margin-left: 0;
}

.fovia-nav .navbar .others-options .btn {
  margin-right: 15px;
  margin-left: 0;
}

.fovia-nav .navbar .others-options .option-item {
  margin-right: 15px;
  margin-left: 0;
}

.fovia-nav .navbar .navbar-nav .nav-item:first-child a {
  margin-right: 0;
  margin-left: 15px;
}

.fovia-nav .navbar .navbar-nav .nav-item:last-child a {
  margin-left: 0;
  margin-right: 15px;
}

.fovia-nav .navbar ul {
  padding-right: 0;
}

.navbar-brand {
  margin-right: 0;
}

.fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  right: 0;
  left: auto;
  text-align: right;
}

.sub-dropdown-menu {
  right: 100%;
  top: 0;
}

.circle-shape1 {
  right: 80px;
  left: auto;
}

.circle-shape2 {
  right: 0;
  left: auto;
}

.shape1 {
  left: 25px;
  right: auto;
}

.main-services-box {
  text-align: right;
}

.shape2 {
  left: 0;
  right: auto;
}

.main-services-box::before {
  right: 0;
  left: auto;
}

.main-services-box h3::before {
  right: 0;
  left: auto;
}

.about-content {
  padding-right: 50px;
  text-align: right;
  padding-left: 0;
}

.about-content ul {
  padding-right: 15px;
}

.about-content ul li {
  padding-right: 34px;
  padding-left: 0;
}

.check-mark-about-contact {
  right: 0;
  left: auto;
}

.our-mission-content {
  margin-right: auto;
  margin-left: 0;
  padding-left: 50px;
  padding-right: 0;
  text-align: right;
}

.our-mission-content ul {
  padding-right: 0;
}

.single-fun-facts h3 {
  padding-right: 5px;
  padding-left: 0;
}

.single-fun-facts h3 .optional-icon {
  left: 5px;
  right: auto;
}

.single-services-box {
  text-align: right;
}

.slick-slide {
  float: right;
}

.faq-accordion {
  padding-right: 50px;
  padding-left: 0;
  text-align: right;
}

.faq-accordion .accordion .accordion-title {
  padding: 12px 50px 12px 20px;
}

.faq-accordion .accordion .accordion-title .accordion-plus,
.faq-accordion .accordion .accordion-title .accordion-minus {
  right: 0;
  left: auto;
}

.faq-accordion .accordion {
  padding-right: 0;
}

.single-blog-post .post-content {
  text-align: right;
}

.single-blog-post .post-content .post-meta ul {
  padding-right: 0;
}

.single-blog-post .post-content .post-meta ul li {
  margin-left: 15px;
  margin-right: 0;
}

.single-blog-post .post-content .post-meta ul li:last-child {
  margin-left: 0;
}

.single-blog-post .post-content .post-meta ul li::before {
  left: -11px;
  right: auto;
}




.single-product-box .product-image {
  text-align: right;
}

.single-footer-widget {
  text-align: right;
}

.single-footer-widget .departments-list {
  padding-right: 0;
}

.single-footer-widget .links-list {
  padding-right: 0;
}

.pl-5,
.px-5 {
  padding-right: 3rem !important;
  padding-left: 0 !important;
}

.single-footer-widget .opening-hours {
  padding-right: 0;
}

.single-footer-widget .opening-hours li span {
  float: left;
}

.single-footer-widget .social {
  padding-right: 0;
}

.go-top {
  left: 15px;
  right: auto;
}

.search-overlay.search-popup {
  left: 0;
  right: auto;
}

.search-overlay.search-popup .search-form .search-button {
  left: 0;
  right: auto;
}

.search-overlay.search-popup .search-form .search-input {
  padding-right: 10px;
  padding-left: 0;
}

.page-title-content ul {
  padding-right: 0;
}

/* .page-title-content ul li::before {
    left: -13px;
    right: auto;
content: "\f053";
} */

.widget-area .widget_search form button {
  left: 0;
  right: auto;
}

.widget-area .widget .widget-title {
  text-align: right;
}

.widget-area .widget .widget-title::before {
  right: 0;
  left: auto;
}

.widget-area .widget_services_list ul {
  padding-right: 0;
}

.widget-area .widget_download ul {
  padding-right: 0;
}

.widget-area .widget_services_list ul li a::before {
  right: 0;
  left: auto;
}

.widget-area .widget_services_list ul li a {
  text-align: right;
  padding-right: 15px;
  padding-left: 35px;
}

.widget-area .widget_services_list ul li a i {
  left: 15px;
  right: auto;
}

.widget-area .widget_services_list ul li a.active,
.widget-area .widget_services_list ul li a:hover {
  padding-right: 20px;
  padding-left: 0;
}

.widget-area .widget_download ul li a {
  padding-right: 15px;
  padding-left: 35px;
  text-align: right;
}

.widget-area .widget_download ul li a i {
  left: 15px;
  right: auto;
}

.widget-area .widget_download ul li a::before {
  right: 0;
  left: auto;
}

.widget-area .widget_download ul li a.active,
.widget-area .widget_download ul li a:hover {
  padding-right: 20px;
  padding-left: 0;
}

.services-details-desc {
  text-align: right;
}

.doctor-details-image .social {
  padding-right: 0;
}

.doctor-details-desc {
  padding-right: 20px;
  text-align: right;
  padding-left: 0;
}

.shape3 {
  right: 0;
  left: auto;
}

.single-product-box .product-content {
  text-align: right;
}

.product-details-desc {
  text-align: right;
}

.text-right {
  text-align: left !important;
}

.order-details .title::before {
  right: 0;
  left: auto;
}

.widget-area .widget_fovia_posts_thumb {
  text-align: right;
}

.widget-area .widget_fovia_posts_thumb .item .thumb {
  float: right;
  margin-left: 15px;
  margin-right: 0;
}

.widget-area .widget {
  text-align: right;
}

.widget-area .widget_meta ul li {
  padding-right: 17px;
  padding-left: 0;
}

.widget-area .widget_meta ul li::before {
  right: 0;
  left: auto;
}

.blog-details-desc {
  text-align: justify;
}

.blog-details-desc .article-content .entry-meta ul {
  padding-right: 0;
}

.blog-details-desc .article-content .entry-meta ul li {
  margin-left: 21px;
  margin-right: 0;
}

.blog-details-desc .article-content .entry-meta ul li:last-child {
  margin-left: 0;
}

.blog-details-desc .article-content .entry-meta ul li::before {
  left: -15px;
  right: auto;
}

.blog-details-desc .article-footer .article-tags span {
  margin-left: 5px;
  margin-right: 0;
}

.blog-details-desc .article-footer .article-share .social {
  padding-right: 0;
  text-align: left;
}

.post-navigation .navigation-links .nav-next {
  text-align: left;
}

.approach-content {
  margin-right: auto;
  margin-left: 0;
  padding-left: 50px;
  padding-right: 0;
  text-align: right;
}

.approach-content ul {
  padding-right: 0;
}

.approach-content ul li {
  padding-right: 34px;
  padding-left: 0;
}

.approach-content ul li i {
  right: 0;
  left: auto;
}

.contact-info ul {
  padding-right: 0;
}

.contact-info ul li {
  padding-right: 75px;
  padding-left: 0;
  text-align: right;
  font-size: 20px;
}

.contact-info ul li .contact-icon {
  right: 0;
  left: auto;
}

/* RTL responsive css*/

@media only screen and (max-width: 767px) {
  .mean-container a.meanmenu-reveal {
    left: 5px !important;
    right: auto !important;
  }

  .fovia-responsive-nav .logo {
    text-align: right;
  }

  .fovia-responsive-nav .others-options {
    left: 55px;
    right: auto;
  }

  .mean-container .mean-nav ul li a.mean-expand {
    width: 90%;
  }

  .main-services-box h3::before {
    left: 0;
  }

  .about-content {
    padding-right: 0;
  }

  .about-content ul li {
    text-align: right;
  }

  .fadeInLeft {
    -webkit-animation-name: unset;
    animation-name: unset;
  }

  .our-mission-content {
    padding-left: 0;
  }

  .single-fun-facts h3 .optional-icon {
    left: 4px !important;
    right: auto !important;
  }

  .faq-accordion {
    padding-right: 0;
  }

  .faq-accordion .accordion .accordion-title {
    text-align: right;
  }

  .faq-accordion .accordion .accordion-content {
    text-align: right;
  }

  .single-blog-post .post-content .post-meta ul li {
    margin-left: 10px !important;
    margin-right: 0 !important;
  }

  .single-blog-post .post-content .post-meta ul li::before {
    left: -8px !important;
    right: auto !important;
  }

  .single-footer-widget.pl-5 {
    padding-right: 0 !important;
  }

  .approach-content {
    padding-left: 0 !important;
  }

  .approach-content ul li {
    text-align: right;
  }

  .contact-info ul li {
    padding-right: 82px !important;
    padding-left: 0 !important;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .fovia-responsive-nav .others-options .option-item {
    margin-right: 15px;
    margin-left: 0;
  }

  .about-content ul li {
    padding-left: 0 !important;
    padding-right: 30px !important;
  }

  .approach-content ul li {
    padding-left: 0 !important;
    padding-right: 30px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mean-container a.meanmenu-reveal {
    left: 5px !important;
    right: auto !important;
  }

  .fovia-responsive-nav .logo {
    text-align: right;
  }

  .fovia-responsive-nav .others-options {
    left: 55px;
    right: auto;
  }

  .mean-container .mean-nav ul li a.mean-expand {
    width: 90%;
  }

  .fovia-responsive-nav .others-options .option-item {
    margin-right: 15px;
    margin-left: 0;
  }

  .about-content {
    padding-right: 0;
  }

  .fadeInLeft {
    -webkit-animation-name: unset;
    animation-name: unset;
  }

  .faq-accordion {
    padding-right: 0;
  }

  .single-footer-widget.pl-5 {
    padding-right: 0 !important;
  }
}

@media (max-width : 992px) {
  .content-container > h1 {
    text-align: center;
  }
  .about-area .content-container>p>img {
    float: initial;
    width: 100%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-contact-info li {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .about-content {
    padding-right: 30px !important;
    padding-left: 0 !important;
  }

  .our-mission-content {
    padding-left: 30px !important;
    padding-right: 0 !important;
  }

  .faq-accordion {
    padding-right: 30px;
    padding-left: 0;
  }

  .approach-content {
    padding-left: 30px !important;
    padding-right: 0 !important;
  }

  .fovia-nav .navbar .navbar-nav .nav-item .dropdown-menu {
    right: -35px;
  }
}

@media only screen and (max-width: 410px) {
  .header-contact-info {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 13px;
  }

  p {
    font-size: 13px;
  }

  .btn {
    padding: 15px 25px 13.5px 50px;
    font-size: 13px;
  }

  .ptb-100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-title {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 35px;
  }

  .section-title span {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .top-header {
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .header-contact-info {
    text-align: center;
    justify-content: center;
  }

  .header-contact-info li {
    display: flex;
    font-size: 14px;
    margin-right: 5px;
    margin-left: 5px;
  }

  .header-contact-info li i {
    width: auto;
    height: auto;
    line-height: initial;
    border-radius: unset;
    background-color: transparent;
    font-size: 14px;
  }

  .header-contact-info li:last-child {
    margin-bottom: 0;
  }

  .header-right-content {
    text-align: center;
    margin-top: 12px;
  }

  .main-banner {
    height: 100%;
  }

  .home-slides.owl-theme .owl-nav {
    opacity: 1;
    visibility: visible;
  }

  .home-slides.owl-theme .owl-nav .owl-prev,
  .home-slides.owl-theme .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    line-height: 42px;
    font-size: 25px;
    top: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    bottom: 15px;
    z-index: 2;
  }

  .home-slides.owl-theme .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 26px;
  }

  .main-services-area {
    padding-bottom: 30px;
  }

  .main-services-box {
    padding: 20px 15px;
    text-align: center;
  }

  .main-services-box h3 {
    font-size: 17px;
  }

  .main-services-box h3::before {
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .main-services-box p {
    margin-top: 6px;
  }

  .main-services-box .icon {
    width: 55px;
    height: 55px;
    line-height: 65px;
    font-size: 22px;
    margin: 0 auto 18px;
  }

  .about-area .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .about-content {
    text-align: center;
    max-width: 100%;
    margin-top: 30px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .about-content span {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-content ul {
    text-align: left;
  }

  .about-content ul li {
    margin-bottom: 18px;
  }

  .about-image {
    height: auto;
    background-image: unset;
  }

  .about-image img {
    display: block;
  }

  .our-mission-area .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .our-mission-area .row .col-lg-6:first-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .our-mission-area .row .col-lg-6:last-child {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .our-mission-content {
    max-width: 100%;
    text-align: center;
    margin-top: 30px;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .our-mission-content .sub-title {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .our-mission-content h2 {
    font-size: 26px;
  }

  .our-mission-content ul {
    margin-left: -5px;
    margin-right: -5px;
  }

  .our-mission-content ul li {
    font-size: 13px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .our-mission-content ul li .icon {
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .our-mission-content ul li span {
    text-transform: capitalize;
    font-size: 15.5px;
  }

  .our-mission-image {
    height: auto;
    background-image: unset;
  }

  .our-mission-image img {
    display: block;
  }

  .our-approach-area .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .approach-content {
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .approach-content .sub-title {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .approach-content h2 {
    font-size: 26px;
  }

  .approach-content ul {
    text-align: left;
  }

  .approach-content ul li {
    margin-bottom: 18px;
  }

  .approach-image {
    height: auto;
    background-image: unset;
  }

  .approach-image img {
    display: block;
  }

  .fun-facts-area {
    padding-bottom: 30px;
  }

  .single-fun-facts {
    margin-bottom: 30px;
  }

  .single-fun-facts .icon {
    font-size: 30px;
    margin-bottom: 5px;
  }

  .single-fun-facts h3 {
    font-size: 35px;
  }

  .single-fun-facts h3 .optional-icon {
    top: -15px;
    right: 4px;
    font-size: 18px;
  }

  .single-fun-facts p {
    margin-top: 4px;
  }

  .single-services-box {
    padding: 25px;
    text-align: center;
  }

  .single-services-box .icon {
    align-self: center;
  }

  .single-services-box h3 {
    font-size: 17px;
  }

  .more-services-btn {
    margin-top: 5px;
  }

  .services-details-image {
    margin-bottom: 25px;
  }

  .services-details-desc h3 {
    margin-bottom: 12px;
    font-size: 17px;
  }

  .doctor-area {
    padding-bottom: 30px;
  }

  .doctor-area .section-title {
    margin-bottom: 5px;
  }

  .single-doctor-box .doctor-content span {
    font-size: 13.5px;
    margin-top: 6px;
  }

  .doctor-slides.owl-theme .owl-nav {
    transform: translateX(-10px);
    margin-bottom: 30px;
    margin-top: 5px;
  }

  .doctor-slides.owl-theme .owl-nav [class*=owl-] {
    background: #f0f0f0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    position: relative;
    right: 40px;
    top: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    margin: 0 4px;
  }

  .doctor-slides.owl-theme .owl-nav [class*=owl-].owl-next {
    left: -40px;
  }

  .doctor-details-image {
    padding: 25px;
    margin-bottom: 30px;
  }

  .doctor-details-image h3 {
    font-size: 17px;
  }

  .doctor-details-image .social {
    margin-top: 15px;
  }

  .doctor-details-desc {
    padding-left: 0;
    text-align: center;
  }

  .doctor-details-desc h2 {
    font-size: 22px;
    line-height: 1.4;
  }

  .faq-area {
    padding-bottom: 60px;
  }

  .faq-area .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .faq-accordion {
    max-width: 100%;
    margin-top: 30px;
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .faq-accordion .sub-title {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .faq-accordion h2 {
    font-size: 26px;
  }

  .faq-accordion .accordion {
    text-align: left;
  }

  .faq-accordion .accordion .accordion-title {
    font-size: 14px;
  }

  .faq-accordion .accordion .accordion-content {
    font-size: 13px;
  }

  .faq-image {
    height: auto;
    background-image: unset;
  }

  .faq-image img {
    display: block;
  }

  .faq-contact-form {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .faq-contact-form form .btn {
    font-size: 14px;
  }

  .blog-area {
    padding-bottom: 30px;
  }

  .blog-area .widget-area {
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .single-blog-post .post-content {
    padding: 20px;
  }

  .single-blog-post .post-content .post-meta ul li {
    margin-right: 10px;
    font-size: 13px;
  }

  .single-blog-post .post-content .post-meta ul li::before {
    right: -8px;
  }

  .single-blog-post .post-content h3 {
    font-size: 17px;
  }

  .blog-details-desc .article-content .entry-meta ul li {
    display: block;
    font-size: 14px;
    margin-right: 0;
    margin-bottom: 6px;
  }

  .blog-details-desc .article-content .entry-meta ul li:last-child {
    margin-bottom: 0;
  }

  .blog-details-desc .article-content .entry-meta ul li::before {
    display: none;
  }

  .blog-details-desc .article-content h3 {
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 17px;
  }

  .blog-details-desc .article-footer {
    text-align: center;
  }

  .blog-details-desc .article-footer .article-tags {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .blog-details-desc .article-footer .article-share {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 15px;
  }

  .blog-details-desc .article-footer .article-share .social {
    text-align: center;
  }

  .page-title-area {
    height: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .page-title-content h2 {
    font-size: 28px;
  }

  .page-title-content ul {
    margin-top: 6px;
  }

  .page-title-content ul li {
    font-size: 14px;
  }

  .page-title-content ul li::before {
    top: 3px;
  }

  .error-area {
    height: 100%;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .error-content h3 {
    font-size: 25px;
    margin-top: 40px;
    margin-bottom: 10px;
  }

  .pagination-area {
    margin-top: 20px;
  }

  .pagination-area .page-numbers {
    width: 38px;
    height: 38px;
    margin: 0 2px;
    line-height: 38px;
    font-size: 15px;
  }

  .widget-area {
    margin-top: 40px;
  }

  .widget-area .widget {
    padding: 20px;
  }

  .widget-area .widget .widget-title {
    font-size: 17px;
  }

  .widget-area .widget_fovia_posts_thumb .item .info .title {
    font-size: 13.5px;
  }

  .single-product-box .product-content h3 {
    margin-bottom: 10px;
    font-size: 17px;
  }

  .product-details-desc {
    margin-top: 25px;
  }

  .product-details-desc h3 {
    font-size: 17px;
  }

  .order-details {
    margin-top: 30px;
  }

  .order-details .title {
    font-size: 17px;
  }

  .order-details .order-table table thead tr th {
    font-size: 15px;
    white-space: nowrap;
  }

  .contact-form form .btn {
    font-size: 14px;
  }

  .contact-info {
    padding-left: 0;
    margin-top: 30px;
  }

  .contact-info ul li {
    padding-left: 82px;
  }

  /* .contact-info ul li .icon {
    width: 65px;
    height: 65px;
    line-height: 65px;
    font-size: 20px;
  } */

  .contact-info ul li span {
    margin-bottom: 5px;
    font-size: 17px;
  }

  .subscribe-area {
    margin-bottom: 50px;
    padding-bottom: 50px;
  }

  .footer-area {
    padding-top: 50px;
  }

  .single-footer-widget.pl-5 {
    padding-left: 0 !important;
  }

  .single-footer-widget h3 {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .single-footer-widget .departments-list li {
    font-size: 13px;
  }

  .single-footer-widget .links-list li {
    font-size: 13px;
  }

  .single-footer-widget .opening-hours li {
    font-size: 12.5px;
  }

  .copyright-area {
    margin-top: 20px;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .go-top {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 17px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .fovia-responsive-nav .others-options .option-item {
    display: inline-block;
  }

  .about-area .container-fluid {
    max-width: 540px;
  }

  .about-content ul {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 15px;
    margin-left: 15px;
  }

  .about-content ul li {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 50px;
  }

  .about-content ul li i {
    top: 0;
    left: 15px;
  }

  .about-content .btn {
    margin-top: 10px;
  }

  .our-mission-area .container-fluid {
    max-width: 540px;
  }

  .our-approach-area .container-fluid {
    max-width: 540px;
  }

  .approach-content ul {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  .approach-content ul li {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 50px;
  }

  .approach-content ul li i {
    top: 0;
    left: 15px;
  }

  .approach-content .btn {
    margin-top: 10px;
  }

  .faq-area .container-fluid {
    max-width: 540px;
  }

  .blog-details-desc .article-content .entry-meta ul li {
    display: inline-block;
    margin-right: 21px;
    margin-bottom: 0;
  }

  .blog-details-desc .article-content .entry-meta ul li::before {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .btn {
    font-size: 13.5px;
  }

  .ptb-100 {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .section-title span {
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 35px;
  }

  .top-header {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .header-contact-info {
    text-align: center;
    justify-content: center;
  }

  .header-right-content {
    text-align: center;
    margin-top: 10px;
  }

  .fovia-responsive-nav .others-options .option-item {
    display: inline-block;
  }

  .main-banner {
    height: 100%;
  }

  .home-slides.owl-theme .owl-dots {
    bottom: 20px;
  }

  .home-slides.owl-theme .owl-nav {
    position: absolute;
    left: 5px;
    bottom: 10px;
    opacity: 1;
    visibility: visible;
  }

  .home-slides.owl-theme .owl-nav .owl-prev,
  .home-slides.owl-theme .owl-nav .owl-next {
    top: auto;
    position: relative;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    bottom: 0;
    /* left: -60px; */
    margin: 0 5px;
    z-index: 2;
  }

  .home-slides.owl-theme .owl-nav .owl-prev {
    -webkit-transform: translateY(25px) !important;
    transform: translateY(25px) !important;
    margin-right: 20px;
  }

  .home-slides.owl-theme .owl-nav .owl-next {
    right: -60px;
  }

  .main-services-area {
    padding-bottom: 40px;
  }

  .about-area .container-fluid {
    max-width: 720px;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .about-content {
    max-width: 100%;
    margin-top: 35px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .about-content span {
    font-size: 16px;
  }

  .about-content h2 {
    font-size: 35px;
  }

  .about-image {
    height: auto;
    background-image: unset;
  }

  .about-image img {
    display: block;
  }

  .our-mission-area .container-fluid {
    max-width: 720px;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .our-mission-area .row .col-lg-6:first-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .our-mission-area .row .col-lg-6:last-child {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .our-mission-content {
    max-width: 100%;
    margin-left: 0;
    margin-top: 35px;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .our-mission-content h2 {
    font-size: 35px;
  }

  .our-mission-content .sub-title {
    font-size: 16px;
  }

  .our-mission-image {
    height: auto;
    background-image: unset;
  }

  .our-mission-image img {
    display: block;
  }

  .our-approach-area .container-fluid {
    max-width: 720px;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .approach-content {
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 35px;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .approach-content h2 {
    font-size: 35px;
  }

  .approach-content .sub-title {
    font-size: 16px;
  }

  .approach-image {
    height: auto;
    background-image: unset;
  }

  .approach-image img {
    display: block;
  }

  .single-fun-facts h3 {
    font-size: 40px;
  }

  .single-fun-facts h3 .optional-icon {
    top: -20px;
    font-size: 20px;
  }

  .services-details-desc h3 {
    font-size: 20px;
  }

  .blog-details-desc .article-content h3 {
    font-size: 21px;
  }

  .doctor-area {
    padding-bottom: 40px;
  }

  .single-doctor-box {
    padding: 15px;
  }

  .doctor-slides.owl-theme .owl-nav {
    margin-bottom: 30px;
    margin-top: 5px;
  }

  .doctor-slides.owl-theme .owl-nav [class*=owl-] {
    background: #f0f0f0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    position: relative;
    right: 40px;
    top: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    margin: 0 4px;
  }

  .doctor-slides.owl-theme .owl-nav [class*=owl-].owl-next {
    left: -40px;
  }

  .doctor-details-desc {
    text-align: center;
    padding-left: 0;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 35px;
  }

  .doctor-details-desc h2 {
    font-size: 30px;
  }

  .faq-area {
    padding-bottom: 70px;
  }

  .faq-area .container-fluid {
    max-width: 720px;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .faq-accordion {
    max-width: 100%;
    margin-top: 35px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .faq-accordion h2 {
    font-size: 35px;
  }

  .faq-accordion .sub-title {
    font-size: 16px;
  }

  .faq-image {
    height: auto;
    background-image: unset;
  }

  .faq-image img {
    display: block;
  }

  .faq-contact-form form .btn {
    font-size: 15px;
  }

  .blog-area {
    padding-bottom: 40px;
  }

  .blog-area .widget-area {
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .subscribe-area {
    margin-bottom: 50px;
    padding-bottom: 50px;
  }

  .widget-area {
    margin-top: 40px;
  }

  .product-details-desc {
    margin-top: 30px;
  }

  .contact-info {
    padding-left: 0;
    margin-top: 40px;
  }

  .footer-area {
    padding-top: 60px;
  }

  .single-footer-widget.pl-5 {
    padding-left: 0 !important;
  }

  .copyright-area {
    margin-top: 35px;
  }

  .plus-icon {
    display: none !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-contact-info li {
    margin-left: 9px !important;
  }

  .header-contact-info li i {
    margin-right: 2px;
    width: 25px;
    height: 25px;
    line-height: 24px;
    font-size: 12px;
  }

  .fovia-nav .navbar .others-options {
    position: relative;
    top: -2px;
  }

  .fovia-nav .navbar .others-options .btn {
    display: none;
  }

  .about-content {
    max-width: 465px;
    padding-left: 30px;
  }

  .our-mission-content {
    max-width: 465px;
    padding-right: 30px;
  }

  .approach-content {
    max-width: 465px;
    padding-right: 30px;
  }

  .doctor-slides.owl-theme .owl-nav [class*=owl-] {
    left: -25px;
  }

  .doctor-slides.owl-theme .owl-nav [class*=owl-].owl-next {
    left: auto;
    right: -25px;
  }

  .faq-accordion {
    max-width: 465px;
    padding-left: 30px;
  }

  .doctor-details-desc {
    padding-left: 0;
  }
  .contact-info ul li{
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 1199px) and (max-width: 1280px) {
  .doctor-slides.owl-theme .owl-nav [class*=owl-] {
    left: -35px;
  }

  .doctor-slides.owl-theme .owl-nav [class*=owl-].owl-next {
    right: -35px;
  }
}

/*# sourceMappingURL=responsive.css.map */

.text-normal *{
  display: inline !important;
  font-size: 14px !important;
  font-family: "Vazirmatn RD FD", sans-serif !important;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}