@charset "UTF-8";


/* Side Header Arrow Animations */

@-webkit-keyframes sideMenuArrow {
  0% {
    left: 5px;
  }

  50% {
    left: 10px;
  }

  100% {
    left: 5px;
  }
}

@keyframes sideMenuArrow {
  0% {
    left: 5px;
  }

  50% {
    left: 10px;
  }

  100% {
    left: 5px;
  }
}

@-webkit-keyframes sideMenuArrowBack {
  0% {
    right: 5px;
  }

  50% {
    right: 10px;
  }

  100% {
    right: 5px;
  }
}

@keyframes sideMenuArrowBack {
  0% {
    right: 5px;
  }

  50% {
    right: 10px;
  }

  100% {
    right: 5px;
  }
}

/* Mask Up */

@-webkit-keyframes maskUp {
  from {
    transform: translate(0, 100%);
  }

  to {
    transform: translate(0, 0);
  }
}

@keyframes maskUp {
  from {
    transform: translate(0, 100%);
  }

  to {
    transform: translate(0, 0);
  }
}

/* Mask Right */

@-webkit-keyframes maskRight {
  from {
    transform: translate(-100%, 0);
  }

  to {
    transform: translate(0, 0);
  }
}

@keyframes maskRight {
  from {
    transform: translate(-100%, 0);
  }

  to {
    transform: translate(0, 0);
  }
}

/* Mask Down */

@-webkit-keyframes maskDown {
  from {
    transform: translate(0, -100%);
  }

  to {
    transform: translate(0, 0);
  }
}

@keyframes maskDown {
  from {
    transform: translate(0, -100%);
  }

  to {
    transform: translate(0, 0);
  }
}

/* Mask Left */

@-webkit-keyframes maskLeft {
  from {
    transform: translate(100%, 0);
  }

  to {
    transform: translate(0, 0);
  }
}

@keyframes maskLeft {
  from {
    transform: translate(100%, 0);
  }

  to {
    transform: translate(0, 0);
  }
}

@-webkit-keyframes headerReveal {
  from {
    top: -150px;
  }

  to {
    top: 0;
  }
}

@keyframes headerReveal {
  from {
    top: -150px;
  }

  to {
    top: 0;
  }
}

/* Fade In Up Shorter */

@-webkit-keyframes fadeInUpShorter {
  from {
    opacity: 0;
    transform: translate(0, 50px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUpShorter {
  from {
    opacity: 0;
    transform: translate(0, 50px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Fade In Up Shorter Plus */

@-webkit-keyframes fadeInUpShorterPlus {
  from {
    opacity: 0;
    transform: translate(0, 15px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUpShorterPlus {
  from {
    opacity: 0;
    transform: translate(0, 15px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Fade In Left Shorter */

@-webkit-keyframes fadeInLeftShorter {
  from {
    opacity: 0;
    transform: translate(50px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeftShorter {
  from {
    opacity: 0;
    transform: translate(50px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Fade In Left Shorter Plus */

@-webkit-keyframes fadeInLeftShorterPlus {
  from {
    opacity: 0;
    transform: translate(15px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeftShorterPlus {
  from {
    opacity: 0;
    transform: translate(15px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Fade In Right Shorter */

@-webkit-keyframes fadeInRightShorter {
  from {
    opacity: 0;
    transform: translate(-50px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRightShorter {
  from {
    opacity: 0;
    transform: translate(-50px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Fade In Right Shorter Plus */

@-webkit-keyframes fadeInRightShorterPlus {
  from {
    opacity: 0;
    transform: translate(-15px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRightShorterPlus {
  from {
    opacity: 0;
    transform: translate(-15px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Fade In Right Shorter With Opacity */

@-webkit-keyframes fadeInRightShorterOpacity {
  from {
    opacity: 0;
    transform: translate(-50px, 0);
  }

  to {
    opacity: 0.7;
    transform: none;
  }
}

@keyframes fadeInRightShorterOpacity {
  from {
    opacity: 0;
    transform: translate(-50px, 0);
  }

  to {
    opacity: 0.7;
    transform: none;
  }
}

/* Fade In Down Shorter */

@-webkit-keyframes fadeInDownShorter {
  from {
    opacity: 0;
    transform: translate(0, -50px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDownShorter {
  from {
    opacity: 0;
    transform: translate(0, -50px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Fade In Down Shorter Plus */

@-webkit-keyframes fadeInDownShorterPlus {
  from {
    opacity: 0;
    transform: translate(0, -15px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDownShorterPlus {
  from {
    opacity: 0;
    transform: translate(0, -15px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Fade In Right and Down Shorter */

@-webkit-keyframes fadeInRightDownShorter {
  from {
    opacity: 0;
    transform: translate(-50px, -50px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRightDownShorter {
  from {
    opacity: 0;
    transform: translate(-50px, -50px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Fade In Right and Up Shorter */

@-webkit-keyframes fadeInRightUpShorter {
  from {
    opacity: 0;
    transform: translate(-50px, 50px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRightUpShorter {
  from {
    opacity: 0;
    transform: translate(-50px, 50px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Fade In Left and Down Shorter */

@-webkit-keyframes fadeInLeftDownShorter {
  from {
    opacity: 0;
    transform: translate(50px, -50px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeftDownShorter {
  from {
    opacity: 0;
    transform: translate(50px, -50px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Fade In Left and Up Shorter */

@-webkit-keyframes fadeInLeftUpShorter {
  from {
    opacity: 0;
    transform: translate(50px, 50px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeftUpShorter {
  from {
    opacity: 0;
    transform: translate(50px, 50px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Expand In */

@-webkit-keyframes expandIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes expandIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Gradient Transition */

@-webkit-keyframes gradientTransition {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradientTransition {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Slider Scroll Button Animation */

@-webkit-keyframes sliderScrollButton {
  0% {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }

  70% {
    opacity: 1;
    transform: translate3d(-50%, 10px, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(-50%, 10px, 0);
  }
}

@keyframes sliderScrollButton {
  0% {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }

  70% {
    opacity: 1;
    transform: translate3d(-50%, 10px, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(-50%, 10px, 0);
  }
}

/* Arrow Left Right */

@-webkit-keyframes arrowLeftRight {
  0% {
    transform: translate3d(-1px, 0, 0);
  }

  50% {
    transform: translate3d(1px, 0, 0);
  }

  100% {
    transform: translate3d(-1px, 0, 0);
  }
}

@keyframes arrowLeftRight {
  0% {
    transform: translate3d(-1px, 0, 0);
  }

  50% {
    transform: translate3d(1px, 0, 0);
  }

  100% {
    transform: translate3d(-1px, 0, 0);
  }
}

/* Nav Item Arrow */

@-webkit-keyframes navItemArrow {
  0% {
    position: relative;
    left: -1px;
  }

  50% {
    position: relative;
    left: 3px;
  }

  100% {
    position: relative;
    left: -1px;
  }
}

@keyframes navItemArrow {
  0% {
    position: relative;
    left: -1px;
  }

  50% {
    position: relative;
    left: 3px;
  }

  100% {
    position: relative;
    left: -1px;
  }
}

/* Hover 3d Effect */

/* Hotspot */

@-webkit-keyframes hotspot-pulsate {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  45% {
    transform: scale(1.75);
    opacity: 0;
  }
}

@keyframes hotspot-pulsate {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  45% {
    transform: scale(1.75);
    opacity: 0;
  }
}

@-webkit-keyframes stop-hotspot-pulsate {
  from {
    opacity: 0.4;
  }

  to {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes stop-hotspot-pulsate {
  from {
    opacity: 0.4;
  }

  to {
    transform: scale(2);
    opacity: 0;
  }
}

/* Dot Pulse */

@-webkit-keyframes dotPulse {
  from {
    opacity: 1;
    transform: scale(0.2);
  }

  to {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes dotPulse {
  from {
    opacity: 1;
    transform: scale(0.2);
  }

  to {
    opacity: 0;
    transform: scale(1);
  }
}

/* Blur In */

@-webkit-keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(20px);
    transform: scale(1.3);
  }

  to {
    opacity: 1;
    filter: blur(0.1px);
    transform: none;
  }
}

@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(20px);
    transform: scale(1.3);
  }

  to {
    opacity: 1;
    filter: blur(0.1px);
    transform: none;
  }
}

/* Ken Burns To Right */

@-webkit-keyframes kenBurnsToRight {
  from {
    transform: scale(1.2);
  }

  to {
    transform: scale(1);
  }
}

@keyframes kenBurnsToRight {
  from {
    transform: scale(1.2);
  }

  to {
    transform: scale(1);
  }
}

/* Ken Burns To Left and Top */

/* Ken Burns To Left */

@-webkit-keyframes kenBurnsToLeft {
  from {
    transform: scale(1.2);
  }

  to {
    transform: scale(1);
  }
}

@keyframes kenBurnsToLeft {
  from {
    transform: scale(1.2);
  }

  to {
    transform: scale(1);
  }
}

/* Ken Burns To Left and Top */

/* Moving From Top to Bottom */

@-webkit-keyframes bgPositionBottomToTop {
  from {
    background-position: bottom;
  }

  to {
    background-position: top;
  }
}

@keyframes bgPositionBottomToTop {
  from {
    background-position: bottom;
  }

  to {
    background-position: top;
  }
}

/* Pulse */

@-webkit-keyframes pulseAnim {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes pulseAnim {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Basic Rotation */

@-webkit-keyframes basicRotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes basicRotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Block Slide */

@-webkit-keyframes blockSlideToRight {
  from {
    transform: translate(-110%, 0);
  }

  to {
    transform: translate(110%, 0);
  }
}

@keyframes blockSlideToRight {
  from {
    transform: translate(-110%, 0);
  }

  to {
    transform: translate(110%, 0);
  }
}

@-webkit-keyframes blockSlideToLeft {
  from {
    transform: translate(110%, 0);
  }

  to {
    transform: translate(-110%, 0);
  }
}

@keyframes blockSlideToLeft {
  from {
    transform: translate(110%, 0);
  }

  to {
    transform: translate(-110%, 0);
  }
}

@-webkit-keyframes blockSlideToTop {
  from {
    transform: translate(0, 110%);
  }

  to {
    transform: translate(0, -110%);
  }
}

@keyframes blockSlideToTop {
  from {
    transform: translate(0, 110%);
  }

  to {
    transform: translate(0, -110%);
  }
}

@-webkit-keyframes blockSlideToBottom {
  from {
    transform: translate(0, -110%);
  }

  to {
    transform: translate(0, 110%);
  }
}

@keyframes blockSlideToBottom {
  from {
    transform: translate(0, -110%);
  }

  to {
    transform: translate(0, 110%);
  }
}

/* SVG Animation Effect 1 */

@-webkit-keyframes svgAnimationEffect1 {
  from {
    stroke-dasharray: 1000;
    stroke-dashoffset: -500;
  }

  to {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
  }
}

@keyframes svgAnimationEffect1 {
  from {
    stroke-dasharray: 1000;
    stroke-dashoffset: -500;
  }

  to {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
  }
}

/* Arrows */

/* Responsive */

/* Labels */

/* Circular Bars */

/* Progress */

/* Breadcrumb */

/* Buttons */

.btn {
  font-size: 12.8px;
  font-size: 0.8rem;
  padding: 8.528px 14.928px;
  padding: 0.533rem 0.933rem;
  cursor: pointer;
  font-weight: 600;
}

.btn.btn-xs {
  font-size: 11.2px;
  font-size: 0.7rem;
  padding: 3.2px 8px;
  padding: 0.2rem 0.5rem;
}

.btn.btn-sm {
  font-size: 12.8px;
  font-size: 0.8rem;
  padding: 4.8px 10.4px;
  padding: 0.3rem 0.65rem;
}

.btn.btn-lg {
  font-size: 16px;
  font-size: 1rem;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
}

.btn.btn-px-1 {
  padding-left: 5.6px;
  padding-left: .35rem;
  padding-right: 5.6px;
  padding-right: .35rem;
}

.btn.btn-px-2 {
  padding-left: 12px;
  padding-left: .75rem;
  padding-right: 12px;
  padding-right: .75rem;
}

.btn.btn-px-3 {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}

.btn.btn-px-4 {
  padding-left: 28px;
  padding-left: 1.75rem;
  padding-right: 28px;
  padding-right: 1.75rem;
}

.btn.btn-px-5 {
  padding-left: 38.4px;
  padding-left: 2.4rem;
  padding-right: 38.4px;
  padding-right: 2.4rem;
}

html body .btn:focus,html body .btn.active,html body .btn:active,html body.body .btn:focus,html body.body .btn.active,html body.body .btn:active {
  box-shadow: none !important;
}

/* Dropdown Buttons */

/* Default */

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
  box-shadow: none !important;
}

.btn-default:hover,.btn-default:active,.btn-default:focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

/* Outline */

/* Modern */

/* Rounded */

/* Rounded */

/* 3d */

.btn-3d {
  border-bottom-width: 3px;
}

/* Arrow */

/* Swap */

.btn-swap-1 {
  position: relative;
}

.btn-swap-1 > * {
  transition: cubic-bezier(0.55, 0, 0.1, 1) all 300ms;
  white-space: nowrap;
}

.btn-swap-1 > :nth-child(1) {
  max-width: 100%;
  text-align: center;
  top: calc(50% - 10px);
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  position: absolute;
}

.btn-swap-1 > :nth-child(2) {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
}

.btn-swap-1:hover > :nth-child(1) {
  transform: translate(-50%, -120%);
  opacity: 0;
}

.btn-swap-1:hover > :nth-child(2) {
  transform: none;
  opacity: 1;
}

@-webkit-keyframes btnArrowEffect1 {
  0% {
    transform: translateX(0);
  }

  51% {
    transform: translateX(20px);
    opacity: 1;
  }

  52% {
    opacity: 0;
    transform: translateX(-20px);
  }

  53% {
    opacity: 0;
  }

  54% {
    opacity: 1;
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes btnArrowEffect1 {
  0% {
    transform: translateX(0);
  }

  51% {
    transform: translateX(20px);
    opacity: 1;
  }

  52% {
    opacity: 0;
    transform: translateX(-20px);
  }

  53% {
    opacity: 0;
  }

  54% {
    opacity: 1;
  }

  100% {
    transform: translateX(0);
  }
}

/* Icons	*/

.btn-icon i {
  margin-right: 10px;
}

/* Dropdown Button */

.btn.dropdown-toggle:after {
  margin-left: .155em;
  vertical-align: .155em;
}

/* Colors */

.btn-info {
  background-color: #17a2b8;
  border-color: #17a2b8 #17a2b8 #117a8b;
  color: #FFF;
}

.btn-info:hover {
  background-color: #1bc0da;
  border-color: #1fc8e3 #1fc8e3 #17a2b8;
  color: #FFF;
}

.btn-info:focus {
  box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.5);
}

.btn-info:disabled {
  background-color: #17a2b8;
  border-color: #17a2b8 #17a2b8 #117a8b;
}

.btn-info:active,.btn-info.active {
  background-color: #138496;
  background-image: none;
  border-color: #117a8b #117a8b #0c525d;
}

.btn-dark {
  background-color: #212529;
  border-color: #212529 #212529 #0a0c0d;
  color: #FFF;
}

.btn-dark:hover {
  background-color: #32383e;
  border-color: #383f45 #383f45 #212529;
  color: #FFF;
}

.btn-dark:focus {
  box-shadow: 0 0 0 3px rgba(33, 37, 41, 0.5);
}

.btn-dark:disabled {
  background-color: #212529;
  border-color: #212529 #212529 #0a0c0d;
}

.btn-dark:active,.btn-dark.active {
  background-color: #101214;
  background-image: none;
  border-color: #0a0c0d #0a0c0d black;
}

/* Button Light */

html body .btn-light {
  border-color: #d9d9d9 #d9d9d9 #bfbfbf;
  color: #777;
}

html body .btn-light:hover {
  background-color: #f2f2f2;
  border-color: #e6e5e5 #e6e5e5 #cccccc;
  color: #777;
}

html body .btn-light:focus {
  box-shadow: 0 0 0 3px rgba(191, 191, 191, 0.5);
}

html body .btn-light:disabled {
  border-color: #bfbfbf #bfbfbf #bfbfbf;
}

html body .btn-light:active,html body .btn-light.active {
  border-color: #bfbfbf #bfbfbf #bfbfbf;
}

html body .btn-light-2 {
  border-color: #FFF;
  color: #FFF;
}

html body .btn-light-2:hover {
  background-color: #FFF;
  border-color: #FFF;
  color: #0e0e0e;
}

html body .btn-light-2:focus {
  box-shadow: 0 0 0 3px rgba(179, 178, 178, 0.5);
}

html body .btn-light-2:disabled {
  border-color: #b3b2b2 #b3b2b2 #b3b2b2;
}

html body .btn-light-2:active,html body .btn-light-2.active {
  border-color: #FFF;
}

/* Hamburguer */

/* Hamburguer Sticky Colors */

/* Badge */

/* Gradient */

/* Play Button Size */

/* Curcle Buttons */

/* Effect */

.btn.btn-effect-1 {
  transition: 0.25s;
}

.btn.btn-effect-1:hover,.btn.btn-effect-1:focus {
  box-shadow: inset 0 0 0 2em var(--hover);
}

.btn.btn-effect-2 {
  transition: 0.25s;
}

.btn.btn-effect-2:hover,.btn.btn-effect-2:focus {
  -webkit-animation: btn-pulse 1s;
  animation: btn-pulse 1s;
  box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
}

.btn.btn-effect-3 {
  transition: 0.25s;
}

.btn.btn-effect-3:hover,.btn.btn-effect-3:focus {
  box-shadow: inset -3.5em 0 0 0 var(--hover), inset 3.5em 0 0 0 var(--hover);
}

.btn.btn-effect-4 {
  transition: 0.25s;
}

.btn.btn-effect-4:hover,.btn.btn-effect-4:focus {
  box-shadow: 0 0.5em 0.5em -0.4em var(--hover);
  transform: translateY(-0.25em);
}

.btn.btn-effect-5 {
  transition: 0.25s;
}

.btn.btn-effect-5:hover,.btn.btn-effect-5:focus {
  box-shadow: inset 0 -3.25em 0 0 var(--hover);
}

.btn.btn-effect-6 {
  transition: 0.25s;
}

.btn.btn-effect-6:hover,.btn.btn-effect-6:focus {
  box-shadow: inset 6.5em 0 0 0 var(--hover);
}

.btn.btn-effect-7 {
  position: relative;
}

.btn.btn-effect-7:before {
  background: var(--hover);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  transition: transform 0.2s cubic-bezier(0.4, 0.3, 0.35, 0.9) 0s;
  transform: scaleX(0);
  transform-origin: right center;
}

.btn.btn-effect-7:hover:before,.btn.btn-effect-7:focus:before {
  transform: scale(1);
  transform-origin: left center;
}

@-webkit-keyframes btn-pulse {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}

@keyframes btn-pulse {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}

/* Call to Action */

/* Responsive */

/*
* IE 11 Fixes
*/

/*
* IE 9 Fixes
*/

/* Cards */

/* Border */

/* Flip Card */

/* Owl Carousel */

.owl-carousel {
  display: block;
  margin-bottom: 20px;
  opacity: 0;
  /* Remove Nav */
  /* Show Nav Hover */
  /* Show Nav Title */
  /* Rounded Nav */
  /* Nav Bottom */
  /* Nav Bottom Inside */
  /* Nav Inside */
  /* Nav Outside */
  /* Nav Position */
  /* Nav Icon */
  /* Nav Size */
  /* Nav Styles */
  /* Dots */
  /* Image Thumbnail */
}

.owl-carousel .owl-nav {
  top: 50%;
  position: absolute;
  width: 100%;
  margin-top: 0;
  transform: translate3d(0, -50%, 0);
}

.owl-carousel.top-border {
  border-top: 1px solid #eaeaea;
  padding-top: 18px;
}

.owl-carousel.nav-bottom .owl-nav {
  position: static;
  margin: 0;
  padding: 0;
  width: auto;
  transform: none;
}

.owl-carousel.nav-bottom.nav-bottom-align-left .owl-nav {
  text-align: left;
}

.owl-carousel.nav-style-3 .owl-nav {
  top: 25%;
}

.owl-carousel.nav-squared .owl-nav button[class*="owl-"] {
  border-radius: 0;
}

.owl-carousel.carousel-shadow-1 {
  position: relative;
}

.owl-carousel.carousel-shadow-1:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65%;
  height: 0px;
  box-shadow: 0 0 110px 180px rgba(0, 0, 0, 0.04);
  transform: translate3d(-50%, -50%, 0);
  z-index: 0;
}

/* Right Side Nav */

/* Bottom Inside Shadow */

/* Hover Items with Opacity */

.owl-carousel [class*="opacity-"]:not([class*="opacity-hover"]) {
  transition: ease opacity 300ms;
}

.owl-carousel [class*="opacity-"]:not([class*="opacity-hover"]):hover {
  opacity: 1 !important;
}

/* Carousel Sync */

/* Spaced */

/* Testimonials */

/* Responsive */

/* Carousel Half Full Width */

/* Carousel Areas */

/* Responsive */

/* Carousel Center Active Item */

/* Carousel Center Active Item 2 */

/* Carousel Center Active Item 3 */

/* Owl Carousel Performance */

/* Cascading Images */

/* Countdown */

/* Counters */

/* Dividers */

@-webkit-keyframes dividerProgress25 {
  from {
    width: 0;
  }

  to {
    width: 25%;
  }
}

@keyframes dividerProgress25 {
  from {
    width: 0;
  }

  to {
    width: 25%;
  }
}

/* Divider Borders */

/* Dropdowns */

.dropdown.dropdown-style-1 .dropdown-toggle {
  display: flex;
  align-items: center;
  padding: 16px 17.6px;
  padding: 1rem 1.1rem;
  background: #FFF;
  border-radius: 0;
  border-right: 1px solid #ededed;
  min-width: 280px;
  font-weight: bold;
  text-decoration: none;
}

.dropdown.dropdown-style-1 .dropdown-toggle:after {
  content: '\f107';
  position: absolute;
  right: 17.6px;
  right: 1.1rem;
  top: 50%;
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  transform: translate3d(0, -50%, 0);
  border: 0;
  margin: 0;
  width: 10px;
  height: 10px;
  line-height: 10px;
}

.dropdown.dropdown-style-1 .dropdown-toggle > i {
  display: none;
}

/* Icon Featured */

/* Featured Box */

/* Featured Box Left */

/* Featured Boxes - Flat */

/* Featured Boxes - Style 2 */

/* Featured Boxes - Style 3 */

/* Featured Boxes - Style 4 */

/* Featured Boxes - Style 5, 6, 7 and 9 */

/* Featured Boxes - Style 6 */

/* Featured Boxes - Style 7 */

/* Featured Boxes - Style 8 */

/* Featured Boxes - Style 9 */

/* Featured Boxes Modern */

/* Featured Boxes */

/* Effects */

@-webkit-keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }

  50% {
    opacity: 0;
    transform: translate(-100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }

  50% {
    opacity: 0;
    transform: translate(-100%);
  }

  51% {
    opacity: 1;
  }
}

/* Feature Box */

/* Style 2 */

/* Style 3 */

/* Style 4 */

/* Style 5 */

/* Style 6 */

/* Feature Box Icon Size */

/* Reverse All Resolutions */

/* Reverse */

/* Full Width */

/*
* IE
*/

/* Forms */

textarea {
  resize: vertical;
}

.page-link {
  border-color: rgba(0, 0, 0, 0.06);
}

/* Form - iOS Override */

input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],textarea {
  -webkit-appearance: none;
}

input[type="text"]::-webkit-input-placeholder,input[type="password"]::-webkit-input-placeholder,input[type="datetime"]::-webkit-input-placeholder,input[type="datetime-local"]::-webkit-input-placeholder,input[type="date"]::-webkit-input-placeholder,input[type="month"]::-webkit-input-placeholder,input[type="time"]::-webkit-input-placeholder,input[type="week"]::-webkit-input-placeholder,input[type="number"]::-webkit-input-placeholder,input[type="email"]::-webkit-input-placeholder,input[type="url"]::-webkit-input-placeholder,input[type="search"]::-webkit-input-placeholder,input[type="tel"]::-webkit-input-placeholder,input[type="color"]::-webkit-input-placeholder,textarea::-webkit-input-placeholder {
  color: #bdbdbd;
}

input[type="text"]::-moz-placeholder,input[type="password"]::-moz-placeholder,input[type="datetime"]::-moz-placeholder,input[type="datetime-local"]::-moz-placeholder,input[type="date"]::-moz-placeholder,input[type="month"]::-moz-placeholder,input[type="time"]::-moz-placeholder,input[type="week"]::-moz-placeholder,input[type="number"]::-moz-placeholder,input[type="email"]::-moz-placeholder,input[type="url"]::-moz-placeholder,input[type="search"]::-moz-placeholder,input[type="tel"]::-moz-placeholder,input[type="color"]::-moz-placeholder,textarea::-moz-placeholder {
  color: #bdbdbd;
}

input[type="text"]:-ms-input-placeholder,input[type="password"]:-ms-input-placeholder,input[type="datetime"]:-ms-input-placeholder,input[type="datetime-local"]:-ms-input-placeholder,input[type="date"]:-ms-input-placeholder,input[type="month"]:-ms-input-placeholder,input[type="time"]:-ms-input-placeholder,input[type="week"]:-ms-input-placeholder,input[type="number"]:-ms-input-placeholder,input[type="email"]:-ms-input-placeholder,input[type="url"]:-ms-input-placeholder,input[type="search"]:-ms-input-placeholder,input[type="tel"]:-ms-input-placeholder,input[type="color"]:-ms-input-placeholder,textarea:-ms-input-placeholder {
  color: #bdbdbd;
}

/* Placeholder Light */

/* Form - Bootstrap Override */

.btn-lg {
  line-height: 1.334;
}

/* Custom Checkbox */

/* Custom Checkbox Switch */

/* Forms Validations */

/* Search Cancel Button */

input[type="search" i]::-webkit-search-cancel-button {
  margin-right: -7px !important;
}

/* Simple Search */

/* Search With Select */

/* Captcha */

/* Form Styles */

/* Floating Labels */

/* Fallback for Edge
-------------------------------------------------- */

@supports (-ms-ime-align: auto) {
  .form-label-group {
    display: flex;
    flex-direction: column-reverse;
  }

  .form-label-group label {
    position: static;
  }

  .form-label-group input::-ms-input-placeholder {
    color: #777;
  }
}

/* Form Squared Borders */

/* Form With Icons */

/* Form Fields Rounded */

/* Form With Shadow */

/* Form Fieds Size - Global class to increase size of form controls */

/* Form Fieds Font Size - Global class to increase font size of form controls */

/* GDPR */

[data-plugin-gdpr-wrapper] {
  opacity: 0;
  transition: ease opacity 300ms;
}

/* Headings */

h1,h2,h3,h4,h5,h6 {
  color: #212529;
  font-weight: 200;
  letter-spacing: -.05em;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-size: 2.6em;
  line-height: 44px;
  margin: 0 0 32px 0;
}

h2 {
  font-size: 2.2em;
  font-weight: 300;
  line-height: 42px;
  margin: 0 0 32px 0;
}

h3 {
  font-size: 1.8em;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 33px;
  text-transform: uppercase;
}

h4 {
  font-size: 1.4em;
  font-weight: 600;
  line-height: 27px;
  margin: 0 0 14px 0;
}

h5 {
  font-size: 1em;
  font-weight: 600;
  line-height: 18px;
  margin: 0 0 14px 0;
  text-transform: uppercase;
}

h6 {
  color: #333;
  font-size: 1em;
  font-weight: 400;
  line-height: 18px;
  margin: 0 0 14px 0;
}

h1.small {
  font-size: 2.2em;
  line-height: 42px;
  font-weight: 600;
}

h1.dark,h2.dark,h3.dark,h4.dark,h5.dark {
  color: #212529;
}

h1.light,h2.light,h3.light,h4.light,h5.light,h6.light {
  color: #FFF;
}

h1.text-shadow,h2.text-shadow,h3.text-shadow,h4.text-shadow,h5.text-shadow,h6.text-shadow {
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

/* Heading */

/* Modal Titles */

/* Responsive */

@media (max-width: 575px) {
  h2 {
    line-height: 40px;
  }
}

/* Highlight */

/* Icons */

/* Font Awesome List */

/* Simple Line Icons List */

/* Porto Icons */

/* Area Expanded Change */

/* Icon Animated */

[data-icon] {
  opacity: 0;
}

/* Elements Shadow Icon */

/* Custom Image Icons */

.icon-bg {
  display: inline-block;
  background: url(../img/icons/icons.png) no-repeat;
  width: 80px;
  height: 80px;
}

.icon-1 {
  background-position: -10px -10px;
}

.icon-2 {
  background-position: -110px -10px;
}

.icon-3 {
  background-position: -210px -10px;
}

.icon-plugin-1 {
  background-position: 0 100%;
  width: 115px;
  height: 115px;
}

.icon-plugin-2 {
  background-position: -115px 100%;
  width: 115px;
  height: 115px;
}

/* Thumbnails */

/* Image Gallery */

ul.image-gallery {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Thumbnail Gallery */

/* Responsive */

/* Masonry */

/* Masonry Loading */

/* Mockup */

/* Hover Effect 3d */

/* Profile Image */

/* Lazy */

.lazy-bg {
  background-image: url(img/lazy.png);
}

/* Thumb Gallery */

/* Arrows */

/* Close */

/* No Margins */

/* Zoom */

/* Animnate */

/* Fade */

/* Dialog */

/* White Popup Block */

/* Lightbox Opened */

/* Modal Opened */

/* List */

/* Sitemap */

/* Loading Overlay */

/* Bounce Loading */

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

@keyframes bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

/* Loading Overlay Percentage */

/* Cubes Effect */

@-webkit-keyframes cssload-fold-thecube {
  0%, 10% {
    transform: perspective(129px) rotateX(-180deg);
    opacity: 0;
  }

  25%, 75% {
    transform: perspective(129px) rotateX(0deg);
    opacity: 1;
  }

  90%, 100% {
    transform: perspective(129px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes cssload-fold-thecube {
  0%, 10% {
    transform: perspective(129px) rotateX(-180deg);
    opacity: 0;
  }

  25%, 75% {
    transform: perspective(129px) rotateX(0deg);
    opacity: 1;
  }

  90%, 100% {
    transform: perspective(129px) rotateY(180deg);
    opacity: 0;
  }
}

/* Cube Progress Effect */

@-webkit-keyframes cssload-cube-progress {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(180deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes cssload-cube-progress {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(180deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes cssload-cube-progress-inner {
  0% {
    height: 0%;
  }

  25% {
    height: 0%;
  }

  50% {
    height: 100%;
  }

  75% {
    height: 100%;
  }

  100% {
    height: 0%;
  }
}

@keyframes cssload-cube-progress-inner {
  0% {
    height: 0%;
  }

  25% {
    height: 0%;
  }

  50% {
    height: 100%;
  }

  75% {
    height: 100%;
  }

  100% {
    height: 0%;
  }
}

/* Float Rings Effect */

@-webkit-keyframes cssload-rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes cssload-rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@-webkit-keyframes cssload-rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@keyframes cssload-rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@-webkit-keyframes cssload-rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}

@keyframes cssload-rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}

/* Float Bars Effect */

@-webkit-keyframes cssload-upDown {
  from {
    transform: translateY(19px);
  }

  to {
    transform: translateY(-19px);
  }
}

@keyframes cssload-upDown {
  from {
    transform: translateY(19px);
  }

  to {
    transform: translateY(-19px);
  }
}

@-webkit-keyframes cssload-upDown2 {
  from {
    transform: translateY(29px);
  }

  to {
    transform: translateY(-19px);
  }
}

@keyframes cssload-upDown2 {
  from {
    transform: translateY(29px);
  }

  to {
    transform: translateY(-19px);
  }
}

/* Speeding Wheel */

@-webkit-keyframes cssload-spin {
  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes cssload-spin {
  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Zenith Effect */

@keyframes cssload-spin {
  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Spinning Square Effect */

@keyframes cssload-spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes cssload-blur1 {
  to {
    transform: rotate(-30deg);
  }
}

@keyframes cssload-blur1 {
  to {
    transform: rotate(-30deg);
  }
}

@-webkit-keyframes cssload-blur2 {
  to {
    transform: rotate(-15deg);
  }
}

@keyframes cssload-blur2 {
  to {
    transform: rotate(-15deg);
  }
}

/* Pulse */

@-webkit-keyframes cssload-pulse-loader {
  from {
    transform: scale(0);
    opacity: 1;
  }

  to {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes cssload-pulse-loader {
  from {
    transform: scale(0);
    opacity: 1;
  }

  to {
    transform: scale(1);
    opacity: 0;
  }
}

/* Maps */

.google-map {
  background: #E5E3DF;
  height: 400px;
  margin: -35px 0 30px 0;
  width: 100%;
}

.google-map.small {
  height: 250px;
  border-radius: 6px;
  margin: 0;
  clear: both;
}

.google-map img {
  max-width: 9999px;
}

.google-map-borders {
  border: 1px solid #DDD;
  padding: 4px;
  border-radius: 4px;
}

/* Map Pins */

@-webkit-keyframes mapPinPulse {
  from {
    transform: scale(1);
    opacity: 0.7;
  }

  to {
    transform: scale(10);
    opacity: 0;
  }
}

@keyframes mapPinPulse {
  from {
    transform: scale(1);
    opacity: 0.7;
  }

  to {
    transform: scale(10);
    opacity: 0;
  }
}

/* Map Info Window */

/* Google Map on Footer */

.google-map-footer {
  margin: 35px 0 -50px !important;
}

/* RTL Popup */

/* Min Height */

/* Hide Text */

/* Box Shadow */

.box-shadow-1:before {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0.33;
  content: '';
  box-shadow: 0 30px 90px #BBB;
  transition: all 0.2s ease-in-out;
}

/* Border Radius */

.border-radius {
  border-radius: 4px !important;
}

.border-radius.box-shadow-1:before {
  border-radius: 4px !important;
}

.border-radius-2 {
  border-radius: 8px !important;
}

.border-radius-2.box-shadow-1:before {
  border-radius: 8px !important;
}

/* Height */

.h-50px {
  height: 50px;
}

.h-min-50px {
  min-height: 50px;
}

.h-100px {
  height: 100px;
}

.h-min-100px {
  min-height: 100px;
}

.h-150px {
  height: 150px;
}

.h-min-150px {
  min-height: 150px;
}

.h-200px {
  height: 200px;
}

.h-min-200px {
  min-height: 200px;
}

.h-250px {
  height: 250px;
}

.h-min-250px {
  min-height: 250px;
}

.h-300px {
  height: 300px;
}

.h-min-300px {
  min-height: 300px;
}

.h-350px {
  height: 350px;
}

.h-min-350px {
  min-height: 350px;
}

.h-400px {
  height: 400px;
}

.h-min-400px {
  min-height: 400px;
}

.h-450px {
  height: 450px;
}

.h-min-450px {
  min-height: 450px;
}

.h-500px {
  height: 500px;
}

.h-min-500px {
  min-height: 500px;
}

.h-550px {
  height: 550px;
}

.h-min-550px {
  min-height: 550px;
}

.h-600px {
  height: 600px;
}

.h-min-600px {
  min-height: 600px;
}

.h-650px {
  height: 650px;
}

.h-min-650px {
  min-height: 650px;
}

.h-700px {
  height: 700px;
}

.h-min-700px {
  min-height: 700px;
}

.h-750px {
  height: 750px;
}

.h-min-750px {
  min-height: 750px;
}

.h-800px {
  height: 800px;
}

.h-min-800px {
  min-height: 800px;
}

.h-850px {
  height: 850px;
}

.h-min-850px {
  min-height: 850px;
}

.h-900px {
  height: 900px;
}

.h-min-900px {
  min-height: 900px;
}

.h-950px {
  height: 950px;
}

.h-min-950px {
  min-height: 950px;
}

.h-1000px {
  height: 1000px;
}

.h-min-1000px {
  min-height: 1000px;
}

@media (min-width: 576px) {
  .h-sm-50px {
    height: 50px;
  }

  .h-sm-min-50px {
    min-height: 50px;
  }

  .h-sm-100px {
    height: 100px;
  }

  .h-sm-min-100px {
    min-height: 100px;
  }

  .h-sm-150px {
    height: 150px;
  }

  .h-sm-min-150px {
    min-height: 150px;
  }

  .h-sm-200px {
    height: 200px;
  }

  .h-sm-min-200px {
    min-height: 200px;
  }

  .h-sm-250px {
    height: 250px;
  }

  .h-sm-min-250px {
    min-height: 250px;
  }

  .h-sm-300px {
    height: 300px;
  }

  .h-sm-min-300px {
    min-height: 300px;
  }

  .h-sm-350px {
    height: 350px;
  }

  .h-sm-min-350px {
    min-height: 350px;
  }

  .h-sm-400px {
    height: 400px;
  }

  .h-sm-min-400px {
    min-height: 400px;
  }

  .h-sm-450px {
    height: 450px;
  }

  .h-sm-min-450px {
    min-height: 450px;
  }

  .h-sm-500px {
    height: 500px;
  }

  .h-sm-min-500px {
    min-height: 500px;
  }

  .h-sm-550px {
    height: 550px;
  }

  .h-sm-min-550px {
    min-height: 550px;
  }

  .h-sm-600px {
    height: 600px;
  }

  .h-sm-min-600px {
    min-height: 600px;
  }

  .h-sm-650px {
    height: 650px;
  }

  .h-sm-min-650px {
    min-height: 650px;
  }

  .h-sm-700px {
    height: 700px;
  }

  .h-sm-min-700px {
    min-height: 700px;
  }

  .h-sm-750px {
    height: 750px;
  }

  .h-sm-min-750px {
    min-height: 750px;
  }

  .h-sm-800px {
    height: 800px;
  }

  .h-sm-min-800px {
    min-height: 800px;
  }

  .h-sm-850px {
    height: 850px;
  }

  .h-sm-min-850px {
    min-height: 850px;
  }

  .h-sm-900px {
    height: 900px;
  }

  .h-sm-min-900px {
    min-height: 900px;
  }

  .h-sm-950px {
    height: 950px;
  }

  .h-sm-min-950px {
    min-height: 950px;
  }

  .h-sm-1000px {
    height: 1000px;
  }

  .h-sm-min-1000px {
    min-height: 1000px;
  }
}

@media (min-width: 768px) {
  .h-md-50px {
    height: 50px;
  }

  .h-md-min-50px {
    min-height: 50px;
  }

  .h-md-100px {
    height: 100px;
  }

  .h-md-min-100px {
    min-height: 100px;
  }

  .h-md-150px {
    height: 150px;
  }

  .h-md-min-150px {
    min-height: 150px;
  }

  .h-md-200px {
    height: 200px;
  }

  .h-md-min-200px {
    min-height: 200px;
  }

  .h-md-250px {
    height: 250px;
  }

  .h-md-min-250px {
    min-height: 250px;
  }

  .h-md-300px {
    height: 300px;
  }

  .h-md-min-300px {
    min-height: 300px;
  }

  .h-md-350px {
    height: 350px;
  }

  .h-md-min-350px {
    min-height: 350px;
  }

  .h-md-400px {
    height: 400px;
  }

  .h-md-min-400px {
    min-height: 400px;
  }

  .h-md-450px {
    height: 450px;
  }

  .h-md-min-450px {
    min-height: 450px;
  }

  .h-md-500px {
    height: 500px;
  }

  .h-md-min-500px {
    min-height: 500px;
  }

  .h-md-550px {
    height: 550px;
  }

  .h-md-min-550px {
    min-height: 550px;
  }

  .h-md-600px {
    height: 600px;
  }

  .h-md-min-600px {
    min-height: 600px;
  }

  .h-md-650px {
    height: 650px;
  }

  .h-md-min-650px {
    min-height: 650px;
  }

  .h-md-700px {
    height: 700px;
  }

  .h-md-min-700px {
    min-height: 700px;
  }

  .h-md-750px {
    height: 750px;
  }

  .h-md-min-750px {
    min-height: 750px;
  }

  .h-md-800px {
    height: 800px;
  }

  .h-md-min-800px {
    min-height: 800px;
  }

  .h-md-850px {
    height: 850px;
  }

  .h-md-min-850px {
    min-height: 850px;
  }

  .h-md-900px {
    height: 900px;
  }

  .h-md-min-900px {
    min-height: 900px;
  }

  .h-md-950px {
    height: 950px;
  }

  .h-md-min-950px {
    min-height: 950px;
  }

  .h-md-1000px {
    height: 1000px;
  }

  .h-md-min-1000px {
    min-height: 1000px;
  }
}

@media (min-width: 992px) {
  .h-lg-50px {
    height: 50px;
  }

  .h-lg-min-50px {
    min-height: 50px;
  }

  .h-lg-100px {
    height: 100px;
  }

  .h-lg-min-100px {
    min-height: 100px;
  }

  .h-lg-150px {
    height: 150px;
  }

  .h-lg-min-150px {
    min-height: 150px;
  }

  .h-lg-200px {
    height: 200px;
  }

  .h-lg-min-200px {
    min-height: 200px;
  }

  .h-lg-250px {
    height: 250px;
  }

  .h-lg-min-250px {
    min-height: 250px;
  }

  .h-lg-300px {
    height: 300px;
  }

  .h-lg-min-300px {
    min-height: 300px;
  }

  .h-lg-350px {
    height: 350px;
  }

  .h-lg-min-350px {
    min-height: 350px;
  }

  .h-lg-400px {
    height: 400px;
  }

  .h-lg-min-400px {
    min-height: 400px;
  }

  .h-lg-450px {
    height: 450px;
  }

  .h-lg-min-450px {
    min-height: 450px;
  }

  .h-lg-500px {
    height: 500px;
  }

  .h-lg-min-500px {
    min-height: 500px;
  }

  .h-lg-550px {
    height: 550px;
  }

  .h-lg-min-550px {
    min-height: 550px;
  }

  .h-lg-600px {
    height: 600px;
  }

  .h-lg-min-600px {
    min-height: 600px;
  }

  .h-lg-650px {
    height: 650px;
  }

  .h-lg-min-650px {
    min-height: 650px;
  }

  .h-lg-700px {
    height: 700px;
  }

  .h-lg-min-700px {
    min-height: 700px;
  }

  .h-lg-750px {
    height: 750px;
  }

  .h-lg-min-750px {
    min-height: 750px;
  }

  .h-lg-800px {
    height: 800px;
  }

  .h-lg-min-800px {
    min-height: 800px;
  }

  .h-lg-850px {
    height: 850px;
  }

  .h-lg-min-850px {
    min-height: 850px;
  }

  .h-lg-900px {
    height: 900px;
  }

  .h-lg-min-900px {
    min-height: 900px;
  }

  .h-lg-950px {
    height: 950px;
  }

  .h-lg-min-950px {
    min-height: 950px;
  }

  .h-lg-1000px {
    height: 1000px;
  }

  .h-lg-min-1000px {
    min-height: 1000px;
  }
}

/* Pagination */

/* Read More */

/* Offset Anchor */

/* Show Grid */

/* Alerts */

/* Ratio */

/* Half Section */

/* Content Grid */

/* Alert Admin */

/* Not Included */

/* Tip */

/* Ajax Box */

/* Notice Top Bar */

/* Hover effetcs */

/* Sticky Wrapper */

/* Highlighted Word */

@-webkit-keyframes pencilAnimation {
  from {
    width: 0;
  }

  to {
    width: 74px;
  }
}

@keyframes pencilAnimation {
  from {
    width: 0;
  }

  to {
    width: 74px;
  }
}

@-webkit-keyframes pencilAnimation2 {
  from {
    width: 0;
  }

  to {
    width: 115px;
  }
}

@keyframes pencilAnimation2 {
  from {
    width: 0;
  }

  to {
    width: 115px;
  }
}

/* Curved Border */

/* Vertical Divider */

/* Star Rating */

/* Image Hotspots */

/* Page Transition */

body[data-plugin-page-transition] {
  transition: ease opacity 300ms;
}

/* 
Image 360º Viewer
Credits: Codyhouse (https://codyhouse.co/gem/360-degrees-product-viewer)
*/

@-webkit-keyframes cd-bounce {
  0% {
    transform: translateX(-50%) scale(0);
  }

  60% {
    transform: translateX(-50%) scale(1.1);
  }

  100% {
    transform: translateX(-50%) scale(1);
  }
}

@keyframes cd-bounce {
  0% {
    transform: translateX(-50%) scale(0);
  }

  60% {
    transform: translateX(-50%) scale(1.1);
  }

  100% {
    transform: translateX(-50%) scale(1);
  }
}

/* Payment CC */

/* ElevateZoom Fix */

/* PORTO Big Title */

/* Animated Letters */

[data-plugin-animated-letters] {
  opacity: 0;
  visibility: hidden;
}

/* Animated Letters - Type Writer Effect */

@-webkit-keyframes typeWriterFlash {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes typeWriterFlash {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Read More Rendered (JS Plugin) */

/* Style Switcher Open Loader Button */

/* Envato Buy Redirect and Demos */

/* Video */

[data-plugin-video] {
  position: relative;
}

[data-plugin-video] > img {
  position: relative;
  z-index: 1;
}

/* Cursor Effect */

/* Simple Copy To Clipboard */

/* Popup */

/* Nav */

.nav > li > a {
  text-decoration: none;
}

.nav > li > a:hover,.nav > li > a:focus {
  background: transparent;
  text-decoration: none;
}

/* Nav List */

ul.nav-pills > li > a.active {
  color: #FFF;
  background-color: #CCC;
}

ul.nav-pills > li > a.active:hover,ul.nav-pills > li > a.active:focus {
  color: #FFF;
  background-color: #CCC;
}

/* Nav Pills */

.nav-pills-center {
  text-align: center;
}

.nav-pills-center > li {
  display: inline-block;
  float: none;
}

.nav-pills-sm > li > a {
  padding: 7px 12px;
}

.nav-pills-xs > li > a {
  padding: 5px 10px;
  font-size: 0.9em;
}

.nav-pills .nav-link.active {
  background-color: transparent;
}

/* Nav Light */

.nav-light > li > a {
  color: #FFF;
}

/* Nav Active Style - Active Bottom Border */

.nav-active-style-1 {
  min-height: 100px;
  align-items: center;
}

.nav-active-style-1 > li {
  align-self: stretch;
}

.nav-active-style-1 > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 !important;
  margin: 0 15px;
  border-bottom: 2px solid transparent;
  transition: ease border-color 300ms;
}

.nav-active-style-1 > li > a:hover,.nav-active-style-1 > li > a:focus,.nav-active-style-1 > li > a.active {
  border-bottom-color: #CCC;
}

@media (max-width: 575px) {
  .nav-active-style-1 > li > a {
    min-height: 45px;
    justify-content: center;
  }
}

html.ie .nav-active-style-1 > li {
  min-height: 100px;
}

/* Nav Secondary */

/* Boxed */

/* Section Scroll - Dots Navigation */

/* Overlays */

/* Overlay Colors */

/* Overlay Gradient Bottom Content */

/* Overlay Gradient Top Content */

/* Overlay Gradient */

/* Parallax */

/* Pricing Tables */

/* Pricing Block Style */

/* Price Menu */

/* Process */

@-webkit-keyframes processShapesScaleOne {
  0% {
    opacity: 0.6;
    transform: translate3d(-50%, -50%, 0) scale(1.5);
  }

  25% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1.8);
  }

  50% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }

  100% {
    opacity: 0.6;
    transform: translate3d(-50%, -50%, 0) scale(1.5);
  }
}

@keyframes processShapesScaleOne {
  0% {
    opacity: 0.6;
    transform: translate3d(-50%, -50%, 0) scale(1.5);
  }

  25% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1.8);
  }

  50% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }

  100% {
    opacity: 0.6;
    transform: translate3d(-50%, -50%, 0) scale(1.5);
  }
}

@-webkit-keyframes processShapesScaleTwo {
  0% {
    opacity: 0.3;
    transform: translate3d(-50%, -50%, 0) scale(2);
  }

  25% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(2.3);
  }

  50% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }

  100% {
    opacity: 0.3;
    transform: translate3d(-50%, -50%, 0) scale(2);
  }
}

@keyframes processShapesScaleTwo {
  0% {
    opacity: 0.3;
    transform: translate3d(-50%, -50%, 0) scale(2);
  }

  25% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(2.3);
  }

  50% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }

  100% {
    opacity: 0.3;
    transform: translate3d(-50%, -50%, 0) scale(2);
  }
}

/* Scroll to Top */
/* Scroll to Top */
html .scroll-to-top {
	transition: opacity 0.3s;
	background: #404040;
	border-radius: 4px 4px 0 0;
	bottom: 0;
	color: #FFF;
	display: block;
	height: 9px;
	opacity: 0;
	padding: 10px 10px 35px;
	position: fixed;
	right: 10px;
	text-align: center;
	text-decoration: none;
	min-width: 50px;
	z-index: 1040;
	font-size: 0.8em;
}

html .scroll-to-top:hover {
	opacity: 1;
}

html .scroll-to-top.visible {
	opacity: 0.75;
}

html .scroll-to-top span {
	display: inline-block;
	padding: 0 5px;
}

html.lightbox-opened .scroll-to-top {
	right: 27px;
}

html.ie11 .scroll-to-top {
	right: 25px;
}

/* Responsive */
@media (max-width: 991px) {
	html .scroll-to-top.hidden-mobile {
		display: none !important;
	}
}

/* Scrollable */

/* Section Featured */

section.section {
  background: #f7f7f7;
  border-top: 5px solid #f1f1f1;
  margin: 30px 0;
  padding: 50px 0;
}

section.section > .container {
  position: relative;
}

section.section.section-height-1 {
  padding: 12.307px 0;
  padding: 0.7692307692rem 0;
}

section.section.section-height-2 {
  padding: 36.923px 0;
  padding: 2.3076923077rem 0;
}

section.section.section-height-3 {
  padding: 73.846px 0;
  padding: 4.6153846154rem 0;
}

section.section.section-height-4 {
  padding: 110.769px 0;
  padding: 6.9230769231rem 0;
}

section.section.section-height-5 {
  padding: 147.692px 0;
  padding: 9.2307692308rem 0;
}

section.section.section-no-background {
  background: transparent;
  border-top-color: transparent;
}

section.section.section-center {
  text-align: center;
}

section.section.section-text-light h1,section.section.section-text-light h2,section.section.section-text-light h3,section.section.section-text-light h4,section.section.section-text-light h5,section.section.section-text-light h6 {
  color: #FFF;
}

section.section.section-text-light p {
  color: #e6e5e5;
}

section.section.section-background {
  background-repeat: repeat;
  border: 0;
}

section.section.section-no-border {
  border: 0;
}

section.section.section-footer {
  margin-bottom: -50px;
}

/* Responsive */

@media (max-width: 991px) {
  .container-fluid > .row > .p-0 section.section {
    margin-bottom: 0;
    margin-top: 0;
  }

  .container-fluid > .row > .p-0:first-child section.section {
    margin-bottom: 0;
    margin-top: 30px;
  }

  .container-fluid > .row > .p-0:last-child section.section {
    margin-bottom: 30px;
    margin-top: 0;
  }
}

/* Section With Shape Divider */

@-webkit-keyframes shapeDividerToLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-200%, 0, 0);
  }
}

@keyframes shapeDividerToLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-200%, 0, 0);
  }
}

@-webkit-keyframes shapeDividerToRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(200%, 0, 0);
  }
}

@keyframes shapeDividerToRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(200%, 0, 0);
  }
}

/* Sidebar */

/* Side Panel */

/* Home Slider - Revolution Slider */

.slider-container {
  background: #151719;
  height: 500px;
  overflow: hidden;
  width: 100%;
  direction: ltr;
}

.slider-container.light {
  background-color: #EAEAEA;
}

/* Revolution Slider Typewriter Addon */

/* Slider With Overlay */

/* Slider Scroll Button */

/* Arrows */

/* Bullets */

/* Slider IE Fix */

/* Embed Border */

/* Defaults */

/* Slider With Overlay */

/* Slider Contact Form */

/* Responsive */

/* Boxed */

/* Side Header - Full Screen Slider Height On Mobile */

/* Social Icons */

.social-icons {
  margin: 0;
  padding: 0;
  width: auto;
}

.social-icons li {
  display: inline-block;
  margin: -1px 1px 0 0;
  padding: 0;
  border-radius: 100%;
  overflow: visible;
}

.social-icons li a {
  transition: all 0.2s ease;
  border-radius: 100%;
  display: block;
  height: 28px;
  line-height: 28px;
  width: 28px;
  text-align: center;
  color: #333 !important;
  text-decoration: none;
  font-size: 12.8px;
  font-size: 0.8rem;
}

.social-icons li:hover a {
  background: #151719;
  color: #FFF !important;
}

.social-icons li:hover.social-icons-twitter a {
  background: #1aa9e1 !important;
}

.social-icons li:hover.social-icons-facebook a {
  background: #3b5a9a !important;
}

.social-icons li:hover.social-icons-googleplus a {
  background: #dd4b39 !important;
}

.social-icons li:hover.social-icons-instagram a {
  background: #7c4a3a !important;
}

.social-icons li:hover.social-icons-email a {
  background: #dd4b39 !important;
}

.social-icons.social-icons-dark li a {
  background: #181818;
}

.social-icons.social-icons-dark li a i {
  color: #FFF;
}

.social-icons.social-icons-dark-2 li a {
  background: #272a2e;
}

.social-icons.social-icons-dark-2 li a i {
  color: #FFF;
}

.social-icons.social-icons-icon-light li a i {
  color: #FFF;
}

.social-icons.social-icons-medium li a,.social-icons.social-icons-md li a {
  height: 33px;
  line-height: 33px;
  width: 33px;
  font-size: 14.4px;
  font-size: 0.9rem;
}

.social-icons.social-icons-lg li a {
  height: 48px;
  line-height: 50px;
  width: 48px;
}

@media (max-width: 400px) {
  .social-icons.social-icons-lg li a {
    height: 38px;
    line-height: 40px;
    width: 38px;
  }
}

/* Sort Source Wrapper */

/* Sort Source */

/* Sort Source Style 2 */

/* Sort Source Style 3 */

/* Sort Destination */

/* Sort Loading */

/* Responsive */

/* Clip SVG */

/* SVG Colors */

.svg-fill-color-light {
  fill: #FFF !important;
}

.svg-fill-color-light svg path {
  fill: #FFF !important;
}

.svg-stroke-color-light {
  stroke: #FFF !important;
}

.svg-stroke-color-light svg path {
  stroke: #FFF !important;
}

.svg-fill-color-dark {
  fill: #212529 !important;
}

.svg-fill-color-dark svg path {
  fill: #212529 !important;
}

.svg-stroke-color-dark {
  stroke: #212529 !important;
}

.svg-stroke-color-dark svg path {
  stroke: #212529 !important;
}

/* SVG Animations */

/* Tables */

/* Tabs */

/* Right Aligned */

/* Bottom Tabs */

/* Vertical */

/* Vertical - Left Side */

/* Vertical - Right Side */

/* Justified */

/* Bottom Tabs with Justified Nav */

/* Center */

/* Navigation */

/* Simple */

/* Responsive */

/* Testimonials */

/* Style 2 */

/* Style 3 */

/* Style 4 */

/* Style 5 */

/* Style 6 */

/* Style 7 */

/* With Quotes */

/* Transparent Background */

/* Alternarive Font */

/* Light */

/* Thumb Info */

/* Thumb Info Ribbon */

/* Thumb Info - Full Width */

/* Thumb Info Caption	*/

/* Thumb Info Side Image	*/

/* Thumb Info Social Icons */

/* Thumb Info Floating Caption */

/* Responsive */

/* Timeline */

/* Toggles */

.toggle {
  margin: 10px 0 20px;
  position: relative;
  clear: both;
}

.toggle .toggle {
  margin: 10px 0 0;
}

.toggle > input {
  cursor: pointer;
  filter: alpha(opacity=0);
  height: 45px;
  margin: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.toggle > .toggle-title {
  transition: all .15s ease-out;
  background: #f7f7f7;
  border-left: 3px solid #CCC;
  border-radius: 5px;
  color: #CCC;
  display: block;
  min-height: 20px;
  padding: 12px 20px 12px 15px;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: -0.2px;
  text-decoration: none !important;
}

.toggle > .toggle-title:-moz-selection {
  background: none;
}

.toggle > .toggle-title i.fa-plus {
  display: inline;
}

.toggle > .toggle-title:before {
  content: " ";
  position: absolute;
  top: calc(50% + 1px);
  right: 14px;
  border-color: #CCC;
  border-top: 1px solid;
  border-right: 1px solid;
  width: 8px;
  height: 8px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.3s, top 0.3s;
  transform: rotate(-45deg) translate3d(0, -50%, 0);
  transform-origin: 35%;
}

.toggle > .toggle-title:hover {
  background: #f5f5f5;
}

.toggle > .toggle-title + p {
  color: #999;
  display: block;
  overflow: hidden;
  padding-left: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 25px;
}

.toggle > .toggle-title i {
  font-size: 0.7em;
  margin-right: 8px;
  position: relative;
  top: -1px;
}

.toggle > .toggle-content {
  display: none;
}

.toggle > .toggle-content > p {
  margin-bottom: 0;
  padding: 10px 0;
}

.toggle.active i.fa-plus {
  display: none;
}

.toggle.active > .toggle-title {
  background: #f7f7f7;
  border-color: #CCC;
}

.toggle.active > .toggle-title:before {
  top: calc(50% - 8px);
  transform: rotate(135deg);
}

.toggle.active > p {
  white-space: normal;
}

.toggle.toggle-sm .toggle > .toggle-title {
  font-size: 0.9em;
  padding: 6px 20px 6px 10px;
}

.toggle.toggle-sm .toggle > .toggle-content > p {
  font-size: 0.9em;
}

.toggle.toggle-lg .toggle > .toggle-title {
  font-size: 1.1em;
  padding: 16px 20px 16px 20px;
}

.toggle.toggle-lg .toggle > .toggle-content > p {
  font-size: 1.1em;
}

.toggle.toggle-simple .toggle > .toggle-title {
  border-radius: 0;
  border: 0;
  background: transparent;
  color: #777;
  padding-left: 32px;
  margin-bottom: -10px;
  font-size: 1em;
  font-weight: 600;
  color: #212529;
}

.toggle.toggle-simple .toggle > .toggle-title:after {
  content: '';
  position: absolute;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  background: #CCC;
  top: 25px;
  margin-top: -12px;
  border-radius: 3px;
  z-index: 1;
}

.toggle.toggle-simple .toggle > .toggle-title:before {
  border: 0;
  left: 9px;
  right: auto;
  margin-top: 0;
  top: 12px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f067";
  z-index: 2;
  color: #FFF;
  font-size: 7px;
  width: auto;
  height: auto;
  transform: none;
}

.toggle.toggle-simple .toggle.active > .toggle-title {
  background: transparent;
  color: #212529;
}

.toggle.toggle-simple .toggle.active > .toggle-title:before {
  content: "\f068";
}

/* Blockquotes */

/* Small */

small,.small {
  font-size: 70%;
}

/* Paragraphs */

p {
  color: #777;
  line-height: 26px;
  margin: 0 0 20px;
}

/* Lead */

/* Links */

a,a:hover,a:focus {
  color: #CCC;
}

/* Drop Caps */

/* Default Font Style */

.default-font {
  font-family: "Poppins", Arial, sans-serif !important;
}

/* Alternative Font Style */

/* Gradient Text */

/* Small Sup style */

/* Text Color Default */

.text-default,.text-color-default {
  color: #777 !important;
}

/* Video */

/* rotate-1 */

@-webkit-keyframes word-rotator-rotate-1-in {
  0% {
    transform: rotateX(180deg);
    opacity: 0;
  }

  35% {
    transform: rotateX(120deg);
    opacity: 0;
  }

  65% {
    opacity: 0;
  }

  100% {
    transform: rotateX(360deg);
    opacity: 1;
  }
}

@keyframes word-rotator-rotate-1-in {
  0% {
    transform: rotateX(180deg);
    opacity: 0;
  }

  35% {
    transform: rotateX(120deg);
    opacity: 0;
  }

  65% {
    opacity: 0;
  }

  100% {
    transform: rotateX(360deg);
    opacity: 1;
  }
}

@-webkit-keyframes word-rotator-rotate-1-out {
  0% {
    transform: rotateX(0deg);
    opacity: 1;
  }

  35% {
    transform: rotateX(-40deg);
    opacity: 1;
  }

  65% {
    opacity: 0;
  }

  100% {
    transform: rotateX(180deg);
    opacity: 0;
  }
}

@keyframes word-rotator-rotate-1-out {
  0% {
    transform: rotateX(0deg);
    opacity: 1;
  }

  35% {
    transform: rotateX(-40deg);
    opacity: 1;
  }

  65% {
    opacity: 0;
  }

  100% {
    transform: rotateX(180deg);
    opacity: 0;
  }
}

/* type */

@-webkit-keyframes word-rotator-pulse {
  from, to {
    background-color: transparent;
  }

  50% {
    background-color: black;
  }
}

@keyframes word-rotator-pulse {
  from, to {
    background-color: transparent;
  }

  50% {
    background-color: black;
  }
}

@-webkit-keyframes word-rotator-pulse-light {
  from, to {
    background-color: transparent;
  }

  50% {
    background-color: white;
  }
}

@keyframes word-rotator-pulse-light {
  from, to {
    background-color: transparent;
  }

  50% {
    background-color: white;
  }
}

/* rotate-2 */

@-webkit-keyframes word-rotator-rotate-2-in {
  0% {
    opacity: 0;
    transform: translateZ(-20px) rotateX(90deg);
  }

  60% {
    opacity: 1;
    transform: translateZ(-20px) rotateX(-10deg);
  }

  100% {
    opacity: 1;
    transform: translateZ(-20px) rotateX(0deg);
  }
}

@keyframes word-rotator-rotate-2-in {
  0% {
    opacity: 0;
    transform: translateZ(-20px) rotateX(90deg);
  }

  60% {
    opacity: 1;
    transform: translateZ(-20px) rotateX(-10deg);
  }

  100% {
    opacity: 1;
    transform: translateZ(-20px) rotateX(0deg);
  }
}

@-webkit-keyframes word-rotator-rotate-2-out {
  0% {
    opacity: 1;
    transform: translateZ(-20px) rotateX(0);
  }

  60% {
    opacity: 0;
    transform: translateZ(-20px) rotateX(-100deg);
  }

  100% {
    opacity: 0;
    transform: translateZ(-20px) rotateX(-90deg);
  }
}

@keyframes word-rotator-rotate-2-out {
  0% {
    opacity: 1;
    transform: translateZ(-20px) rotateX(0);
  }

  60% {
    opacity: 0;
    transform: translateZ(-20px) rotateX(-100deg);
  }

  100% {
    opacity: 0;
    transform: translateZ(-20px) rotateX(-90deg);
  }
}

/* loading-bar */

/* slide */

@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  60% {
    opacity: 1;
    transform: translateY(20%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  60% {
    opacity: 1;
    transform: translateY(20%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes slide-out {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  60% {
    opacity: 0;
    transform: translateY(120%);
  }

  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}

@keyframes slide-out {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  60% {
    opacity: 0;
    transform: translateY(120%);
  }

  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}

/* clip */

/* zoom */

@-webkit-keyframes zoom-in {
  0% {
    opacity: 0;
    transform: translateZ(100px);
  }

  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes zoom-in {
  0% {
    opacity: 0;
    transform: translateZ(100px);
  }

  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}

@-webkit-keyframes zoom-out {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }

  100% {
    opacity: 0;
    transform: translateZ(-100px);
  }
}

@keyframes zoom-out {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }

  100% {
    opacity: 0;
    transform: translateZ(-100px);
  }
}

@-webkit-keyframes word-rotator-rotate-3-in {
  0% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(0deg);
  }
}

@keyframes word-rotator-rotate-3-in {
  0% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(0deg);
  }
}

@-webkit-keyframes word-rotator-rotate-3-out {
  0% {
    transform: rotateY(0);
  }

  100% {
    transform: rotateY(-180deg);
  }
}

@keyframes word-rotator-rotate-3-out {
  0% {
    transform: rotateY(0);
  }

  100% {
    transform: rotateY(-180deg);
  }
}

/* scale */

@-webkit-keyframes scale-up {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale-up {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes scale-down {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  60% {
    transform: scale(0);
    opacity: 0;
  }
}

@keyframes scale-down {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  60% {
    transform: scale(0);
    opacity: 0;
  }
}

/* push */

@-webkit-keyframes push-in {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }

  60% {
    opacity: 1;
    transform: translateX(10%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes push-in {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }

  60% {
    opacity: 1;
    transform: translateX(10%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@-webkit-keyframes push-out {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  60% {
    opacity: 0;
    transform: translateX(110%);
  }

  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

@keyframes push-out {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  60% {
    opacity: 0;
    transform: translateX(110%);
  }

  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* Custom Map */

section.section-custom-map {
  background: transparent url(../img/map.png) center 0 no-repeat;
  padding: 129px 0 0;
  margin: 20px 0 0;
  border: 0;
}

section.section-custom-map section.section {
  border-top: 0;
  background: rgba(247, 247, 247, 0.5);
}

/* Home Intro */

/* Home Intro Compact */

/* Responsive */

@media (max-width: 991px) {
  /* Home Intro */
}

@media (max-width: 767px) {
  /* Home Intro */
}

/* Home Concept SVG Animations */

@-webkit-keyframes animatedLineBg {
  from {
    stroke-dasharray: 1000;
  }

  to {
    stroke-dasharray: 1360;
  }
}

@keyframes animatedLineBg {
  from {
    stroke-dasharray: 1000;
  }

  to {
    stroke-dasharray: 1360;
  }
}

@-webkit-keyframes animatedLineSmallCircle {
  from {
    stroke-dasharray: 1000;
  }

  to {
    stroke-dasharray: 1120;
  }
}

@keyframes animatedLineSmallCircle {
  from {
    stroke-dasharray: 1000;
  }

  to {
    stroke-dasharray: 1120;
  }
}

@-webkit-keyframes animatedLineBigCircle {
  from {
    stroke-dasharray: 1000;
  }

  to {
    stroke-dasharray: 1266;
  }
}

@keyframes animatedLineBigCircle {
  from {
    stroke-dasharray: 1000;
  }

  to {
    stroke-dasharray: 1266;
  }
}

@-webkit-keyframes animatedInitialPin {
  0% {
    transform: translate(2px, 69px) scale(0.23);
  }

  33% {
    transform: translate(2px, 79px) scale(0.23);
  }

  66% {
    transform: translate(2px, 74px) scale(0.23);
  }

  100% {
    transform: translate(2px, 79px) scale(0.23);
  }
}

@keyframes animatedInitialPin {
  0% {
    transform: translate(2px, 69px) scale(0.23);
  }

  33% {
    transform: translate(2px, 79px) scale(0.23);
  }

  66% {
    transform: translate(2px, 74px) scale(0.23);
  }

  100% {
    transform: translate(2px, 79px) scale(0.23);
  }
}

@-webkit-keyframes animatedFinalPin {
  0% {
    transform: translate(325px, -19px) scale(0.23) rotate(36deg);
  }

  33% {
    transform: translate(325px, -13px) scale(0.23) rotate(36deg);
  }

  66% {
    transform: translate(325px, -16px) scale(0.23) rotate(36deg);
  }

  100% {
    transform: translate(325px, -13px) scale(0.23) rotate(36deg);
  }
}

@keyframes animatedFinalPin {
  0% {
    transform: translate(325px, -19px) scale(0.23) rotate(36deg);
  }

  33% {
    transform: translate(325px, -13px) scale(0.23) rotate(36deg);
  }

  66% {
    transform: translate(325px, -16px) scale(0.23) rotate(36deg);
  }

  100% {
    transform: translate(325px, -13px) scale(0.23) rotate(36deg);
  }
}

/* Firefox Final Pin Animation */

@-webkit-keyframes animatedFinalPinFirefox {
  0% {
    transform: translate(193px, -16px) scale(0.23) rotate(36deg);
  }

  33% {
    transform: translate(193px, -10px) scale(0.23) rotate(36deg);
  }

  66% {
    transform: translate(193px, -13px) scale(0.23) rotate(36deg);
  }

  100% {
    transform: translate(193px, -10px) scale(0.23) rotate(36deg);
  }
}

@keyframes animatedFinalPinFirefox {
  0% {
    transform: translate(193px, -16px) scale(0.23) rotate(36deg);
  }

  33% {
    transform: translate(193px, -10px) scale(0.23) rotate(36deg);
  }

  66% {
    transform: translate(193px, -13px) scale(0.23) rotate(36deg);
  }

  100% {
    transform: translate(193px, -10px) scale(0.23) rotate(36deg);
  }
}

/* Home Concept */

/* Responsive */

/* Portfolio */

/* Portfolio Info */

/* Portfolio List */

/* Portfolio Details */

/* Portfolio Modal */

/* Portfolio Navigation */

/* Responsive */

/* Team List */

/* Responsive */

/* Search Results */

/* Page 404 */

/* Responsive */