@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-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);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

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

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-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);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.iti {
  position: relative;
  display: inline-block; }
  .iti * {
    box-sizing: border-box;
    -moz-box-sizing: border-box; }
  .iti__hide {
    display: none; }
  .iti__v-hide {
    visibility: hidden; }
  .iti input, .iti input[type=text], .iti input[type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0; }
  .iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px; }
  .iti__selected-flag {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 6px 0 8px; }
  .iti__arrow {
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #555; }
    .iti__arrow--up {
      border-top: none;
      border-bottom: 4px solid #555; }
  .iti__country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: white;
    border: 1px solid #CCC;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; }
    .iti__country-list--dropup {
      bottom: 100%;
      margin-bottom: -1px; }
    @media (max-width: 500px) {
      .iti__country-list {
        white-space: normal; } }
  .iti__flag-box {
    display: inline-block;
    width: 20px; }
  .iti__divider {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #CCC; }
  .iti__country {
    padding: 5px 10px;
    outline: none; }
  .iti__dial-code {
    color: #999; }
  .iti__country.iti__highlight {
    background-color: rgba(0, 0, 0, 0.05); }
  .iti__flag-box, .iti__country-name, .iti__dial-code {
    vertical-align: middle; }
  .iti__flag-box, .iti__country-name {
    margin-right: 6px; }
  .iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0; }
  .iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
    right: auto;
    left: 0; }
  .iti--allow-dropdown .iti__flag-container:hover {
    cursor: pointer; }
    .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
      background-color: rgba(0, 0, 0, 0.05); }
  .iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
  .iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
    cursor: default; }
    .iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
    .iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
      background-color: transparent; }
  .iti--separate-dial-code .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0.05); }
  .iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px; }
  .iti--container {
    position: absolute;
    top: -1000px;
    left: -1000px;
    z-index: 1060;
    padding: 1px; }
    .iti--container:hover {
      cursor: pointer; }

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed; }

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%; }

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em; }

.iti__flag {
  width: 20px; }
  .iti__flag.iti__be {
    width: 18px; }
  .iti__flag.iti__ch {
    width: 15px; }
  .iti__flag.iti__mc {
    width: 19px; }
  .iti__flag.iti__ne {
    width: 18px; }
  .iti__flag.iti__np {
    width: 13px; }
  .iti__flag.iti__va {
    width: 15px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
      background-size: 5652px 15px; } }
  .iti__flag.iti__ac {
    height: 10px;
    background-position: 0px 0px; }
  .iti__flag.iti__ad {
    height: 14px;
    background-position: -22px 0px; }
  .iti__flag.iti__ae {
    height: 10px;
    background-position: -44px 0px; }
  .iti__flag.iti__af {
    height: 14px;
    background-position: -66px 0px; }
  .iti__flag.iti__ag {
    height: 14px;
    background-position: -88px 0px; }
  .iti__flag.iti__ai {
    height: 10px;
    background-position: -110px 0px; }
  .iti__flag.iti__al {
    height: 15px;
    background-position: -132px 0px; }
  .iti__flag.iti__am {
    height: 10px;
    background-position: -154px 0px; }
  .iti__flag.iti__ao {
    height: 14px;
    background-position: -176px 0px; }
  .iti__flag.iti__aq {
    height: 14px;
    background-position: -198px 0px; }
  .iti__flag.iti__ar {
    height: 13px;
    background-position: -220px 0px; }
  .iti__flag.iti__as {
    height: 10px;
    background-position: -242px 0px; }
  .iti__flag.iti__at {
    height: 14px;
    background-position: -264px 0px; }
  .iti__flag.iti__au {
    height: 10px;
    background-position: -286px 0px; }
  .iti__flag.iti__aw {
    height: 14px;
    background-position: -308px 0px; }
  .iti__flag.iti__ax {
    height: 13px;
    background-position: -330px 0px; }
  .iti__flag.iti__az {
    height: 10px;
    background-position: -352px 0px; }
  .iti__flag.iti__ba {
    height: 10px;
    background-position: -374px 0px; }
  .iti__flag.iti__bb {
    height: 14px;
    background-position: -396px 0px; }
  .iti__flag.iti__bd {
    height: 12px;
    background-position: -418px 0px; }
  .iti__flag.iti__be {
    height: 15px;
    background-position: -440px 0px; }
  .iti__flag.iti__bf {
    height: 14px;
    background-position: -460px 0px; }
  .iti__flag.iti__bg {
    height: 12px;
    background-position: -482px 0px; }
  .iti__flag.iti__bh {
    height: 12px;
    background-position: -504px 0px; }
  .iti__flag.iti__bi {
    height: 12px;
    background-position: -526px 0px; }
  .iti__flag.iti__bj {
    height: 14px;
    background-position: -548px 0px; }
  .iti__flag.iti__bl {
    height: 14px;
    background-position: -570px 0px; }
  .iti__flag.iti__bm {
    height: 10px;
    background-position: -592px 0px; }
  .iti__flag.iti__bn {
    height: 10px;
    background-position: -614px 0px; }
  .iti__flag.iti__bo {
    height: 14px;
    background-position: -636px 0px; }
  .iti__flag.iti__bq {
    height: 14px;
    background-position: -658px 0px; }
  .iti__flag.iti__br {
    height: 14px;
    background-position: -680px 0px; }
  .iti__flag.iti__bs {
    height: 10px;
    background-position: -702px 0px; }
  .iti__flag.iti__bt {
    height: 14px;
    background-position: -724px 0px; }
  .iti__flag.iti__bv {
    height: 15px;
    background-position: -746px 0px; }
  .iti__flag.iti__bw {
    height: 14px;
    background-position: -768px 0px; }
  .iti__flag.iti__by {
    height: 10px;
    background-position: -790px 0px; }
  .iti__flag.iti__bz {
    height: 14px;
    background-position: -812px 0px; }
  .iti__flag.iti__ca {
    height: 10px;
    background-position: -834px 0px; }
  .iti__flag.iti__cc {
    height: 10px;
    background-position: -856px 0px; }
  .iti__flag.iti__cd {
    height: 15px;
    background-position: -878px 0px; }
  .iti__flag.iti__cf {
    height: 14px;
    background-position: -900px 0px; }
  .iti__flag.iti__cg {
    height: 14px;
    background-position: -922px 0px; }
  .iti__flag.iti__ch {
    height: 15px;
    background-position: -944px 0px; }
  .iti__flag.iti__ci {
    height: 14px;
    background-position: -961px 0px; }
  .iti__flag.iti__ck {
    height: 10px;
    background-position: -983px 0px; }
  .iti__flag.iti__cl {
    height: 14px;
    background-position: -1005px 0px; }
  .iti__flag.iti__cm {
    height: 14px;
    background-position: -1027px 0px; }
  .iti__flag.iti__cn {
    height: 14px;
    background-position: -1049px 0px; }
  .iti__flag.iti__co {
    height: 14px;
    background-position: -1071px 0px; }
  .iti__flag.iti__cp {
    height: 14px;
    background-position: -1093px 0px; }
  .iti__flag.iti__cr {
    height: 12px;
    background-position: -1115px 0px; }
  .iti__flag.iti__cu {
    height: 10px;
    background-position: -1137px 0px; }
  .iti__flag.iti__cv {
    height: 12px;
    background-position: -1159px 0px; }
  .iti__flag.iti__cw {
    height: 14px;
    background-position: -1181px 0px; }
  .iti__flag.iti__cx {
    height: 10px;
    background-position: -1203px 0px; }
  .iti__flag.iti__cy {
    height: 14px;
    background-position: -1225px 0px; }
  .iti__flag.iti__cz {
    height: 14px;
    background-position: -1247px 0px; }
  .iti__flag.iti__de {
    height: 12px;
    background-position: -1269px 0px; }
  .iti__flag.iti__dg {
    height: 10px;
    background-position: -1291px 0px; }
  .iti__flag.iti__dj {
    height: 14px;
    background-position: -1313px 0px; }
  .iti__flag.iti__dk {
    height: 15px;
    background-position: -1335px 0px; }
  .iti__flag.iti__dm {
    height: 10px;
    background-position: -1357px 0px; }
  .iti__flag.iti__do {
    height: 14px;
    background-position: -1379px 0px; }
  .iti__flag.iti__dz {
    height: 14px;
    background-position: -1401px 0px; }
  .iti__flag.iti__ea {
    height: 14px;
    background-position: -1423px 0px; }
  .iti__flag.iti__ec {
    height: 14px;
    background-position: -1445px 0px; }
  .iti__flag.iti__ee {
    height: 13px;
    background-position: -1467px 0px; }
  .iti__flag.iti__eg {
    height: 14px;
    background-position: -1489px 0px; }
  .iti__flag.iti__eh {
    height: 10px;
    background-position: -1511px 0px; }
  .iti__flag.iti__er {
    height: 10px;
    background-position: -1533px 0px; }
  .iti__flag.iti__es {
    height: 14px;
    background-position: -1555px 0px; }
  .iti__flag.iti__et {
    height: 10px;
    background-position: -1577px 0px; }
  .iti__flag.iti__eu {
    height: 14px;
    background-position: -1599px 0px; }
  .iti__flag.iti__fi {
    height: 12px;
    background-position: -1621px 0px; }
  .iti__flag.iti__fj {
    height: 10px;
    background-position: -1643px 0px; }
  .iti__flag.iti__fk {
    height: 10px;
    background-position: -1665px 0px; }
  .iti__flag.iti__fm {
    height: 11px;
    background-position: -1687px 0px; }
  .iti__flag.iti__fo {
    height: 15px;
    background-position: -1709px 0px; }
  .iti__flag.iti__fr {
    height: 14px;
    background-position: -1731px 0px; }
  .iti__flag.iti__ga {
    height: 15px;
    background-position: -1753px 0px; }
  .iti__flag.iti__gb {
    height: 10px;
    background-position: -1775px 0px; }
  .iti__flag.iti__gd {
    height: 12px;
    background-position: -1797px 0px; }
  .iti__flag.iti__ge {
    height: 14px;
    background-position: -1819px 0px; }
  .iti__flag.iti__gf {
    height: 14px;
    background-position: -1841px 0px; }
  .iti__flag.iti__gg {
    height: 14px;
    background-position: -1863px 0px; }
  .iti__flag.iti__gh {
    height: 14px;
    background-position: -1885px 0px; }
  .iti__flag.iti__gi {
    height: 10px;
    background-position: -1907px 0px; }
  .iti__flag.iti__gl {
    height: 14px;
    background-position: -1929px 0px; }
  .iti__flag.iti__gm {
    height: 14px;
    background-position: -1951px 0px; }
  .iti__flag.iti__gn {
    height: 14px;
    background-position: -1973px 0px; }
  .iti__flag.iti__gp {
    height: 14px;
    background-position: -1995px 0px; }
  .iti__flag.iti__gq {
    height: 14px;
    background-position: -2017px 0px; }
  .iti__flag.iti__gr {
    height: 14px;
    background-position: -2039px 0px; }
  .iti__flag.iti__gs {
    height: 10px;
    background-position: -2061px 0px; }
  .iti__flag.iti__gt {
    height: 13px;
    background-position: -2083px 0px; }
  .iti__flag.iti__gu {
    height: 11px;
    background-position: -2105px 0px; }
  .iti__flag.iti__gw {
    height: 10px;
    background-position: -2127px 0px; }
  .iti__flag.iti__gy {
    height: 12px;
    background-position: -2149px 0px; }
  .iti__flag.iti__hk {
    height: 14px;
    background-position: -2171px 0px; }
  .iti__flag.iti__hm {
    height: 10px;
    background-position: -2193px 0px; }
  .iti__flag.iti__hn {
    height: 10px;
    background-position: -2215px 0px; }
  .iti__flag.iti__hr {
    height: 10px;
    background-position: -2237px 0px; }
  .iti__flag.iti__ht {
    height: 12px;
    background-position: -2259px 0px; }
  .iti__flag.iti__hu {
    height: 10px;
    background-position: -2281px 0px; }
  .iti__flag.iti__ic {
    height: 14px;
    background-position: -2303px 0px; }
  .iti__flag.iti__id {
    height: 14px;
    background-position: -2325px 0px; }
  .iti__flag.iti__ie {
    height: 10px;
    background-position: -2347px 0px; }
  .iti__flag.iti__il {
    height: 15px;
    background-position: -2369px 0px; }
  .iti__flag.iti__im {
    height: 10px;
    background-position: -2391px 0px; }
  .iti__flag.iti__in {
    height: 14px;
    background-position: -2413px 0px; }
  .iti__flag.iti__io {
    height: 10px;
    background-position: -2435px 0px; }
  .iti__flag.iti__iq {
    height: 14px;
    background-position: -2457px 0px; }
  .iti__flag.iti__ir {
    height: 12px;
    background-position: -2479px 0px; }
  .iti__flag.iti__is {
    height: 15px;
    background-position: -2501px 0px; }
  .iti__flag.iti__it {
    height: 14px;
    background-position: -2523px 0px; }
  .iti__flag.iti__je {
    height: 12px;
    background-position: -2545px 0px; }
  .iti__flag.iti__jm {
    height: 10px;
    background-position: -2567px 0px; }
  .iti__flag.iti__jo {
    height: 10px;
    background-position: -2589px 0px; }
  .iti__flag.iti__jp {
    height: 14px;
    background-position: -2611px 0px; }
  .iti__flag.iti__ke {
    height: 14px;
    background-position: -2633px 0px; }
  .iti__flag.iti__kg {
    height: 12px;
    background-position: -2655px 0px; }
  .iti__flag.iti__kh {
    height: 13px;
    background-position: -2677px 0px; }
  .iti__flag.iti__ki {
    height: 10px;
    background-position: -2699px 0px; }
  .iti__flag.iti__km {
    height: 12px;
    background-position: -2721px 0px; }
  .iti__flag.iti__kn {
    height: 14px;
    background-position: -2743px 0px; }
  .iti__flag.iti__kp {
    height: 10px;
    background-position: -2765px 0px; }
  .iti__flag.iti__kr {
    height: 14px;
    background-position: -2787px 0px; }
  .iti__flag.iti__kw {
    height: 10px;
    background-position: -2809px 0px; }
  .iti__flag.iti__ky {
    height: 10px;
    background-position: -2831px 0px; }
  .iti__flag.iti__kz {
    height: 10px;
    background-position: -2853px 0px; }
  .iti__flag.iti__la {
    height: 14px;
    background-position: -2875px 0px; }
  .iti__flag.iti__lb {
    height: 14px;
    background-position: -2897px 0px; }
  .iti__flag.iti__lc {
    height: 10px;
    background-position: -2919px 0px; }
  .iti__flag.iti__li {
    height: 12px;
    background-position: -2941px 0px; }
  .iti__flag.iti__lk {
    height: 10px;
    background-position: -2963px 0px; }
  .iti__flag.iti__lr {
    height: 11px;
    background-position: -2985px 0px; }
  .iti__flag.iti__ls {
    height: 14px;
    background-position: -3007px 0px; }
  .iti__flag.iti__lt {
    height: 12px;
    background-position: -3029px 0px; }
  .iti__flag.iti__lu {
    height: 12px;
    background-position: -3051px 0px; }
  .iti__flag.iti__lv {
    height: 10px;
    background-position: -3073px 0px; }
  .iti__flag.iti__ly {
    height: 10px;
    background-position: -3095px 0px; }
  .iti__flag.iti__ma {
    height: 14px;
    background-position: -3117px 0px; }
  .iti__flag.iti__mc {
    height: 15px;
    background-position: -3139px 0px; }
  .iti__flag.iti__md {
    height: 10px;
    background-position: -3160px 0px; }
  .iti__flag.iti__me {
    height: 10px;
    background-position: -3182px 0px; }
  .iti__flag.iti__mf {
    height: 14px;
    background-position: -3204px 0px; }
  .iti__flag.iti__mg {
    height: 14px;
    background-position: -3226px 0px; }
  .iti__flag.iti__mh {
    height: 11px;
    background-position: -3248px 0px; }
  .iti__flag.iti__mk {
    height: 10px;
    background-position: -3270px 0px; }
  .iti__flag.iti__ml {
    height: 14px;
    background-position: -3292px 0px; }
  .iti__flag.iti__mm {
    height: 14px;
    background-position: -3314px 0px; }
  .iti__flag.iti__mn {
    height: 10px;
    background-position: -3336px 0px; }
  .iti__flag.iti__mo {
    height: 14px;
    background-position: -3358px 0px; }
  .iti__flag.iti__mp {
    height: 10px;
    background-position: -3380px 0px; }
  .iti__flag.iti__mq {
    height: 14px;
    background-position: -3402px 0px; }
  .iti__flag.iti__mr {
    height: 14px;
    background-position: -3424px 0px; }
  .iti__flag.iti__ms {
    height: 10px;
    background-position: -3446px 0px; }
  .iti__flag.iti__mt {
    height: 14px;
    background-position: -3468px 0px; }
  .iti__flag.iti__mu {
    height: 14px;
    background-position: -3490px 0px; }
  .iti__flag.iti__mv {
    height: 14px;
    background-position: -3512px 0px; }
  .iti__flag.iti__mw {
    height: 14px;
    background-position: -3534px 0px; }
  .iti__flag.iti__mx {
    height: 12px;
    background-position: -3556px 0px; }
  .iti__flag.iti__my {
    height: 10px;
    background-position: -3578px 0px; }
  .iti__flag.iti__mz {
    height: 14px;
    background-position: -3600px 0px; }
  .iti__flag.iti__na {
    height: 14px;
    background-position: -3622px 0px; }
  .iti__flag.iti__nc {
    height: 10px;
    background-position: -3644px 0px; }
  .iti__flag.iti__ne {
    height: 15px;
    background-position: -3666px 0px; }
  .iti__flag.iti__nf {
    height: 10px;
    background-position: -3686px 0px; }
  .iti__flag.iti__ng {
    height: 10px;
    background-position: -3708px 0px; }
  .iti__flag.iti__ni {
    height: 12px;
    background-position: -3730px 0px; }
  .iti__flag.iti__nl {
    height: 14px;
    background-position: -3752px 0px; }
  .iti__flag.iti__no {
    height: 15px;
    background-position: -3774px 0px; }
  .iti__flag.iti__np {
    height: 15px;
    background-position: -3796px 0px; }
  .iti__flag.iti__nr {
    height: 10px;
    background-position: -3811px 0px; }
  .iti__flag.iti__nu {
    height: 10px;
    background-position: -3833px 0px; }
  .iti__flag.iti__nz {
    height: 10px;
    background-position: -3855px 0px; }
  .iti__flag.iti__om {
    height: 10px;
    background-position: -3877px 0px; }
  .iti__flag.iti__pa {
    height: 14px;
    background-position: -3899px 0px; }
  .iti__flag.iti__pe {
    height: 14px;
    background-position: -3921px 0px; }
  .iti__flag.iti__pf {
    height: 14px;
    background-position: -3943px 0px; }
  .iti__flag.iti__pg {
    height: 15px;
    background-position: -3965px 0px; }
  .iti__flag.iti__ph {
    height: 10px;
    background-position: -3987px 0px; }
  .iti__flag.iti__pk {
    height: 14px;
    background-position: -4009px 0px; }
  .iti__flag.iti__pl {
    height: 13px;
    background-position: -4031px 0px; }
  .iti__flag.iti__pm {
    height: 14px;
    background-position: -4053px 0px; }
  .iti__flag.iti__pn {
    height: 10px;
    background-position: -4075px 0px; }
  .iti__flag.iti__pr {
    height: 14px;
    background-position: -4097px 0px; }
  .iti__flag.iti__ps {
    height: 10px;
    background-position: -4119px 0px; }
  .iti__flag.iti__pt {
    height: 14px;
    background-position: -4141px 0px; }
  .iti__flag.iti__pw {
    height: 13px;
    background-position: -4163px 0px; }
  .iti__flag.iti__py {
    height: 11px;
    background-position: -4185px 0px; }
  .iti__flag.iti__qa {
    height: 8px;
    background-position: -4207px 0px; }
  .iti__flag.iti__re {
    height: 14px;
    background-position: -4229px 0px; }
  .iti__flag.iti__ro {
    height: 14px;
    background-position: -4251px 0px; }
  .iti__flag.iti__rs {
    height: 14px;
    background-position: -4273px 0px; }
  .iti__flag.iti__ru {
    height: 14px;
    background-position: -4295px 0px; }
  .iti__flag.iti__rw {
    height: 14px;
    background-position: -4317px 0px; }
  .iti__flag.iti__sa {
    height: 14px;
    background-position: -4339px 0px; }
  .iti__flag.iti__sb {
    height: 10px;
    background-position: -4361px 0px; }
  .iti__flag.iti__sc {
    height: 10px;
    background-position: -4383px 0px; }
  .iti__flag.iti__sd {
    height: 10px;
    background-position: -4405px 0px; }
  .iti__flag.iti__se {
    height: 13px;
    background-position: -4427px 0px; }
  .iti__flag.iti__sg {
    height: 14px;
    background-position: -4449px 0px; }
  .iti__flag.iti__sh {
    height: 10px;
    background-position: -4471px 0px; }
  .iti__flag.iti__si {
    height: 10px;
    background-position: -4493px 0px; }
  .iti__flag.iti__sj {
    height: 15px;
    background-position: -4515px 0px; }
  .iti__flag.iti__sk {
    height: 14px;
    background-position: -4537px 0px; }
  .iti__flag.iti__sl {
    height: 14px;
    background-position: -4559px 0px; }
  .iti__flag.iti__sm {
    height: 15px;
    background-position: -4581px 0px; }
  .iti__flag.iti__sn {
    height: 14px;
    background-position: -4603px 0px; }
  .iti__flag.iti__so {
    height: 14px;
    background-position: -4625px 0px; }
  .iti__flag.iti__sr {
    height: 14px;
    background-position: -4647px 0px; }
  .iti__flag.iti__ss {
    height: 10px;
    background-position: -4669px 0px; }
  .iti__flag.iti__st {
    height: 10px;
    background-position: -4691px 0px; }
  .iti__flag.iti__sv {
    height: 12px;
    background-position: -4713px 0px; }
  .iti__flag.iti__sx {
    height: 14px;
    background-position: -4735px 0px; }
  .iti__flag.iti__sy {
    height: 14px;
    background-position: -4757px 0px; }
  .iti__flag.iti__sz {
    height: 14px;
    background-position: -4779px 0px; }
  .iti__flag.iti__ta {
    height: 10px;
    background-position: -4801px 0px; }
  .iti__flag.iti__tc {
    height: 10px;
    background-position: -4823px 0px; }
  .iti__flag.iti__td {
    height: 14px;
    background-position: -4845px 0px; }
  .iti__flag.iti__tf {
    height: 14px;
    background-position: -4867px 0px; }
  .iti__flag.iti__tg {
    height: 13px;
    background-position: -4889px 0px; }
  .iti__flag.iti__th {
    height: 14px;
    background-position: -4911px 0px; }
  .iti__flag.iti__tj {
    height: 10px;
    background-position: -4933px 0px; }
  .iti__flag.iti__tk {
    height: 10px;
    background-position: -4955px 0px; }
  .iti__flag.iti__tl {
    height: 10px;
    background-position: -4977px 0px; }
  .iti__flag.iti__tm {
    height: 14px;
    background-position: -4999px 0px; }
  .iti__flag.iti__tn {
    height: 14px;
    background-position: -5021px 0px; }
  .iti__flag.iti__to {
    height: 10px;
    background-position: -5043px 0px; }
  .iti__flag.iti__tr {
    height: 14px;
    background-position: -5065px 0px; }
  .iti__flag.iti__tt {
    height: 12px;
    background-position: -5087px 0px; }
  .iti__flag.iti__tv {
    height: 10px;
    background-position: -5109px 0px; }
  .iti__flag.iti__tw {
    height: 14px;
    background-position: -5131px 0px; }
  .iti__flag.iti__tz {
    height: 14px;
    background-position: -5153px 0px; }
  .iti__flag.iti__ua {
    height: 14px;
    background-position: -5175px 0px; }
  .iti__flag.iti__ug {
    height: 14px;
    background-position: -5197px 0px; }
  .iti__flag.iti__um {
    height: 11px;
    background-position: -5219px 0px; }
  .iti__flag.iti__un {
    height: 14px;
    background-position: -5241px 0px; }
  .iti__flag.iti__us {
    height: 11px;
    background-position: -5263px 0px; }
  .iti__flag.iti__uy {
    height: 14px;
    background-position: -5285px 0px; }
  .iti__flag.iti__uz {
    height: 10px;
    background-position: -5307px 0px; }
  .iti__flag.iti__va {
    height: 15px;
    background-position: -5329px 0px; }
  .iti__flag.iti__vc {
    height: 14px;
    background-position: -5346px 0px; }
  .iti__flag.iti__ve {
    height: 14px;
    background-position: -5368px 0px; }
  .iti__flag.iti__vg {
    height: 10px;
    background-position: -5390px 0px; }
  .iti__flag.iti__vi {
    height: 14px;
    background-position: -5412px 0px; }
  .iti__flag.iti__vn {
    height: 14px;
    background-position: -5434px 0px; }
  .iti__flag.iti__vu {
    height: 12px;
    background-position: -5456px 0px; }
  .iti__flag.iti__wf {
    height: 14px;
    background-position: -5478px 0px; }
  .iti__flag.iti__ws {
    height: 10px;
    background-position: -5500px 0px; }
  .iti__flag.iti__xk {
    height: 15px;
    background-position: -5522px 0px; }
  .iti__flag.iti__ye {
    height: 14px;
    background-position: -5544px 0px; }
  .iti__flag.iti__yt {
    height: 14px;
    background-position: -5566px 0px; }
  .iti__flag.iti__za {
    height: 14px;
    background-position: -5588px 0px; }
  .iti__flag.iti__zm {
    height: 14px;
    background-position: -5610px 0px; }
  .iti__flag.iti__zw {
    height: 10px;
    background-position: -5632px 0px; }

.iti__flag {
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url("../img/flags.png");
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
      background-image: url("../img/flags@2x.png"); } }

.iti__flag.iti__np {
  background-color: transparent; }

@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__container{position:relative;box-sizing:border-box}.splide__list{margin:0!important;padding:0!important;width:-moz-max-content;width:max-content;will-change:transform}.splide.is-active .splide__list{display:flex}.splide__pagination{display:inline-flex;align-items:center;width:95%;flex-wrap:wrap;justify-content:center;margin:0}.splide__pagination li{list-style-type:none;display:inline-block;line-height:1;margin:0}.splide{visibility:hidden}.splide,.splide__slide{position:relative;outline:none}.splide__slide{box-sizing:border-box;list-style-type:none!important;margin:0;flex-shrink:0}.splide__slide img{vertical-align:bottom}.splide__slider{position:relative}.splide__spinner{position:absolute;top:0;left:0;right:0;bottom:0;margin:auto;display:inline-block;width:20px;height:20px;border-radius:50%;border:2px solid #999;border-left-color:transparent;animation:splide-loading 1s linear infinite}.splide__track{position:relative;z-index:0;overflow:hidden}.splide--draggable>.splide__track>.splide__list>.splide__slide{-webkit-user-select:none;-moz-user-select:none;user-select:none}.splide--fade>.splide__track>.splide__list{display:block}.splide--fade>.splide__track>.splide__list>.splide__slide{position:absolute;top:0;left:0;z-index:0;opacity:0}.splide--fade>.splide__track>.splide__list>.splide__slide.is-active{position:relative;z-index:1;opacity:1}.splide--rtl{direction:rtl}.splide--ttb>.splide__track>.splide__list{display:block}.splide--ttb>.splide__pagination{width:auto}
@font-face {
    font-family: "Flaticon";
    src: url("/fonts/Flaticon.eot");
    src: url("/fonts/Flaticon.eot?#iefix") format("embedded-opentype"),
    url("/fonts/Flaticon.woff2") format("woff2"),
    url("/fonts/Flaticon.woff") format("woff"),
    url("/fonts/Flaticon.ttf") format("truetype"),
    url("/fonts/Flaticon.svg#Flaticon") format("svg");
    font-weight: normal;
    font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
        font-family: "Flaticon";
        src: url("/fonts/Flaticon.svg#Flaticon") format("svg");
    }
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
    font-family: Flaticon;
    font-size: 20px;
    font-style: normal;
    margin-left: 20px;
}

.flaticon-graphic:before { content: "\f100"; }
.flaticon-bulb:before { content: "\f101"; }
.flaticon-heart:before { content: "\f102"; }
.flaticon-money:before { content: "\f103"; }
.flaticon-money-1:before { content: "\f104"; }
.flaticon-analysis:before { content: "\f105"; }
.flaticon-money-2:before { content: "\f106"; }
.flaticon-headset:before { content: "\f107"; }
.flaticon-law:before { content: "\f108"; }
.flaticon-document:before { content: "\f109"; }
.flaticon-idea:before { content: "\f10a"; }
.flaticon-career:before { content: "\f10b"; }
.flaticon-target:before { content: "\f10c"; }
.flaticon-speed:before { content: "\f10d"; }
.flaticon-admin:before { content: "\f10e"; }
.flaticon-tax:before { content: "\f10f"; }
.flaticon-diamond:before { content: "\f110"; }
.flaticon-partnership:before { content: "\f111"; }
.flaticon-growth:before { content: "\f112"; }
.flaticon-sales:before { content: "\f113"; }
.flaticon-sale:before { content: "\f114"; }
.flaticon-whiteboard:before { content: "\f115"; }
.flaticon-pen:before { content: "\f116"; }
.flaticon-best:before { content: "\f117"; }
.flaticon-umbrella:before { content: "\f118"; }
.flaticon-dashboard:before { content: "\f119"; }
.flaticon-gear:before { content: "\f11a"; }
.flaticon-pyramid:before { content: "\f11b"; }
.flaticon-business-and-finance:before { content: "\f11c"; }
.flaticon-flower:before { content: "\f11d"; }
.flaticon-chart:before { content: "\f11e"; }
.flaticon-timer:before { content: "\f11f"; }
.flaticon-banknote:before { content: "\f120"; }
.flaticon-maze:before { content: "\f121"; }
.flaticon-suitcase:before { content: "\f122"; }
.flaticon-chess-piece:before { content: "\f123"; }
.flaticon-puzzle-pieces:before { content: "\f124"; }
.flaticon-profits:before { content: "\f125"; }
.flaticon-pie-chart:before { content: "\f126"; }
.flaticon-computer:before { content: "\f127"; }
.flaticon-clock:before { content: "\f128"; }
.flaticon-time-call:before { content: "\f129"; }
.flaticon-phone:before { content: "\f12a"; }
.flaticon-call:before { content: "\f12b"; }
.flaticon-email:before { content: "\f12c"; }
.flaticon-location:before { content: "\f12d"; }
.flaticon-send:before { content: "\f12e"; }
.flaticon-bag:before { content: "\f12f"; }
.flaticon-supermarket:before { content: "\f130"; }
.flaticon-basket:before { content: "\f131"; }
.flaticon-shopping-bag:before { content: "\f132"; }
.flaticon-right-arrow:before { content: "\f133"; }
.flaticon-left-arrow:before { content: "\f134"; }
.flaticon-back:before { content: "\f135"; }
.flaticon-right-arrow-1:before { content: "\f136"; }
.flaticon-next:before { content: "\f137"; }
.flaticon-back-1:before { content: "\f138"; }
.flaticon-arrow:before { content: "\f139"; }
.flaticon-upload:before { content: "\f13a"; }
.flaticon-back-2:before { content: "\f13b"; }
.flaticon-next-1:before { content: "\f13c"; }
.flaticon-ui:before { content: "\f13d"; }
.flaticon-back-3:before { content: "\f13e"; }
.flaticon-next-2:before { content: "\f13f"; }
.flaticon-back-4:before { content: "\f140"; }
.flaticon-play-button:before { content: "\f141"; }
.flaticon-play-button-1:before { content: "\f142"; }
.flaticon-picture:before { content: "\f143"; }
.flaticon-image:before { content: "\f144"; }
.flaticon-gallery:before { content: "\f145"; }
.flaticon-pictures:before { content: "\f146"; }
.flaticon-unlink:before { content: "\f147"; }
.flaticon-link:before { content: "\f148"; }
.flaticon-link-1:before { content: "\f149"; }
.flaticon-link-2:before { content: "\f14a"; }
.flaticon-speaker:before { content: "\f14b"; }
.flaticon-speaker-1:before { content: "\f14c"; }
.flaticon-picture-1:before { content: "\f14d"; }
.flaticon-picture-2:before { content: "\f14e"; }
.flaticon-quotes:before { content: "\f14f"; }
.flaticon-right-quote:before { content: "\f150"; }
.flaticon-phrase:before { content: "\f151"; }
.flaticon-error:before { content: "\f152"; }
.flaticon-close-circular-button-of-a-cross:before { content: "\f153"; }
.flaticon-add-circular-button:before { content: "\f154"; }
.flaticon-cross:before { content: "\f155"; }
.flaticon-search:before { content: "\f156"; }
.flaticon-shopping-bag-1:before { content: "\f157"; }
.flaticon-eye:before { content: "\f158"; }
.flaticon-user:before { content: "\f159"; }
.flaticon-user-1:before { content: "\f15a"; }
.flaticon-clock-1:before { content: "\f15b"; }
.flaticon-comment:before { content: "\f15c"; }
.flaticon-folder:before { content: "\f15d"; }
.flaticon-price-tag:before { content: "\f15e"; }

@charset "UTF-8";

@font-face {
    font-family: "BebasNeue-Regular";
    src:url("/fonts/BebasNeue-Regular.eot");
    src:url("/fonts/BebasNeue-Regular.eot?#iefix") format("embedded-opentype"),

    url("/fonts/BebasNeue-Regular.woff") format("woff"),
    url("/fonts/BebasNeue-Regular.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}
@charset "UTF-8";

@font-face {
    font-family: "DMSans-Thin";
    src: url("/fonts/DMSans-Thin.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "DMSans-Regular";
    src: url("/fonts/DMSans-Regular.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "DMSans-Bold";
    src: url("/fonts/DMSans-Bold.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}
@charset "UTF-8";
/* 36px */
/* 18px */
/* 24px */
/* 16px */
/* 18px */
/* statuses */
/* header carreras y formaciones + otros detalles de la web */
/* locucion */
/* periodismo */
/* periodismo deportivo */
/* periodismo deportivo distancia */
/* produccion audiovisual */
/* periodismo y produccion de contenidos */
/* guion distancia */
/* comunicacion y marketing digital distancia */
/* esp. periodismo digital */
/* formacion integral en doblaje */
/* formacion integral en doblaje presencial */
/* formacion integral en doblaje distancia */
/* formacion en streaming y sonido */
/* formacion intensiva en guion distancia */
/* formacion en produccion virtual distancia */
/*!
 * Bootstrap  v5.3.3 (https://getbootstrap.com/)
 * Copyright 2011-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root,
[data-bs-theme=light] {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000000;
  --bs-white: #FFFFFF;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #FE6602;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #F8F8F8;
  --bs-dark: #111111;
  --bs-primary-rgb: 254, 102, 2;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 248, 248;
  --bs-dark-rgb: 17, 17, 17;
  --bs-primary-text-emphasis: #662901;
  --bs-secondary-text-emphasis: #2b2f32;
  --bs-success-text-emphasis: #0a3622;
  --bs-info-text-emphasis: #055160;
  --bs-warning-text-emphasis: #664d03;
  --bs-danger-text-emphasis: #58151c;
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #ffe0cc;
  --bs-secondary-bg-subtle: #e2e3e5;
  --bs-success-bg-subtle: #d1e7dd;
  --bs-info-bg-subtle: #cff4fc;
  --bs-warning-bg-subtle: #fff3cd;
  --bs-danger-bg-subtle: #f8d7da;
  --bs-light-bg-subtle: #fcfcfd;
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: #ffc29a;
  --bs-secondary-border-subtle: #c4c8cb;
  --bs-success-border-subtle: #a3cfbb;
  --bs-info-border-subtle: #9eeaf9;
  --bs-warning-border-subtle: #ffe69c;
  --bs-danger-border-subtle: #f1aeb5;
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #FFFFFF;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #FE6602;
  --bs-link-color-rgb: 254, 102, 2;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #cb5202;
  --bs-link-hover-color-rgb: 203, 82, 2;
  --bs-code-color: #d63384;
  --bs-highlight-color: #212529;
  --bs-highlight-bg: #fff3cd;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(254, 102, 2, 0.25);
  --bs-form-valid-color: #198754;
  --bs-form-valid-border-color: #198754;
  --bs-form-invalid-color: #dc3545;
  --bs-form-invalid-border-color: #dc3545;
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #FFFFFF;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: #2b3035;
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: #fea367;
  --bs-secondary-text-emphasis: #a7acb1;
  --bs-success-text-emphasis: #75b798;
  --bs-info-text-emphasis: #6edff6;
  --bs-warning-text-emphasis: #ffda6a;
  --bs-danger-text-emphasis: #ea868f;
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: #331400;
  --bs-secondary-bg-subtle: #161719;
  --bs-success-bg-subtle: #051b11;
  --bs-info-bg-subtle: #032830;
  --bs-warning-bg-subtle: #332701;
  --bs-danger-bg-subtle: #2c0b0e;
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: #983d01;
  --bs-secondary-border-subtle: #41464b;
  --bs-success-border-subtle: #0f5132;
  --bs-info-border-subtle: #087990;
  --bs-warning-border-subtle: #997404;
  --bs-danger-border-subtle: #842029;
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: #fea367;
  --bs-link-hover-color: #feb585;
  --bs-link-color-rgb: 254, 163, 103;
  --bs-link-hover-color-rgb: 254, 181, 133;
  --bs-code-color: #e685b5;
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: #664d03;
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: #75b798;
  --bs-form-valid-border-color: #75b798;
  --bs-form-invalid-color: #ea868f;
  --bs-form-invalid-border-color: #ea868f;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 0.25;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color);
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.1875em;
  color: var(--bs-highlight-color);
  background-color: var(--bs-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-secondary-color);
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: var(--bs-body-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: var(--bs-emphasis-color);
  --bs-table-bg: var(--bs-body-bg);
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
  --bs-table-active-color: var(--bs-emphasis-color);
  --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
  --bs-table-hover-color: var(--bs-emphasis-color);
  --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: var(--bs-border-width) 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 var(--bs-border-width);
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-active {
  --bs-table-color-state: var(--bs-table-active-color);
  --bs-table-bg-state: var(--bs-table-active-bg);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-color-state: var(--bs-table-hover-color);
  --bs-table-bg-state: var(--bs-table-hover-bg);
}

.table-primary {
  --bs-table-color: #000000;
  --bs-table-bg: #ffe0cc;
  --bs-table-border-color: #ccb3a3;
  --bs-table-striped-bg: #f2d5c2;
  --bs-table-striped-color: #000000;
  --bs-table-active-bg: #e6cab8;
  --bs-table-active-color: #000000;
  --bs-table-hover-bg: #eccfbd;
  --bs-table-hover-color: #000000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-secondary {
  --bs-table-color: #000000;
  --bs-table-bg: #e2e3e5;
  --bs-table-border-color: #b5b6b7;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-success {
  --bs-table-color: #000000;
  --bs-table-bg: #d1e7dd;
  --bs-table-border-color: #a7b9b1;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-info {
  --bs-table-color: #000000;
  --bs-table-bg: #cff4fc;
  --bs-table-border-color: #a6c3ca;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-warning {
  --bs-table-color: #000000;
  --bs-table-bg: #fff3cd;
  --bs-table-border-color: #ccc2a4;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-danger {
  --bs-table-color: #000000;
  --bs-table-bg: #f8d7da;
  --bs-table-border-color: #c6acae;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-light {
  --bs-table-color: #000000;
  --bs-table-bg: #F8F8F8;
  --bs-table-border-color: #c6c6c6;
  --bs-table-striped-bg: #ececec;
  --bs-table-striped-color: #000000;
  --bs-table-active-bg: #dfdfdf;
  --bs-table-active-color: #000000;
  --bs-table-hover-bg: #e5e5e5;
  --bs-table-hover-color: #000000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-dark {
  --bs-table-color: #FFFFFF;
  --bs-table-bg: #111111;
  --bs-table-border-color: #414141;
  --bs-table-striped-bg: #1d1d1d;
  --bs-table-striped-color: #FFFFFF;
  --bs-table-active-bg: #292929;
  --bs-table-active-color: #FFFFFF;
  --bs-table-hover-bg: #232323;
  --bs-table-hover-color: #FFFFFF;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(12px + var(--bs-border-width));
  padding-bottom: calc(12px + var(--bs-border-width));
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + var(--bs-border-width));
  padding-bottom: calc(0.5rem + var(--bs-border-width));
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + var(--bs-border-width));
  padding-bottom: calc(0.25rem + var(--bs-border-width));
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}

.form-control {
  display: block;
  width: 100%;
  padding: 12px 17px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #ffb381;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(254, 102, 2, 0.25);
}
.form-control::-webkit-date-and-time-value {
  min-width: 85px;
  height: 1.5em;
  margin: 0;
}
.form-control::-webkit-datetime-edit {
  display: block;
  padding: 0;
}
.form-control::-moz-placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control:disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 12px 17px;
  margin: -12px -17px;
  margin-inline-end: 17px;
  color: var(--bs-body-color);
  background-color: var(--bs-tertiary-bg);
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: var(--bs-border-width);
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: var(--bs-secondary-bg);
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 12px 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: transparent;
  border: solid transparent;
  border-width: var(--bs-border-width) 0;
}
.form-control-plaintext:focus {
  outline: 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 24px + calc(var(--bs-border-width) * 2));
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-control-color {
  width: 3rem;
  height: calc(1.5em + 24px + calc(var(--bs-border-width) * 2));
  padding: 12px;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
.form-control-color::-webkit-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
.form-control-color.form-control-sm {
  height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}
.form-control-color.form-control-lg {
  height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 12px 51px 12px 17px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 17px center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #ffb381;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(254, 102, 2, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 17px;
  background-image: none;
}
.form-select:disabled {
  background-color: var(--bs-secondary-bg);
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--bs-body-color);
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}

[data-bs-theme=dark] .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}
.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}

.form-check-input {
  --bs-form-check-bg: var(--bs-body-bg);
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--bs-border-width) solid var(--bs-border-color);
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #ffb381;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(254, 102, 2, 0.25);
}
.form-check-input:checked {
  background-color: #FE6602;
  border-color: #FE6602;
}
.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23FFFFFF'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #FE6602;
  border-color: #FE6602;
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  width: 2em;
  margin-left: -2.5em;
  background-image: var(--bs-form-switch-bg);
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffb381'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23FFFFFF'/%3e%3c/svg%3e");
}
.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0;
}
.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0;
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e");
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #FFFFFF, 0 0 0 0.25rem rgba(254, 102, 2, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #FFFFFF, 0 0 0 0.25rem rgba(254, 102, 2, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  -webkit-appearance: none;
          appearance: none;
  background-color: #FE6602;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #ffd1b3;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  -moz-appearance: none;
       appearance: none;
  background-color: #FE6602;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #ffd1b3;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: var(--bs-secondary-color);
}
.form-range:disabled::-moz-range-thumb {
  background-color: var(--bs-secondary-color);
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  padding: 1rem 17px;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: var(--bs-border-width) solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  padding: 1rem 17px;
}
.form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown), .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label::after {
  position: absolute;
  inset: 1rem 8.5px;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
}
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-control-plaintext ~ label::after,
.form-floating > .form-select ~ label::after {
  position: absolute;
  inset: 1rem 8.5px;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control-plaintext ~ label {
  border-width: var(--bs-border-width) 0;
}
.form-floating > :disabled ~ label,
.form-floating > .form-control:disabled ~ label {
  color: #6c757d;
}
.form-floating > :disabled ~ label::after,
.form-floating > .form-control:disabled ~ label::after {
  background-color: var(--bs-secondary-bg);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select,
.input-group > .form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .form-floating:focus-within {
  z-index: 5;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 5;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 12px 17px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-tertiary-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 68px;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: calc(var(--bs-border-width) * -1);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-valid-color);
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-success);
  border-radius: var(--bs-border-radius);
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: var(--bs-form-valid-border-color);
  padding-right: calc(1.5em + 24px);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 6px) center;
  background-size: calc(0.75em + 12px) calc(0.75em + 12px);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 24px);
  background-position: top calc(0.375em + 6px) right calc(0.375em + 6px);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: var(--bs-form-valid-border-color);
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  padding-right: 93.5px;
  background-position: right 17px center, center right 51px;
  background-size: 16px 12px, calc(0.75em + 12px) calc(0.75em + 12px);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.was-validated .form-control-color:valid, .form-control-color.is-valid {
  width: calc(3rem + calc(1.5em + 24px));
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: var(--bs-form-valid-border-color);
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: var(--bs-form-valid-color);
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: var(--bs-form-valid-color);
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
.was-validated .input-group > .form-select:not(:focus):valid,
.input-group > .form-select:not(:focus).is-valid,
.was-validated .input-group > .form-floating:not(:focus-within):valid,
.input-group > .form-floating:not(:focus-within).is-valid {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-invalid-color);
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-danger);
  border-radius: var(--bs-border-radius);
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
  padding-right: calc(1.5em + 24px);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 6px) center;
  background-size: calc(0.75em + 12px) calc(0.75em + 12px);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 24px);
  background-position: top calc(0.375em + 6px) right calc(0.375em + 6px);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  padding-right: 93.5px;
  background-position: right 17px center, center right 51px;
  background-size: 16px 12px, calc(0.75em + 12px) calc(0.75em + 12px);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  width: calc(3rem + calc(1.5em + 24px));
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: var(--bs-form-invalid-color);
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: var(--bs-form-invalid-color);
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
.was-validated .input-group > .form-select:not(:focus):invalid,
.input-group > .form-select:not(:focus).is-invalid,
.was-validated .input-group > .form-floating:not(:focus-within):invalid,
.input-group > .form-floating:not(:focus-within).is-invalid {
  z-index: 4;
}

.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.btn-check + .btn:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}
.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked:focus-visible + .btn {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
  --bs-btn-color: #000000;
  --bs-btn-bg: #FE6602;
  --bs-btn-border-color: #FE6602;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #fe7d28;
  --bs-btn-hover-border-color: #fe751b;
  --bs-btn-focus-shadow-rgb: 216, 87, 2;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #fe8535;
  --bs-btn-active-border-color: #fe751b;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000000;
  --bs-btn-disabled-bg: #FE6602;
  --bs-btn-disabled-border-color: #FE6602;
}

.btn-secondary {
  --bs-btn-color: #FFFFFF;
  --bs-btn-bg: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #FFFFFF;
  --bs-btn-hover-bg: #5c636a;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #FFFFFF;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #FFFFFF;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
}

.btn-success {
  --bs-btn-color: #FFFFFF;
  --bs-btn-bg: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #FFFFFF;
  --bs-btn-hover-bg: #157347;
  --bs-btn-hover-border-color: #146c43;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #FFFFFF;
  --bs-btn-active-bg: #146c43;
  --bs-btn-active-border-color: #13653f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #FFFFFF;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
}

.btn-info {
  --bs-btn-color: #000000;
  --bs-btn-bg: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #31d2f2;
  --bs-btn-hover-border-color: #25cff2;
  --bs-btn-focus-shadow-rgb: 11, 172, 204;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #3dd5f3;
  --bs-btn-active-border-color: #25cff2;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000000;
  --bs-btn-disabled-bg: #0dcaf0;
  --bs-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
  --bs-btn-color: #000000;
  --bs-btn-bg: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #ffca2c;
  --bs-btn-hover-border-color: #ffc720;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #ffc720;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000000;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107;
}

.btn-danger {
  --bs-btn-color: #FFFFFF;
  --bs-btn-bg: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #FFFFFF;
  --bs-btn-hover-bg: #bb2d3b;
  --bs-btn-hover-border-color: #b02a37;
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #FFFFFF;
  --bs-btn-active-bg: #b02a37;
  --bs-btn-active-border-color: #a52834;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #FFFFFF;
  --bs-btn-disabled-bg: #dc3545;
  --bs-btn-disabled-border-color: #dc3545;
}

.btn-light {
  --bs-btn-color: #000000;
  --bs-btn-bg: #F8F8F8;
  --bs-btn-border-color: #F8F8F8;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: lightgray;
  --bs-btn-hover-border-color: #c6c6c6;
  --bs-btn-focus-shadow-rgb: 211, 211, 211;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #c6c6c6;
  --bs-btn-active-border-color: #bababa;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000000;
  --bs-btn-disabled-bg: #F8F8F8;
  --bs-btn-disabled-border-color: #F8F8F8;
}

.btn-dark {
  --bs-btn-color: #FFFFFF;
  --bs-btn-bg: #111111;
  --bs-btn-border-color: #111111;
  --bs-btn-hover-color: #FFFFFF;
  --bs-btn-hover-bg: #353535;
  --bs-btn-hover-border-color: #292929;
  --bs-btn-focus-shadow-rgb: 53, 53, 53;
  --bs-btn-active-color: #FFFFFF;
  --bs-btn-active-bg: #414141;
  --bs-btn-active-border-color: #292929;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #FFFFFF;
  --bs-btn-disabled-bg: #111111;
  --bs-btn-disabled-border-color: #111111;
}

.btn-outline-primary {
  --bs-btn-color: #FE6602;
  --bs-btn-border-color: #FE6602;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #FE6602;
  --bs-btn-hover-border-color: #FE6602;
  --bs-btn-focus-shadow-rgb: 254, 102, 2;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #FE6602;
  --bs-btn-active-border-color: #FE6602;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #FE6602;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #FE6602;
  --bs-gradient: none;
}

.btn-outline-secondary {
  --bs-btn-color: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #FFFFFF;
  --bs-btn-hover-bg: #6c757d;
  --bs-btn-hover-border-color: #6c757d;
  --bs-btn-focus-shadow-rgb: 108, 117, 125;
  --bs-btn-active-color: #FFFFFF;
  --bs-btn-active-bg: #6c757d;
  --bs-btn-active-border-color: #6c757d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6c757d;
  --bs-gradient: none;
}

.btn-outline-success {
  --bs-btn-color: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #FFFFFF;
  --bs-btn-hover-bg: #198754;
  --bs-btn-hover-border-color: #198754;
  --bs-btn-focus-shadow-rgb: 25, 135, 84;
  --bs-btn-active-color: #FFFFFF;
  --bs-btn-active-bg: #198754;
  --bs-btn-active-border-color: #198754;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #198754;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #198754;
  --bs-gradient: none;
}

.btn-outline-info {
  --bs-btn-color: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #0dcaf0;
  --bs-btn-hover-border-color: #0dcaf0;
  --bs-btn-focus-shadow-rgb: 13, 202, 240;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #0dcaf0;
  --bs-btn-active-border-color: #0dcaf0;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0dcaf0;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0dcaf0;
  --bs-gradient: none;
}

.btn-outline-warning {
  --bs-btn-color: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #ffc107;
  --bs-btn-hover-border-color: #ffc107;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #ffc107;
  --bs-btn-active-border-color: #ffc107;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffc107;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ffc107;
  --bs-gradient: none;
}

.btn-outline-danger {
  --bs-btn-color: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #FFFFFF;
  --bs-btn-hover-bg: #dc3545;
  --bs-btn-hover-border-color: #dc3545;
  --bs-btn-focus-shadow-rgb: 220, 53, 69;
  --bs-btn-active-color: #FFFFFF;
  --bs-btn-active-bg: #dc3545;
  --bs-btn-active-border-color: #dc3545;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #dc3545;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #dc3545;
  --bs-gradient: none;
}

.btn-outline-light {
  --bs-btn-color: #F8F8F8;
  --bs-btn-border-color: #F8F8F8;
  --bs-btn-hover-color: #000000;
  --bs-btn-hover-bg: #F8F8F8;
  --bs-btn-hover-border-color: #F8F8F8;
  --bs-btn-focus-shadow-rgb: 248, 248, 248;
  --bs-btn-active-color: #000000;
  --bs-btn-active-bg: #F8F8F8;
  --bs-btn-active-border-color: #F8F8F8;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #F8F8F8;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #F8F8F8;
  --bs-gradient: none;
}

.btn-outline-dark {
  --bs-btn-color: #111111;
  --bs-btn-border-color: #111111;
  --bs-btn-hover-color: #FFFFFF;
  --bs-btn-hover-bg: #111111;
  --bs-btn-hover-border-color: #111111;
  --bs-btn-focus-shadow-rgb: 17, 17, 17;
  --bs-btn-active-color: #FFFFFF;
  --bs-btn-active-bg: #111111;
  --bs-btn-active-border-color: #111111;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #111111;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #111111;
  --bs-gradient: none;
}

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: 0 0 0 #000;
  --bs-btn-focus-shadow-rgb: 216, 87, 2;
  text-decoration: underline;
}
.btn-link:focus-visible {
  color: var(--bs-btn-color);
}
.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

.btn-lg, .btn-group-lg > .btn {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: var(--bs-border-radius-lg);
}

.btn-sm, .btn-group-sm > .btn {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: var(--bs-body-color);
  --bs-dropdown-bg: var(--bs-body-bg);
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: var(--bs-border-radius);
  --bs-dropdown-border-width: var(--bs-border-width);
  --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: var(--bs-box-shadow);
  --bs-dropdown-link-color: var(--bs-body-color);
  --bs-dropdown-link-hover-color: var(--bs-body-color);
  --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  --bs-dropdown-link-active-color: #FFFFFF;
  --bs-dropdown-link-active-bg: #FE6602;
  --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
}

.dropdown-menu-dark {
  --bs-dropdown-color: #dee2e6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #dee2e6;
  --bs-dropdown-link-hover-color: #FFFFFF;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #FFFFFF;
  --bs-dropdown-link-active-bg: #FE6602;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group {
  border-radius: var(--bs-border-radius);
}
.btn-group > :not(.btn-check:first-child) + .btn,
.btn-group > .btn-group:not(:first-child) {
  margin-left: calc(var(--bs-border-width) * -1);
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn.dropdown-toggle-split:first-child,
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: calc(var(--bs-border-width) * -1);
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  background: none;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--bs-nav-link-hover-color);
}
.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(254, 102, 2, 0.25);
}
.nav-link.disabled, .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --bs-nav-tabs-border-width: var(--bs-border-width);
  --bs-nav-tabs-border-color: var(--bs-border-color);
  --bs-nav-tabs-border-radius: var(--bs-border-radius);
  --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}
.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}
.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #FFFFFF;
  --bs-nav-pills-link-active-bg: #FE6602;
}
.nav-pills .nav-link {
  border-radius: var(--bs-nav-pills-border-radius);
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-underline {
  --bs-nav-underline-gap: 1rem;
  --bs-nav-underline-border-width: 0.125rem;
  --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  gap: var(--bs-nav-underline-gap);
}
.nav-underline .nav-link {
  padding-right: 0;
  padding-left: 0;
  border-bottom: var(--bs-nav-underline-border-width) solid transparent;
}
.nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
  border-bottom-color: currentcolor;
}
.nav-underline .nav-link.active,
.nav-underline .show > .nav-link {
  font-weight: 700;
  color: var(--bs-nav-underline-link-active-color);
  border-bottom-color: currentcolor;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--bs-navbar-active-color);
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}
.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas {
  position: static;
  z-index: auto;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: 0 !important;
  transform: none !important;
  transition: none;
}
.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-dark,
.navbar[data-bs-theme=dark] {
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --bs-navbar-active-color: #FFFFFF;
  --bs-navbar-brand-color: #FFFFFF;
  --bs-navbar-brand-hover-color: #FFFFFF;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

[data-bs-theme=dark] .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-title-color: ;
  --bs-card-subtitle-color: ;
  --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: var(--bs-border-radius);
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: var(--bs-body-bg);
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: var(--bs-card-title-color);
}

.card-subtitle {
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
  color: var(--bs-card-subtitle-color);
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x);
}

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

.card-header-tabs {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0;
}
.card-header-tabs .nav-link.active {
  background-color: var(--bs-card-bg);
  border-bottom-color: var(--bs-card-bg);
}

.card-header-pills {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.card-group > .card {
  margin-bottom: var(--bs-card-group-margin);
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: var(--bs-border-width);
  --bs-accordion-border-radius: var(--bs-border-radius);
  --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23662901' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(254, 102, 2, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}
.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:last-of-type > .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush > .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush > .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush > .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush > .accordion-item > .accordion-header .accordion-button, .accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  border-radius: 0;
}
.accordion-flush > .accordion-item > .accordion-collapse {
  border-radius: 0;
}

[data-bs-theme=dark] .accordion-button::after {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fea367'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fea367'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-bg: ;
  --bs-breadcrumb-border-radius: ;
  --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
}

.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: var(--bs-border-width);
  --bs-pagination-border-color: var(--bs-border-color);
  --bs-pagination-border-radius: var(--bs-border-radius);
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  --bs-pagination-hover-border-color: var(--bs-border-color);
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: var(--bs-secondary-bg);
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(254, 102, 2, 0.25);
  --bs-pagination-active-color: #FFFFFF;
  --bs-pagination-active-bg: #FE6602;
  --bs-pagination-active-border-color: #FE6602;
  --bs-pagination-disabled-color: var(--bs-secondary-color);
  --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: var(--bs-pagination-hover-color);
  background-color: var(--bs-pagination-hover-bg);
  border-color: var(--bs-pagination-hover-border-color);
}
.page-link:focus {
  z-index: 3;
  color: var(--bs-pagination-focus-color);
  background-color: var(--bs-pagination-focus-bg);
  outline: 0;
  box-shadow: var(--bs-pagination-focus-box-shadow);
}
.page-link.active, .active > .page-link {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: var(--bs-pagination-active-bg);
  border-color: var(--bs-pagination-active-border-color);
}
.page-link.disabled, .disabled > .page-link {
  color: var(--bs-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--bs-pagination-disabled-bg);
  border-color: var(--bs-pagination-disabled-border-color);
}

.page-item:not(:first-child) .page-link {
  margin-left: calc(var(--bs-border-width) * -1);
}
.page-item:first-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}
.page-item:last-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}

.pagination-lg {
  --bs-pagination-padding-x: 1.5rem;
  --bs-pagination-padding-y: 0.75rem;
  --bs-pagination-font-size: 1.25rem;
  --bs-pagination-border-radius: var(--bs-border-radius-lg);
}

.pagination-sm {
  --bs-pagination-padding-x: 0.5rem;
  --bs-pagination-padding-y: 0.25rem;
  --bs-pagination-font-size: 0.875rem;
  --bs-pagination-border-radius: var(--bs-border-radius-sm);
}

.badge {
  --bs-badge-padding-x: 0.65em;
  --bs-badge-padding-y: 0.35em;
  --bs-badge-font-size: 0.75em;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #FFFFFF;
  --bs-badge-border-radius: var(--bs-border-radius);
  display: inline-block;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  line-height: 1;
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  --bs-alert-border-radius: var(--bs-border-radius);
  --bs-alert-link-color: inherit;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
  color: var(--bs-alert-link-color);
}

.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  --bs-alert-color: var(--bs-primary-text-emphasis);
  --bs-alert-bg: var(--bs-primary-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-border-subtle);
  --bs-alert-link-color: var(--bs-primary-text-emphasis);
}

.alert-secondary {
  --bs-alert-color: var(--bs-secondary-text-emphasis);
  --bs-alert-bg: var(--bs-secondary-bg-subtle);
  --bs-alert-border-color: var(--bs-secondary-border-subtle);
  --bs-alert-link-color: var(--bs-secondary-text-emphasis);
}

.alert-success {
  --bs-alert-color: var(--bs-success-text-emphasis);
  --bs-alert-bg: var(--bs-success-bg-subtle);
  --bs-alert-border-color: var(--bs-success-border-subtle);
  --bs-alert-link-color: var(--bs-success-text-emphasis);
}

.alert-info {
  --bs-alert-color: var(--bs-info-text-emphasis);
  --bs-alert-bg: var(--bs-info-bg-subtle);
  --bs-alert-border-color: var(--bs-info-border-subtle);
  --bs-alert-link-color: var(--bs-info-text-emphasis);
}

.alert-warning {
  --bs-alert-color: var(--bs-warning-text-emphasis);
  --bs-alert-bg: var(--bs-warning-bg-subtle);
  --bs-alert-border-color: var(--bs-warning-border-subtle);
  --bs-alert-link-color: var(--bs-warning-text-emphasis);
}

.alert-danger {
  --bs-alert-color: var(--bs-danger-text-emphasis);
  --bs-alert-bg: var(--bs-danger-bg-subtle);
  --bs-alert-border-color: var(--bs-danger-border-subtle);
  --bs-alert-link-color: var(--bs-danger-text-emphasis);
}

.alert-light {
  --bs-alert-color: var(--bs-light-text-emphasis);
  --bs-alert-bg: var(--bs-light-bg-subtle);
  --bs-alert-border-color: var(--bs-light-border-subtle);
  --bs-alert-link-color: var(--bs-light-text-emphasis);
}

.alert-dark {
  --bs-alert-color: var(--bs-dark-text-emphasis);
  --bs-alert-bg: var(--bs-dark-bg-subtle);
  --bs-alert-border-color: var(--bs-dark-border-subtle);
  --bs-alert-link-color: var(--bs-dark-text-emphasis);
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress,
.progress-stacked {
  --bs-progress-height: 1rem;
  --bs-progress-font-size: 0.75rem;
  --bs-progress-bg: var(--bs-secondary-bg);
  --bs-progress-border-radius: var(--bs-border-radius);
  --bs-progress-box-shadow: var(--bs-box-shadow-inset);
  --bs-progress-bar-color: #FFFFFF;
  --bs-progress-bar-bg: #FE6602;
  --bs-progress-bar-transition: width 0.6s ease;
  display: flex;
  height: var(--bs-progress-height);
  overflow: hidden;
  font-size: var(--bs-progress-font-size);
  background-color: var(--bs-progress-bg);
  border-radius: var(--bs-progress-border-radius);
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--bs-progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-progress-bar-bg);
  transition: var(--bs-progress-bar-transition);
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: var(--bs-progress-height) var(--bs-progress-height);
}

.progress-stacked > .progress {
  overflow: visible;
}

.progress-stacked > .progress > .progress-bar {
  width: 100%;
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.list-group {
  --bs-list-group-color: var(--bs-body-color);
  --bs-list-group-bg: var(--bs-body-bg);
  --bs-list-group-border-color: var(--bs-border-color);
  --bs-list-group-border-width: var(--bs-border-width);
  --bs-list-group-border-radius: var(--bs-border-radius);
  --bs-list-group-item-padding-x: 1rem;
  --bs-list-group-item-padding-y: 0.5rem;
  --bs-list-group-action-color: var(--bs-secondary-color);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
  --bs-list-group-action-active-color: var(--bs-body-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-bg);
  --bs-list-group-disabled-color: var(--bs-secondary-color);
  --bs-list-group-disabled-bg: var(--bs-body-bg);
  --bs-list-group-active-color: #FFFFFF;
  --bs-list-group-active-bg: #FE6602;
  --bs-list-group-active-border-color: #FE6602;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--bs-list-group-border-radius);
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > .list-group-item::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: var(--bs-list-group-action-hover-color);
  text-decoration: none;
  background-color: var(--bs-list-group-action-hover-bg);
}
.list-group-item-action:active {
  color: var(--bs-list-group-action-active-color);
  background-color: var(--bs-list-group-action-active-bg);
}

.list-group-item {
  position: relative;
  display: block;
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  text-decoration: none;
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: var(--bs-list-group-disabled-color);
  pointer-events: none;
  background-color: var(--bs-list-group-disabled-bg);
}
.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: var(--bs-list-group-active-bg);
  border-color: var(--bs-list-group-active-border-color);
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: calc(-1 * var(--bs-list-group-border-width));
  border-top-width: var(--bs-list-group-border-width);
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  border-bottom-left-radius: var(--bs-list-group-border-radius);
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: var(--bs-list-group-border-radius);
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: var(--bs-list-group-border-width);
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: calc(-1 * var(--bs-list-group-border-width));
  border-left-width: var(--bs-list-group-border-width);
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 var(--bs-list-group-border-width);
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  --bs-list-group-color: var(--bs-primary-text-emphasis);
  --bs-list-group-bg: var(--bs-primary-bg-subtle);
  --bs-list-group-border-color: var(--bs-primary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-primary-border-subtle);
  --bs-list-group-active-color: var(--bs-primary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-primary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-primary-text-emphasis);
}

.list-group-item-secondary {
  --bs-list-group-color: var(--bs-secondary-text-emphasis);
  --bs-list-group-bg: var(--bs-secondary-bg-subtle);
  --bs-list-group-border-color: var(--bs-secondary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis);
}

.list-group-item-success {
  --bs-list-group-color: var(--bs-success-text-emphasis);
  --bs-list-group-bg: var(--bs-success-bg-subtle);
  --bs-list-group-border-color: var(--bs-success-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
  --bs-list-group-active-color: var(--bs-success-bg-subtle);
  --bs-list-group-active-bg: var(--bs-success-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-success-text-emphasis);
}

.list-group-item-info {
  --bs-list-group-color: var(--bs-info-text-emphasis);
  --bs-list-group-bg: var(--bs-info-bg-subtle);
  --bs-list-group-border-color: var(--bs-info-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
  --bs-list-group-active-color: var(--bs-info-bg-subtle);
  --bs-list-group-active-bg: var(--bs-info-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-info-text-emphasis);
}

.list-group-item-warning {
  --bs-list-group-color: var(--bs-warning-text-emphasis);
  --bs-list-group-bg: var(--bs-warning-bg-subtle);
  --bs-list-group-border-color: var(--bs-warning-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
  --bs-list-group-active-color: var(--bs-warning-bg-subtle);
  --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-warning-text-emphasis);
}

.list-group-item-danger {
  --bs-list-group-color: var(--bs-danger-text-emphasis);
  --bs-list-group-bg: var(--bs-danger-bg-subtle);
  --bs-list-group-border-color: var(--bs-danger-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
  --bs-list-group-active-color: var(--bs-danger-bg-subtle);
  --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-danger-text-emphasis);
}

.list-group-item-light {
  --bs-list-group-color: var(--bs-light-text-emphasis);
  --bs-list-group-bg: var(--bs-light-bg-subtle);
  --bs-list-group-border-color: var(--bs-light-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-light-border-subtle);
  --bs-list-group-active-color: var(--bs-light-bg-subtle);
  --bs-list-group-active-bg: var(--bs-light-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-light-text-emphasis);
}

.list-group-item-dark {
  --bs-list-group-color: var(--bs-dark-text-emphasis);
  --bs-list-group-bg: var(--bs-dark-bg-subtle);
  --bs-list-group-border-color: var(--bs-dark-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-dark-border-subtle);
  --bs-list-group-active-color: var(--bs-dark-bg-subtle);
  --bs-list-group-active-bg: var(--bs-dark-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-dark-text-emphasis);
}

.btn-close {
  --bs-btn-close-color: #000000;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  --bs-btn-close-opacity: 0.5;
  --bs-btn-close-hover-opacity: 0.75;
  --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(254, 102, 2, 0.25);
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: 0.25;
  --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--bs-btn-close-color);
  background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: var(--bs-btn-close-opacity);
}
.btn-close:hover {
  color: var(--bs-btn-close-color);
  text-decoration: none;
  opacity: var(--bs-btn-close-hover-opacity);
}
.btn-close:focus {
  outline: 0;
  box-shadow: var(--bs-btn-close-focus-shadow);
  opacity: var(--bs-btn-close-focus-opacity);
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: var(--bs-btn-close-disabled-opacity);
}

.btn-close-white {
  filter: var(--bs-btn-close-white-filter);
}

[data-bs-theme=dark] .btn-close {
  filter: var(--bs-btn-close-white-filter);
}

.toast {
  --bs-toast-zindex: 1090;
  --bs-toast-padding-x: 0.75rem;
  --bs-toast-padding-y: 0.5rem;
  --bs-toast-spacing: 1.5rem;
  --bs-toast-max-width: 350px;
  --bs-toast-font-size: 0.875rem;
  --bs-toast-color: ;
  --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  --bs-toast-border-width: var(--bs-border-width);
  --bs-toast-border-color: var(--bs-border-color-translucent);
  --bs-toast-border-radius: var(--bs-border-radius);
  --bs-toast-box-shadow: var(--bs-box-shadow);
  --bs-toast-header-color: var(--bs-secondary-color);
  --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  --bs-toast-header-border-color: var(--bs-border-color-translucent);
  width: var(--bs-toast-max-width);
  max-width: 100%;
  font-size: var(--bs-toast-font-size);
  color: var(--bs-toast-color);
  pointer-events: auto;
  background-color: var(--bs-toast-bg);
  background-clip: padding-box;
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  box-shadow: var(--bs-toast-box-shadow);
  border-radius: var(--bs-toast-border-radius);
}
.toast.showing {
  opacity: 0;
}
.toast:not(.show) {
  display: none;
}

.toast-container {
  --bs-toast-zindex: 1090;
  position: absolute;
  z-index: var(--bs-toast-zindex);
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: var(--bs-toast-spacing);
}

.toast-header {
  display: flex;
  align-items: center;
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  color: var(--bs-toast-header-color);
  background-color: var(--bs-toast-header-bg);
  background-clip: padding-box;
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
}
.toast-header .btn-close {
  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
  margin-left: var(--bs-toast-padding-x);
}

.toast-body {
  padding: var(--bs-toast-padding-x);
  word-wrap: break-word;
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
.tooltip {
  --bs-tooltip-zindex: 1080;
  --bs-tooltip-max-width: 200px;
  --bs-tooltip-padding-x: 0.5rem;
  --bs-tooltip-padding-y: 0.25rem;
  --bs-tooltip-margin: ;
  --bs-tooltip-font-size: 0.875rem;
  --bs-tooltip-color: var(--bs-body-bg);
  --bs-tooltip-bg: var(--bs-emphasis-color);
  --bs-tooltip-border-radius: var(--bs-border-radius);
  --bs-tooltip-opacity: 0.9;
  --bs-tooltip-arrow-width: 0.8rem;
  --bs-tooltip-arrow-height: 0.4rem;
  z-index: var(--bs-tooltip-zindex);
  display: block;
  margin: var(--bs-tooltip-margin);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-tooltip-font-size);
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: var(--bs-tooltip-opacity);
}
.tooltip .tooltip-arrow {
  display: block;
  width: var(--bs-tooltip-arrow-width);
  height: var(--bs-tooltip-arrow-height);
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: calc(-1 * var(--bs-tooltip-arrow-height));
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-top-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-right-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: calc(-1 * var(--bs-tooltip-arrow-height));
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-bottom-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-left-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.tooltip-inner {
  max-width: var(--bs-tooltip-max-width);
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  color: var(--bs-tooltip-color);
  text-align: center;
  background-color: var(--bs-tooltip-bg);
  border-radius: var(--bs-tooltip-border-radius);
}

.popover {
  --bs-popover-zindex: 1070;
  --bs-popover-max-width: 276px;
  --bs-popover-font-size: 0.875rem;
  --bs-popover-bg: var(--bs-body-bg);
  --bs-popover-border-width: var(--bs-border-width);
  --bs-popover-border-color: var(--bs-border-color-translucent);
  --bs-popover-border-radius: var(--bs-border-radius-lg);
  --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
  --bs-popover-box-shadow: var(--bs-box-shadow);
  --bs-popover-header-padding-x: 1rem;
  --bs-popover-header-padding-y: 0.5rem;
  --bs-popover-header-font-size: 1rem;
  --bs-popover-header-color: inherit;
  --bs-popover-header-bg: var(--bs-secondary-bg);
  --bs-popover-body-padding-x: 1rem;
  --bs-popover-body-padding-y: 1rem;
  --bs-popover-body-color: var(--bs-body-color);
  --bs-popover-arrow-width: 1rem;
  --bs-popover-arrow-height: 0.5rem;
  --bs-popover-arrow-border: var(--bs-popover-border-color);
  z-index: var(--bs-popover-zindex);
  display: block;
  max-width: var(--bs-popover-max-width);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-popover-font-size);
  word-wrap: break-word;
  background-color: var(--bs-popover-bg);
  background-clip: padding-box;
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-radius: var(--bs-popover-border-radius);
}
.popover .popover-arrow {
  display: block;
  width: var(--bs-popover-arrow-width);
  height: var(--bs-popover-arrow-height);
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-top-color: var(--bs-popover-arrow-border);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: var(--bs-popover-border-width);
  border-top-color: var(--bs-popover-bg);
}

/* rtl:begin:ignore */
.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-right-color: var(--bs-popover-arrow-border);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: var(--bs-popover-border-width);
  border-right-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-bottom-color: var(--bs-popover-arrow-border);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: var(--bs-popover-border-width);
  border-bottom-color: var(--bs-popover-bg);
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: var(--bs-popover-arrow-width);
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
  content: "";
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
}

/* rtl:begin:ignore */
.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-left-color: var(--bs-popover-arrow-border);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: var(--bs-popover-border-width);
  border-left-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  margin-bottom: 0;
  font-size: var(--bs-popover-header-font-size);
  color: var(--bs-popover-header-color);
  background-color: var(--bs-popover-header-bg);
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  color: var(--bs-popover-body-color);
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #FFFFFF;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #FFFFFF;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")*/;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")*/;
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #FFFFFF;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #FFFFFF;
  text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000000;
}
.carousel-dark .carousel-caption {
  color: #000000;
}

[data-bs-theme=dark] .carousel .carousel-control-prev-icon,
[data-bs-theme=dark] .carousel .carousel-control-next-icon, [data-bs-theme=dark].carousel .carousel-control-prev-icon,
[data-bs-theme=dark].carousel .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target], [data-bs-theme=dark].carousel .carousel-indicators [data-bs-target] {
  background-color: #000000;
}
[data-bs-theme=dark] .carousel .carousel-caption, [data-bs-theme=dark].carousel .carousel-caption {
  color: #000000;
}

.spinner-grow,
.spinner-border {
  display: inline-block;
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  vertical-align: var(--bs-spinner-vertical-align);
  border-radius: 50%;
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-border-width: 0.25em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: transparent;
}

.spinner-border-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
  --bs-spinner-border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-grow;
  background-color: currentcolor;
  opacity: 0;
}

.spinner-grow-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    --bs-spinner-animation-speed: 1.5s;
  }
}
.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 400px;
  --bs-offcanvas-height: 30vh;
  --bs-offcanvas-padding-x: 1rem;
  --bs-offcanvas-padding-y: 1rem;
  --bs-offcanvas-color: var(--bs-body-color);
  --bs-offcanvas-bg: var(--bs-body-bg);
  --bs-offcanvas-border-width: var(--bs-border-width);
  --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  --bs-offcanvas-box-shadow: var(--bs-box-shadow-sm);
  --bs-offcanvas-transition: transform 0.3s ease-in-out;
  --bs-offcanvas-title-line-height: 1.5;
}

@media (max-width: 575.98px) {
  .offcanvas-sm {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-sm {
    transition: none;
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-sm.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-sm.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-sm.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
    visibility: visible;
  }
}
@media (min-width: 576px) {
  .offcanvas-sm {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-sm .offcanvas-header {
    display: none;
  }
  .offcanvas-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 767.98px) {
  .offcanvas-md {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-md {
    transition: none;
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-md.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-md.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-md.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
    visibility: visible;
  }
}
@media (min-width: 768px) {
  .offcanvas-md {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-md .offcanvas-header {
    display: none;
  }
  .offcanvas-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 991.98px) {
  .offcanvas-lg {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-lg {
    transition: none;
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-lg.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-lg.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-lg.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
    visibility: visible;
  }
}
@media (min-width: 992px) {
  .offcanvas-lg {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-lg .offcanvas-header {
    display: none;
  }
  .offcanvas-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1199.98px) {
  .offcanvas-xl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xl {
    transition: none;
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
    visibility: visible;
  }
}
@media (min-width: 1200px) {
  .offcanvas-xl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xl .offcanvas-header {
    display: none;
  }
  .offcanvas-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1399.98px) {
  .offcanvas-xxl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xxl {
    transition: none;
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xxl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xxl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xxl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
    visibility: visible;
  }
}
@media (min-width: 1400px) {
  .offcanvas-xxl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xxl .offcanvas-header {
    display: none;
  }
  .offcanvas-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: var(--bs-offcanvas-zindex);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  color: var(--bs-offcanvas-color);
  visibility: hidden;
  background-color: var(--bs-offcanvas-bg);
  background-clip: padding-box;
  outline: 0;
  transition: var(--bs-offcanvas-transition);
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}
.offcanvas.offcanvas-start {
  top: 0;
  left: 0;
  width: var(--bs-offcanvas-width);
  border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(-100%);
}
.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  width: var(--bs-offcanvas-width);
  border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(100%);
}
.offcanvas.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(-100%);
}
.offcanvas.offcanvas-bottom {
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(100%);
}
.offcanvas.showing, .offcanvas.show:not(.hiding) {
  transform: none;
}
.offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  visibility: visible;
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
}
.offcanvas-backdrop.fade {
  opacity: 0;
}
.offcanvas-backdrop.show {
  opacity: 0.5;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}
.offcanvas-header .btn-close {
  padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-offcanvas-padding-y)) calc(-0.5 * var(--bs-offcanvas-padding-x)) calc(-0.5 * var(--bs-offcanvas-padding-y)) auto;
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: var(--bs-offcanvas-title-line-height);
}

.offcanvas-body {
  flex-grow: 1;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  overflow-y: auto;
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}

.placeholder-xs {
  min-height: 0.6em;
}

.placeholder-sm {
  min-height: 0.8em;
}

.placeholder-lg {
  min-height: 1.2em;
}

.placeholder-glow .placeholder {
  animation: placeholder-glow 2s ease-in-out infinite;
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}
.placeholder-wave {
  -webkit-mask-image: linear-gradient(130deg, #000000 55%, rgba(0, 0, 0, 0.8) 75%, #000000 95%);
          mask-image: linear-gradient(130deg, #000000 55%, rgba(0, 0, 0, 0.8) 75%, #000000 95%);
  -webkit-mask-size: 200% 100%;
          mask-size: 200% 100%;
  animation: placeholder-wave 2s linear infinite;
}

@keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
            mask-position: -200% 0%;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.text-bg-primary {
  color: #000000 !important;
  background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
  color: #FFFFFF !important;
  background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
  color: #FFFFFF !important;
  background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #000000 !important;
  background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
  color: #000000 !important;
  background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
  color: #FFFFFF !important;
  background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
  color: #000000 !important;
  background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
  color: #FFFFFF !important;
  background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
  color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-primary:hover, .link-primary:focus {
  color: RGBA(254, 133, 53, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(254, 133, 53, var(--bs-link-underline-opacity, 1)) !important;
}

.link-secondary {
  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-secondary:hover, .link-secondary:focus {
  color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
}

.link-success {
  color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-success:hover, .link-success:focus {
  color: RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
}

.link-info {
  color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-info:hover, .link-info:focus {
  color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
}

.link-warning {
  color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-warning:hover, .link-warning:focus {
  color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
}

.link-danger {
  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-danger:hover, .link-danger:focus {
  color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
}

.link-light {
  color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-light:hover, .link-light:focus {
  color: RGBA(249, 249, 249, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(249, 249, 249, var(--bs-link-underline-opacity, 1)) !important;
}

.link-dark {
  color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-dark:hover, .link-dark:focus {
  color: RGBA(14, 14, 14, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(14, 14, 14, var(--bs-link-underline-opacity, 1)) !important;
}

.link-body-emphasis {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-body-emphasis:hover, .link-body-emphasis:focus {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
}

.focus-ring:focus {
  outline: 0;
  box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
}

.icon-link {
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  text-underline-offset: 0.25em;
  backface-visibility: hidden;
}
.icon-link > .bi {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  fill: currentcolor;
  transition: 0.2s ease-in-out transform;
}
@media (prefers-reduced-motion: reduce) {
  .icon-link > .bi {
    transition: none;
  }
}

.icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
  transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: var(--bs-border-width);
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.object-fit-contain {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.object-fit-cover {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.object-fit-fill {
  -o-object-fit: fill !important;
     object-fit: fill !important;
}

.object-fit-scale {
  -o-object-fit: scale-down !important;
     object-fit: scale-down !important;
}

.object-fit-none {
  -o-object-fit: none !important;
     object-fit: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: var(--bs-box-shadow) !important;
}

.shadow-sm {
  box-shadow: var(--bs-box-shadow-sm) !important;
}

.shadow-lg {
  box-shadow: var(--bs-box-shadow-lg) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.focus-ring-primary {
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-secondary {
  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-success {
  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-warning {
  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-danger {
  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-light {
  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-black {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}

.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}

.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}

.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}

.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}

.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}

.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}

.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

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

.border-5 {
  border-width: 5px !important;
}

.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

.border-opacity-25 {
  --bs-border-opacity: 0.25;
}

.border-opacity-50 {
  --bs-border-opacity: 0.5;
}

.border-opacity-75 {
  --bs-border-opacity: 0.75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.row-gap-0 {
  row-gap: 0 !important;
}

.row-gap-1 {
  row-gap: 0.25rem !important;
}

.row-gap-2 {
  row-gap: 0.5rem !important;
}

.row-gap-3 {
  row-gap: 1rem !important;
}

.row-gap-4 {
  row-gap: 1.5rem !important;
}

.row-gap-5 {
  row-gap: 3rem !important;
}

.column-gap-0 {
  -moz-column-gap: 0 !important;
       column-gap: 0 !important;
}

.column-gap-1 {
  -moz-column-gap: 0.25rem !important;
       column-gap: 0.25rem !important;
}

.column-gap-2 {
  -moz-column-gap: 0.5rem !important;
       column-gap: 0.5rem !important;
}

.column-gap-3 {
  -moz-column-gap: 1rem !important;
       column-gap: 1rem !important;
}

.column-gap-4 {
  -moz-column-gap: 1.5rem !important;
       column-gap: 1.5rem !important;
}

.column-gap-5 {
  -moz-column-gap: 3rem !important;
       column-gap: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-body-tertiary {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}

.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}

.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}

.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}

.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}

.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}

.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}

.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}

.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}

.link-opacity-10 {
  --bs-link-opacity: 0.1;
}

.link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1;
}

.link-opacity-25 {
  --bs-link-opacity: 0.25;
}

.link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25;
}

.link-opacity-50 {
  --bs-link-opacity: 0.5;
}

.link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5;
}

.link-opacity-75 {
  --bs-link-opacity: 0.75;
}

.link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75;
}

.link-opacity-100 {
  --bs-link-opacity: 1;
}

.link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}

.link-offset-1 {
  text-underline-offset: 0.125em !important;
}

.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}

.link-offset-2 {
  text-underline-offset: 0.25em !important;
}

.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}

.link-offset-3 {
  text-underline-offset: 0.375em !important;
}

.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}

.link-underline-primary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-success {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-info {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-warning {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-danger {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-light {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-dark {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-underline-opacity-0 {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-100 {
  --bs-link-underline-opacity: 1;
}

.link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}

.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}

.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}

.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}

.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}

.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}

.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}

.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-top-circle {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}

.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-bottom-circle {
  border-bottom-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}

.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}

.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .object-fit-sm-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-sm-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-sm-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-sm-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-sm-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .row-gap-sm-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 1rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 3rem !important;
  }
  .column-gap-sm-0 {
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }
  .column-gap-sm-1 {
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }
  .column-gap-sm-2 {
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }
  .column-gap-sm-3 {
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }
  .column-gap-sm-4 {
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }
  .column-gap-sm-5 {
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .object-fit-md-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-md-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-md-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-md-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-md-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .row-gap-md-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-md-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-md-3 {
    row-gap: 1rem !important;
  }
  .row-gap-md-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-md-5 {
    row-gap: 3rem !important;
  }
  .column-gap-md-0 {
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }
  .column-gap-md-1 {
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }
  .column-gap-md-2 {
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }
  .column-gap-md-3 {
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }
  .column-gap-md-4 {
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }
  .column-gap-md-5 {
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .object-fit-lg-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-lg-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-lg-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-lg-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-lg-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  .row-gap-lg-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-lg-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-lg-3 {
    row-gap: 1rem !important;
  }
  .row-gap-lg-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-lg-5 {
    row-gap: 3rem !important;
  }
  .column-gap-lg-0 {
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }
  .column-gap-lg-1 {
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }
  .column-gap-lg-2 {
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }
  .column-gap-lg-3 {
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }
  .column-gap-lg-4 {
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }
  .column-gap-lg-5 {
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .object-fit-xl-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-xl-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-xl-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-xl-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-xl-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xl-0 {
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }
  .column-gap-xl-1 {
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }
  .column-gap-xl-2 {
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }
  .column-gap-xl-3 {
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }
  .column-gap-xl-4 {
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }
  .column-gap-xl-5 {
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .object-fit-xxl-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-xxl-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-xxl-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-xxl-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-xxl-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xxl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xxl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xxl-0 {
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }
  .column-gap-xxl-1 {
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }
  .column-gap-xxl-2 {
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }
  .column-gap-xxl-3 {
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }
  .column-gap-xxl-4 {
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }
  .column-gap-xxl-5 {
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
/* 36px */
/* 18px */
/* 24px */
/* 16px */
/* 18px */
/* statuses */
/* header carreras y formaciones + otros detalles de la web */
/* locucion */
/* periodismo */
/* periodismo deportivo */
/* periodismo deportivo distancia */
/* produccion audiovisual */
/* periodismo y produccion de contenidos */
/* guion distancia */
/* comunicacion y marketing digital distancia */
/* esp. periodismo digital */
/* formacion integral en doblaje */
/* formacion integral en doblaje presencial */
/* formacion integral en doblaje distancia */
/* formacion en streaming y sonido */
/* formacion intensiva en guion distancia */
/* formacion en produccion virtual distancia */
.webp .pagina-recorrido-educativo #banner-academica {
  background: url("https://assets.eter.edu.ar/images/banners/cursos-distancia-desktop.jpg");
  background-position: center;
}

.no-webp .pagina-recorrido-educativo #banner-academica {
  background: url("https://assets.eter.edu.ar/images/banners/cursos-distancia-desktop.jpg");
  background-position: center;
}

.pagina-recorrido-educativo .tab-btn {
  background: #f1efef;
  text-transform: uppercase !important;
  font-size: 12px !important;
  border-radius: 0 !important;
}
.pagina-recorrido-educativo .tab-btn.active {
  border: none !important;
  border-bottom: 3px #FE6602 solid !important;
  color: #FE6602 !important;
  background: #ffffff !important;
}
.pagina-recorrido-educativo .tab-btn:hover:not(.active) {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #fa7723;
}
.pagina-recorrido-educativo .tab-btn:hover(.active) {
  color: white !important;
}
.pagina-recorrido-educativo .banner-academica {
  border-bottom: 4px solid #FE6602;
}
.pagina-recorrido-educativo .icono {
  fill: #fa7723 !important;
}
.pagina-recorrido-educativo #formulario-mas-info-bg {
  background: rgba(185, 75, 1, 0.8);
}
.pagina-recorrido-educativo .fecha-charla-informativa {
  background: #fa7723;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.pagina-recorrido-educativo .popup-videos {
  background: #fa7723;
  animation: circle-ripple-default 3s linear infinite;
  -webkit-animation: circle-ripple-default 3s linear infinite;
}
.pagina-recorrido-educativo .popup-videos:before {
  display: none;
}
.pagina-recorrido-educativo .popup-videos:hover:before {
  background: #fa8134;
}
.pagina-recorrido-educativo .intro-info-tabs .accordion-button {
  background: #fa7723;
}
.pagina-recorrido-educativo .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='green' %3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.pagina-recorrido-educativo .splide__arrow {
  background: white !important;
}
.pagina-recorrido-educativo .splide__arrow svg {
  width: 1.2em;
  height: 1.2em;
  fill: #FE6602 !important;
}
.pagina-recorrido-educativo .form-control:focus {
  border-color: #FE6602;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.095), 0 0 8px rgba(250, 119, 35, 0.8);
}
.pagina-recorrido-educativo .review-list li:before {
  color: #FE6602;
}
.pagina-recorrido-educativo .course-item .course-info .course-title a:hover, .pagina-recorrido-educativo .course-item .bottom-part .btn-part a:hover {
  color: #fa7723;
}
.pagina-recorrido-educativo .course-item:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
}
.pagina-recorrido-educativo .btn-mas-info, .pagina-recorrido-educativo .btn-bloque {
  background: #fa7723;
}
.pagina-recorrido-educativo .btn-mas-info:hover, .pagina-recorrido-educativo .btn-bloque:hover {
  background: #FE6602;
}
.pagina-recorrido-educativo .tab-pane .content a, .pagina-recorrido-educativo .tab-content-container a {
  color: #FE6602;
}
.pagina-recorrido-educativo .tab-pane .content a:hover, .pagina-recorrido-educativo .tab-content-container a:hover {
  text-decoration: underline !important;
}
.pagina-recorrido-educativo .requisitos-inscripcion i {
  color: #fa7723;
}
.pagina-recorrido-educativo .bloque-charla-informativa {
  border-bottom: 4px solid #FE6602;
}
.pagina-recorrido-educativo .texto-proxima-charla {
  color: #FE6602;
}
.pagina-recorrido-educativo .pretty.p-default input:checked ~ .state label:after {
  background: #FE6602 !important;
}
.pagina-recorrido-educativo .bloque-info {
  border-bottom: 4px solid #FE6602;
  margin-bottom: 1em;
}
.pagina-recorrido-educativo .bloque-info .texto-charla-informativa {
  color: #000000;
}
.pagina-recorrido-educativo .bloque-info .fecha-charla-informativa {
  background: #fa7723;
}
.pagina-recorrido-educativo .bloque-info .fecha-charla-informativa span {
  color: #ffffff;
}
.pagina-recorrido-educativo .bloque-info .titulo-info {
  color: #fa7723;
}
.pagina-recorrido-educativo .bloque-info .subtitulo-info {
  color: #fa7723;
}
.pagina-recorrido-educativo .icono {
  fill: #fa7723 !important;
}
.pagina-recorrido-educativo .fecha-charla-informativa {
  background: #fa7723;
  padding: 20px 25px;
}
.pagina-recorrido-educativo #banner-academica-bg {
  background-color: rgba(185, 75, 1, 0.8);
}
.pagina-recorrido-educativo #banner-academica-bg #detalle-academica {
  border-bottom: 5px solid #FE6602;
}
.pagina-recorrido-educativo .text-formulario {
  color: #d0d0d0;
}
.pagina-recorrido-educativo .link-carrera {
  color: #FE6602;
}
.pagina-recorrido-educativo .link-carrera:hover {
  text-decoration: underline;
}
.pagina-recorrido-educativo .btn-inscripcion {
  background: #FE6602;
}
.pagina-recorrido-educativo .btn-inscripcion:hover {
  background: #d75701;
}
.pagina-recorrido-educativo .splide__pagination__page.is-active {
  background: #d75701;
}
.pagina-recorrido-educativo #form-interesado-recorrido-desktop-container {
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
  background: #ffffff;
}
.pagina-recorrido-educativo .btn-curso-recorrido {
  font-size: 14px;
  text-align: center;
  width: 100%;
  padding: 10px;
  text-transform: uppercase;
  box-shadow: 0 28px 50px 0 rgba(0, 0, 0, 0.05);
  outline: none;
  border: none;
  border-radius: 3px;
  display: inline-block;
  font-weight: 500;
  color: #ffffff !important;
  background: #FE6602;
  transition: background-color 0.3s ease;
}
.pagina-recorrido-educativo .btn-curso-recorrido:hover {
  background: #D75601;
}
.pagina-recorrido-educativo .box-recorrido {
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

/* 36px */
/* 18px */
/* 24px */
/* 16px */
/* 18px */
/* statuses */
/* header carreras y formaciones + otros detalles de la web */
/* locucion */
/* periodismo */
/* periodismo deportivo */
/* periodismo deportivo distancia */
/* produccion audiovisual */
/* periodismo y produccion de contenidos */
/* guion distancia */
/* comunicacion y marketing digital distancia */
/* esp. periodismo digital */
/* formacion integral en doblaje */
/* formacion integral en doblaje presencial */
/* formacion integral en doblaje distancia */
/* formacion en streaming y sonido */
/* formacion intensiva en guion distancia */
/* formacion en produccion virtual distancia */
/*
    Name: YouTubePopUp
    Description: jQuery plugin to display YouTube or Vimeo video in PopUp, responsive and retina, easy to use.
    Version: 1.0.1
    Plugin URL: http://wp-time.com/youtube-popup-jquery-plugin/
    Written By: Qassim Hassan
    Twitter: @QQQHZ
    Websites: wp-time.com | qass.im | wp-plugins.in
    Dual licensed under the MIT and GPL licenses:
        http://www.opensource.org/licenses/mit-license.php
        http://www.gnu.org/licenses/gpl.html
    Copyright (c) 2016 - Qassim Hassan
*/
.YouTubePopUp-Wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  z-index: 9999999999999;
}

.YouTubePopUp-animation {
  opacity: 0;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: YouTubePopUp;
}
@keyframes YouTubePopUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body.logged-in .YouTubePopUp-Wrap { /* For WordPress */
  top: 32px;
  z-index: 99998;
}

.YouTubePopUp-Content {
  max-width: 680px;
  display: block;
  margin: 0 auto;
  height: 100%;
  position: relative;
}

.YouTubePopUp-Content iframe {
  max-width: 100% !important;
  width: 100% !important;
  display: block !important;
  height: 480px !important;
  border: none !important;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.YouTubePopUp-Hide {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: YouTubePopUpHide;
}
@keyframes YouTubePopUpHide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.YouTubePopUp-Close {
  position: absolute;
  top: 0;
  cursor: pointer;
  bottom: 528px;
  right: 0px;
  margin: auto 0;
  width: 24px;
  height: 24px;
  background: url(../images/close.png) no-repeat;
  background-size: 24px 24px;
  -webkit-background-size: 24px 24px;
  -moz-background-size: 24px 24px;
  -o-background-size: 24px 24px;
}

.YouTubePopUp-Close:hover {
  opacity: 0.5;
}

@media all and (max-width: 768px) and (min-width: 10px) {
  .YouTubePopUp-Content {
    max-width: 90%;
  }
}
@media all and (max-width: 600px) and (min-width: 10px) {
  .YouTubePopUp-Content iframe {
    height: 320px !important;
  }
  .YouTubePopUp-Close {
    bottom: 362px;
  }
}
@media all and (max-width: 480px) and (min-width: 10px) {
  .YouTubePopUp-Content iframe {
    height: 220px !important;
  }
  .YouTubePopUp-Close {
    bottom: 262px;
  }
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small, .mfp-figure .small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small, .mfp-img-mobile .mfp-figure .small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    transform-origin: 0;
  }
  .mfp-arrow-right {
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.pretty * {
  box-sizing: border-box;
}

.pretty input:not([type=checkbox]):not([type=radio]) {
  display: none;
}

.pretty {
  position: relative;
  display: inline-block;
  margin-right: 1em;
  white-space: nowrap;
  line-height: 1;
}
.pretty input {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 1em;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.pretty .state label {
  position: initial;
  display: inline-block;
  font-weight: normal;
  margin: 0;
  text-indent: 1.5em;
  min-width: calc(1em + 2px);
}
.pretty .state label:before, .pretty .state label:after {
  content: "";
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  display: block;
  box-sizing: border-box;
  border-radius: 0;
  border: 1px solid transparent;
  z-index: 0;
  position: absolute;
  left: 0;
  top: calc(0% - (100% - 1em) - 8%);
  background-color: transparent;
}
.pretty .state label:before {
  border-color: #bdc3c7;
}
.pretty .state.p-is-hover, .pretty .state.p-is-indeterminate {
  display: none;
}

@keyframes zoom {
  0% {
    opacity: 0;
    transform: scale(0);
  }
}
@keyframes tada {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
    transform: scale(7);
  }
  38% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: scale(1);
  }
  55% {
    animation-timing-function: ease-in;
    transform: scale(1.5);
  }
  72% {
    animation-timing-function: ease-out;
    transform: scale(1);
  }
  81% {
    animation-timing-function: ease-in;
    transform: scale(1.24);
  }
  89% {
    animation-timing-function: ease-out;
    transform: scale(1);
  }
  95% {
    animation-timing-function: ease-in;
    transform: scale(1.04);
  }
  100% {
    animation-timing-function: ease-out;
    transform: scale(1);
  }
}
@keyframes jelly {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rotate {
  0% {
    opacity: 0;
    transform: translateZ(-200px) rotate(-45deg);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) rotate(0);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0px 0px 0px 0px #bdc3c7;
  }
  100% {
    box-shadow: 0px 0px 0px 1.5em rgba(189, 195, 199, 0);
  }
}
.pretty.p-default.p-fill .state label:after {
  transform: scale(1);
}

.pretty.p-default .state label:after {
  transform: scale(0.6);
}
.pretty.p-default input:checked ~ .state label:after {
  background-color: #bdc3c7 !important;
}

.pretty.p-default.p-thick .state label:before, .pretty.p-default.p-thick .state label:after {
  border-width: 0.1428571429em;
}
.pretty.p-default.p-thick .state label:after {
  transform: scale(0.4) !important;
}

.pretty.p-icon .state .icon {
  position: absolute;
  font-size: 1em;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  left: 0;
  z-index: 1;
  text-align: center;
  line-height: normal;
  top: calc(0% - (100% - 1em) - 8%);
  border: 1px solid transparent;
  opacity: 0;
}
.pretty.p-icon .state .icon:before {
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.pretty.p-icon input:checked ~ .state .icon {
  opacity: 1;
}
.pretty.p-icon input:checked ~ .state label:before {
  border-color: #5a656b;
}

.pretty.p-svg .state .svg {
  position: absolute;
  font-size: 1em;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  left: 0;
  z-index: 1;
  text-align: center;
  line-height: normal;
  top: calc(0% - (100% - 1em) - 8%);
  border: 1px solid transparent;
  opacity: 0;
}
.pretty.p-svg .state svg {
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.pretty.p-svg input:checked ~ .state .svg {
  opacity: 1;
}

.pretty.p-image .state img {
  opacity: 0;
  position: absolute;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  top: 0;
  top: calc(0% - (100% - 1em) - 8%);
  left: 0;
  z-index: 0;
  text-align: center;
  line-height: normal;
  transform: scale(0.8);
}
.pretty.p-image input:checked ~ .state img {
  opacity: 1;
}

.pretty.p-switch input {
  min-width: 2em;
}
.pretty.p-switch .state {
  position: relative;
}
.pretty.p-switch .state:before {
  content: "";
  border: 1px solid #bdc3c7;
  border-radius: 60px;
  width: 2em;
  box-sizing: unset;
  height: calc(1em + 2px);
  position: absolute;
  top: 0;
  top: calc(0% - (100% - 1em) - 16%);
  z-index: 0;
  transition: all 0.5s ease;
}
.pretty.p-switch .state label {
  text-indent: 2.5em;
}
.pretty.p-switch .state label:before, .pretty.p-switch .state label:after {
  transition: all 0.5s ease;
  border-radius: 100%;
  left: 0;
  border-color: transparent;
  transform: scale(0.8);
}
.pretty.p-switch .state label:after {
  background-color: #bdc3c7 !important;
}
.pretty.p-switch input:checked ~ .state:before {
  border-color: #5a656b;
}
.pretty.p-switch input:checked ~ .state label:before {
  opacity: 0;
}
.pretty.p-switch input:checked ~ .state label:after {
  background-color: #5a656b !important;
  left: 1em;
}

.pretty.p-switch.p-fill input:checked ~ .state:before {
  border-color: #5a656b;
  background-color: #5a656b !important;
}
.pretty.p-switch.p-fill input:checked ~ .state label:before {
  opacity: 0;
}
.pretty.p-switch.p-fill input:checked ~ .state label:after {
  background-color: #fff !important;
  left: 1em;
}

.pretty.p-switch.p-slim .state:before {
  height: 0.1em;
  background: #bdc3c7 !important;
  top: calc(50% - 0.1em);
}
.pretty.p-switch.p-slim input:checked ~ .state:before {
  border-color: #5a656b;
  background-color: #5a656b !important;
}

.pretty.p-has-hover input:hover ~ .state:not(.p-is-hover) {
  display: none;
}
.pretty.p-has-hover input:hover ~ .state.p-is-hover {
  display: block;
}
.pretty.p-has-hover input:hover ~ .state.p-is-hover .icon {
  display: block;
}

.pretty.p-has-focus input:focus ~ .state label:before {
  box-shadow: 0px 0px 3px 0px rgb(189, 195, 199);
}

.pretty.p-has-indeterminate input[type=checkbox]:indeterminate ~ .state:not(.p-is-indeterminate) {
  display: none;
}
.pretty.p-has-indeterminate input[type=checkbox]:indeterminate ~ .state.p-is-indeterminate {
  display: block;
}
.pretty.p-has-indeterminate input[type=checkbox]:indeterminate ~ .state.p-is-indeterminate .icon {
  display: block;
  opacity: 1;
}

.pretty.p-toggle .state.p-on {
  opacity: 0;
  display: none;
}
.pretty.p-toggle .state.p-off,
.pretty.p-toggle .state .icon,
.pretty.p-toggle .state .svg,
.pretty.p-toggle .state img {
  opacity: 1;
  display: inherit;
}
.pretty.p-toggle .state.p-off .icon {
  color: #bdc3c7;
}
.pretty.p-toggle input:checked ~ .state.p-on {
  opacity: 1;
  display: inherit;
}
.pretty.p-toggle input:checked ~ .state.p-off {
  opacity: 0;
  display: none;
}

.pretty.p-plain input:checked ~ .state label:before, .pretty.p-plain.p-toggle .state label:before {
  content: none;
}
.pretty.p-plain.p-plain .icon {
  transform: scale(1.1);
}

.pretty.p-round .state label:before, .pretty.p-round .state label:after {
  border-radius: 100%;
}
.pretty.p-round.p-icon .state .icon {
  border-radius: 100%;
  overflow: hidden;
}
.pretty.p-round.p-icon .state .icon:before {
  transform: scale(0.8);
}

.pretty.p-curve .state label:before, .pretty.p-curve .state label:after {
  border-radius: 20%;
}

.pretty.p-smooth label:before,
.pretty.p-smooth label:after,
.pretty.p-smooth .icon,
.pretty.p-smooth .svg {
  transition: all 0.5s ease;
}
.pretty.p-smooth input:checked + .state label:after {
  transition: all 0.3s ease;
}
.pretty.p-smooth input:checked + .state .icon,
.pretty.p-smooth input:checked + .state .svg,
.pretty.p-smooth input:checked + .state img {
  animation: zoom 0.2s ease;
}
.pretty.p-smooth.p-default input:checked + .state label:after {
  animation: zoom 0.2s ease;
}
.pretty.p-smooth.p-plain input:checked + .state label:before {
  content: "";
  transform: scale(0);
  transition: all 0.5s ease;
}

.pretty.p-tada:not(.p-default) input:checked + .state .icon,
.pretty.p-tada:not(.p-default) input:checked + .state .svg,
.pretty.p-tada:not(.p-default) input:checked + .state img,
.pretty.p-tada:not(.p-default) input:checked + .state label:before,
.pretty.p-tada:not(.p-default) input:checked + .state label:after {
  animation: tada 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1 alternate;
  opacity: 1;
}

.pretty.p-jelly:not(.p-default) input:checked + .state .icon,
.pretty.p-jelly:not(.p-default) input:checked + .state .svg,
.pretty.p-jelly:not(.p-default) input:checked + .state img,
.pretty.p-jelly:not(.p-default) input:checked + .state label:before,
.pretty.p-jelly:not(.p-default) input:checked + .state label:after {
  animation: jelly 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
}
.pretty.p-jelly:not(.p-default) input:checked + .state label:before {
  border-color: transparent;
}

.pretty.p-rotate:not(.p-default) input:checked ~ .state .icon,
.pretty.p-rotate:not(.p-default) input:checked ~ .state .svg,
.pretty.p-rotate:not(.p-default) input:checked ~ .state img,
.pretty.p-rotate:not(.p-default) input:checked ~ .state label:before,
.pretty.p-rotate:not(.p-default) input:checked ~ .state label:after {
  animation: rotate 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
}
.pretty.p-rotate:not(.p-default) input:checked ~ .state label:before {
  border-color: transparent;
}

.pretty.p-pulse:not(.p-switch) input:checked ~ .state label:before {
  animation: pulse 1s;
}

.pretty input[disabled] {
  cursor: not-allowed;
  display: none;
}
.pretty input[disabled] ~ * {
  opacity: 0.5;
}

.pretty.p-locked input {
  display: none;
  cursor: not-allowed;
}

.pretty input:checked ~ .state.p-primary label:after, .pretty.p-toggle .state.p-primary label:after {
  background-color: #428bca !important;
}
.pretty input:checked ~ .state.p-primary .icon,
.pretty input:checked ~ .state.p-primary .svg, .pretty.p-toggle .state.p-primary .icon,
.pretty.p-toggle .state.p-primary .svg {
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state.p-primary-o label:before, .pretty.p-toggle .state.p-primary-o label:before {
  border-color: #428bca;
}
.pretty input:checked ~ .state.p-primary-o label:after, .pretty.p-toggle .state.p-primary-o label:after {
  background-color: transparent;
}
.pretty input:checked ~ .state.p-primary-o .icon,
.pretty input:checked ~ .state.p-primary-o .svg,
.pretty input:checked ~ .state.p-primary-o svg, .pretty.p-toggle .state.p-primary-o .icon,
.pretty.p-toggle .state.p-primary-o .svg,
.pretty.p-toggle .state.p-primary-o svg {
  color: #428bca;
  stroke: #428bca;
}
.pretty.p-default:not(.p-fill) input:checked ~ .state.p-primary-o label:after {
  background-color: #428bca !important;
}
.pretty.p-switch input:checked ~ .state.p-primary:before {
  border-color: #428bca;
}
.pretty.p-switch.p-fill input:checked ~ .state.p-primary:before {
  background-color: #428bca !important;
}
.pretty.p-switch.p-slim input:checked ~ .state.p-primary:before {
  border-color: #245682;
  background-color: #245682 !important;
}
.pretty input:checked ~ .state.p-info label:after, .pretty.p-toggle .state.p-info label:after {
  background-color: #5bc0de !important;
}
.pretty input:checked ~ .state.p-info .icon,
.pretty input:checked ~ .state.p-info .svg, .pretty.p-toggle .state.p-info .icon,
.pretty.p-toggle .state.p-info .svg {
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state.p-info-o label:before, .pretty.p-toggle .state.p-info-o label:before {
  border-color: #5bc0de;
}
.pretty input:checked ~ .state.p-info-o label:after, .pretty.p-toggle .state.p-info-o label:after {
  background-color: transparent;
}
.pretty input:checked ~ .state.p-info-o .icon,
.pretty input:checked ~ .state.p-info-o .svg,
.pretty input:checked ~ .state.p-info-o svg, .pretty.p-toggle .state.p-info-o .icon,
.pretty.p-toggle .state.p-info-o .svg,
.pretty.p-toggle .state.p-info-o svg {
  color: #5bc0de;
  stroke: #5bc0de;
}
.pretty.p-default:not(.p-fill) input:checked ~ .state.p-info-o label:after {
  background-color: #5bc0de !important;
}
.pretty.p-switch input:checked ~ .state.p-info:before {
  border-color: #5bc0de;
}
.pretty.p-switch.p-fill input:checked ~ .state.p-info:before {
  background-color: #5bc0de !important;
}
.pretty.p-switch.p-slim input:checked ~ .state.p-info:before {
  border-color: #2390b0;
  background-color: #2390b0 !important;
}
.pretty input:checked ~ .state.p-success label:after, .pretty.p-toggle .state.p-success label:after {
  background-color: #5cb85c !important;
}
.pretty input:checked ~ .state.p-success .icon,
.pretty input:checked ~ .state.p-success .svg, .pretty.p-toggle .state.p-success .icon,
.pretty.p-toggle .state.p-success .svg {
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state.p-success-o label:before, .pretty.p-toggle .state.p-success-o label:before {
  border-color: #5cb85c;
}
.pretty input:checked ~ .state.p-success-o label:after, .pretty.p-toggle .state.p-success-o label:after {
  background-color: transparent;
}
.pretty input:checked ~ .state.p-success-o .icon,
.pretty input:checked ~ .state.p-success-o .svg,
.pretty input:checked ~ .state.p-success-o svg, .pretty.p-toggle .state.p-success-o .icon,
.pretty.p-toggle .state.p-success-o .svg,
.pretty.p-toggle .state.p-success-o svg {
  color: #5cb85c;
  stroke: #5cb85c;
}
.pretty.p-default:not(.p-fill) input:checked ~ .state.p-success-o label:after {
  background-color: #5cb85c !important;
}
.pretty.p-switch input:checked ~ .state.p-success:before {
  border-color: #5cb85c;
}
.pretty.p-switch.p-fill input:checked ~ .state.p-success:before {
  background-color: #5cb85c !important;
}
.pretty.p-switch.p-slim input:checked ~ .state.p-success:before {
  border-color: #357935;
  background-color: #357935 !important;
}
.pretty input:checked ~ .state.p-warning label:after, .pretty.p-toggle .state.p-warning label:after {
  background-color: #f0ad4e !important;
}
.pretty input:checked ~ .state.p-warning .icon,
.pretty input:checked ~ .state.p-warning .svg, .pretty.p-toggle .state.p-warning .icon,
.pretty.p-toggle .state.p-warning .svg {
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state.p-warning-o label:before, .pretty.p-toggle .state.p-warning-o label:before {
  border-color: #f0ad4e;
}
.pretty input:checked ~ .state.p-warning-o label:after, .pretty.p-toggle .state.p-warning-o label:after {
  background-color: transparent;
}
.pretty input:checked ~ .state.p-warning-o .icon,
.pretty input:checked ~ .state.p-warning-o .svg,
.pretty input:checked ~ .state.p-warning-o svg, .pretty.p-toggle .state.p-warning-o .icon,
.pretty.p-toggle .state.p-warning-o .svg,
.pretty.p-toggle .state.p-warning-o svg {
  color: #f0ad4e;
  stroke: #f0ad4e;
}
.pretty.p-default:not(.p-fill) input:checked ~ .state.p-warning-o label:after {
  background-color: #f0ad4e !important;
}
.pretty.p-switch input:checked ~ .state.p-warning:before {
  border-color: #f0ad4e;
}
.pretty.p-switch.p-fill input:checked ~ .state.p-warning:before {
  background-color: #f0ad4e !important;
}
.pretty.p-switch.p-slim input:checked ~ .state.p-warning:before {
  border-color: #c77c11;
  background-color: #c77c11 !important;
}
.pretty input:checked ~ .state.p-danger label:after, .pretty.p-toggle .state.p-danger label:after {
  background-color: #d9534f !important;
}
.pretty input:checked ~ .state.p-danger .icon,
.pretty input:checked ~ .state.p-danger .svg, .pretty.p-toggle .state.p-danger .icon,
.pretty.p-toggle .state.p-danger .svg {
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state.p-danger-o label:before, .pretty.p-toggle .state.p-danger-o label:before {
  border-color: #d9534f;
}
.pretty input:checked ~ .state.p-danger-o label:after, .pretty.p-toggle .state.p-danger-o label:after {
  background-color: transparent;
}
.pretty input:checked ~ .state.p-danger-o .icon,
.pretty input:checked ~ .state.p-danger-o .svg,
.pretty input:checked ~ .state.p-danger-o svg, .pretty.p-toggle .state.p-danger-o .icon,
.pretty.p-toggle .state.p-danger-o .svg,
.pretty.p-toggle .state.p-danger-o svg {
  color: #d9534f;
  stroke: #d9534f;
}
.pretty.p-default:not(.p-fill) input:checked ~ .state.p-danger-o label:after {
  background-color: #d9534f !important;
}
.pretty.p-switch input:checked ~ .state.p-danger:before {
  border-color: #d9534f;
}
.pretty.p-switch.p-fill input:checked ~ .state.p-danger:before {
  background-color: #d9534f !important;
}
.pretty.p-switch.p-slim input:checked ~ .state.p-danger:before {
  border-color: #a02622;
  background-color: #a02622 !important;
}

.pretty.p-bigger label:before,
.pretty.p-bigger label:after,
.pretty.p-bigger .icon,
.pretty.p-bigger .svg,
.pretty.p-bigger .img {
  font-size: 1.2em !important;
  top: calc(0% - (100% - 1em) - 35%) !important;
}
.pretty.p-bigger label {
  text-indent: 1.7em;
}

@media print {
  .pretty .state:before,
  .pretty .state label:before,
  .pretty .state label:after,
  .pretty .state .icon {
    /* stylelint-disable */
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
#imagen-academica {
  margin-bottom: 2rem;
}

.shape-animate {
  display: none;
}

.webp #detalle-curso-adolescentes-a-distancia #banner-academica, #detalle-curso-adolescentes-presenciales #banner-academica {
  background: url("https://assets.eter.edu.ar/images/banners/cursos-presenciales-alt.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover !important;
}
@media only screen and (max-width: 768px) {
  .webp #detalle-curso-adolescentes-a-distancia #banner-academica, #detalle-curso-adolescentes-presenciales #banner-academica {
    background-image: url("https://assets.eter.edu.ar/images/banners/cursos-presenciales-alt.jpg") !important;
  }
}

.no-webp #detalle-curso-adolescentes-a-distancia #banner-academica, #detalle-curso-adolescentes-presenciales #banner-academica {
  background: url("https://assets.eter.edu.ar/images/banners/cursos-presenciales-alt.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover !important;
}
@media only screen and (max-width: 768px) {
  .no-webp #detalle-curso-adolescentes-a-distancia #banner-academica, #detalle-curso-adolescentes-presenciales #banner-academica {
    background-image: url("https://assets.eter.edu.ar/images/banners/cursos-presenciales-alt.jpg") !important;
  }
}

.webp #detalle-curso-cortos-a-distancia #banner-academica {
  background: url("https://assets.eter.edu.ar/images/banners/cursos-a-distancia-alt.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover !important;
}
@media only screen and (max-width: 768px) {
  .webp #detalle-curso-cortos-a-distancia #banner-academica {
    background-image: url("https://assets.eter.edu.ar/images/banners/cursos-a-distancia-alt.jpg") !important;
  }
}

.no-webp #detalle-curso-cortos-a-distancia #banner-academica {
  background: url("https://assets.eter.edu.ar/images/banners/cursos-a-distancia-alt.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover !important;
}
@media only screen and (max-width: 768px) {
  .no-webp #detalle-curso-cortos-a-distancia #banner-academica {
    background-image: url("https://assets.eter.edu.ar/images/banners/cursos-a-distancia-alt.jpg") !important;
  }
}

.webp #detalle-curso-cortos-presenciales #banner-academica, .webp #detalle-curso-anuales-presenciales #banner-academica {
  background: url("https://assets.eter.edu.ar/images/banners/cursos-presenciales-alt.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover !important;
}
@media only screen and (max-width: 768px) {
  .webp #detalle-curso-cortos-presenciales #banner-academica, .webp #detalle-curso-anuales-presenciales #banner-academica {
    background-image: url("https://assets.eter.edu.ar/images/banners/cursos-presenciales-alt.jpg") !important;
  }
}

.no-webp #detalle-curso-cortos-presenciales #banner-academica, .no-webp #detalle-curso-anuales-presenciales #banner-academica {
  background: url("https://assets.eter.edu.ar/images/banners/cursos-presenciales-alt.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover !important;
}
@media only screen and (max-width: 768px) {
  .no-webp #detalle-curso-cortos-presenciales #banner-academica, .no-webp #detalle-curso-anuales-presenciales #banner-academica {
    background-image: url("https://assets.eter.edu.ar/images/banners/cursos-presenciales-alt.jpg") !important;
  }
}

.webp #detalle-curso-diplomaturas-presenciales #banner-academica, .no-webp #detalle-curso-diplomaturas-presenciales #banner-academica {
  background: url("https://assets.eter.edu.ar/images/banners/diplomaturas-alt.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover !important;
}
@media only screen and (max-width: 768px) {
  .webp #detalle-curso-diplomaturas-presenciales #banner-academica, .no-webp #detalle-curso-diplomaturas-presenciales #banner-academica {
    background-image: url("https://assets.eter.edu.ar/images/banners/diplomaturas-alt-mobile.jpg") !important;
  }
}

.webp #detalle-curso-diplomaturas-a-distancia #banner-academica, .no-webp #detalle-curso-diplomaturas-a-distancia #banner-academica {
  background: url("https://assets.eter.edu.ar/images/banners/diplomaturas-alt.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover !important;
}
@media only screen and (max-width: 768px) {
  .webp #detalle-curso-diplomaturas-a-distancia #banner-academica, .no-webp #detalle-curso-diplomaturas-a-distancia #banner-academica {
    background-image: url("https://assets.eter.edu.ar/images/banners/diplomaturas-alt-mobile.jpg") !important;
  }
}

#imagen-academica {
  margin-bottom: 0;
}

.shape-animate {
  display: block;
}

#imagen-academica {
  border-radius: 10px;
}

#detalle-curso-adolescentes-a-distancia #texto-modalidad, #detalle-curso-adolescentes-a-distancia #nombre-academica {
  color: #000000 !important;
}
#detalle-curso-adolescentes-a-distancia .pretty.p-default input:checked ~ .state label:after {
  background: #8400c1 !important;
}
#detalle-curso-adolescentes-a-distancia .accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#detalle-curso-adolescentes-a-distancia .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#detalle-curso-adolescentes-a-distancia .intro-info-tabs .accordion-button {
  background: #6b029b;
  color: white;
  text-transform: uppercase;
}
#detalle-curso-adolescentes-a-distancia .intro-info-tabs .accordion-button:focus {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.095), 0 0 8px rgba(107, 2, 155, 0.8);
}
#detalle-curso-adolescentes-a-distancia .tab-btn {
  text-transform: uppercase !important;
  font-size: 12px !important;
  border-radius: 0 !important;
}
#detalle-curso-adolescentes-a-distancia .popup-videos {
  background: #8400c1;
}
#detalle-curso-adolescentes-a-distancia .popup-videos:before {
  display: none;
}
#detalle-curso-adolescentes-a-distancia .popup-videos:hover:before {
  background: #b835f6;
}
#detalle-curso-adolescentes-a-distancia .btn-bloque {
  background: #6b029b;
}
#detalle-curso-adolescentes-a-distancia .btn-bloque:hover {
  background: #640291;
}
#detalle-curso-adolescentes-a-distancia .review-list li:before {
  color: #8400c1;
}
#detalle-curso-adolescentes-a-distancia .course-item .course-info .course-title a:hover, #detalle-curso-adolescentes-a-distancia .course-item .bottom-part .btn-part a:hover {
  color: #8400c1;
}
#detalle-curso-adolescentes-a-distancia .course-item:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
}
#detalle-curso-adolescentes-a-distancia .btn-mas-info {
  background: #8400c1;
}
#detalle-curso-adolescentes-a-distancia .btn-mas-info:hover {
  background: #6b029b;
}
#detalle-curso-adolescentes-a-distancia .text-carrera {
  color: #8400c1;
}
#detalle-curso-adolescentes-a-distancia .tab-pane .content a {
  color: #8400c1;
}
#detalle-curso-adolescentes-a-distancia .tab-pane .content a:hover {
  text-decoration: underline;
}
#detalle-curso-adolescentes-a-distancia #contenido-destacado-periodismo {
  background: #8400c1;
}
#detalle-curso-adolescentes-a-distancia .requisitos-inscripcion i {
  color: #8400c1;
}
#detalle-curso-adolescentes-a-distancia #banner-academica-bg {
  /*
  background: $cursos-adolescentes-a-distancia-400;
  background: linear-gradient(90deg, rgba($cursos-adolescentes-a-distancia-400, 1) 0%, rgba($cursos-adolescentes-a-distancia-400, 0.6) 100%);

  #detalle-academica {
      border-bottom: 5px solid $cursos-adolescentes-a-distancia-500;
  }
  */
}
#detalle-curso-adolescentes-a-distancia .contenedor-info-curso-desktop {
  border-bottom: 3px solid #6b029b;
}
#detalle-curso-adolescentes-a-distancia #contenedor-cursos-relacionados {
  margin-top: 3rem;
  background: white;
  padding-top: 2rem;
}
#detalle-curso-adolescentes-a-distancia #contenedor-cursos-relacionados .nombre-curso {
  font-size: 22px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
}
#detalle-curso-adolescentes-a-distancia #contenedor-cursos-relacionados .nombre-curso a {
  color: #8400c1;
}
#detalle-curso-adolescentes-a-distancia .tab-btn {
  background: #f1efef;
}
#detalle-curso-adolescentes-a-distancia .tab-btn.active {
  border: none;
  border-bottom: 3px #6b029b solid !important;
  color: #000000;
  background: #ffffff;
  font-weight: bold;
}
#detalle-curso-adolescentes-a-distancia .tab-btn:hover:not(.active) {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #000000;
}
#detalle-curso-adolescentes-a-distancia .tab-btn:hover(.active) {
  color: white !important;
}
#detalle-curso-adolescentes-a-distancia blockquote:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  height: 100%;
  width: 10px;
  background: #6b029b !important;
}
#detalle-curso-adolescentes-a-distancia #formulario-mas-info-bg {
  background: rgba(107, 2, 155, 0.85);
}
#detalle-curso-adolescentes-a-distancia .form-control:focus {
  border-color: #8400c1;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.095), 0 0 8px rgba(132, 0, 193, 0.8);
}
#detalle-curso-adolescentes-a-distancia .btn-inscripcion {
  background: #6b029b;
}
#detalle-curso-adolescentes-a-distancia .btn-inscripcion:hover {
  background: #640291;
}
#detalle-curso-adolescentes-a-distancia .promotion-container, #detalle-curso-adolescentes-a-distancia .promotion-value-badge {
  background: #6b029b;
}
#detalle-curso-adolescentes-a-distancia .listado-docentes li a {
  color: #640291;
}
#detalle-curso-adolescentes-a-distancia .splide__pagination__page.is-active {
  background: #6b029b;
}
#detalle-curso-adolescentes-a-distancia .splide__arrow {
  background: white !important;
}
#detalle-curso-adolescentes-a-distancia .splide__arrow svg {
  width: 1.2em;
  height: 1.2em;
  fill: #8400c1 !important;
}
#detalle-curso-adolescentes-a-distancia .info-curso i {
  color: #640291;
}
#detalle-curso-adolescentes-a-distancia .icono {
  fill: #8400c1 !important;
}
#detalle-curso-adolescentes-a-distancia .etiqueta-estado-curso {
  color: #6b029b;
  background: #ffffff;
  border: 1px #b4b4b4 solid;
}
#detalle-curso-adolescentes-a-distancia .nombre-docente, #detalle-curso-adolescentes-a-distancia .aranceles-button {
  color: #6b029b;
}
#detalle-curso-adolescentes-a-distancia .aranceles-button {
  font-weight: bold;
  cursor: pointer;
}
#detalle-curso-adolescentes-a-distancia .splide__progress__bar {
  background: #8400c1;
}
#detalle-curso-adolescentes-a-distancia #academica-tab-aranceles .box-valor {
  background-color: #6b029b;
  border-color: #6b029b;
}
#detalle-curso-adolescentes-a-distancia #academica-tab-aranceles .box-valor.box-valor-cuatrimestre p, #detalle-curso-adolescentes-a-distancia #academica-tab-aranceles .box-valor.box-valor-cuatrimestre span {
  color: #6b029b !important;
}
#detalle-curso-adolescentes-a-distancia #academica-tab-aranceles .box-valor p, #detalle-curso-adolescentes-a-distancia #academica-tab-aranceles .box-valor span {
  color: #FFFFFF;
}
#detalle-curso-adolescentes-a-distancia #academica-tab-aranceles .exclamation-mark, #detalle-curso-adolescentes-a-distancia #academica-tab-aranceles .exclamation-mark span {
  border-color: #6b029b;
}
#detalle-curso-adolescentes-a-distancia #academica-tab-aranceles li:before {
  color: #6b029b;
}

#detalle-curso-adolescentes-presenciales #texto-modalidad, #detalle-curso-adolescentes-presenciales #nombre-academica {
  color: #000000 !important;
}
#detalle-curso-adolescentes-presenciales .pretty.p-default input:checked ~ .state label:after {
  background: #bb91e8 !important;
}
#detalle-curso-adolescentes-presenciales .accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#detalle-curso-adolescentes-presenciales .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#detalle-curso-adolescentes-presenciales .intro-info-tabs .accordion-button {
  background: #ad7ee0;
  color: white;
  text-transform: uppercase;
}
#detalle-curso-adolescentes-presenciales .intro-info-tabs .accordion-button:focus {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.095), 0 0 8px rgba(173, 126, 224, 0.8);
}
#detalle-curso-adolescentes-presenciales .tab-btn {
  text-transform: uppercase !important;
  font-size: 12px !important;
  border-radius: 0 !important;
}
#detalle-curso-adolescentes-presenciales .popup-videos {
  background: #bb91e8;
}
#detalle-curso-adolescentes-presenciales .popup-videos:before {
  display: none;
}
#detalle-curso-adolescentes-presenciales .popup-videos:hover:before {
  background: #d3b2f8;
}
#detalle-curso-adolescentes-presenciales .btn-bloque {
  background: #ad7ee0;
}
#detalle-curso-adolescentes-presenciales .btn-bloque:hover {
  background: #9d6ad3;
}
#detalle-curso-adolescentes-presenciales .review-list li:before {
  color: #bb91e8;
}
#detalle-curso-adolescentes-presenciales .course-item .course-info .course-title a:hover, #detalle-curso-adolescentes-presenciales .course-item .bottom-part .btn-part a:hover {
  color: #bb91e8;
}
#detalle-curso-adolescentes-presenciales .course-item:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
}
#detalle-curso-adolescentes-presenciales .btn-mas-info {
  background: #bb91e8;
}
#detalle-curso-adolescentes-presenciales .btn-mas-info:hover {
  background: #ad7ee0;
}
#detalle-curso-adolescentes-presenciales .text-carrera {
  color: #bb91e8;
}
#detalle-curso-adolescentes-presenciales .tab-pane .content a {
  color: #bb91e8;
}
#detalle-curso-adolescentes-presenciales .tab-pane .content a:hover {
  text-decoration: underline;
}
#detalle-curso-adolescentes-presenciales #contenido-destacado-periodismo {
  background: #bb91e8;
}
#detalle-curso-adolescentes-presenciales .requisitos-inscripcion i {
  color: #bb91e8;
}
#detalle-curso-adolescentes-presenciales #banner-academica-bg {
  /*
  background: $cursos-adolescentes-presenciales-400;
  background: linear-gradient(90deg, rgba($cursos-adolescentes-presenciales-400, 1) 0%, rgba($cursos-adolescentes-presenciales-400, 0.6) 100%);

  #detalle-academica {
      border-bottom: 5px solid $cursos-adolescentes-presenciales-500;
  }
  */
}
#detalle-curso-adolescentes-presenciales .contenedor-info-curso-desktop {
  border-bottom: 3px solid #ad7ee0;
}
#detalle-curso-adolescentes-presenciales #contenedor-cursos-relacionados {
  margin-top: 3rem;
  background: white;
  padding-top: 2rem;
}
#detalle-curso-adolescentes-presenciales #contenedor-cursos-relacionados .nombre-curso {
  font-size: 22px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
}
#detalle-curso-adolescentes-presenciales #contenedor-cursos-relacionados .nombre-curso a {
  color: #bb91e8;
}
#detalle-curso-adolescentes-presenciales .tab-btn {
  background: #f1efef;
}
#detalle-curso-adolescentes-presenciales .tab-btn.active {
  border: none;
  border-bottom: 3px #ad7ee0 solid !important;
  color: #000000;
  background: #ffffff;
  font-weight: bold;
}
#detalle-curso-adolescentes-presenciales .tab-btn:hover:not(.active) {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #000000;
}
#detalle-curso-adolescentes-presenciales .tab-btn:hover(.active) {
  color: white !important;
}
#detalle-curso-adolescentes-presenciales blockquote:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  height: 100%;
  width: 10px;
  background: #ad7ee0 !important;
}
#detalle-curso-adolescentes-presenciales #formulario-mas-info-bg {
  background: rgba(173, 126, 224, 0.85);
}
#detalle-curso-adolescentes-presenciales .form-control:focus {
  border-color: #bb91e8;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.095), 0 0 8px rgba(187, 145, 232, 0.8);
}
#detalle-curso-adolescentes-presenciales .btn-inscripcion {
  background: #ad7ee0;
}
#detalle-curso-adolescentes-presenciales .btn-inscripcion:hover {
  background: #9d6ad3;
}
#detalle-curso-adolescentes-presenciales .promotion-container, #detalle-curso-adolescentes-presenciales .promotion-value-badge {
  background: #ad7ee0;
}
#detalle-curso-adolescentes-presenciales .listado-docentes li a {
  color: #9d6ad3;
}
#detalle-curso-adolescentes-presenciales .splide__pagination__page.is-active {
  background: #ad7ee0;
}
#detalle-curso-adolescentes-presenciales .splide__arrow {
  background: white !important;
}
#detalle-curso-adolescentes-presenciales .splide__arrow svg {
  width: 1.2em;
  height: 1.2em;
  fill: #bb91e8 !important;
}
#detalle-curso-adolescentes-presenciales .info-curso i {
  color: #9d6ad3;
}
#detalle-curso-adolescentes-presenciales .icono {
  fill: #bb91e8 !important;
}
#detalle-curso-adolescentes-presenciales .etiqueta-estado-curso {
  color: #ad7ee0;
  background: #ffffff;
  border: 1px #b4b4b4 solid;
}
#detalle-curso-adolescentes-presenciales .nombre-docente, #detalle-curso-adolescentes-presenciales .aranceles-button {
  color: #ad7ee0;
}
#detalle-curso-adolescentes-presenciales .aranceles-button {
  font-weight: bold;
  cursor: pointer;
}
#detalle-curso-adolescentes-presenciales .splide__progress__bar {
  background: #bb91e8;
}
#detalle-curso-adolescentes-presenciales #academica-tab-aranceles .box-valor {
  background-color: #ad7ee0;
  border-color: #ad7ee0;
}
#detalle-curso-adolescentes-presenciales #academica-tab-aranceles .box-valor.box-valor-cuatrimestre p, #detalle-curso-adolescentes-presenciales #academica-tab-aranceles .box-valor.box-valor-cuatrimestre span {
  color: #ad7ee0 !important;
}
#detalle-curso-adolescentes-presenciales #academica-tab-aranceles .box-valor p, #detalle-curso-adolescentes-presenciales #academica-tab-aranceles .box-valor span {
  color: #FFFFFF;
}
#detalle-curso-adolescentes-presenciales #academica-tab-aranceles .exclamation-mark, #detalle-curso-adolescentes-presenciales #academica-tab-aranceles .exclamation-mark span {
  border-color: #ad7ee0;
}
#detalle-curso-adolescentes-presenciales #academica-tab-aranceles li:before {
  color: #ad7ee0;
}

#detalle-curso-cortos-a-distancia #texto-modalidad, #detalle-curso-cortos-a-distancia #nombre-academica {
  color: #F8CCE0 !important;
}
#detalle-curso-cortos-a-distancia .pretty.p-default input:checked ~ .state label:after {
  background: #cf1a52 !important;
}
#detalle-curso-cortos-a-distancia .accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#detalle-curso-cortos-a-distancia .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#detalle-curso-cortos-a-distancia .intro-info-tabs .accordion-button {
  background: #bb1246;
  color: white;
  text-transform: uppercase;
}
#detalle-curso-cortos-a-distancia .intro-info-tabs .accordion-button:focus {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.095), 0 0 8px rgba(187, 18, 70, 0.8);
}
#detalle-curso-cortos-a-distancia .tab-btn {
  text-transform: uppercase !important;
  font-size: 12px !important;
  border-radius: 0 !important;
}
#detalle-curso-cortos-a-distancia .popup-videos {
  background: #cf1a52;
}
#detalle-curso-cortos-a-distancia .popup-videos:before {
  display: none;
}
#detalle-curso-cortos-a-distancia .popup-videos:hover:before {
  background: #ee457b;
}
#detalle-curso-cortos-a-distancia .btn-bloque {
  background: #bb1246;
}
#detalle-curso-cortos-a-distancia .btn-bloque:hover {
  background: #a10c3a;
}
#detalle-curso-cortos-a-distancia .review-list li:before {
  color: #cf1a52;
}
#detalle-curso-cortos-a-distancia .course-item .course-info .course-title a:hover, #detalle-curso-cortos-a-distancia .course-item .bottom-part .btn-part a:hover {
  color: #cf1a52;
}
#detalle-curso-cortos-a-distancia .course-item:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
}
#detalle-curso-cortos-a-distancia .btn-mas-info {
  background: #cf1a52;
}
#detalle-curso-cortos-a-distancia .btn-mas-info:hover {
  background: #bb1246;
}
#detalle-curso-cortos-a-distancia .text-carrera {
  color: #cf1a52;
}
#detalle-curso-cortos-a-distancia .tab-pane .content a {
  color: #cf1a52;
}
#detalle-curso-cortos-a-distancia .tab-pane .content a:hover {
  text-decoration: underline;
}
#detalle-curso-cortos-a-distancia #contenido-destacado-periodismo {
  background: #cf1a52;
}
#detalle-curso-cortos-a-distancia .requisitos-inscripcion i {
  color: #cf1a52;
}
#detalle-curso-cortos-a-distancia #banner-academica-bg {
  /*
  background: $cursos-a-distancia-400;
  background: linear-gradient(90deg, rgba($cursos-a-distancia-400, 1) 0%, rgba($cursos-a-distancia-400, 0.6) 100%);

  #detalle-academica {
      border-bottom: 5px solid $cursos-a-distancia-500;
  }
  */
}
#detalle-curso-cortos-a-distancia .contenedor-info-curso-desktop {
  border-bottom: 3px solid #bb1246;
}
#detalle-curso-cortos-a-distancia #contenedor-cursos-relacionados {
  margin-top: 3rem;
  background: white;
  padding-top: 2rem;
}
#detalle-curso-cortos-a-distancia #contenedor-cursos-relacionados .nombre-curso {
  font-size: 22px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
}
#detalle-curso-cortos-a-distancia #contenedor-cursos-relacionados .nombre-curso a {
  color: #cf1a52;
}
#detalle-curso-cortos-a-distancia .tab-btn {
  background: #f1efef;
}
#detalle-curso-cortos-a-distancia .tab-btn.active {
  border: none;
  border-bottom: 3px #bb1246 solid !important;
  color: #000000;
  background: #ffffff;
  font-weight: bold;
}
#detalle-curso-cortos-a-distancia .tab-btn:hover:not(.active) {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #000000;
}
#detalle-curso-cortos-a-distancia .tab-btn:hover(.active) {
  color: white !important;
}
#detalle-curso-cortos-a-distancia blockquote:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  height: 100%;
  width: 10px;
  background: #bb1246 !important;
}
#detalle-curso-cortos-a-distancia #formulario-mas-info-bg {
  background: rgba(187, 18, 70, 0.85);
}
#detalle-curso-cortos-a-distancia .form-control:focus {
  border-color: #cf1a52;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.095), 0 0 8px rgba(207, 26, 82, 0.8);
}
#detalle-curso-cortos-a-distancia .btn-inscripcion {
  background: #bb1246;
}
#detalle-curso-cortos-a-distancia .btn-inscripcion:hover {
  background: #a10c3a;
}
#detalle-curso-cortos-a-distancia .promotion-container, #detalle-curso-cortos-a-distancia .promotion-value-badge {
  background: #bb1246;
}
#detalle-curso-cortos-a-distancia .listado-docentes li a {
  color: #a10c3a;
}
#detalle-curso-cortos-a-distancia .splide__pagination__page.is-active {
  background: #bb1246;
}
#detalle-curso-cortos-a-distancia .splide__arrow {
  background: white !important;
}
#detalle-curso-cortos-a-distancia .splide__arrow svg {
  width: 1.2em;
  height: 1.2em;
  fill: #cf1a52 !important;
}
#detalle-curso-cortos-a-distancia .info-curso i {
  color: #a10c3a;
}
#detalle-curso-cortos-a-distancia .icono {
  fill: #cf1a52 !important;
}
#detalle-curso-cortos-a-distancia .etiqueta-estado-curso {
  color: #bb1246;
  background: #ffffff;
  border: 1px #b4b4b4 solid;
}
#detalle-curso-cortos-a-distancia .nombre-docente, #detalle-curso-cortos-a-distancia .aranceles-button {
  color: #bb1246;
}
#detalle-curso-cortos-a-distancia .aranceles-button {
  font-weight: bold;
  cursor: pointer;
}
#detalle-curso-cortos-a-distancia .splide__progress__bar {
  background: #cf1a52;
}
#detalle-curso-cortos-a-distancia #academica-tab-aranceles .box-valor {
  background-color: #bb1246;
  border-color: #bb1246;
}
#detalle-curso-cortos-a-distancia #academica-tab-aranceles .box-valor.box-valor-cuatrimestre p, #detalle-curso-cortos-a-distancia #academica-tab-aranceles .box-valor.box-valor-cuatrimestre span {
  color: #bb1246 !important;
}
#detalle-curso-cortos-a-distancia #academica-tab-aranceles .box-valor p, #detalle-curso-cortos-a-distancia #academica-tab-aranceles .box-valor span {
  color: #FFFFFF;
}
#detalle-curso-cortos-a-distancia #academica-tab-aranceles .exclamation-mark, #detalle-curso-cortos-a-distancia #academica-tab-aranceles .exclamation-mark span {
  border-color: #bb1246;
}
#detalle-curso-cortos-a-distancia #academica-tab-aranceles li:before {
  color: #bb1246;
}

#detalle-curso-cortos-presenciales #texto-modalidad, #detalle-curso-cortos-presenciales #nombre-academica, #detalle-curso-anuales-presenciales #texto-modalidad, #detalle-curso-anuales-presenciales #nombre-academica {
  color: #000000 !important;
}
#detalle-curso-cortos-presenciales .pretty.p-default input:checked ~ .state label:after, #detalle-curso-anuales-presenciales .pretty.p-default input:checked ~ .state label:after {
  background: #e7b026 !important;
}
#detalle-curso-cortos-presenciales .accordion-button.collapsed::after, #detalle-curso-anuales-presenciales .accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#detalle-curso-cortos-presenciales .accordion-button:not(.collapsed)::after, #detalle-curso-anuales-presenciales .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#detalle-curso-cortos-presenciales .intro-info-tabs .accordion-button, #detalle-curso-anuales-presenciales .intro-info-tabs .accordion-button {
  background: #e7b026;
  color: white;
  text-transform: uppercase;
}
#detalle-curso-cortos-presenciales .intro-info-tabs .accordion-button:focus, #detalle-curso-anuales-presenciales .intro-info-tabs .accordion-button:focus {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.095), 0 0 8px rgba(231, 176, 38, 0.8);
}
#detalle-curso-cortos-presenciales .tab-btn, #detalle-curso-anuales-presenciales .tab-btn {
  text-transform: uppercase !important;
  font-size: 12px !important;
  border-radius: 0 !important;
}
#detalle-curso-cortos-presenciales .popup-videos, #detalle-curso-anuales-presenciales .popup-videos {
  background: #fccd54;
}
#detalle-curso-cortos-presenciales .popup-videos:before, #detalle-curso-anuales-presenciales .popup-videos:before {
  display: none;
}
#detalle-curso-cortos-presenciales .popup-videos:hover:before, #detalle-curso-anuales-presenciales .popup-videos:hover:before {
  background: #f5d179;
}
#detalle-curso-cortos-presenciales .btn-bloque, #detalle-curso-anuales-presenciales .btn-bloque {
  background: #e7b026;
}
#detalle-curso-cortos-presenciales .btn-bloque:hover, #detalle-curso-anuales-presenciales .btn-bloque:hover {
  background: #d9a114;
}
#detalle-curso-cortos-presenciales .review-list li:before, #detalle-curso-anuales-presenciales .review-list li:before {
  color: #fccd54;
}
#detalle-curso-cortos-presenciales .course-item .course-info .course-title a:hover, #detalle-curso-cortos-presenciales .course-item .bottom-part .btn-part a:hover, #detalle-curso-anuales-presenciales .course-item .course-info .course-title a:hover, #detalle-curso-anuales-presenciales .course-item .bottom-part .btn-part a:hover {
  color: #fccd54;
}
#detalle-curso-cortos-presenciales .course-item:hover, #detalle-curso-anuales-presenciales .course-item:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
}
#detalle-curso-cortos-presenciales .btn-mas-info, #detalle-curso-anuales-presenciales .btn-mas-info {
  background: #fccd54;
}
#detalle-curso-cortos-presenciales .btn-mas-info:hover, #detalle-curso-anuales-presenciales .btn-mas-info:hover {
  background: #e7b026;
}
#detalle-curso-cortos-presenciales .text-carrera, #detalle-curso-anuales-presenciales .text-carrera {
  color: #fccd54;
}
#detalle-curso-cortos-presenciales .tab-pane .content a, #detalle-curso-anuales-presenciales .tab-pane .content a {
  color: #fccd54;
}
#detalle-curso-cortos-presenciales .tab-pane .content a:hover, #detalle-curso-anuales-presenciales .tab-pane .content a:hover {
  text-decoration: underline;
}
#detalle-curso-cortos-presenciales #contenido-destacado-periodismo, #detalle-curso-anuales-presenciales #contenido-destacado-periodismo {
  background: #fccd54;
}
#detalle-curso-cortos-presenciales .requisitos-inscripcion i, #detalle-curso-anuales-presenciales .requisitos-inscripcion i {
  color: #fccd54;
}
#detalle-curso-cortos-presenciales #banner-academica-bg, #detalle-curso-anuales-presenciales #banner-academica-bg {
  /*
  background: $cursos-presenciales-400;
  background: linear-gradient(90deg, rgba($cursos-presenciales-400, 1) 0%, rgba($cursos-presenciales-400, 0.6) 100%);

  #detalle-academica {
      border-bottom: 5px solid $cursos-presenciales-500;
  }
  */
}
#detalle-curso-cortos-presenciales .contenedor-info-curso, #detalle-curso-anuales-presenciales .contenedor-info-curso {
  background: #ffffff;
  margin-top: 2rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
}
#detalle-curso-cortos-presenciales .contenedor-info-curso-desktop, #detalle-curso-anuales-presenciales .contenedor-info-curso-desktop {
  border-bottom: 3px solid #e7b026;
}
#detalle-curso-cortos-presenciales #contenedor-cursos-relacionados, #detalle-curso-anuales-presenciales #contenedor-cursos-relacionados {
  margin-top: 3rem;
  background: white;
  padding-top: 2rem;
}
#detalle-curso-cortos-presenciales #contenedor-cursos-relacionados .nombre-curso, #detalle-curso-anuales-presenciales #contenedor-cursos-relacionados .nombre-curso {
  font-size: 22px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
}
#detalle-curso-cortos-presenciales #contenedor-cursos-relacionados .nombre-curso a, #detalle-curso-anuales-presenciales #contenedor-cursos-relacionados .nombre-curso a {
  color: #d9a114;
}
#detalle-curso-cortos-presenciales .tab-btn, #detalle-curso-anuales-presenciales .tab-btn {
  background: #f1efef;
}
#detalle-curso-cortos-presenciales .tab-btn.active, #detalle-curso-anuales-presenciales .tab-btn.active {
  border: none;
  border-bottom: 3px #e7b026 solid !important;
  color: #000000;
  background: #ffffff;
  font-weight: bold;
}
#detalle-curso-cortos-presenciales .tab-btn:hover:not(.active), #detalle-curso-anuales-presenciales .tab-btn:hover:not(.active) {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #000000;
}
#detalle-curso-cortos-presenciales .tab-btn:hover(.active), #detalle-curso-anuales-presenciales .tab-btn:hover(.active) {
  color: white !important;
}
#detalle-curso-cortos-presenciales blockquote:before, #detalle-curso-anuales-presenciales blockquote:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  height: 100%;
  width: 10px;
  background: #e7b026 !important;
}
#detalle-curso-cortos-presenciales #formulario-mas-info-bg, #detalle-curso-anuales-presenciales #formulario-mas-info-bg {
  background: rgba(231, 176, 38, 0.85);
}
#detalle-curso-cortos-presenciales .form-control:focus, #detalle-curso-anuales-presenciales .form-control:focus {
  border-color: #fccd54;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.095), 0 0 8px rgba(252, 205, 84, 0.8);
}
#detalle-curso-cortos-presenciales .btn-inscripcion, #detalle-curso-anuales-presenciales .btn-inscripcion {
  background: #e7b026;
}
#detalle-curso-cortos-presenciales .btn-inscripcion:hover, #detalle-curso-anuales-presenciales .btn-inscripcion:hover {
  background: #d9a114;
}
#detalle-curso-cortos-presenciales .promotion-container, #detalle-curso-cortos-presenciales .promotion-value-badge, #detalle-curso-anuales-presenciales .promotion-container, #detalle-curso-anuales-presenciales .promotion-value-badge {
  background: #e7b026;
}
#detalle-curso-cortos-presenciales .listado-docentes li a, #detalle-curso-anuales-presenciales .listado-docentes li a {
  color: #d9a114;
}
#detalle-curso-cortos-presenciales .splide__pagination__page.is-active, #detalle-curso-anuales-presenciales .splide__pagination__page.is-active {
  background: #e7b026;
}
#detalle-curso-cortos-presenciales .splide__arrow, #detalle-curso-anuales-presenciales .splide__arrow {
  background: white !important;
}
#detalle-curso-cortos-presenciales .splide__arrow svg, #detalle-curso-anuales-presenciales .splide__arrow svg {
  width: 1.2em;
  height: 1.2em;
  fill: #fccd54 !important;
}
#detalle-curso-cortos-presenciales .info-curso i, #detalle-curso-anuales-presenciales .info-curso i {
  color: #d9a114;
}
#detalle-curso-cortos-presenciales .icono, #detalle-curso-anuales-presenciales .icono {
  fill: #fccd54 !important;
}
#detalle-curso-cortos-presenciales .etiqueta-estado-curso, #detalle-curso-anuales-presenciales .etiqueta-estado-curso {
  color: #e7b026;
  background: #ffffff;
  border: 1px #b4b4b4 solid;
}
#detalle-curso-cortos-presenciales .nombre-docente, #detalle-curso-cortos-presenciales .aranceles-button, #detalle-curso-anuales-presenciales .nombre-docente, #detalle-curso-anuales-presenciales .aranceles-button {
  color: #d9a114;
}
#detalle-curso-cortos-presenciales .aranceles-button, #detalle-curso-anuales-presenciales .aranceles-button {
  font-weight: bold;
  cursor: pointer;
}
#detalle-curso-cortos-presenciales .splide__progress__bar, #detalle-curso-anuales-presenciales .splide__progress__bar {
  background: #fccd54;
}
#detalle-curso-cortos-presenciales #academica-tab-aranceles .box-valor, #detalle-curso-anuales-presenciales #academica-tab-aranceles .box-valor {
  background-color: #e7b026;
  border-color: #e7b026;
}
#detalle-curso-cortos-presenciales #academica-tab-aranceles .box-valor.box-valor-cuatrimestre p, #detalle-curso-cortos-presenciales #academica-tab-aranceles .box-valor.box-valor-cuatrimestre span, #detalle-curso-anuales-presenciales #academica-tab-aranceles .box-valor.box-valor-cuatrimestre p, #detalle-curso-anuales-presenciales #academica-tab-aranceles .box-valor.box-valor-cuatrimestre span {
  color: #e7b026 !important;
}
#detalle-curso-cortos-presenciales #academica-tab-aranceles .box-valor p, #detalle-curso-cortos-presenciales #academica-tab-aranceles .box-valor span, #detalle-curso-anuales-presenciales #academica-tab-aranceles .box-valor p, #detalle-curso-anuales-presenciales #academica-tab-aranceles .box-valor span {
  color: #FFFFFF;
}
#detalle-curso-cortos-presenciales #academica-tab-aranceles .exclamation-mark, #detalle-curso-cortos-presenciales #academica-tab-aranceles .exclamation-mark span, #detalle-curso-anuales-presenciales #academica-tab-aranceles .exclamation-mark, #detalle-curso-anuales-presenciales #academica-tab-aranceles .exclamation-mark span {
  border-color: #e7b026;
}
#detalle-curso-cortos-presenciales #academica-tab-aranceles li:before, #detalle-curso-anuales-presenciales #academica-tab-aranceles li:before {
  color: #e7b026;
}

#detalle-curso-diplomaturas-presenciales #banner-academica-bg, #detalle-curso-diplomaturas-a-distancia #banner-academica-bg {
  background-color: rgba(0, 0, 0, 0.2);
}
#detalle-curso-diplomaturas-presenciales #texto-modalidad, #detalle-curso-diplomaturas-a-distancia #texto-modalidad {
  background-color: #e45ac7 !important;
  color: #ffffff !important;
}
#detalle-curso-diplomaturas-presenciales #flecha-modalidad, #detalle-curso-diplomaturas-a-distancia #flecha-modalidad {
  background-color: #e45ac7 !important;
}
#detalle-curso-diplomaturas-presenciales #flecha-modalidad i, #detalle-curso-diplomaturas-a-distancia #flecha-modalidad i {
  color: #ffffff !important;
}
#detalle-curso-diplomaturas-presenciales #nombre-academica, #detalle-curso-diplomaturas-a-distancia #nombre-academica {
  color: #000000 !important;
}

#detalle-curso-diplomaturas-presenciales .pretty.p-default input:checked ~ .state label:after {
  background: #cc45af !important;
}
#detalle-curso-diplomaturas-presenciales .accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#detalle-curso-diplomaturas-presenciales .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#detalle-curso-diplomaturas-presenciales .intro-info-tabs .accordion-button {
  background: #cc45af;
  color: white;
  text-transform: uppercase;
}
#detalle-curso-diplomaturas-presenciales .intro-info-tabs .accordion-button:focus {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.095), 0 0 8px rgba(204, 69, 175, 0.8);
}
#detalle-curso-diplomaturas-presenciales .tab-btn {
  text-transform: uppercase !important;
  font-size: 12px !important;
  border-radius: 0 !important;
}
#detalle-curso-diplomaturas-presenciales .popup-videos {
  background: #e45ac7;
}
#detalle-curso-diplomaturas-presenciales .popup-videos:before {
  display: none;
}
#detalle-curso-diplomaturas-presenciales .popup-videos:hover:before {
  background: #fe77e1;
}
#detalle-curso-diplomaturas-presenciales .btn-bloque {
  background: #cc45af;
}
#detalle-curso-diplomaturas-presenciales .btn-bloque:hover {
  background: #b92f9b;
}
#detalle-curso-diplomaturas-presenciales .review-list li:before {
  color: #e45ac7;
}
#detalle-curso-diplomaturas-presenciales .course-item .course-info .course-title a:hover, #detalle-curso-diplomaturas-presenciales .course-item .bottom-part .btn-part a:hover {
  color: #e45ac7;
}
#detalle-curso-diplomaturas-presenciales .course-item:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
}
#detalle-curso-diplomaturas-presenciales .btn-mas-info {
  background: #e45ac7;
}
#detalle-curso-diplomaturas-presenciales .btn-mas-info:hover {
  background: #cc45af;
}
#detalle-curso-diplomaturas-presenciales .text-carrera {
  color: #e45ac7;
}
#detalle-curso-diplomaturas-presenciales .tab-pane .content a {
  color: #e45ac7;
}
#detalle-curso-diplomaturas-presenciales .tab-pane .content a:hover {
  text-decoration: underline;
}
#detalle-curso-diplomaturas-presenciales #contenido-destacado-periodismo {
  background: #e45ac7;
}
#detalle-curso-diplomaturas-presenciales .requisitos-inscripcion i {
  color: #e45ac7;
}
#detalle-curso-diplomaturas-presenciales #banner-academica-bg {
  /*
  background: $diplomaturas-general-400;
  background: linear-gradient(90deg, rgba($diplomaturas-general-400, 1) 0%, rgba($diplomaturas-general-400, 0.6) 100%);

  #detalle-academica {
      border-bottom: 5px solid $diplomaturas-general-500;
  }
  */
}
#detalle-curso-diplomaturas-presenciales .contenedor-info-curso {
  background: #ffffff;
  margin-top: 2rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
}
#detalle-curso-diplomaturas-presenciales .contenedor-info-curso-desktop {
  border-bottom: 3px solid #cc45af;
}
#detalle-curso-diplomaturas-presenciales #contenedor-cursos-relacionados {
  margin-top: 3rem;
  background: white;
  padding-top: 2rem;
}
#detalle-curso-diplomaturas-presenciales #contenedor-cursos-relacionados .nombre-curso {
  font-size: 22px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
}
#detalle-curso-diplomaturas-presenciales #contenedor-cursos-relacionados .nombre-curso a {
  color: #b92f9b;
}
#detalle-curso-diplomaturas-presenciales .tab-btn {
  background: #f1efef;
}
#detalle-curso-diplomaturas-presenciales .tab-btn.active {
  border: none;
  border-bottom: 3px #cc45af solid !important;
  color: #000000;
  background: #ffffff;
  font-weight: bold;
}
#detalle-curso-diplomaturas-presenciales .tab-btn:hover:not(.active) {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #000000;
}
#detalle-curso-diplomaturas-presenciales .tab-btn:hover(.active) {
  color: white !important;
}
#detalle-curso-diplomaturas-presenciales blockquote:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  height: 100%;
  width: 10px;
  background: #cc45af !important;
}
#detalle-curso-diplomaturas-presenciales #formulario-mas-info-bg {
  background: #e5e5e5;
}
#detalle-curso-diplomaturas-presenciales #formulario-mas-info-bg .titulo-formulario, #detalle-curso-diplomaturas-presenciales #formulario-mas-info-bg .title {
  color: #000000 !important;
}
#detalle-curso-diplomaturas-presenciales .form-control:focus {
  border-color: #e45ac7;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.095), 0 0 8px rgba(228, 90, 199, 0.8);
}
#detalle-curso-diplomaturas-presenciales .btn-inscripcion {
  background: #cc45af;
}
#detalle-curso-diplomaturas-presenciales .btn-inscripcion:hover {
  background: #b92f9b;
}
#detalle-curso-diplomaturas-presenciales .promotion-container, #detalle-curso-diplomaturas-presenciales .promotion-value-badge {
  background: #cc45af;
}
#detalle-curso-diplomaturas-presenciales .listado-docentes li a {
  color: #b92f9b;
}
#detalle-curso-diplomaturas-presenciales .splide__pagination__page.is-active {
  background: #cc45af;
}
#detalle-curso-diplomaturas-presenciales .splide__arrow {
  background: white !important;
}
#detalle-curso-diplomaturas-presenciales .splide__arrow svg {
  width: 1.2em;
  height: 1.2em;
  fill: #e45ac7 !important;
}
#detalle-curso-diplomaturas-presenciales .info-curso i {
  color: #b92f9b;
}
#detalle-curso-diplomaturas-presenciales .icono {
  fill: #e45ac7 !important;
}
#detalle-curso-diplomaturas-presenciales .etiqueta-estado-curso {
  color: #cc45af;
  background: #ffffff;
  border: 1px #b4b4b4 solid;
}
#detalle-curso-diplomaturas-presenciales .nombre-docente, #detalle-curso-diplomaturas-presenciales .aranceles-button {
  color: #b92f9b;
}
#detalle-curso-diplomaturas-presenciales .aranceles-button {
  font-weight: bold;
  cursor: pointer;
}
#detalle-curso-diplomaturas-presenciales .splide__progress__bar {
  background: #e45ac7;
}
#detalle-curso-diplomaturas-presenciales #academica-tab-aranceles .box-valor {
  background-color: #cc45af;
  border-color: #cc45af;
}
#detalle-curso-diplomaturas-presenciales #academica-tab-aranceles .box-valor.box-valor-cuatrimestre p, #detalle-curso-diplomaturas-presenciales #academica-tab-aranceles .box-valor.box-valor-cuatrimestre span {
  color: #cc45af !important;
}
#detalle-curso-diplomaturas-presenciales #academica-tab-aranceles .box-valor p, #detalle-curso-diplomaturas-presenciales #academica-tab-aranceles .box-valor span {
  color: #FFFFFF;
}
#detalle-curso-diplomaturas-presenciales #academica-tab-aranceles .exclamation-mark, #detalle-curso-diplomaturas-presenciales #academica-tab-aranceles .exclamation-mark span {
  border-color: #cc45af;
}
#detalle-curso-diplomaturas-presenciales #academica-tab-aranceles li:before {
  color: #cc45af;
}

#detalle-curso-diplomaturas-a-distancia .pretty.p-default input:checked ~ .state label:after {
  background: #cc45af !important;
}
#detalle-curso-diplomaturas-a-distancia .accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#detalle-curso-diplomaturas-a-distancia .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#detalle-curso-diplomaturas-a-distancia .intro-info-tabs .accordion-button {
  background: #cc45af;
  color: white;
  text-transform: uppercase;
}
#detalle-curso-diplomaturas-a-distancia .intro-info-tabs .accordion-button:focus {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.095), 0 0 8px rgba(204, 69, 175, 0.8);
}
#detalle-curso-diplomaturas-a-distancia .tab-btn {
  text-transform: uppercase !important;
  font-size: 12px !important;
  border-radius: 0 !important;
}
#detalle-curso-diplomaturas-a-distancia .popup-videos {
  background: #e45ac7;
}
#detalle-curso-diplomaturas-a-distancia .popup-videos:before {
  display: none;
}
#detalle-curso-diplomaturas-a-distancia .popup-videos:hover:before {
  background: #fe77e1;
}
#detalle-curso-diplomaturas-a-distancia .btn-bloque {
  background: #cc45af;
}
#detalle-curso-diplomaturas-a-distancia .btn-bloque:hover {
  background: #b92f9b;
}
#detalle-curso-diplomaturas-a-distancia .review-list li:before {
  color: #e45ac7;
}
#detalle-curso-diplomaturas-a-distancia .course-item .course-info .course-title a:hover, #detalle-curso-diplomaturas-a-distancia .course-item .bottom-part .btn-part a:hover {
  color: #e45ac7;
}
#detalle-curso-diplomaturas-a-distancia .course-item:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
}
#detalle-curso-diplomaturas-a-distancia .btn-mas-info {
  background: #e45ac7;
}
#detalle-curso-diplomaturas-a-distancia .btn-mas-info:hover {
  background: #cc45af;
}
#detalle-curso-diplomaturas-a-distancia .text-carrera {
  color: #e45ac7;
}
#detalle-curso-diplomaturas-a-distancia .tab-pane .content a {
  color: #e45ac7;
}
#detalle-curso-diplomaturas-a-distancia .tab-pane .content a:hover {
  text-decoration: underline;
}
#detalle-curso-diplomaturas-a-distancia #contenido-destacado-periodismo {
  background: #e45ac7;
}
#detalle-curso-diplomaturas-a-distancia .requisitos-inscripcion i {
  color: #e45ac7;
}
#detalle-curso-diplomaturas-a-distancia #banner-academica-bg {
  /*
  background: $diplomaturas-general-400;
  background: linear-gradient(90deg, rgba($diplomaturas-general-400, 1) 0%, rgba($diplomaturas-general-400, 0.6) 100%);

  #detalle-academica {
      border-bottom: 5px solid $diplomaturas-general-500;
  }
  */
}
#detalle-curso-diplomaturas-a-distancia .contenedor-info-curso {
  background: #ffffff;
  margin-top: 2rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
}
#detalle-curso-diplomaturas-a-distancia .contenedor-info-curso-desktop {
  border-bottom: 3px solid #cc45af;
}
#detalle-curso-diplomaturas-a-distancia #contenedor-cursos-relacionados {
  margin-top: 3rem;
  background: white;
  padding-top: 2rem;
}
#detalle-curso-diplomaturas-a-distancia #contenedor-cursos-relacionados .nombre-curso {
  font-size: 22px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
}
#detalle-curso-diplomaturas-a-distancia #contenedor-cursos-relacionados .nombre-curso a {
  color: #b92f9b;
}
#detalle-curso-diplomaturas-a-distancia .tab-btn {
  background: #f1efef;
}
#detalle-curso-diplomaturas-a-distancia .tab-btn.active {
  border: none;
  border-bottom: 3px #cc45af solid !important;
  color: #000000;
  background: #ffffff;
  font-weight: bold;
}
#detalle-curso-diplomaturas-a-distancia .tab-btn:hover:not(.active) {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #000000;
}
#detalle-curso-diplomaturas-a-distancia .tab-btn:hover(.active) {
  color: white !important;
}
#detalle-curso-diplomaturas-a-distancia blockquote:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  height: 100%;
  width: 10px;
  background: #cc45af !important;
}
#detalle-curso-diplomaturas-a-distancia #formulario-mas-info-bg {
  background: #e5e5e5;
}
#detalle-curso-diplomaturas-a-distancia #formulario-mas-info-bg .titulo-formulario, #detalle-curso-diplomaturas-a-distancia #formulario-mas-info-bg .title {
  color: #000000 !important;
}
#detalle-curso-diplomaturas-a-distancia .form-control:focus {
  border-color: #e45ac7;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.095), 0 0 8px rgba(228, 90, 199, 0.8);
}
#detalle-curso-diplomaturas-a-distancia .btn-inscripcion {
  background: #cc45af;
}
#detalle-curso-diplomaturas-a-distancia .btn-inscripcion:hover {
  background: #b92f9b;
}
#detalle-curso-diplomaturas-a-distancia .promotion-container, #detalle-curso-diplomaturas-a-distancia .promotion-value-badge {
  background: #cc45af;
}
#detalle-curso-diplomaturas-a-distancia .listado-docentes li a {
  color: #b92f9b;
}
#detalle-curso-diplomaturas-a-distancia .splide__pagination__page.is-active {
  background: #cc45af;
}
#detalle-curso-diplomaturas-a-distancia .splide__arrow {
  background: white !important;
}
#detalle-curso-diplomaturas-a-distancia .splide__arrow svg {
  width: 1.2em;
  height: 1.2em;
  fill: #e45ac7 !important;
}
#detalle-curso-diplomaturas-a-distancia .info-curso i {
  color: #b92f9b;
}
#detalle-curso-diplomaturas-a-distancia .icono {
  fill: #e45ac7 !important;
}
#detalle-curso-diplomaturas-a-distancia .etiqueta-estado-curso {
  color: #cc45af;
  background: #ffffff;
  border: 1px #b4b4b4 solid;
}
#detalle-curso-diplomaturas-a-distancia .nombre-docente, #detalle-curso-diplomaturas-a-distancia .aranceles-button {
  color: #b92f9b;
}
#detalle-curso-diplomaturas-a-distancia .aranceles-button {
  font-weight: bold;
  cursor: pointer;
}
#detalle-curso-diplomaturas-a-distancia .splide__progress__bar {
  background: #e45ac7;
}
#detalle-curso-diplomaturas-a-distancia #academica-tab-aranceles .box-valor {
  background-color: #cc45af;
  border-color: #cc45af;
}
#detalle-curso-diplomaturas-a-distancia #academica-tab-aranceles .box-valor.box-valor-cuatrimestre p, #detalle-curso-diplomaturas-a-distancia #academica-tab-aranceles .box-valor.box-valor-cuatrimestre span {
  color: #cc45af !important;
}
#detalle-curso-diplomaturas-a-distancia #academica-tab-aranceles .box-valor p, #detalle-curso-diplomaturas-a-distancia #academica-tab-aranceles .box-valor span {
  color: #FFFFFF;
}
#detalle-curso-diplomaturas-a-distancia #academica-tab-aranceles .exclamation-mark, #detalle-curso-diplomaturas-a-distancia #academica-tab-aranceles .exclamation-mark span {
  border-color: #cc45af;
}
#detalle-curso-diplomaturas-a-distancia #academica-tab-aranceles li:before {
  color: #cc45af;
}

.listado-docentes li {
  padding: 0 !important;
}

.listado-fechas li {
  padding: 0 !important;
}

.titulo-formulario {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #ffffff;
}

.btn-inscripcion {
  margin-top: 2rem;
  width: 100%;
  color: #ffffff !important;
  font-size: 14px;
  text-align: center;
  padding: 10px;
  text-transform: uppercase;
  box-shadow: 0 28px 50px 0 rgba(0, 0, 0, 0.05);
  outline: none;
  border: none;
  border-radius: 3px;
  display: inline-block;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.btn-inscripcion:hover {
  text-decoration: none !important;
}

.promotion-container {
  width: 100%;
  background: #5cb85c !important;
  color: #ffffff !important;
  font-size: 14px;
  text-align: center;
  padding: 10px;
}
.promotion-container p {
  margin: 0 !important;
  font-weight: bold;
}
.promotion-container p span.title {
  text-transform: uppercase;
  font-weight: normal !important;
}
.promotion-container p i {
  color: white !important;
  margin-right: 0.3rem !important;
}

.promotion-value-badge {
  margin-top: -0.3rem;
  margin-left: 0.3rem;
  font-size: 1rem;
  background: #5cb85c !important;
  vertical-align: middle;
  padding: 0.35rem;
}

#form-interesado-curso-desktop-container {
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
  background: #ffffff;
}

.btn-bloque {
  font-size: 14px;
  text-align: center;
  width: 100%;
  padding: 10px;
  text-transform: uppercase;
  box-shadow: 0 28px 50px 0 rgba(0, 0, 0, 0.05);
  outline: none;
  border: none;
  border-radius: 3px;
  display: inline-block;
  font-weight: 500;
  color: #ffffff !important;
  transition: background-color 0.3s ease;
}

.bloque-info {
  background: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
  margin-top: 1em;
  margin-bottom: 1em;
}

.contenedor-info-curso .intro-info-tabs .nav .nav-item .nav-link:not(.active) {
  color: #111111;
}

.contenedor-info-curso .intro-info-tabs .nav .nav-item .nav-link {
  font-weight: lighter;
}

#detalle-academica {
  font-family: Montserrat, sans-serif;
}

#detalle-academica span.line-through {
  text-decoration: line-through;
}

#detalle-academica span.da_valor_total {
  font-size: 13px;
}

.contenedor-imagen-curso {
  position: relative;
  display: inline-block;
}

.etiqueta-estado-curso {
  position: absolute;
  bottom: 0;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  width: 100%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

#cursos-relacionados {
  padding: 3rem;
  background: white;
}

.video-img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

#academica-tab-aranceles .box-valor {
  padding: 1rem;
  border: 0.3rem solid;
  border-radius: 0.5rem;
}
#academica-tab-aranceles .box-valor.box-valor-cuatrimestre {
  background-color: #FFFFFF !important;
}
#academica-tab-aranceles .box-valor p {
  font-size: 1.2rem !important;
  font-weight: bold;
}
#academica-tab-aranceles .texto-cuotas {
  margin: 1.5rem 0 1.5rem 0;
  background-color: #F4F4F4;
  text-align: center;
  border-radius: 0.5rem;
  padding: 1rem;
}
#academica-tab-aranceles .exclamation-mark {
  width: 1.7rem;
  height: 1.7rem;
  border: 0.15rem solid;
  border-radius: 10rem;
  position: relative;
}
#academica-tab-aranceles .exclamation-mark span {
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#academica-tab-aranceles li {
  position: relative;
  list-style: none !important;
  padding-left: 30px;
}
#academica-tab-aranceles li:before {
  position: absolute;
  content: "\f101";
  left: 0px;
  top: 7px;
  font-size: 14px;
  line-height: 1em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.review-list li {
  list-style: none !important;
}

.pagina-curso .nv-1 .sec-title {
  margin-top: 1rem !important;
}
@media (min-width: 992px) {
  .pagina-curso .nv-1 .sec-title {
    margin-top: 0 !important;
  }
}
.pagina-curso .nv-1 #info-academica #fecha-inicio, .pagina-curso .nv-1 #info-academica #texto-modalidad {
  display: inline-block;
  margin: 0rem;
}
.pagina-curso .nv-1 #info-academica #fecha-inicio {
  margin: 0rem 0rem 0rem 0rem;
  font-size: 1rem;
  color: #000000;
  border: 0.15rem solid #000000 !important;
  border-radius: 5rem;
  text-align: left;
  padding: 0.5rem 1rem 0.5rem 1rem;
}
.pagina-curso .nv-1 #info-academica #flecha-modalidad {
  position: relative;
  margin: 0rem 0.5rem 0rem 0.5rem;
  font-size: 1.1rem;
  background-color: #FFFFFF;
  border-radius: 5rem;
  padding: 0.339rem 1rem 0.339rem 1rem;
}
@media only screen and (max-width: 768px) {
  .pagina-curso .nv-1 #info-academica #flecha-modalidad {
    margin: 0rem 0.5rem 0rem 0rem;
  }
}
.pagina-curso .nv-1 #info-academica #texto-modalidad {
  font-size: 1rem !important;
  color: #000000;
  background-color: #FFFFFF;
  text-transform: uppercase;
  border-radius: 5rem;
  padding: 0.607rem 1rem 0.607rem 1rem;
}
@media only screen and (max-width: 768px) {
  .pagina-curso .nv-1 #info-academica #texto-modalidad {
    margin: 0rem 0rem 1rem 0rem;
  }
  .pagina-curso .nv-1 #info-academica {
    text-align: left;
  }
}
.pagina-curso .nv-1 #nombre-academica {
  margin: 1.5rem 0rem 0rem 0rem;
  font-family: "BebasNeue-Regular", sans-serif !important;
  font-size: 4rem;
  line-height: 4rem;
}
@media only screen and (max-width: 768px) {
  .pagina-curso .nv-1 #nombre-academica {
    margin: 1rem 0rem 2rem 0rem;
    text-align: left;
    font-size: 3rem;
    line-height: 3rem;
  }
  .pagina-curso .nv-1 #nombre-academica br {
    display: none;
  }
}

/* 36px */
/* 18px */
/* 24px */
/* 16px */
/* 18px */
/* statuses */
/* header carreras y formaciones + otros detalles de la web */
/* locucion */
/* periodismo */
/* periodismo deportivo */
/* periodismo deportivo distancia */
/* produccion audiovisual */
/* periodismo y produccion de contenidos */
/* guion distancia */
/* comunicacion y marketing digital distancia */
/* esp. periodismo digital */
/* formacion integral en doblaje */
/* formacion integral en doblaje presencial */
/* formacion integral en doblaje distancia */
/* formacion en streaming y sonido */
/* formacion intensiva en guion distancia */
/* formacion en produccion virtual distancia */
#developed-by {
  text-transform: uppercase;
  font-size: 11px;
}

.requisitos-inscripcion i {
  width: 50px;
}
.requisitos-inscripcion h4, .requisitos-inscripcion .h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  margin-bottom: 0 !important;
}

.nav-tabs {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

.titulo-tab {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.plan-estudios-cuatrimestre, .plan-estudios-año {
  font-family: "Montserrat", sans-serif;
}

.error-text .error-code {
  font-family: "Rubik", sans-serif;
}
.error-text .error-message,
.error-text .search-input {
  font-family: "Montserrat", sans-serif;
}
.error-text .error-message {
  font-weight: 500;
}

.iti {
  display: block !important;
}

.error {
  color: rgb(171, 9, 41);
  margin-top: 0.3em;
}

.form-label.required:after {
  content: " *";
  color: rgb(171, 9, 41);
}

.form-wrapper label {
  font-family: "Montserrat", sans-serif;
}

.form-wrapper input, .form-wrapper select, .form-wrapper textarea {
  font-family: "Rubik", sans-serif;
}

.form-wrapper label.error {
  font-family: "Montserrat", sans-serif;
  text-transform: none !important;
}

textarea {
  resize: none;
}

.iti__flag {
  background-image: url("/images/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("/images/flags@2x.png");
  }
}
.patron-formulario {
  right: 0;
}

#banner-academica {
  font-family: "Montserrat", sans-serif;
  background-size: cover !important;
}
#banner-academica #fecha-inicio {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 0;
}
#banner-academica #nombre-academica {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 0;
  font-weight: lighter;
  text-transform: uppercase;
}
#banner-academica #texto-modalidad {
  color: #ffffff;
  font-size: 1.5em;
  font-weight: bolder;
  text-transform: uppercase;
}
#banner-academica.nv-1 #info-academica #fecha-inicio, #banner-academica.nv-1 #info-academica #texto-modalidad {
  display: inline-block;
  margin: 0rem;
}
#banner-academica.nv-1 #info-academica #fecha-inicio {
  margin: 0rem 0rem 0rem 0rem;
  font-size: 1rem;
  border: 0.15rem solid #FFFFFF;
  border-radius: 5rem;
  text-align: left;
  padding: 0.5rem 1rem 0.5rem 1rem;
}
#banner-academica.nv-1 #info-academica #flecha-modalidad {
  position: relative;
  margin: 0rem 0.5rem 0rem 0.5rem;
  font-size: 1.1rem;
  background-color: #FFFFFF;
  border-radius: 5rem;
  padding: 0.339rem 1rem 0.339rem 1rem;
}
@media only screen and (max-width: 768px) {
  #banner-academica.nv-1 #info-academica #flecha-modalidad {
    margin: 0rem 0.5rem 0rem 0rem;
  }
}
#banner-academica.nv-1 #info-academica #texto-modalidad {
  font-size: 1rem !important;
  background-color: #FFFFFF;
  text-transform: uppercase;
  border-radius: 5rem;
  padding: 0.607rem 1rem 0.607rem 1rem;
}
@media only screen and (max-width: 768px) {
  #banner-academica.nv-1 #info-academica #texto-modalidad {
    margin: 0rem 0rem 1rem 0rem;
  }
  #banner-academica.nv-1 #info-academica {
    text-align: left;
  }
}
#banner-academica.nv-1 #nombre-academica {
  margin: 1.5rem 0rem 0rem 0rem;
  font-family: "BebasNeue-Regular", sans-serif !important;
  font-size: 4rem;
  line-height: 4rem;
}
@media only screen and (max-width: 768px) {
  #banner-academica.nv-1 #nombre-academica {
    margin: 1rem 0rem 2rem 0rem;
    text-align: left;
    font-size: 3rem;
    line-height: 3rem;
  }
  #banner-academica.nv-1 #nombre-academica br {
    display: none;
  }
}
#banner-academica.nv-1 .contenedor-datos-carrera .titulo-datos-carrera {
  white-space: nowrap;
  font-family: "DMSans-Bold", sans-serif !important;
  font-size: 1.2rem !important;
}
#banner-academica.nv-1 .contenedor-datos-carrera .contenido-datos-carrera {
  font-family: "DMSans-Regular", sans-serif !important;
  font-size: 1rem;
}

.char-counter {
  position: absolute;
  right: 15px;
  bottom: -30px;
  font-size: 13px;
}

.identificador-curso-cortos-presenciales {
  border-bottom: thick inset #fccd54 !important;
}
.identificador-curso-cortos-presenciales .img-part {
  width: 100% !important;
}
.identificador-curso-cortos-presenciales .price.highlight {
  color: #000000;
  background: #fccd54;
}
.identificador-curso-cortos-presenciales .title a:hover {
  color: #fccd54 !important;
}
.identificador-curso-cortos-presenciales li {
  list-style: none;
}
.identificador-curso-cortos-presenciales .highlight-btn {
  background: #fccd54 !important;
}
.identificador-curso-cortos-presenciales .highlight-btn i {
  color: #000000 !important;
}
.identificador-curso-cortos-presenciales.no-bottom-border {
  border-bottom: 0 !important;
}
.identificador-curso-cortos-presenciales.initial-border {
  border-bottom: 1px solid #dfe9eb !important;
}

.identificador-curso-cortos-a-distancia {
  border-bottom: thick inset #cf1a52 !important;
}
.identificador-curso-cortos-a-distancia .img-part {
  width: 100% !important;
}
.identificador-curso-cortos-a-distancia .price.highlight {
  color: #FFFFFF;
  background: #cf1a52;
}
.identificador-curso-cortos-a-distancia .title a:hover {
  color: #cf1a52 !important;
}
.identificador-curso-cortos-a-distancia li {
  list-style: none;
}
.identificador-curso-cortos-a-distancia .highlight-btn {
  background: #cf1a52 !important;
}
.identificador-curso-cortos-a-distancia .highlight-btn i {
  color: #FFFFFF !important;
}
.identificador-curso-cortos-a-distancia.no-bottom-border {
  border-bottom: 0 !important;
}
.identificador-curso-cortos-a-distancia.initial-border {
  border-bottom: 1px solid #dfe9eb !important;
}

.identificador-curso-anuales-presenciales {
  border-bottom: thick inset #fccd54 !important;
}
.identificador-curso-anuales-presenciales .img-part {
  width: 100% !important;
}
.identificador-curso-anuales-presenciales .price.highlight {
  color: #000000;
  background: #fccd54;
}
.identificador-curso-anuales-presenciales .title a:hover {
  color: #fccd54 !important;
}
.identificador-curso-anuales-presenciales li {
  list-style: none;
}
.identificador-curso-anuales-presenciales .highlight-btn {
  background: #fccd54 !important;
}
.identificador-curso-anuales-presenciales .highlight-btn i {
  color: #000000 !important;
}
.identificador-curso-anuales-presenciales.no-bottom-border {
  border-bottom: 0 !important;
}
.identificador-curso-anuales-presenciales.initial-border {
  border-bottom: 1px solid #dfe9eb !important;
}

.identificador-curso-anuales-a-distancia {
  border-bottom: thick inset #cf1a52 !important;
}
.identificador-curso-anuales-a-distancia .img-part {
  width: 100% !important;
}
.identificador-curso-anuales-a-distancia .price.highlight {
  color: #FFFFFF;
  background: #cf1a52;
}
.identificador-curso-anuales-a-distancia .title a:hover {
  color: #cf1a52 !important;
}
.identificador-curso-anuales-a-distancia li {
  list-style: none;
}
.identificador-curso-anuales-a-distancia .highlight-btn {
  background: #cf1a52 !important;
}
.identificador-curso-anuales-a-distancia .highlight-btn i {
  color: #FFFFFF !important;
}
.identificador-curso-anuales-a-distancia.no-bottom-border {
  border-bottom: 0 !important;
}
.identificador-curso-anuales-a-distancia.initial-border {
  border-bottom: 1px solid #dfe9eb !important;
}

.identificador-curso-adolescentes-presenciales {
  border-bottom: thick inset #bb91e8 !important;
}
.identificador-curso-adolescentes-presenciales .img-part {
  width: 100% !important;
}
.identificador-curso-adolescentes-presenciales .price.highlight {
  color: #000000;
  background: #bb91e8;
}
.identificador-curso-adolescentes-presenciales .title a:hover {
  color: #bb91e8 !important;
}
.identificador-curso-adolescentes-presenciales li {
  list-style: none;
}
.identificador-curso-adolescentes-presenciales .highlight-btn {
  background: #bb91e8 !important;
}
.identificador-curso-adolescentes-presenciales .highlight-btn i {
  color: #000000 !important;
}
.identificador-curso-adolescentes-presenciales.no-bottom-border {
  border-bottom: 0 !important;
}
.identificador-curso-adolescentes-presenciales.initial-border {
  border-bottom: 1px solid #dfe9eb !important;
}

.identificador-curso-adolescentes-a-distancia {
  border-bottom: thick inset #8400c1 !important;
}
.identificador-curso-adolescentes-a-distancia .img-part {
  width: 100% !important;
}
.identificador-curso-adolescentes-a-distancia .price.highlight {
  color: #FFFFFF;
  background: #8400c1;
}
.identificador-curso-adolescentes-a-distancia .title a:hover {
  color: #8400c1 !important;
}
.identificador-curso-adolescentes-a-distancia li {
  list-style: none;
}
.identificador-curso-adolescentes-a-distancia .highlight-btn {
  background: #8400c1 !important;
}
.identificador-curso-adolescentes-a-distancia .highlight-btn i {
  color: #FFFFFF !important;
}
.identificador-curso-adolescentes-a-distancia.no-bottom-border {
  border-bottom: 0 !important;
}
.identificador-curso-adolescentes-a-distancia.initial-border {
  border-bottom: 1px solid #dfe9eb !important;
}

.identificador-diplomaturas-presenciales {
  border-bottom: thick inset #e45ac7 !important;
}
.identificador-diplomaturas-presenciales .img-part {
  width: 100% !important;
}
.identificador-diplomaturas-presenciales .price.highlight {
  color: #FFFFFF;
  background: #e45ac7;
}
.identificador-diplomaturas-presenciales .title a:hover {
  color: #e45ac7 !important;
}
.identificador-diplomaturas-presenciales li {
  list-style: none;
}
.identificador-diplomaturas-presenciales .highlight-btn {
  background: #e45ac7 !important;
}
.identificador-diplomaturas-presenciales .highlight-btn i {
  color: #FFFFFF !important;
}
.identificador-diplomaturas-presenciales.no-bottom-border {
  border-bottom: 0 !important;
}
.identificador-diplomaturas-presenciales.initial-border {
  border-bottom: 1px solid #dfe9eb !important;
}

.identificador-diplomaturas-a-distancia {
  border-bottom: thick inset #B7B7B7 !important;
}
.identificador-diplomaturas-a-distancia .img-part {
  width: 100% !important;
}
.identificador-diplomaturas-a-distancia .price.highlight {
  color: #FFFFFF;
  background: #B7B7B7;
}
.identificador-diplomaturas-a-distancia .title a:hover {
  color: #B7B7B7 !important;
}
.identificador-diplomaturas-a-distancia li {
  list-style: none;
}
.identificador-diplomaturas-a-distancia .highlight-btn {
  background: #B7B7B7 !important;
}
.identificador-diplomaturas-a-distancia .highlight-btn i {
  color: #FFFFFF !important;
}
.identificador-diplomaturas-a-distancia.no-bottom-border {
  border-bottom: 0 !important;
}
.identificador-diplomaturas-a-distancia.initial-border {
  border-bottom: 1px solid #dfe9eb !important;
}

.price.highlight {
  display: inline-block !important;
  margin-bottom: 0.7rem !important;
  font-size: 0.85rem !important;
  font-weight: bold !important;
  text-transform: uppercase !important;
  border-radius: 10rem !important;
  padding: 0.3rem 1rem !important;
  position: relative !important;
  left: -0.5rem !important;
}

.highlight-btn {
  display: inline-block !important;
  width: 2rem !important;
  height: 2rem !important;
  border-radius: 5rem !important;
  padding: 0.3rem !important;
  position: relative !important;
}
.highlight-btn i {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.sub-menu li a:after {
  content: unset !important;
  margin: unset !important;
}

#detalle-academica {
  border-radius: 1rem;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
  background-color: #ffffff;
  z-index: 10;
  padding: 0.4em 0.5em;
}
#detalle-academica .detalle-academica-texto {
  text-align: left;
}
#detalle-academica i {
  width: 2rem;
  margin-right: 0.5rem;
}

.tab-content {
  background: #ffffff;
}

.tab-pane .content-area {
  padding: 3rem;
}

.icono-pestana-mobile {
  width: 2rem;
}

.descripcion-docente {
  font-family: Rubik, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 70px !important;
}

.patron-banner {
  filter: brightness(1000%);
  position: absolute;
}

.webp .formulario-mas-info {
  background: url("https://assets.eter.edu.ar/images/bg-contacto.jpg");
  background-position: center;
  background-size: cover;
}

.no-webp .formulario-mas-info {
  background: url("https://assets.eter.edu.ar/images/bg-contacto.jpg");
  background-position: center;
  background-size: cover;
}

.ficha-contenido {
  font-size: 16px;
}
.ficha-contenido li {
  list-style: disc;
}

.titulo-fechas-inicio {
  font-weight: bolder;
  font-family: Montserrat, sans-serif;
  margin-bottom: 0;
}

.contenedor-info-curso {
  background: #ffffff;
  margin-top: 2rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
}

.pagina-carrera .intro-section, .pagina-recorrido-educativo .intro-section, .pagina-formacion .intro-section,
.pagina-curso .intro-section {
  background: #f3f8f9;
  padding-top: 1.2rem;
}

@media (min-width: 768px) {
  .pagina-carrera .intro-section, .pagina-recorrido-educativo .intro-section, .pagina-formacion .intro-section,
  .pagina-curso .intro-section {
    background: #f3f8f9;
    padding-top: 3rem;
  }
}
.banner-generico .bg-overlay {
  background: rgba(215, 87, 3, 0.51);
}

.banner-generico {
  background-position: center !important;
  background-size: cover !important;
}

.banner-contenedor {
  padding-top: 7rem;
  padding-bottom: 2.5rem;
}
.banner-contenedor * {
  color: #ffffff;
}

.banner-generico-alt {
  background-position: center !important;
  background-size: cover !important;
}
@media only screen and (max-width: 768px) {
  .banner-generico-alt {
    background-position: 35% !important;
  }
}
.banner-generico-alt .banner-contenedor.overlay {
  background-color: rgba(0, 0, 0, 0.2);
}
.banner-generico-alt .banner-contenedor * {
  text-align: left;
  color: #000;
}
.banner-generico-alt .sub-title {
  font-family: BebasNeue-Regular, sans-serif !important;
  font-size: 1.5rem !important;
  line-height: 1.5rem !important;
  font-weight: lighter !important;
}
@media only screen and (max-width: 768px) {
  .banner-generico-alt .sub-title {
    font-size: 1.2rem !important;
    line-height: 1.2rem !important;
  }
}
.banner-generico-alt .title {
  font-family: BebasNeue-Regular, sans-serif !important;
  font-size: 4rem !important;
  line-height: 4rem !important;
  font-weight: lighter !important;
}
@media only screen and (max-width: 768px) {
  .banner-generico-alt .title {
    font-size: 3rem !important;
    line-height: 3rem !important;
  }
}

#footer-carreras, #footer-cursos, #footer-formaciones, #footer-diplomaturas {
  padding-left: 2rem;
}
#footer-carreras li a, #footer-cursos li a, #footer-formaciones li a, #footer-diplomaturas li a {
  font-weight: 500;
}

/* ----------------------------------------------------- */
.section_table {
  margin: auto;
  width: 100%;
  height: auto;
  display: table;
  border-collapse: collapse;
}

.section_table.st_fixed {
  table-layout: fixed;
}

.section_table.st_full {
  height: 100%;
}

.section_table .section_row {
  display: table-row;
}

.section_table .section_cell {
  display: table-cell;
  vertical-align: middle;
}

.section_table .section_cell.sc_ta_left, .ta_left {
  text-align: left;
}

.section_table .section_cell.sc_ta_center, .ta_center {
  text-align: center;
}

.section_table .section_cell.sc_ta_right, .ta_right {
  text-align: right;
}

.section_table .section_cell.sc_va_top, .va_top {
  vertical-align: top;
}

.section_table .section_cell.sc_va_middle, .va_middle {
  vertical-align: middle;
}

.section_table .section_cell.sc_va_bottom, .va_bottom {
  vertical-align: bottom;
}

/* ----------------------------------------------------- */
.section_table.st_checkbox {
  margin: 10px auto 10px auto !important;
  width: 100%;
}

.section_table.st_checkbox.widthlimit {
  max-width: 310px;
}

.section_table.st_checkbox .sc_input {
  width: 30px;
  min-width: 30px;
  max-width: 30px;
}

.section_table.st_checkbox input {
  display: inline-block !important;
  position: static !important;
  width: 18px !important;
  height: 18px !important;
  opacity: 1 !important;
}

.section_table.st_checkbox label {
  margin: 0px 0px 0px 0px !important;
  white-space: normal !important;
  text-align: left !important;
}

.cmp-seccion-titulo .title-container {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .cmp-seccion-titulo .title-container {
    margin-bottom: 4rem;
  }
}
.cmp-seccion-titulo .title-container.align-left {
  text-align: left;
}
.cmp-seccion-titulo .title-container.align-center {
  text-align: center;
}
.cmp-seccion-titulo .title-container.align-right {
  text-align: right;
}
.cmp-seccion-titulo .title-container h1, .cmp-seccion-titulo .title-container .h1 {
  margin: 0;
  font-size: 2.25rem;
  font-family: "Montserrat", sans-serif;
}
.cmp-seccion-titulo .title-container p {
  margin: 0;
  font-size: 1.125rem;
  font-family: "Montserrat", sans-serif;
}

.cmp-seccion-icono-con-descripcion {
  margin: 0 0 2rem 0;
}
.cmp-seccion-icono-con-descripcion:last-child {
  margin: 0;
}
.cmp-seccion-icono-con-descripcion .item {
  gap: 1rem;
}
.cmp-seccion-icono-con-descripcion .item.align-left {
  justify-content: start;
}
.cmp-seccion-icono-con-descripcion .item.align-center {
  justify-content: center;
}
.cmp-seccion-icono-con-descripcion .item.align-right {
  justify-content: end;
}
.cmp-seccion-icono-con-descripcion .item.valign-top {
  align-items: start;
}
.cmp-seccion-icono-con-descripcion .item.valign-center {
  align-items: center;
}
.cmp-seccion-icono-con-descripcion .item.valign-bottom {
  align-items: end;
}
@media (min-width: 768px) {
  .cmp-seccion-icono-con-descripcion .item {
    gap: 2rem;
  }
}
.cmp-seccion-icono-con-descripcion .item svg {
  width: 4rem;
}
.cmp-seccion-icono-con-descripcion .item i {
  font-size: 4rem;
}
.cmp-seccion-icono-con-descripcion .item h5, .cmp-seccion-icono-con-descripcion .item .h5 {
  margin: 0;
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
}
.cmp-seccion-icono-con-descripcion .item p, .cmp-seccion-icono-con-descripcion .item li {
  margin: 0;
  font-size: 1.125rem;
  font-family: "Montserrat", sans-serif;
}
.cmp-seccion-icono-con-descripcion .item li {
  list-style-position: inside;
  list-style-type: circle;
}

.cmp-seccion-boton {
  display: inline-block;
  overflow: hidden;
  background-color: #000000;
  border-radius: 5rem;
  padding: 0.4rem 1.2rem;
  transition: 0.3s;
}
.cmp-seccion-boton:hover {
  opacity: 0.8;
}
.cmp-seccion-boton .item svg {
  width: 1rem;
  fill: #FFFFFF;
}
.cmp-seccion-boton .item i {
  font-size: 1rem;
  fill: #FFFFFF;
}
.cmp-seccion-boton .item span {
  margin: 0;
  color: #FFFFFF;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}

/* 36px */
/* 18px */
/* 24px */
/* 16px */
/* 18px */
/* statuses */
/* header carreras y formaciones + otros detalles de la web */
/* locucion */
/* periodismo */
/* periodismo deportivo */
/* periodismo deportivo distancia */
/* produccion audiovisual */
/* periodismo y produccion de contenidos */
/* guion distancia */
/* comunicacion y marketing digital distancia */
/* esp. periodismo digital */
/* formacion integral en doblaje */
/* formacion integral en doblaje presencial */
/* formacion integral en doblaje distancia */
/* formacion en streaming y sonido */
/* formacion intensiva en guion distancia */
/* formacion en produccion virtual distancia */
.external-arrows .splide__arrow {
  top: 22%;
}

@media (min-width: 768px) {
  .external-arrows .splide__arrow {
    top: 50%;
  }
  .external-arrows .splide__arrow--prev {
    left: -4rem;
    top: 50%;
  }
  .external-arrows .splide__arrow--next {
    right: -4rem;
    top: 50%;
  }
}
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__container {
  position: relative;
  box-sizing: border-box;
}

.splide__list {
  margin: 0 !important;
  padding: 0 !important;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}

.splide.is-active .splide__list {
  display: flex;
}

.splide__pagination {
  display: inline-flex;
  align-items: center;
  width: 95%;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}

.splide__pagination li {
  list-style-type: none;
  display: inline-block;
  line-height: 1;
  margin: 0;
}

.splide, .splide__slide {
  position: relative;
  outline: none;
}

.splide__slide {
  box-sizing: border-box;
  list-style-type: none !important;
  margin: 0;
  flex-shrink: 0;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__slider {
  position: relative;
}

.splide__spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #999;
  animation: splide-loading 1s linear infinite;
}

.splide__track {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.splide--draggable > .splide__track > .splide__list > .splide__slide {
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide--fade > .splide__track > .splide__list {
  display: block;
}

.splide--fade > .splide__track > .splide__list > .splide__slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
}

.splide--fade > .splide__track > .splide__list > .splide__slide.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide--ttb > .splide__track > .splide__list {
  display: block;
}

.splide--ttb > .splide__pagination {
  width: auto;
}

.splide__arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  padding: 0;
  background: transparent;
}

.splide__arrow svg {
  width: 2.5em;
  height: 2.5em;
  fill: #FE6602;
  transition: fill 0.2s linear;
}

.splide__arrow:hover {
  cursor: pointer;
}

.splide__arrow:hover svg {
  fill: #D75601;
}

.splide__arrow:focus {
  outline: none;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide__slider > .splide__arrows .splide__arrow--prev {
  left: -2.5em;
}

.splide__slider > .splide__arrows .splide__arrow--next {
  right: -2.5em;
}

.splide__pagination {
  position: absolute;
  z-index: 1;
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
}

.external-pagination.splide__pagination {
  position: absolute;
  z-index: 1;
  bottom: -3em;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
}

.splide__pagination__page {
  display: inline-block;
  width: 20px;
  height: 5px;
  background: #ccc;
  border-radius: 2.5px;
  margin: 3px;
  padding: 0;
  transition: all 0.2s linear;
  border: none;
}

.splide__pagination__page.is-active {
  background: #FE6602;
}

.splide__pagination__page:hover {
  cursor: pointer;
  background: #D75601;
}

.splide__pagination__page:focus {
  outline: none;
}

.splide__progress__bar {
  width: 0;
  height: 3px;
  background: #FE6602;
}

.splide__slide {
  border-radius: 4px;
}

.splide__spinner {
  border: 2px solid #FE6602;
  border-left-color: transparent;
}

.splide--nav > .splide__track > .splide__list > .splide__slide {
  border: 3px solid #fff;
  cursor: pointer;
  opacity: 0.7;
  border-radius: 4px;
}

.splide--nav > .splide__track > .splide__list > .splide__slide.is-active {
  border-color: #FE6602;
  opacity: 1;
}

.splide--nav > .splide__track > .splide__list > .splide__slide:focus {
  outline: none;
}

.splide--rtl > .splide__arrows .splide__arrow--prev, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev {
  right: 1em;
  left: auto;
}

.splide--rtl > .splide__arrows .splide__arrow--prev svg, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide--rtl > .splide__arrows .splide__arrow--next, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide--rtl > .splide__arrows .splide__arrow--next svg, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide--ttb > .splide__arrows .splide__arrow, .splide--ttb > .splide__track > .splide__arrows .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide--ttb > .splide__arrows .splide__arrow--prev, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev {
  top: 1em;
}

.splide--ttb > .splide__arrows .splide__arrow--prev svg, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide--ttb > .splide__arrows .splide__arrow--next, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--next {
  top: auto;
  bottom: 1em;
}

.splide--ttb > .splide__arrows .splide__arrow--next svg, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide--ttb > .splide__pagination {
  display: flex;
  flex-direction: column;
  bottom: 50%;
  left: auto;
  right: 1em;
  transform: translateY(50%);
}

.splide--ttb > .splide__pagination .splide__pagination__page {
  width: 5px;
  height: 20px;
}

/**
*
* -----------------------------------------------------------------------------
*
* Template : Educavo - Education HTML Template
* Author : rs-theme
* Author URI : http://www.rstheme.com/
*
* -----------------------------------------------------------------------------
*
**/
/* TABLE OF CONTENT
---------------------------------------------------------
    01. General CSS
    02. Global Class CSS
    03. Header Section CSS
    04. Sticky Menu CSS
    05. Banner Section CSS
    06. Breadcrumbs Section CSS
    07. About Section CSS
    08. Services Section CSS
    09. Subject Section CSS
    10. Categories Section CSS
    11. Popular Courses Section CSS
    12. Course Single Section CSS
    13. Accordion Section CSS
    14. Why Choose US Section CSS
    15. Team Section CSS
    16. Team Single Section CSS
    17. Testimonial Section CSS
    18. Blog Section CSS
    19. Latest Events Section CSS
    20. Partner Section CSS
    21. Gallery Section CSS
    22. CTA Section CSS
    23. Counter Section CSS
    24. Newsletter Section CSS
    25. Publication Section CSS
    26. Facilities Section CSS
    27. Faq Section CSS
    28. Error Section CSS
    29. Shop Section CSS
    30. Single Shop Section CSS
    31. Cart Section CSS
    32. Header Cart Section CSS
    33. Checkout Section CSS
    34. Login Section CSS
    35. Register Section CSS
    36. Contact Section CSS
    37. Footer Section CSS
    38. Scroll Up CSS
    39. Preloader CSS

--------------------------------------------------------*/
/* -----------------------------------
    01. General CSS
-------------------------------------*/
html, body {
  font-size: 15px;
  color: #505050;
  font-family: "Rubik", sans-serif;
  vertical-align: baseline;
  line-height: 26px;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  margin: 0 0 26px;
  line-height: 1.8;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Montserrat", sans-serif;
  color: #111111;
  margin: 0 0 26px;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 70px;
  font-weight: 700;
}

h2, .h2 {
  font-size: 36px;
  font-weight: 700;
}

h3, .h3 {
  font-size: 26px;
  font-weight: 700;
}

h4, .h4 {
  font-size: 24px;
  font-weight: 700;
}

h5, .h5 {
  font-size: 18px;
  font-weight: 700;
}

h6, .h6 {
  font-size: 16px;
  font-weight: 700;
}

.home-style2 h1, .home-style2 .h1, .home-style2 h2, .home-style2 .h2, .home-style2 h3, .home-style2 .h3, .home-style2 h4, .home-style2 .h4, .home-style2 h5, .home-style2 .h5, .home-style2 h6, .home-style2 .h6 {
  color: #111111;
}

.uppercase {
  text-transform: uppercase !important;
}

.capitalize {
  text-transform: capitalize !important;
}

.bold-text {
  font-size: 20px;
  font-weight: bold;
  font-family: "Nunito", sans-serif;
}

.extra-bold {
  font-weight: 800 !important;
}

a {
  transition: all 0.3s ease;
  text-decoration: none !important;
  outline: none !important;
}
a:active, a:hover {
  text-decoration: none;
  outline: 0 none;
}

a.nostyle {
  color: inherit;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.clear {
  clear: both;
}

::-moz-selection {
  background: #21a7d0;
  text-shadow: none;
  color: #ffffff;
}

::-moz-selection, ::selection {
  background: #21a7d0;
  text-shadow: none;
  color: #ffffff;
}

.border-none:last-child {
  border-right: none !important;
}

.width-unset {
  width: unset !important;
}

.white-bg {
  background-color: #ffffff;
}

.primary-bg {
  background: #FE6602;
}

.secondary-bg {
  background: #273c66;
}

.title-bg {
  background: #111111;
}

.gray-bg {
  background: #f3f8f9;
}

.gray-bg3 {
  background: #e7f9fb;
}

.gray-bg2 {
  background: #e7f6f9;
}

.gray-bg4 {
  background: #F9F7F8;
}

.event-bg {
  background: #f9f8f8;
}

.event2-bg {
  background: #F4F6F5;
}

.dark-red {
  background: #1D0E15;
}

.bg-light-gray {
  background: #f9f9f9;
}

.transparent-bg {
  background: transparent;
}

.home5color {
  color: #54647b !important;
}

.bg-fixed {
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.bg1 {
  background: url(../images/bg/bg1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bg2 {
  background: url(../images/bg/bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bg3 {
  background: url(../images/bg/bg3.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.bg4 {
  background: url(../images/bg/home6/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bg5 {
  background: url(../images/bg/home7/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5px;
}

.bg6 {
  background: url(../images/bg/home-8-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.bg7 {
  background: url(../images/bg/home8-bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bg8 {
  background: url(../images/bg/home12/dotted.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px 0 50px;
}

.bg9 {
  background: url(../images/bg/home13/counter-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.bg10 {
  background: url(../images/bg/home13/logo-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.bg11 {
  background: url(../images/bg/home13/subscribe-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.bg12 {
  background: url(assets/images/bg/home13/footer-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.bg13 {
  background: url(../images/bg/video-text-bg15.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 60px 140px 60px;
}

.course-shape-bg {
  background: url(../images/bg/course-shape-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-unset {
  background: unset !important;
}

.rs-menu-toggle {
  color: #21a7d0;
  text-align: right;
}

button {
  cursor: pointer;
}

.glyph-icon:before {
  margin: 0;
}

input:focus, select:focus, textarea:focus, button:focus {
  outline: none !important;
}

.pagenav-link ul {
  border: 1px solid #f2f2f2;
  border-radius: 3px;
  display: inline-block;
  padding: 0 3px;
}
.pagenav-link ul li {
  display: inline-block;
  padding: 0 18px;
  margin: 14px 0;
  border-right: 1px solid #E6E6E6;
  color: #21a7d0;
  font-size: 16px;
}
.pagenav-link ul li a, .pagenav-link ul li button {
  color: #505050;
}
.pagenav-link ul li a i:before, .pagenav-link ul li button i:before {
  color: #505050;
  font-size: 13px;
  transition: all 0.3s ease;
}
.pagenav-link ul li a:hover, .pagenav-link ul li button:hover {
  color: #FE6602;
  transition: color 0.3s ease;
}
.pagenav-link ul li a:hover i:before, .pagenav-link ul li button:hover i:before {
  color: #FE6602;
}
.pagenav-link ul li:last-child {
  border-right: none;
}
.pagenav-link.orange-color ul li {
  color: #FE6602;
}
.pagenav-link.orange-color ul li a:hover {
  color: #FE6602;
}
.pagenav-link.orange-color ul li a:hover i:before {
  color: #FE6602;
}

.gridFilter button {
  background: transparent;
  border: 0;
  font-size: 15px;
  font-weight: 700;
  outline: none;
  color: #505050;
  cursor: pointer;
}
.gridFilter button.active {
  color: #FE6602;
}
.gridFilter button + button {
  margin-left: 20px;
}
.gridFilter.style2 button {
  background: #f9f7f8;
  border: none;
  border-radius: 3px;
  font-weight: 500;
  font-size: 16px;
  color: #101010;
  padding: 10px 30px;
  outline: none;
  margin: 0 10px 20px;
}
.gridFilter.style2 button.active, .gridFilter.style2 button:hover {
  background: #fff;
  color: #FE6602;
  box-shadow: 0 0 30px #eee;
}
.gridFilter.style2.modify1 button {
  margin: 0 0px 20px;
}

blockquote {
  margin: 35px 0;
  padding: 40px;
  color: #666;
  position: relative;
  background: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 55px;
  font-weight: 400;
  font-style: italic;
  text-align: left;
  clear: both;
  box-shadow: 0 0 150px #eee;
}
blockquote:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  height: 100%;
  width: 10px;
  background: #21a7d0;
}
blockquote p {
  font-size: 16px;
  margin: 0;
}

.check-square li {
  position: relative;
  padding-left: 35px;
  line-height: 34px;
  border: none;
  color: #ffffff;
}
.check-square li:before {
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 0;
  content: "\f046";
  font-family: "Font Awesome 5 Free";
  color: #FE6602;
  font-size: 20px;
}

/*-- Blog Button Css --*/
.blog-btn {
  color: #111111;
  display: inline-block;
  position: relative;
  font-size: 15px;
  padding-right: 43px;
  text-transform: capitalize;
  font-weight: 600;
}
.blog-btn:after {
  position: absolute;
  content: "\f133";
  right: 20px;
  top: 50%;
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  font-family: "Flaticon";
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.blog-btn:hover {
  color: #21a7d0;
}
.blog-btn:hover:after {
  right: 17px;
  color: #21a7d0;
}

/* ------------------------------------
    02. Global Class CSS
---------------------------------------*/
.y-middle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.y-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.readon {
  outline: none;
  padding: 12px 40px;
  border: 1px solid #21a7d0;
  border-radius: 30px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  color: #111111;
  background: #f3f8f9;
}
.readon.banner-style {
  color: #ffffff;
  background: #21a7d0;
  padding: 16px 58px;
}
.readon.banner-style:hover {
  background: #1e95ba;
}
.readon.purple-btn {
  color: #ffffff;
  background: #625eaa;
  border: none;
  padding: 16px 40px;
}
.readon.purple-btn:hover {
  background: #4e49a1;
}
.readon.green-btn {
  color: #FFFFFF;
  background: #FE6602;
  border-color: rgba(2, 1, 1, 0);
  border-radius: 30px;
  font-size: 14px;
  padding: 10px 30px 10px 30px;
}
.readon.green-btn:hover {
  opacity: 0.9;
  background: #FE6602;
}
.readon.green-banner {
  font-size: 16px;
  line-height: 38px;
  font-weight: 700;
  padding: 8px 30px;
  border-radius: 4px;
  background-color: #FE6602;
  border-color: transparent;
  color: #ffffff;
}
.readon.green-banner:hover {
  background: #08a355;
}
.readon.white-color {
  color: #ffffff !important;
  background: none !important;
  border: 1px solid #ffffff;
  padding: 16px 40px;
}
.readon.white-color:hover {
  background: #ffffff !important;
  color: #4e49a1 !important;
}
.readon.orange-btn {
  color: #ffffff;
  background: #FE6602;
  border-color: #FE6602;
  border-radius: 5px 5px 5px 5px;
  outline: none;
  padding: 12px 35px;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
.readon.orange-btn.main-home {
  padding: 10px 20px 10px 20px !important;
}
.readon.orange-btn.main-home:hover {
  color: #ffffff;
  background: #171F32;
  border-color: #171F32;
}
.readon.orange-btn:hover {
  color: #ffffff;
  background: #ed3600;
  border-color: #ed3600;
}
.readon.orange-btn.transparent:hover {
  color: #101010;
  background: #ffffff;
  border-color: #ffffff;
}
.readon.yellow-btn {
  background: #FE6602;
  border-color: #FE6602;
  border-radius: 4px 4px 4px 4px;
}
.readon.yellow-btn:hover {
  color: #ffffff;
  background: #171F32;
  border-color: #171F32;
}
.readon.yellow-btn.transparent3:hover {
  color: #1c335f;
  background: #ffffff;
  border-color: #ffffff;
}
.readon.transparent2 {
  background: #21a7d0;
  color: #111111;
  border: 1px solid #21a7d0;
}
.readon.transparent2:hover {
  color: #111111;
  background: transparent;
  border: 1px solid #21a7d0;
}
.readon.register-btn {
  padding: 10px 50px;
  color: #ffffff;
  background: #FE6602;
  border-color: #FE6602;
  font-weight: 500;
  width: 100%;
  border-radius: 5px;
}
.readon.register-btn:hover {
  background: #ff4007;
}
.readon.submit-btn {
  border: 2px solid;
  border-color: #FE6602;
  padding: 10px 50px;
  line-height: normal;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  background: #FE6602;
  color: #ffffff;
  border-radius: 5px;
  margin-bottom: 12px;
  width: 100%;
}
.readon.submit-btn:hover {
  background: transparent;
  color: #FE6602;
}
.readon.submit-requset {
  background-color: #0FCB75;
  margin: 0px 0px 0px 0px;
  padding: 13px 35px 13px 35px;
  outline: none;
  border: none;
  padding: 12px 40px;
  border-radius: 3px;
  display: inline-block;
  text-transform: capitalize;
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  color: #ffffff;
}
.readon.submit-requset:hover {
  opacity: 0.9;
  background-color: #0FCB75;
}
.readon.border-less {
  border: none;
}
.readon.border-less:hover {
  background: rgba(243, 248, 239, 0.8);
  color: #111111;
}
.readon:hover {
  background: #21a7d0;
  color: #ffffff;
}

.readon2 {
  outline: none;
  border: none;
  padding: 12px 40px;
  border-radius: 3px;
  display: inline-block;
  text-transform: capitalize;
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  color: #ffffff;
  background: #21a7d0;
  position: relative;
  overflow: hidden;
}
.readon2.banner-style {
  padding: 16px 40px;
}
.readon2.mod {
  text-transform: uppercase;
  padding: 14px 31px;
}
.readon2.transparent {
  background: transparent;
  color: #21a7d0;
  border: 1px solid #21a7d0;
}
.readon2.transparent:hover {
  color: #ffffff;
  background: #21a7d0;
}
.readon2.orange-transparent {
  background: transparent;
  color: #FE6602;
  border: 1px solid #FE6602;
}
.readon2.orange-transparent:hover {
  color: #ffffff;
  background: #FE6602;
}
.readon2.orange {
  background: #FE6602;
}
.readon2.orange:hover {
  background: #ff4007;
}
.readon2:hover {
  background: #1e95ba;
  color: #ffffff;
}
.readon2.gym-btn {
  background: #FE6602;
  color: #ffffff;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  padding: 17px 28px;
}
.readon2.gym-btn:hover {
  opacity: 0.8;
}
.readon2.gym-btn.get-now:hover {
  background: #ffffff;
  color: #FE6602;
}
.readon2.cta-btn {
  background: #FE6602;
  color: #ffffff;
  border-radius: 3px 3px 3px 3px;
  font-family: "Rubik", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 12px 30px 12px 30px;
}
.readon2.cta-btn:hover {
  color: #F0E3E3;
  background: #FE6602;
}
.readon2.apply {
  padding: 10px 30px 10px 30px;
}
.readon2.apply:hover {
  color: unset;
}

.readon3 {
  outline: none;
  padding: 12px 50px;
  border-radius: 30px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  color: #ffffff;
  background: #21a7d0;
  position: relative;
}
.readon3:after, .readon3:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffffff;
  transition: all 0.3s ease;
}
.readon3:after {
  right: 30px;
}
.readon3:before {
  left: 30px;
}
.readon3.active {
  background: #f3f8f9;
  color: #21a7d0;
}
.readon3.active:after, .readon3.active:before {
  background: #21a7d0;
}
.readon3.active:hover {
  color: #ffffff;
  background: #21a7d0;
}
.readon3.active:hover:after, .readon3.active:hover:before {
  background: #ffffff;
}
.readon3.dark-hov:hover {
  background: #111111;
  color: #ffffff;
}
.readon3.dark-hov:hover:after, .readon3.dark-hov:hover:before {
  background: #ffffff;
}
.readon3:hover {
  background: #f3f8f9;
  color: #21a7d0;
}
.readon3:hover:after, .readon3:hover:before {
  background: #21a7d0;
}

.readon-arrow {
  color: #111111;
  padding-right: 22px;
  position: relative;
  font-weight: 500;
}
.readon-arrow:after {
  position: absolute;
  content: "\f136";
  font-family: Flaticon;
  font-style: normal;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  color: #111111;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
}
.readon-arrow:hover {
  color: #21a7d0;
}
.readon-arrow:hover:after {
  right: 0;
  color: #21a7d0;
}

.btn-shop {
  outline: none;
  font-weight: 400;
  border: none;
  text-transform: uppercase;
  background: #21a7d0;
  font-size: 15px;
  padding: 8px 25px;
  color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s ease 0s;
}
.btn-shop:hover {
  background: #273c66;
  color: #ffffff;
}
.btn-shop.orange-color {
  background: #FE6602;
  color: #ffffff;
}
.btn-shop.orange-color:hover {
  background: #ed3600;
}

.height-100 {
  height: 100%;
}

/*Pagination*/
.pagination-area .pagination-part {
  display: inline-block;
  padding: 0 5px 0 10px;
  height: 60px;
  line-height: 60px;
  box-shadow: 0px 8px 26px 0px rgba(0, 0, 0, 0.1);
}
.pagination-area .pagination-part li {
  position: relative;
  display: inline-block;
  padding: 0 20px 0 15px;
  text-align: center;
  cursor: pointer;
}
.pagination-area .pagination-part li a {
  display: inline-flex;
  align-items: center;
  color: #111111;
}
.pagination-area .pagination-part li a:hover {
  color: #21a7d0;
}
.pagination-area .pagination-part li i {
  margin-left: 10px;
}
.pagination-area .pagination-part li i:before {
  font-size: 28px;
  margin: 0;
  line-height: 60px;
}
.pagination-area .pagination-part li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d6fbff;
}
.pagination-area .pagination-part li:last-child:before {
  display: none;
}
.pagination-area .pagination-part li:hover a, .pagination-area .pagination-part li.active a {
  color: #21a7d0;
}
.pagination-area.orange-color .pagination-part li a:hover {
  color: #FE6602;
}
.pagination-area.orange-color .pagination-part li:before {
  background: #FE6602;
}
.pagination-area.orange-color .pagination-part li:hover a, .pagination-area.orange-color .pagination-part li.active a {
  color: #FE6602;
}

/*Video Icon*/
.media-icon {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.media-icon .popup-videos {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  background: #21a7d0;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  text-align: center;
}
.media-icon .popup-videos:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  transition: all 0.3s ease;
  z-index: -1;
}
.media-icon .popup-videos i {
  margin-left: 5px;
}
.media-icon .popup-videos i:before {
  font-size: 30px;
  line-height: 70px;
}
.media-icon .popup-videos:hover:before {
  background: #21a7d0;
}
.media-icon.orange-color .popup-videos {
  color: #FE6602;
  background: #ffffff;
}
.media-icon.orange-color .popup-videos i:before {
  font-size: 30px;
  line-height: 70px;
}
.media-icon.orange-color .popup-videos:hover:before {
  background: #ffffff;
}
.media-icon.orange-color2 .popup-videos {
  color: #ffffff;
  background: #FE6602;
  animation: circle-ripple 3s linear linear infinite;
  -webkit-animation: circle-ripple 3s linear infinite;
}
.media-icon.orange-color2 .popup-videos:before {
  display: none;
}
.media-icon.orange-color2 .popup-videos:hover:before {
  background: #FE6602;
}
.media-icon.yellow-color .popup-videos {
  color: #273c66;
  background: #FE6602;
}
.media-icon.yellow-color .popup-videos:hover:before {
  background: #1c335f;
}

.rs-video-home9 {
  background: url(../images/video/video2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 300px 0 300px;
}
.rs-video-home9 .media-icon {
  display: block;
}

.rs-video .video-item {
  background: url(../images/bg/video-bg-15.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 299px 0 299px 0;
  transition: 0.3s;
  position: relative;
}
.rs-video .video-item .icon-area {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.rs-video .video-item .icon-area a {
  width: 70px;
  height: 70px;
  border: 5px solid;
  display: inline-block;
  color: #FE6602;
  line-height: 70px;
  border-radius: 50px;
}
.rs-video .video-item .icon-area a i {
  position: relative;
  left: 24px;
  top: -23px;
}
.rs-video .video-item .icon-area a i:before {
  color: #FE6602;
}
.rs-video .video-item:hover {
  opacity: 0.8;
}

.rs-call-action {
  position: relative;
}
.rs-call-action .spiners {
  position: absolute;
  bottom: 0;
}
.rs-call-action .spiners.one {
  top: 12%;
}
.rs-call-action .spiners.two {
  bottom: 18%;
  right: 56%;
}
.rs-call-action .spiners.three {
  top: 16%;
  right: 39%;
}

.margin-remove {
  margin: 0 !important;
}

.no-gutter {
  margin-left: 0;
  margin-right: 0;
}
.no-gutter [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

[class^=flaticon-]:before, [class*=" flaticon-"]:before, [class^=flaticon-]:after, [class*=" flaticon-"]:after {
  margin: 0;
}

.container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
  padding-left: 60px;
  padding-right: 60px;
}

.container-fluid2 {
  padding-left: 0px;
  padding-right: 60px;
}

.display-table {
  display: table;
  height: 100%;
  width: 100%;
}

.display-table-cell {
  display: table-cell;
  vertical-align: middle;
}

.relative {
  position: relative;
}

.body-color {
  color: #505050 !important;
}

.white-color {
  color: #ffffff !important;
}

.title-color {
  color: #111111 !important;
}

.title-color2 {
  color: #111111 !important;
}

.secondary-color {
  color: #273c66;
}

.primary-color {
  color: #FE6602 !important;
}

.orangeColor {
  color: #FE6602 !important;
}

.dark-parimary-bg {
  background: #203154 !important;
}

ul.listing-style li {
  position: relative;
  padding-left: 30px;
  line-height: 34px;
}
ul.listing-style li:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  content: "\f05d";
  font-family: "Font Awesome 5 Free";
  color: #21a7d0;
  font-size: 20px;
}
ul.listing-style.modify li {
  padding-left: 23px;
}
ul.listing-style.modify li:before {
  font-size: 15px;
}

.rs-carousel.nav-style1 {
  position: relative;
}
.rs-carousel.nav-style1 .owl-nav {
  display: block;
}
.rs-carousel.nav-style1 .owl-nav .owl-next, .rs-carousel.nav-style1 .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 50%;
  background: #21a7d0;
  text-align: center;
  color: #ffffff;
  transition: all 0.5s;
  transition-delay: 0.7s;
  opacity: 0;
  visibility: hidden;
}
.rs-carousel.nav-style1 .owl-nav .owl-next i:before, .rs-carousel.nav-style1 .owl-nav .owl-prev i:before {
  content: "\f138";
  font-family: Flaticon;
}
.rs-carousel.nav-style1 .owl-nav .owl-next {
  right: 30px;
  left: unset;
}
.rs-carousel.nav-style1 .owl-nav .owl-next i:before {
  content: "\f137";
}
.rs-carousel.nav-style1:hover .owl-nav .owl-next, .rs-carousel.nav-style1:hover .owl-nav .owl-prev {
  left: -50px;
  transition-delay: 0s;
  visibility: visible;
  opacity: 1;
}
.rs-carousel.nav-style1:hover .owl-nav .owl-next {
  right: -50px;
  left: unset;
}
.rs-carousel.nav-style2 {
  position: relative;
}
.rs-carousel.nav-style2 .owl-nav {
  display: block;
  position: absolute;
  top: -80px;
  right: 0;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev, .rs-carousel.nav-style2 .owl-nav .owl-next {
  display: inline-block;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev i, .rs-carousel.nav-style2 .owl-nav .owl-next i {
  transition: all 0.3s ease;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev i:before, .rs-carousel.nav-style2 .owl-nav .owl-next i:before {
  font-family: Flaticon;
  font-size: 22px;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev:hover i, .rs-carousel.nav-style2 .owl-nav .owl-next:hover i {
  color: #21a7d0;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev i:before {
  content: "\f134";
}
.rs-carousel.nav-style2 .owl-nav .owl-prev:after {
  content: "/";
  padding: 0 5px 0 5px;
  position: relative;
  top: -3px;
}
.rs-carousel.nav-style2 .owl-nav .owl-next i:before {
  content: "\f133";
}
.rs-carousel.orange-color .owl-nav .owl-prev:hover i, .rs-carousel.orange-color .owl-nav .owl-next:hover i {
  color: #FE6602;
}
.rs-carousel .owl-dots {
  text-align: center;
  margin: 40px auto 0;
  line-height: 15px;
  display: block;
}
.rs-carousel .owl-dots .owl-dot {
  width: 30px;
  height: 10px;
  display: inline-block;
  margin: 0 6px;
  padding: 3px 0;
  border-radius: 30px;
  border: 1px solid #21a7d0;
  background: transparent;
  opacity: 0.7;
  cursor: pointer;
}
.rs-carousel .owl-dots .owl-dot:hover {
  background: #21a7d0;
}
.rs-carousel .owl-dots .active {
  background: #21a7d0;
  opacity: 1;
}

.owl-carousel .owl-item img {
  width: auto;
}

.sec-title .sub-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sec-title .sub-title.primary {
  color: #FE6602;
}
.sec-title .sub-title.secondary {
  color: #273c66;
}
.sec-title .sub-title.white {
  color: #ffffff;
}
.sec-title .sub-title.dark {
  color: #111111;
}
.sec-title .sub-title.orange {
  color: #FE6602;
}
.sec-title .desc.big {
  font-size: 18px;
  line-height: 30px;
}
.sec-title .midline {
  font-size: 36px;
  color: #111111;
}

.sec-title2 .sub-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #21a7d0;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sec-title2 .sub-title.white-color {
  color: #ffffff;
}
.sec-title2 .title {
  font-size: 42px;
  line-height: 52px;
  font-weight: 800;
  color: #101010;
}
.sec-title2 .title.white-color {
  color: #ffffff;
}
.sec-title2 .title.purple-color {
  color: #4e49a1 !important;
}

.sec-title3 .sub-title {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  color: #FE6602;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sec-title3 .sub-title.yellow-color {
  color: #FE6602;
}
.sec-title3 .sub-title.green-color {
  color: #FE6602;
}
.sec-title3 .sub-title.no-big {
  text-transform: capitalize;
  color: #ffffff;
  letter-spacing: 3px;
}
.sec-title3 .sub-title.big {
  font-size: 18px !important;
  color: #FE6602 !important;
  font-weight: 500;
}
.sec-title3 .title {
  font-size: 36px;
  line-height: 46px;
  font-weight: 800;
  color: #101010;
}
.sec-title3 .title.white-color {
  color: #ffffff;
}
.sec-title3 .title.black-color {
  color: #101010;
}
.sec-title3 .title.new-title {
  color: #101010;
  line-height: 1.2;
  font-weight: 700;
}
.sec-title3 .title.title2 {
  font-size: 42px;
  line-height: 55px;
  font-weight: 700;
  color: #ffffff;
}
.sec-title3 .title.title3 {
  font-size: 42px;
  line-height: 55px;
  font-weight: 800;
  color: #ffffff;
}
.sec-title3 .desc {
  font-size: 16px;
  line-height: 26px;
  color: #363636;
}
.sec-title3 .desc.white-color {
  color: #ffffff;
}
.sec-title3 .new-desc {
  font-size: 18px;
  line-height: 31px;
  color: #333333;
}

.sec-title4 .sub-title {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  color: #FE6602;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sec-title4 .title {
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  color: #101010;
  position: relative;
  padding: 0px 0px 20px 0px;
}
.sec-title4 .title:after {
  content: "";
  position: absolute;
  border: 0;
  width: 50px;
  height: 4px;
  z-index: 9;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  background: #FE6602;
}
.sec-title4 .desc {
  font-size: 16px;
  line-height: 26px;
  color: #363636;
}

.sec-title5 .description {
  color: #ffffff;
}
.sec-title5 .description.title-color {
  color: #7A7A7A;
  font-weight: 400;
}
.sec-title5 .description span a {
  color: #FE6602;
}
.sec-title5 .description span a i {
  margin-left: 5px;
}
.sec-title5 .description span a i:before {
  top: 2.5px;
  position: relative;
}

.sec-title6 .sub-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #FE6602;
  display: block;
  margin: 0;
}
.sec-title6 .title {
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  color: #101010;
}
.sec-title6 .title.title2 {
  font-weight: 800;
  margin: 0;
}

.left-top-shape {
  position: absolute;
  left: -55px;
  top: 65px;
}

.right-top-shape {
  position: absolute;
  right: -115px;
  top: 25px;
}

/* -----------------------
    03. Header Section CSS
--------------------------*/
.full-width-header .rs-header {
  z-index: 99;
}
.full-width-header .rs-header .topbar-area {
  background: #273c66;
}
.full-width-header .rs-header .topbar-area .topbar-contact li {
  display: inline-block;
  line-height: 50px;
  height: 50px;
  margin-right: 17px;
  padding-right: 20px;
  color: #ffffff;
  border-right: 1px solid #374A71;
}
.full-width-header .rs-header .topbar-area .topbar-contact li i {
  margin-right: 2px;
}
.full-width-header .rs-header .topbar-area .topbar-contact li i.flaticon-email:before {
  bottom: -1.5px;
  position: relative;
}
.full-width-header .rs-header .topbar-area .topbar-contact li i:before {
  font-size: 16px;
  color: #ffffff;
}
.full-width-header .rs-header .topbar-area .topbar-contact li a {
  color: #ffffff;
}
.full-width-header .rs-header .topbar-area .topbar-contact li a:hover {
  color: #21a7d0;
}
.full-width-header .rs-header .topbar-area .topbar-contact li:last-child {
  margin: 0;
  border: none;
}
.full-width-header .rs-header .topbar-area .topbar-right li {
  display: inline;
  margin-right: 30px;
}
.full-width-header .rs-header .topbar-area .topbar-right li.login-register {
  color: #ffffff;
}
.full-width-header .rs-header .topbar-area .topbar-right li.login-register i {
  margin-right: 10px;
  color: #21a7d0;
}
.full-width-header .rs-header .topbar-area .topbar-right li.login-register a {
  color: #ffffff;
}
.full-width-header .rs-header .topbar-area .topbar-right li.login-register a:hover {
  color: #21a7d0;
}
.full-width-header .rs-header .topbar-area .topbar-right li a.apply-btn {
  color: #ffffff;
  background: #21a7d0;
  padding: 12px 35px;
  display: inline-block;
}
.full-width-header .rs-header .topbar-area .topbar-right li a.apply-btn:hover {
  background: #2db4de;
}
.full-width-header .rs-header .topbar-area .topbar-right li:last-child {
  margin: 0;
}
.full-width-header .rs-header .topbar-area.home8-topbar {
  background: #f9f8f8 !important;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-contact li {
  color: #363636;
  border-right: 1px solid #fff;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-contact li i {
  margin-right: 2px;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-contact li i:before {
  font-size: 16px;
  color: #363636;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-contact li a {
  color: #363636;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-contact li a:hover {
  color: #FE6602;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-contact li:last-child {
  margin: 0;
  border: none;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-right li.login-register {
  color: #363636;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-right li.login-register i {
  margin-right: 10px;
  color: #363636;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-right li.login-register a {
  color: #363636;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-right li.login-register a:hover {
  color: #FE6602;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-right li a.apply-btn {
  background: #FE6602;
  text-transform: uppercase;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-right li a.apply-btn:hover {
  color: #ffffff;
  background: #ed3600;
}
.full-width-header .rs-header .topbar-area.home8-topbar .topbar-right li:last-child {
  margin: 0;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-contact li {
  color: #ffffff !important;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-contact li i {
  margin-right: 2px;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-contact li i:before {
  font-size: 16px;
  color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-contact li a {
  color: #ffffff !important;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-contact li a:hover {
  color: #FE6602;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-contact li:last-child {
  margin: 0;
  border: none !important;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-right li.login-register {
  color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-right li.login-register i {
  margin-right: 10px;
  color: #ffffff !important;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-right li.login-register a {
  color: #ffffff !important;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-right li.login-register a:hover {
  color: #FE6602;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-right li a.apply-btn {
  background: #FE6602;
  text-transform: uppercase;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-right li a.apply-btn:hover {
  color: #ffffff;
  background: #ed3600;
}
.full-width-header .rs-header .topbar-area.home8-topbar.inner-part .topbar-right li:last-child {
  margin: 0;
}
.full-width-header .rs-header .topbar-area.home9-topbar {
  background: #273c66 !important;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-contact li {
  color: #ffffff;
  border-right: 1px solid #1b315e;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-contact li i {
  margin-right: 2px;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-contact li i:before {
  font-size: 16px;
  color: #FE6602;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-contact li a {
  color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-contact li a:hover {
  color: #FE6602;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-contact li:last-child {
  margin: 0;
  border: none;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li.login-register {
  color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li.login-register i {
  margin-right: 10px;
  color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li.login-register a {
  color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li.login-register:hover i, .full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li.login-register:hover a {
  color: #FE6602;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li a.apply-btn {
  background: #FE6602;
  text-transform: uppercase;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li a.apply-btn:hover {
  color: #ffffff;
  background: #c19700;
}
.full-width-header .rs-header .topbar-area.home9-topbar .topbar-right li:last-child {
  margin: 0;
}
.full-width-header .rs-header .topbar-area.home11-topbar {
  background: #FE6602 !important;
}
.full-width-header .rs-header .topbar-area.home11-topbar .topbar-contact li {
  color: #ffffff;
  border-right: 1px solid #00822b;
}
.full-width-header .rs-header .topbar-area.home11-topbar .topbar-contact li i {
  margin-right: 4px;
}
.full-width-header .rs-header .topbar-area.home11-topbar .topbar-contact li i:before {
  font-size: 14px;
  color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home11-topbar .topbar-contact li a {
  color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home11-topbar .topbar-contact li a:hover {
  color: #d1d1d1;
}
.full-width-header .rs-header .topbar-area.home11-topbar .topbar-contact li:last-child {
  margin: 0;
  border: none;
}
.full-width-header .rs-header .topbar-area.home11-topbar .toolbar-sl-share .opening {
  color: #ffffff;
  display: inline-block;
  border-right: 1px solid #00822b;
  font-size: 14px;
  line-height: 50px;
  margin-right: 15px;
  padding-right: 18px;
}
.full-width-header .rs-header .topbar-area.home11-topbar .toolbar-sl-share .opening i {
  margin-right: 5px;
}
.full-width-header .rs-header .topbar-area.home11-topbar .toolbar-sl-share .opening i:before {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home11-topbar .toolbar-sl-share li {
  display: inline-block;
  margin-right: 14px;
}
.full-width-header .rs-header .topbar-area.home11-topbar .toolbar-sl-share li a {
  line-height: 30px;
  color: #ffffff;
}
.full-width-header .rs-header .topbar-area.home11-topbar .toolbar-sl-share li a:hover {
  color: #FE6602;
}
.full-width-header .rs-header .topbar-area.home11-topbar .toolbar-sl-share li:last-child {
  margin: 0;
  border: none;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 {
  background: #f9f7f8 !important;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .topbar-contact li {
  color: #333333;
  border-right: 1px solid #f0ecee;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .topbar-contact li i {
  margin-right: 4px;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .topbar-contact li i:before {
  font-size: 14px;
  color: #FE6602;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .topbar-contact li a {
  color: #333333;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .topbar-contact li a:hover {
  color: #FE6602;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .toolbar-sl-share .opening {
  color: #333333;
  border-right: 1px solid #f0ecee;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .toolbar-sl-share .opening i:before {
  color: #FE6602;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .toolbar-sl-share li a {
  color: #333333;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .toolbar-sl-share li a:hover {
  color: #FE6602;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1 .toolbar-sl-share li:last-child {
  margin: 0;
  border: none;
}
.full-width-header .rs-header .topbar-area.home11-topbar.modify1.home15-style {
  padding-left: 15.5%;
  padding-right: 10px;
}
.full-width-header .rs-header .logo-part {
  position: relative;
  z-index: 9;
}
.full-width-header .rs-header .logo-part img {
  max-height: 70px;
}
.full-width-header .rs-header .menu-area {
  transition: all 0.3s ease;
}
.full-width-header .rs-header .menu-area .logo-area {
  position: relative;
  height: 90px;
  line-height: 90px;
}
.full-width-header .rs-header .menu-area .logo-area img {
  transition: 0.4s;
  -webkit-transition: 0.4s;
  max-height: 48px;
}
.full-width-header .rs-header .menu-area .logo-area .dark {
  display: none;
}
.full-width-header .rs-header .menu-area .logo-area .light {
  display: inherit;
}
.full-width-header .rs-header .menu-area .responsive-logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
.full-width-header .rs-header .menu-area .responsive-logo img {
  max-height: 30px;
}
.full-width-header .rs-header .menu-area .logo-cat-wrap {
  display: flex;
  align-items: center;
  height: 120px;
  line-height: 120px;
}
.full-width-header .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-menu-inner {
  top: 120px;
}
.full-width-header .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-menu-inner li {
  height: 45px;
  line-height: 45px;
}
.full-width-header .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-menu-inner li a {
  padding: 0 30px;
}
.full-width-header .rs-header .menu-area .rs-menu-area {
  display: flex;
  align-items: center;
  justify-content: center;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li {
  display: inline-block;
  margin-right: 50px;
  padding: 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li a {
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  height: 120px;
  line-height: 120px;
  padding-right: 0;
  margin-right: -12px;
  color: #ffffff;
  z-index: 1;
  position: relative;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
  color: #21a7d0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li.menu-item-has-children a {
  padding-right: 12px;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li.menu-item-has-children a:before {
  content: "+";
  position: absolute;
  left: auto;
  right: 0;
  top: 50%;
  text-align: center;
  display: block;
  cursor: pointer;
  transform: translateY(-50%);
  transition: all 0.5s ease;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li.menu-item-has-children a:hover:before {
  content: "-";
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li:last-child {
  margin-right: 0 !important;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li:last-child i {
  margin: 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu.onepage-menu .active-menu a {
  color: #21a7d0 !important;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu {
  background: #21a7d0;
  margin: 0;
  padding: 15px 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li {
  margin: 0;
  border: none;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li a {
  height: unset !important;
  line-height: unset !important;
  color: #ffffff !important;
  font-weight: 400 !important;
  text-transform: none;
  padding: 10px 30px !important;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
  color: #273c66 !important;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li a:before {
  display: none !important;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li.highlight {
  width: 100%;
  padding: 1rem;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li.highlight a {
  width: 100%;
  text-align: center;
  color: #ffffff !important;
  background: #FE6602;
  border-radius: 5rem;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li:last-child {
  margin: 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li.current-menu-item > a, .full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li.active > a {
  color: #273c66 !important;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li.children-mega-menu .child-mega-menu {
  width: 100%;
  opacity: 1 !important;
  position: unset;
  transform: translateY(0px);
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li.children-mega-menu .child-mega-menu .child-single-megamenu {
  width: 50%;
  float: left;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li.children-mega-menu .child-mega-menu .child-single-megamenu .sub-menu {
  padding: 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu.right-menu {
  left: unset;
  right: 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.mega-menu {
  background: #273c66;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.mega-menu .mega-menu-container {
  padding: 0;
  margin: 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.mega-menu .mega-menu-container .single-megamenu {
  width: 50%;
  float: left;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.mega-menu .mega-menu-container .single-megamenu .sub-menu .menu-title {
  font-size: 17px;
  font-weight: 600;
  padding: 10px 30px;
  color: #ffffff;
  text-transform: none;
  transition: all 0.3s ease;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.mega-menu .mega-menu-container .single-megamenu:hover .sub-menu .menu-title {
  color: #ffffff;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul li a:hover, .full-width-header .rs-header .menu-area .main-menu .rs-menu ul li.active a, .full-width-header .rs-header .menu-area .main-menu .rs-menu ul li.current-menu-item > a {
  color: #21a7d0 !important;
}
.full-width-header .rs-header .menu-area .nav-expander {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.full-width-header .rs-header .menu-area .nav-expander span {
  height: 2px;
  width: 30px;
  display: block;
  background: #ffffff;
  margin: 6px 0;
  transition: all 0.3s ease;
}
.full-width-header .rs-header .menu-area .nav-expander span.dot1 {
  margin-top: 0;
}
.full-width-header .rs-header .menu-area .nav-expander span.dot3 {
  margin-bottom: 0;
}
.full-width-header .rs-header .menu-area .nav-expander:hover span {
  background: #FE6602;
}
.full-width-header .rs-header .menu-area .nav-expander.style2 span {
  background: #111111;
}
.full-width-header .rs-header .menu-area .nav-expander.style2:hover span {
  background: #FE6602;
}
.full-width-header .rs-header .menu-area .nav-expander.style3 span {
  background: #111111;
}
.full-width-header .rs-header .menu-area .nav-expander.style3:hover span {
  background: #21a7d0;
}
.full-width-header .rs-header .menu-area .nav-expander.style4 span {
  background: #ffffff;
}
.full-width-header .rs-header .menu-area .nav-expander.style4:hover span {
  background: #21a7d0;
}
.full-width-header .rs-header .menu-area .nav-expander.style5 span {
  background: #ffffff;
}
.full-width-header .rs-header .menu-area .nav-expander.style5:hover span {
  background: #ccc;
}
.full-width-header .rs-header .menu-area .nav-expander.style6 span {
  background: #ffffff;
}
.full-width-header .rs-header .menu-area .nav-expander.style6:hover span {
  background: #FE6602;
}
.full-width-header .rs-header .menu-area .appointment-cart {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}
.full-width-header .rs-header .menu-area .appointment-cart ul.cart {
  text-align: right;
}
.full-width-header .rs-header .menu-area .appointment-cart ul.cart li {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-right: 15px;
}
.full-width-header .rs-header .menu-area .appointment-cart ul.cart li i {
  color: #ffffff;
  transition: all 0.3s ease;
}
.full-width-header .rs-header .menu-area .appointment-cart ul.cart li i:hover {
  color: #ffffff;
}
.full-width-header .rs-header .menu-area .expand-btn-inner {
  margin-right: 55px;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li {
  display: inline-block;
  margin-right: 15px;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li.cart-inner {
  position: relative;
  margin-right: 15px;
  padding-right: 20px;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li.cart-inner .cart-icon {
  position: relative;
  height: 120px;
  line-height: 120px;
  z-index: 1;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li.cart-inner .cart-icon .cart-count {
  position: absolute;
  min-width: 18px;
  min-height: 18px;
  line-height: 18px;
  font-size: 11px;
  border-radius: 50%;
  background: #f2f2f2;
  color: #505050;
  top: -13px;
  right: -17px;
  text-align: center;
  transition: all 0.3s ease;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li.cart-inner:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: #7d8aa3;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li.cart-inner.no-border {
  padding-right: 0;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li.cart-inner.no-border:before {
  display: none;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li > a {
  color: #ffffff;
  display: inline-block;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li > a.short-border {
  position: relative;
  padding-right: 20px;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li > a.short-border:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: #7d8aa3;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li > a i:before {
  font-size: 15px;
  font-weight: 600;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li > a i.flaticon-shopping-bag-1:before {
  font-weight: normal;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li > a:hover {
  color: #ffffff;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li a.apply-btn {
  text-transform: uppercase;
  color: #ffffff;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li a.apply-btn:hover {
  color: #21a7d0;
}
.full-width-header .rs-header .menu-area .expand-btn-inner li:last-child {
  margin-right: 0 !important;
}
.full-width-header .rs-header .menu-area .categories-btn .cat-btn {
  display: inline-flex;
  align-items: center;
  background: transparent;
  padding: 0;
  border: none;
  outline: unset;
  color: #ffffff;
  text-transform: uppercase;
}
.full-width-header .rs-header .menu-area .categories-btn .cat-btn i {
  margin-right: 5px;
  transition: all 0.3s ease;
}
.full-width-header .rs-header .menu-area .categories-btn .cat-btn:hover i {
  color: #21a7d0;
}
.full-width-header .rs-header .menu-area .categories-btn .cat-menu-inner {
  position: absolute;
  top: 120px;
  width: 200px;
  background: #21a7d0;
  padding: 15px 0;
}
.full-width-header .rs-header .menu-area .categories-btn .cat-menu-inner li a {
  color: #ffffff;
  padding: 10px 30px;
  display: inline-block;
  text-transform: capitalize;
  width: 100%;
}
.full-width-header .rs-header .menu-area .categories-btn .cat-menu-inner li a:hover {
  color: #273c66;
}
.full-width-header .rs-header .menu-area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(39, 60, 102, 0.9) !important;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}
.full-width-header .rs-header .menu-area.sticky .logo-area img {
  max-height: 45px;
}
.full-width-header .rs-header .menu-area.sticky .logo-area .dark {
  display: inherit;
}
.full-width-header .rs-header .menu-area.sticky .logo-area .light {
  display: none;
}
.full-width-header .rs-header .menu-area.sticky .logo-cat-wrap {
  height: 90px;
  line-height: 90px;
}
.full-width-header .rs-header .menu-area.sticky .logo-cat-wrap .categories-btn .cat-menu-inner {
  top: 90px;
}
.full-width-header .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a {
  height: 90px;
  line-height: 90px;
  color: #494949;
}
.full-width-header .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a:hover {
  color: #21a7d0;
}
.full-width-header .rs-header .menu-area.sticky .nav-expander span {
  background: #111111;
}
.full-width-header .rs-header .menu-area.sticky .nav-expander:hover span {
  background: #FE6602;
}
.full-width-header .rs-header .menu-area.sticky .nav-expander.style3 span {
  background: #111111;
}
.full-width-header .rs-header .menu-area.sticky .nav-expander.style3:hover span {
  background: #21a7d0;
}
.full-width-header .rs-header .menu-area.sticky .nav-expander.style5 span {
  background: #ffffff;
}
.full-width-header .rs-header .menu-area.sticky .nav-expander.style5:hover span {
  background: #ccc;
}
.full-width-header .rs-header .menu-area.sticky .appointment-cart ul.cart li i {
  color: #494949;
}
.full-width-header .rs-header .menu-area.sticky .appointment-cart ul.cart li i:hover {
  color: #21a7d0;
}
.full-width-header .rs-header .menu-area.sticky .expand-btn-inner li.cart-inner .cart-icon {
  height: 90px;
  line-height: 90px;
}
.full-width-header .rs-header .menu-area.sticky .expand-btn-inner li.cart-inner .woocommerce-mini-cart {
  padding-top: 90px;
}
.full-width-header .rs-header .menu-area.sticky .expand-btn-inner li .cart-icon .cart-count {
  background: #21a7d0;
  color: #ffffff;
}
.full-width-header .rs-header .menu-area.sticky .expand-btn-inner li > a {
  color: #494949;
}
.full-width-header .rs-header .menu-area.sticky .expand-btn-inner li > a:hover {
  color: #21a7d0;
}
.full-width-header .rs-header .right_menu_togle {
  background: #fafafa;
  padding: 30px 50px;
  width: 500px;
  right: -500px;
  z-index: 999999;
  text-align: center;
  transition: all 0.3s ease;
}
.full-width-header .rs-header .right_menu_togle .close-btn {
  overflow: visible;
  padding: 0;
}
.full-width-header .rs-header .right_menu_togle .close-btn .line {
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.full-width-header .rs-header .right_menu_togle .close-btn .line span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 1px !important;
  height: 20px !important;
  background: #ffffff;
  border: none !important;
  transition: all 0.3s ease;
}
.full-width-header .rs-header .right_menu_togle .close-btn .line span.line2 {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.full-width-header .rs-header .right_menu_togle .close-btn #nav-close {
  position: relative;
  float: unset;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: unset;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #21a7d0;
}
.full-width-header .rs-header .right_menu_togle .close-btn #nav-close:hover {
  transform: rotate(180deg);
}
.full-width-header .rs-header .right_menu_togle .canvas-logo {
  padding-left: 0;
  padding-bottom: 30px;
  margin-top: 50px;
}
.full-width-header .rs-header .right_menu_togle .canvas-logo img {
  max-height: 35px;
}
.full-width-header .rs-header .right_menu_togle .offcanvas-gallery {
  display: inline-block;
}
.full-width-header .rs-header .right_menu_togle .offcanvas-gallery .gallery-img {
  width: 33%;
  float: left;
  padding: 0 5px 10px;
}
.full-width-header .rs-header .right_menu_togle .offcanvas-gallery .gallery-img .image-popup {
  display: block;
  overflow: hidden;
}
.full-width-header .rs-header .right_menu_togle .offcanvas-gallery .gallery-img .image-popup img {
  transition: all 0.3s ease;
}
.full-width-header .rs-header .right_menu_togle .offcanvas-gallery .gallery-img .image-popup:hover img {
  transform: scale(1.1);
}
.full-width-header .rs-header .right_menu_togle .map-img {
  margin-top: 25px;
}
.full-width-header .rs-header .right_menu_togle .sidebarnav_menu li a {
  font-size: 17px;
  color: #222;
  padding-left: 0;
}
.full-width-header .rs-header .right_menu_togle .sidebarnav_menu li a:hover {
  color: #21a7d0;
}
.full-width-header .rs-header .right_menu_togle .canvas-contact {
  padding: 50px 0 0;
}
.full-width-header .rs-header .right_menu_togle .canvas-contact .social li {
  display: inline-block;
  padding-right: 20px;
}
.full-width-header .rs-header .right_menu_togle .canvas-contact .social li a {
  color: #111111;
}
.full-width-header .rs-header .right_menu_togle .canvas-contact .social li a i {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.full-width-header .rs-header .right_menu_togle .canvas-contact .social li a:hover {
  color: #21a7d0;
}
.full-width-header .rs-header .right_menu_togle .canvas-contact .social li:last-child {
  padding: 0;
}
.full-width-header.header-style1 {
  width: 100%;
  z-index: 999;
}
.full-width-header.header-style1 .rs-header .menu-area {
  background: #273c66;
}
.full-width-header.header-style1 .rs-header .menu-area .main-menu .mobile-logo-part {
  display: none;
}
.full-width-header.header-style1 .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li.logo-part {
  padding: 0;
  margin: 0 90px 0 60px;
}
.full-width-header.header-style1 .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
  left: unset;
  right: 0;
  background: #ffffff;
  min-width: 770px;
}
.full-width-header.header-style1 .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu {
  width: 33.33%;
  float: left;
}
.full-width-header.header-style1 .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu {
  background: unset;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 30px;
  padding-top: 30px;
}
.full-width-header.header-style1 .rs-header .menu-area.sticky {
  background: #273c66 !important;
}
.full-width-header.header-style1 .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a {
  color: #ffffff;
}
.full-width-header.header-style1 .rs-header .menu-area.sticky .expand-btn-inner li > a {
  color: #ffffff;
}
.full-width-header.header-style1 .rs-header .menu-area.sticky .expand-btn-inner li > a:hover {
  color: #ffffff;
}
.full-width-header.header-style1 .rs-header .menu-area.sticky .expand-btn-inner li a.apply-btn {
  color: #ffffff;
}
.full-width-header.header-style1 .rs-header .menu-area.sticky .expand-btn-inner li a.apply-btn:hover {
  color: #21a7d0;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area {
  background: #ffffff !important;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area {
  justify-content: flex-end;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
  margin-right: 35px;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
  color: #333333;
  font-weight: 500;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
  color: #FE6602 !important;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
  color: #FE6602 !important;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
  background: #FE6602;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
  margin-right: 35px;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
  color: #333333;
  font-weight: 500;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
  color: #FE6602 !important;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
  color: #FE6602 !important;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .nav-expander {
  color: #111111;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .rs-menu-area .main-menu .nav-expander:hover {
  color: #273c66;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .expand-btn-inner {
  margin-right: 0;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .cart-bottom-part {
  background: #FE6602;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .crt-btn {
  background: #ffffff;
  color: #111111;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .crt-btn:hover {
  background: #f2f2f2;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .expand-btn-inner li.cart-inner {
  border-color: #a9b1c2;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .expand-btn-inner li > a {
  color: #394459;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area .expand-btn-inner li > a:hover {
  color: #FE6602 !important;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area.sticky {
  background: #ffffff !important;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area.sticky .logo-cat-wrap {
  display: flex;
  align-items: center;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .dark-logo {
  display: none;
}
.full-width-header.header-style1.home12-modifiy .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .light-logo {
  display: inherit;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area {
  justify-content: flex-end;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
  margin-right: 0;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
  color: #FE6602 !important;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
  color: #FE6602 !important;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
  background: #FE6602 !important;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
  color: #ffffff !important;
  margin-right: 0;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
  color: #ccc !important;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
  color: #ccc !important;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu.right {
  left: auto;
  right: 100%;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
  left: unset;
  right: 0;
  background: #FE6602;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu {
  width: 33.33%;
  float: left;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu {
  padding-right: 30px;
  padding-left: 40px;
  padding-bottom: 40px;
  padding-top: 35px;
  background: unset;
}
.full-width-header.header-style1.home14-style .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu li a {
  color: #f00;
}
.full-width-header.header-style1.home14-style .expand-btn-inner li a:hover i {
  color: #FE6602;
}
.full-width-header.header-style1.home14-style .expand-btn-inner li.cart-inner {
  border-color: #1c2f5e !important;
}
.full-width-header.header-style1.home14-style .expand-btn-inner li > a {
  color: #111111 !important;
}
.full-width-header.header-style1.home14-style .expand-btn-inner li > a:hover {
  color: #FE6602 !important;
}
.full-width-header.header-style1.home14-style .expand-btn-inner li .woocommerce-mini-cart .cart-bottom-part {
  background: #FE6602;
}
.full-width-header.header-style1.home14-style .expand-btn-inner li .woocommerce-mini-cart .crt-btn {
  background: #ffffff;
  color: #111111;
}
.full-width-header.header-style1.home14-style .expand-btn-inner li .woocommerce-mini-cart .crt-btn:hover {
  background: #f2f2f2;
}
.full-width-header.header-style2 {
  width: 100%;
  z-index: 999;
}
.full-width-header.header-style2 .rs-header .menu-area {
  background: #ffffff;
}
.full-width-header.header-style2 .rs-header .menu-area .logo-cat-wrap .logo-part .dark-logo {
  display: inherit;
}
.full-width-header.header-style2 .rs-header .menu-area .logo-cat-wrap .logo-part .light-logo {
  display: none;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area {
  justify-content: flex-end;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
  margin-right: 35px;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
  color: #394459;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
  color: #21a7d0;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
  background: #21a7d0;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
  margin: 0;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
  font-weight: 400 !important;
  color: #ffffff;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
  color: #ddd !important;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
  color: #ddd !important;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
  left: unset;
  right: 0;
  background: #21a7d0;
  min-width: 770px;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu {
  width: 33.33%;
  float: left;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu {
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 30px;
  padding-top: 30px;
}
.full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li a:hover, .full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li.active a, .full-width-header.header-style2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li.current-menu-item > a {
  color: #21a7d0 !important;
}
.full-width-header.header-style2 .rs-header .menu-area .expand-btn-inner li.cart-inner {
  border-color: #a9b1c2;
}
.full-width-header.header-style2 .rs-header .menu-area .expand-btn-inner li > a {
  color: #394459;
}
.full-width-header.header-style2 .rs-header .menu-area .expand-btn-inner li > a:hover {
  color: #21a7d0;
}
.full-width-header.header-style2 .rs-header .menu-area .categories-btn .cat-btn {
  color: #394459;
}
.full-width-header.header-style2 .rs-header .menu-area .categories-btn .cat-btn i {
  margin-right: 10px;
}
.full-width-header.header-style2 .rs-header .menu-area .categories-btn .cat-btn:hover i {
  color: #21a7d0;
}
.full-width-header.header-style2 .rs-header .menu-area .categories-btn .cat-menu-inner {
  background: #21a7d0;
}
.full-width-header.header-style2 .rs-header .menu-area .categories-btn .cat-menu-inner li a {
  color: #ffffff;
}
.full-width-header.header-style2 .rs-header .menu-area .categories-btn .cat-menu-inner li a:hover {
  color: #273c66;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky {
  background: #273c66 !important;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .logo-cat-wrap {
  display: flex;
  align-items: center;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .dark-logo {
  display: none;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .light-logo {
  display: inherit;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a {
  color: #ffffff;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .expand-btn-inner li > a {
  color: #ffffff;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .expand-btn-inner li > a:hover {
  color: #21a7d0;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .nav-expander.style3 span {
  background: #ffffff;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .nav-expander.style3:hover span {
  background: #ccc;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .categories-btn .cat-btn {
  color: #ffffff;
}
.full-width-header.header-style2 .rs-header .menu-area.sticky .categories-btn .cat-btn:hover i {
  color: #21a7d0;
}
.full-width-header.header-style2.modify1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area {
  background: transparent;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
  color: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
  color: #21a7d0;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
  background: #21a7d0;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
  font-weight: 400 !important;
  color: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
  color: #ddd !important;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
  color: #ddd !important;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li a:hover, .full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li.active a, .full-width-header.header-style2.modify1 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li.current-menu-item > a {
  color: #21a7d0 !important;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .expand-btn-inner li.cart-inner {
  border-color: #a9b1c2;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .expand-btn-inner li > a {
  color: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .expand-btn-inner li > a:hover {
  color: #21a7d0;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .categories-btn .cat-btn {
  color: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area .categories-btn .cat-btn:hover i {
  color: #21a7d0;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky {
  background: #273c66 !important;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .logo-cat-wrap {
  display: flex;
  align-items: center;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .dark-logo {
  display: none;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .light-logo {
  display: inherit;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a {
  color: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .expand-btn-inner li > a {
  color: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .expand-btn-inner li > a:hover {
  color: #21a7d0;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .categories-btn .cat-btn {
  color: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .categories-btn .cat-btn:hover i {
  color: #21a7d0;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .nav-expander span {
  background: #ffffff;
}
.full-width-header.header-style2.modify1 .rs-header .menu-area.sticky .nav-expander:hover span {
  background: #ccc;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
  margin-right: 35px;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
  color: #ffffff;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
  color: #FE6602 !important;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.sub-menu {
  background: #ffffff !important;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
  margin: 0;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
  font-weight: 400 !important;
  color: #111111 !important;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
  color: #FE6602 !important;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
  color: #FE6602 !important;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
  background: #ffffff;
}
.full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul li a:hover, .full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul li.active a, .full-width-header.header-style2.modify1.header-home6 .rs-header .rs-menu-area .main-menu .rs-menu ul li.current-menu-item > a {
  color: #FE6602 !important;
}
.full-width-header.header-style3 {
  width: 100%;
  z-index: 999;
}
.full-width-header.header-style3 .rs-header .menu-area {
  background: #21a7d0;
}
.full-width-header.header-style3 .rs-header .menu-area .logo-part {
  position: absolute;
  left: -260px;
  top: 50%;
  transform: translateY(-50%);
}
.full-width-header.header-style3 .rs-header .menu-area .logo-part .small-logo {
  display: none;
}
.full-width-header.header-style3 .rs-header .menu-area .logo-cat-wrap .categories-btn {
  padding-left: 45px;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
  margin-right: 35px;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
  color: #394459;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
  color: #21a7d0;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
  background: #21a7d0;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
  margin: 0;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
  font-weight: 400 !important;
  color: #ffffff;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
  color: #273c66 !important;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
  color: #273c66 !important;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
  left: unset;
  right: 0;
  background: #21a7d0;
  min-width: 780px;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu {
  width: 33.33%;
  float: left;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu {
  padding-right: 32px;
  padding-left: 32px;
  padding-bottom: 32px;
  padding-top: 32px;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li a:hover, .full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li.active a, .full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li.current-menu-item > a {
  color: #21a7d0 !important;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .nav-expander {
  color: #111111;
}
.full-width-header.header-style3 .rs-header .menu-area .rs-menu-area .main-menu .nav-expander:hover {
  color: #273c66;
}
.full-width-header.header-style3 .rs-header .menu-area .expand-btn-inner li.cart-inner {
  border-color: #a9b1c2;
}
.full-width-header.header-style3 .rs-header .menu-area .expand-btn-inner li > a {
  color: #394459;
}
.full-width-header.header-style3 .rs-header .menu-area .expand-btn-inner li > a:hover {
  color: #21a7d0;
}
.full-width-header.header-style3 .rs-header .menu-area .categories-btn .cat-btn {
  color: #394459;
}
.full-width-header.header-style3 .rs-header .menu-area .categories-btn .cat-btn i {
  margin-right: 10px;
}
.full-width-header.header-style3 .rs-header .menu-area .categories-btn .cat-btn:hover i {
  color: #21a7d0;
}
.full-width-header.header-style3 .rs-header .menu-area .categories-btn .cat-menu-inner {
  background: #21a7d0;
}
.full-width-header.header-style3 .rs-header .menu-area .categories-btn .cat-menu-inner li a {
  color: #ffffff;
}
.full-width-header.header-style3 .rs-header .menu-area .categories-btn .cat-menu-inner li a:hover {
  color: #273c66;
}
.full-width-header.header-style3 .rs-header .menu-area.sticky {
  background: #21a7d0 !important;
}
.full-width-header.header-style3 .rs-header .menu-area.sticky .logo-cat-wrap {
  display: flex;
  align-items: center;
}
.full-width-header.header-style3 .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .dark-logo {
  display: none;
}
.full-width-header.header-style3 .rs-header .menu-area.sticky .logo-cat-wrap .logo-part .light-logo {
  display: inherit;
}
.full-width-header.header-style3 .rs-header .right_menu_togle .close-btn #nav-close {
  background: #4e49a1;
}
.full-width-header.header-style3 .rs-header .right_menu_togle .close-btn #nav-close:hover {
  transform: rotate(180deg);
}
.full-width-header.header-style3 .rs-header .right_menu_togle .canvas-logo {
  padding-left: 0;
  padding-bottom: 30px;
  margin-top: 50px;
}
.full-width-header.header-style3 .rs-header .right_menu_togle .canvas-logo img {
  max-height: 35px;
}
.full-width-header.header-style3 .rs-header .right_menu_togle .canvas-contact {
  padding: 50px 0 0;
}
.full-width-header.header-style3 .rs-header .right_menu_togle .canvas-contact .social li a:hover {
  color: #4e49a1;
}
.full-width-header.header-style3 .rs-header .right_menu_togle .canvas-contact .social li:last-child {
  padding: 0;
}
.full-width-header.header-style3.modify .rs-header .menu-area {
  display: flex;
  background: #ffffff;
}
.full-width-header.header-style3.modify .rs-header .menu-area .logo-part {
  background: #21a7d0;
  left: 0;
  height: 120px;
  line-height: 120px;
  width: 350px;
  text-align: center;
}
.full-width-header.header-style3.modify .rs-header .menu-area .logo-cat-wrap {
  display: flex;
  align-items: center;
  float: left;
}
.full-width-header.header-style3.modify .rs-header .menu-area .rs-menu-area {
  float: right;
  margin-right: -130px;
}
.full-width-header.header-style3.modify .rs-header .menu-area .expand-btn-inner {
  margin: 0;
  margin-left: 50px;
}
.full-width-header.header-style3.modify .rs-header .menu-area .expand-btn-inner .apply-btn {
  background: #21a7d0;
  color: #ffffff;
  line-height: 1;
  padding: 11px 24px;
  border-radius: 30px;
}
.full-width-header.header-style3.modify .rs-header .menu-area .expand-btn-inner .apply-btn:hover {
  background: #1a84a4;
}
.full-width-header.header-style3.modify .rs-header .menu-area .expand-btn-inner .nav-expander {
  top: 0;
  right: 0;
  width: 130px;
  height: 120px;
  line-height: 120px;
  background: #21a7d0;
  text-align: center;
  transform: unset;
}
.full-width-header.header-style3.modify .rs-header .menu-area .expand-btn-inner .nav-expander .bar {
  display: inline-block;
}
.full-width-header.header-style3.modify .rs-header .menu-area .expand-btn-inner .nav-expander:hover {
  color: #e6e6e6;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a, .full-width-header.header-style3.modify .rs-header .menu-area.sticky .categories-btn .cat-btn, .full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner li > a {
  color: #ffffff;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a:hover, .full-width-header.header-style3.modify .rs-header .menu-area.sticky .categories-btn .cat-btn:hover, .full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner li > a:hover, .full-width-header.header-style3.modify .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a:hover i, .full-width-header.header-style3.modify .rs-header .menu-area.sticky .categories-btn .cat-btn:hover i, .full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner li > a:hover i, .full-width-header.header-style3.modify .rs-header .menu-area.sticky .main-menu .rs-menu ul li.current-menu-item > a {
  color: #111111 !important;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .logo-part {
  height: 90px;
  line-height: 90px;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner {
  margin: 0;
  margin-left: 50px;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner li.cart-inner {
  border-color: #ffffff;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner .apply-btn {
  background: #ffffff;
  color: #21a7d0;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner .apply-btn:hover {
  color: #111111;
}
.full-width-header.header-style3.modify .rs-header .menu-area.sticky .expand-btn-inner .nav-expander {
  height: 90px;
  line-height: 90px;
}
.full-width-header.header-style3.modify.home-7-modify2 .rs-header .menu-area .categories-btn .cat-btn {
  color: #505050;
}
.full-width-header.header-style3.modify.home-7-modify2 .rs-header .menu-area .categories-btn .cat-btn:hover {
  color: #21a7d0;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area {
  display: flex;
  background: #ffffff;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-part {
  left: 0;
  height: 120px;
  line-height: 120px;
  width: 350px;
  text-align: center;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-cat-wrap {
  float: left;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-btn {
  color: #394459;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-btn i {
  margin-right: 10px;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-btn:hover i {
  color: #4e49a1;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-menu-inner {
  background: #4e49a1;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-menu-inner li a {
  color: #ffffff;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .logo-cat-wrap .categories-btn .cat-menu-inner li a:hover {
  color: #21a7d0;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area {
  justify-content: flex-end;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
  margin-right: 35px;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
  color: #394459;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
  color: #21a7d0;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
  background: #4e49a1;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
  margin: 0;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
  font-weight: 400 !important;
  color: #ffffff !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
  color: #ccc !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
  color: #ccc !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
  background: #4e49a1;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li a:hover, .full-width-header.header-style3.home11-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul li.current-menu-item > a {
  color: #4e49a1 !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner {
  margin: 0;
  margin-left: 50px;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .cart-bottom-part {
  background: #4e49a1;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .crt-btn {
  background: #ffffff;
  color: #111111;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .crt-btn:hover {
  background: #f2f2f2;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner .apply-btn {
  background: #4e49a1;
  color: #ffffff;
  line-height: 1;
  padding: 16px 24px;
  border-radius: 30px;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner .apply-btn:hover {
  background: #625eaa;
  color: #ffffff;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner .nav-expander {
  top: 0;
  right: 0;
  width: 130px;
  height: 120px;
  line-height: 120px;
  background: #4e49a1;
  text-align: center;
  transform: unset;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner .nav-expander .bar {
  display: inline-block;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area .expand-btn-inner .nav-expander:hover {
  color: #e6e6e6;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky {
  background: #ffffff !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a, .full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .categories-btn .cat-btn, .full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .expand-btn-inner li > a {
  color: #394459;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a:hover, .full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .categories-btn .cat-btn:hover, .full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .expand-btn-inner li > a:hover {
  color: #111111 !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .main-menu .rs-menu ul li.current-menu-item > a {
  color: #4e49a1 !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .expand-btn-inner li.cart-inner {
  border-color: #ffffff;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .expand-btn-inner .apply-btn {
  background: #4e49a1;
  color: #ffffff;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .expand-btn-inner .apply-btn:hover {
  background: #625eaa;
  color: #ffffff !important;
}
.full-width-header.header-style3.home11-modify2 .rs-header .menu-area.sticky .expand-btn-inner .nav-expander {
  height: 90px;
  line-height: 90px;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area {
  background: #ffffff !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
  color: #111111 !important;
  font-weight: 600 !important;
  padding-right: 18px !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
  color: #21a7d0 !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:last-child {
  margin-right: none !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
  color: #21a7d0 !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
  background: #ffffff !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
  margin: 0;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
  font-weight: 400 !important;
  color: #111111 !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
  color: #21a7d0 !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
  color: #21a7d0 !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
  background: #fff;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area.sticky {
  background: #ffffff !important;
}
.full-width-header.header-style3.home-7-modify2 .rs-header .menu-area.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
  color: #21a7d0;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area {
  background: #fff;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table {
  display: flex;
  width: 100%;
  position: relative;
  align-items: center;
  justify-content: space-between;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .header-logo .custom-logo-area {
  position: absolute;
  top: -51px;
  background: #FE6602;
  padding: 25px 42px 26px 51px;
  left: 0;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .header-logo .custom-logo-area a img {
  max-height: 93px;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .header-logo .custom-logo-area:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-bottom: 30px solid #FE6602;
  border-left: 30px solid transparent;
  transform: rotate(180deg);
  left: 0;
  bottom: -30px;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .categore-menu {
  padding-right: 175px;
  display: flex;
  flex: 1;
  align-items: center;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .categore-menu .logo-cat-wrap {
  height: 70px;
  line-height: 70px;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .categore-menu .logo-cat-wrap .categories-btn {
  padding-left: 45px;
  padding-right: 45px;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .categore-menu .logo-cat-wrap .categories-btn .cat-btn:hover i {
  color: #FE6602;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .categore-menu .logo-cat-wrap .cat-menu-inner {
  top: 93px;
  background: #FE6602;
  width: 240px;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .categore-menu .logo-cat-wrap .cat-menu-inner li {
  height: 45px;
  line-height: 45px;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .categore-menu .logo-cat-wrap .cat-menu-inner li a {
  padding: 0 30px;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .categore-menu .logo-cat-wrap .cat-menu-inner li a:hover {
  color: #cccccc;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .categore-menu .search-widget .search-wrap {
  position: relative;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .categore-menu .search-widget .search-wrap [type=search] {
  outline: none;
  border: 1px solid #ddd;
  color: #444;
  padding: 9px 17px;
  width: 100%;
  border-radius: 5px;
  width: 320px;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .categore-menu .search-widget .search-wrap button {
  background: 0 0 !important;
  border: none;
  padding: 12px 18px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  font-size: 16px;
  outline: none;
  border-radius: 0;
  color: #171f32;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .categore-menu .search-widget .search-wrap button i:before {
  font-size: 18px;
  font-weight: 600;
  color: #ebebeb;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
  margin-right: 35px;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
  color: #394459;
  height: 90px;
  line-height: 90px;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
  color: #FE6602;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .rs-menu-area .main-menu .rs-menu ul.nav-menu li.menu-item-has-children a {
  padding-right: 12px;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .rs-menu-area .main-menu .rs-menu ul.nav-menu li.menu-item-has-children a:before {
  transition: unset;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .rs-menu-area .main-menu .rs-menu ul.nav-menu li.menu-item-has-children a:hover:before {
  content: "-";
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .rs-menu-area .main-menu .rs-menu ul.sub-menu {
  background: #FE6602 !important;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
  margin: 0;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
  font-weight: 400 !important;
  color: #ffffff;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
  color: #ccc !important;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
  color: #ccc !important;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
  right: 270px;
  margin: 0 auto;
  max-width: 800px;
  background: #FE6602 !important;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu {
  width: 33.33%;
  float: left;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu {
  background: #FE6602 !important;
  padding-right: 32px;
  padding-left: 32px;
  padding-bottom: 32px;
  padding-top: 32px;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .rs-menu-area .main-menu .rs-menu ul li a:hover, .full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .rs-menu-area .main-menu .rs-menu ul li.active a, .full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .rs-menu-area .main-menu .rs-menu ul li.current-menu-item > a {
  color: #FE6602 !important;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .expand-btn-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 0;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .expand-btn-inner .icon-bar .cart-icon {
  position: relative;
  z-index: 1;
  padding-right: 10px;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .expand-btn-inner .icon-bar .cart-icon i:before {
  font-size: 18px;
  color: #111111;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .expand-btn-inner .icon-bar .cart-icon i:hover:before {
  color: #FE6602 !important;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .expand-btn-inner .user-icon {
  margin-left: 0;
  padding-left: 25px;
  border-left: 1px solid #ebebeb;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .expand-btn-inner .user-icon a {
  font-size: 18px;
  border: none;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .expand-btn-inner .user-icon a:hover {
  color: #FE6602;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .expand-btn-inner li .apply-btn {
  background: #FE6602;
  color: #ffffff;
  padding: 10px 23px;
  line-height: 16px;
  border-radius: 30px;
  font-size: 14px;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area .custom-table .expand-btn-inner li .apply-btn:hover {
  opacity: 0.7;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area.sticky {
  background: #ffffff !important;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area.sticky .custom-table .header-logo .custom-logo-area {
  top: -34px;
  background: #FE6602;
  padding: 51px 42px 26px 51px;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area.sticky .custom-table .header-logo .custom-logo-area a img {
  max-height: 50px;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area.sticky .custom-table .categore-menu {
  padding-right: 0;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area.sticky .custom-table .categore-menu .logo-cat-wrap .categories-btn {
  padding-right: 700px;
  padding-left: 0;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area.sticky .custom-table .categore-menu .logo-cat-wrap .categories-btn .cat-menu-inner {
  top: 93px;
  background: #FE6602;
  width: 240px;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area.sticky .custom-table .categore-menu .logo-cat-wrap .categories-btn .cat-menu-inner li {
  height: 45px;
  line-height: 45px;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area.sticky .custom-table .categore-menu .logo-cat-wrap .categories-btn .cat-menu-inner li a {
  padding: 0 30px;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area.sticky .custom-table .categore-menu .logo-cat-wrap .categories-btn .cat-menu-inner li a:hover {
  color: #cccccc;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area.sticky .categore-menu .search-widget {
  display: none;
}
.full-width-header.header-style3.home-style15 .rs-header .menu-area.sticky .expand-btn-inner .icon-bar, .full-width-header.header-style3.home-style15 .rs-header .menu-area.sticky .expand-btn-inner .user-icon {
  display: none;
}
.full-width-header.home8-style4 {
  width: 100%;
  z-index: 999;
}
.full-width-header.home8-style4 .rs-header .menu-area {
  background: #ffffff !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .logo-part {
  position: relative;
  z-index: 9;
}
.full-width-header.home8-style4 .rs-header .menu-area .logo-area {
  position: relative;
  height: 90px;
  line-height: 90px;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
  color: #111111 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
  color: #FE6602 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:last-child {
  margin-right: none !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
  color: #FE6602 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
  background: #ffffff !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
  margin: 0;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
  font-weight: 400 !important;
  color: #111111 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
  color: #FE6602 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
  color: #FE6602 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {
  left: unset;
  right: 0;
  background: #ffffff;
  min-width: 770px;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu {
  width: 33.33%;
  float: left;
}
.full-width-header.home8-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu {
  padding-right: 30px;
  padding-left: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner .cart-icon i {
  font-size: 20px;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner li.cart-inner {
  border-color: #1c2f5e !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner li > a {
  color: #111111 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner li > a:hover {
  color: #FE6602 !important;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .cart-bottom-part {
  background: #FE6602;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .crt-btn {
  background: #ffffff;
  color: #111111;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner li .woocommerce-mini-cart .crt-btn:hover {
  background: #f2f2f2;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner .apply-btn {
  background: #FE6602;
  color: #ffffff !important;
  font-size: 15px;
  line-height: 24px;
  padding: 10px 24px;
  border-radius: 30px;
}
.full-width-header.home8-style4 .rs-header .menu-area .expand-btn-inner .nav-expander {
  color: #111111;
}
.full-width-header.home8-style4 .rs-header .menu-area.sticky {
  background: #ffffff !important;
}
.full-width-header.home8-style4 .rs-header .menu-area.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
  color: #21a7d0;
}
.full-width-header.home8-style4 .rs-header .right_menu_togle .close-btn #nav-close {
  background: #FE6602;
}
.full-width-header.home8-style4 .rs-header .right_menu_togle .sidebarnav_menu li a:hover, .full-width-header.home8-style4 .rs-header .right_menu_togle .canvas-contact .social li a:hover {
  color: #FE6602;
}
.full-width-header.home8-style4.main-home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.full-width-header.home8-style4.main-home .menu-area {
  background: transparent !important;
}
.full-width-header.home8-style4.main-home .menu-area .logo-part .sticky-logo {
  display: none;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
  margin-right: 45px;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
  color: #ffffff !important;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
  background: #ffffff !important;
  min-width: 250px;
  padding-bottom: 30px;
  padding-top: 30px;
  border-radius: 0px;
  border-bottom: 5px solid #FE6602;
  border-color: #FE6602 !important;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
  margin: 0;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
  font-weight: 400 !important;
  color: #111111 !important;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
  color: #FE6602 !important;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
  color: #FE6602 !important;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu-toggle {
  color: #ffffff !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .logo-part .sticky-logo {
  display: block;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .logo-part .normal-logo {
  display: none;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
  color: #111111 !important;
  padding-right: 18px !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
  color: #FE6602 !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:last-child {
  margin-right: none !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
  color: #FE6602 !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner li .cart-icon .cart-count {
  background: #21a7d0;
  color: #ffffff;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner li > a {
  color: #494949;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner li > a i:before {
  color: #111111 !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner li > a:hover {
  color: #21a7d0;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner li > a:hover i:before {
  color: #FE6602 !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner .user-icon > a {
  line-height: 90px;
  height: 90px;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner .woocommerce-mini-cart {
  padding-top: 90px;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .expand-btn-inner .nav-expander {
  color: #111111 !important;
}
.full-width-header.home8-style4.main-home .expand-btn-inner .cart-icon i {
  font-size: 20px;
}
.full-width-header.home8-style4.main-home .expand-btn-inner li a i:before {
  color: #ffffff !important;
}
.full-width-header.home8-style4.main-home .expand-btn-inner li a:hover i:before {
  color: #FE6602 !important;
}
.full-width-header.home8-style4.main-home .expand-btn-inner .user-icon > a {
  position: relative;
  line-height: 120px;
  height: 120px;
  display: flex;
  align-items: center;
}
.full-width-header.home8-style4.main-home .expand-btn-inner .user-icon > a i {
  color: #fff;
  border: 1px solid #eee;
  width: 32px;
  display: block;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  height: 32px;
  line-height: 29px;
}
.full-width-header.home8-style4.main-home .expand-btn-inner .user-icon > a i:before {
  color: #ffffff;
}
.full-width-header.home8-style4.main-home .expand-btn-inner .nav-expander {
  color: #ffffff !important;
}
.full-width-header.home8-style4.main-home .expand-btn-inner .nav-expander:hover {
  color: #FE6602 !important;
}
.full-width-header.home8-style4.main-home .right_menu_togle .close-btn #nav-close {
  background: #FE6602;
}
.full-width-header.home8-style4.main-home .right_menu_togle .sidebarnav_menu li a:hover, .full-width-header.home8-style4.main-home .right_menu_togle .canvas-contact .social li a:hover {
  color: #FE6602;
}
.full-width-header.home8-style4.home9 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.full-width-header.home8-style4.home9 .menu-area {
  background: transparent !important;
  box-shadow: unset !important;
}
.full-width-header.home8-style4.home9 .menu-area .logo-part .sticky-logo {
  display: none;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
  color: #ffffff !important;
  font-weight: 600 !important;
  padding-right: 18px !important;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
  color: #FE6602 !important;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:last-child {
  margin-right: none !important;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
  color: #FE6602 !important;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
  background: #ffffff !important;
  min-width: 250px;
  padding-bottom: 30px;
  padding-top: 30px;
  border-radius: 0px;
  border-bottom: 5px solid #FE6602;
  border-color: #FE6602 !important;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
  margin: 0;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
  font-weight: 400 !important;
  color: #111111 !important;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
  color: #FE6602 !important;
}
.full-width-header.home8-style4.home9 .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
  color: #FE6602 !important;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .logo-part .sticky-logo {
  display: block;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .logo-part .normal-logo {
  display: none;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
  color: #111111 !important;
  padding-right: 18px !important;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
  color: #FE6602 !important;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:last-child {
  margin-right: none !important;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
  color: #FE6602 !important;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .expand-btn-inner li .cart-icon .cart-count {
  background: #21a7d0;
  color: #ffffff;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .expand-btn-inner li > a {
  color: #494949;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .expand-btn-inner li > a i:before {
  color: #111111 !important;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .expand-btn-inner li > a:hover {
  color: #21a7d0;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .expand-btn-inner li > a:hover i:before {
  color: #FE6602 !important;
}
.full-width-header.home8-style4.home9 .menu-area.menu-sticky.sticky .expand-btn-inner .user-icon > a {
  line-height: 90px;
  height: 90px;
}
.full-width-header.home8-style4.home9 .expand-btn-inner .cart-icon i {
  font-size: 20px;
}
.full-width-header.home8-style4.home9 .expand-btn-inner li a i:before {
  color: #ffffff !important;
}
.full-width-header.home8-style4.home9 .expand-btn-inner li a:hover i:before {
  color: #FE6602 !important;
}
.full-width-header.home8-style4.home9 .expand-btn-inner li .woocommerce-mini-cart .cart-bottom-part {
  background: #FE6602 !important;
}
.full-width-header.home8-style4.home9 .expand-btn-inner .user-icon > a {
  position: relative;
  line-height: 120px;
  height: 120px;
  display: flex;
  align-items: center;
}
.full-width-header.home8-style4.home9 .expand-btn-inner .user-icon > a i:before {
  color: #ffffff;
}
.full-width-header.home8-style4.home9 .right_menu_togle .close-btn #nav-close {
  background: #FE6602;
}
.full-width-header.home8-style4.home9 .right_menu_togle .sidebarnav_menu li a:hover, .full-width-header.home8-style4.home9 .right_menu_togle .canvas-contact .social li a:hover {
  color: #FE6602;
}
.full-width-header.home8-style4.home13 .menu-area .rs-menu-area {
  justify-content: flex-end;
}
.full-width-header.home8-style4.home13 .menu-area .rs-menu .nav-menu .rs-mega-menu .mega-menu {
  background: #fff;
  left: unset;
  right: 0;
}
.full-width-header.home8-style4.home13 .menu-area .rs-menu .nav-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu {
  width: 33.33%;
  float: left;
}
.full-width-header.home8-style4.home13 .menu-area .rs-menu .nav-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu {
  background: unset;
  padding-right: 30px;
  padding-left: 41px;
}
.full-width-header.home8-style4.home13 .expand-btn-inner {
  margin-right: unset;
}
.full-width-header.home8-style4.home13 .expand-btn-inner li a i {
  border-right: 1px solid #fff;
  padding-right: 24px;
}
.full-width-header.home8-style4.home13 .expand-btn-inner .user-icon > a i {
  border: unset;
}
.full-width-header.transparent {
  position: absolute;
}
.full-width-header.transparent .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
  color: #ffffff !important;
}
.full-width-header.transparent .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
  color: #21a7d0;
}
.full-width-header.transparent .rs-header .menu-area .expand-btn-inner li.cart-inner {
  border-color: #1c2f5e !important;
}
.full-width-header.transparent .rs-header .menu-area .expand-btn-inner li > a {
  color: #ffffff !important;
}
.full-width-header.transparent .rs-header .menu-area .expand-btn-inner li > a:hover {
  color: #21a7d0;
}
.full-width-header.transparent .rs-header .menu-area.menu-sticky {
  background: none;
  border-bottom: none;
}
.full-width-header.home7-style4 .rs-header .menu-area {
  background: #ffffff !important;
}
.full-width-header.home7-style4 .rs-header .menu-area .logo-cat-wrap .logo-part {
  background: red !important;
}
.full-width-header.home7-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
  color: #111111 !important;
}
.full-width-header.home7-style4 .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
  color: #21a7d0;
}
.full-width-header.home7-style4 .rs-header .menu-area .expand-btn-inner .nav-expander {
  right: -196px;
  position: absolute;
  color: #ffffff !important;
  background: #21a7d0;
  padding: 40px 40px;
}
.full-width-header.home1-modifiy .rs-header .menu-area {
  background: #ffffff !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li {
  margin-right: 40px !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
  color: #111111 !important;
  font-weight: 600 !important;
  padding-right: 18px !important;
  margin-right: unset !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
  color: #21a7d0 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:last-child {
  margin-right: 0 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item > a {
  color: #21a7d0 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu {
  background: #ffffff !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li {
  margin: 0;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a {
  font-weight: 400 !important;
  color: #111111 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li a:hover {
  color: #21a7d0 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .rs-menu-area .main-menu .rs-menu ul.sub-menu li.active a {
  color: #21a7d0 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .expand-btn-inner .cart-icon i {
  font-size: 20px;
}
.full-width-header.home1-modifiy .rs-header .menu-area .expand-btn-inner li.cart-inner {
  border-color: #1c2f5e !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .expand-btn-inner li > a {
  color: #111111 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .expand-btn-inner li > a:hover {
  color: #21a7d0 !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area .expand-btn-inner .apply-btn {
  background: #21a7d0;
  color: #ffffff !important;
  font-size: 15px;
  line-height: 24px;
  padding: 10px 24px;
  border-radius: 30px;
}
.full-width-header.home1-modifiy .rs-header .menu-area .expand-btn-inner .nav-expander {
  color: #111111;
}
.full-width-header.home1-modifiy .rs-header .menu-area.sticky {
  background: #ffffff !important;
}
.full-width-header.home1-modifiy .rs-header .menu-area.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover {
  color: #21a7d0;
}

body .search-modal .modal-content {
  background: transparent;
  position: initial;
  border: 0;
}
body .search-modal .search-block input {
  height: 60px;
  line-height: 60px;
  padding: 0 15px;
  background: transparent;
  border-width: 0 0 1px 0;
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
}
body .search-modal .close {
  color: #ffffff;
  margin-top: 20px;
  font-size: 14px;
  background-color: transparent;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  opacity: 1;
  outline: none;
  transition: all 0.3s ease;
}
body .search-modal .close:hover {
  color: #FE6602 !important;
  opacity: 1 !important;
}
body .modal-backdrop {
  opacity: 0.95 !important;
}

/*------------------------------------
    04. Sticky Menu CSS
--------------------------------------*/
.menu-sticky {
  background: #fff;
  margin: 0;
  z-index: 999;
  width: 100%;
  top: 0;
  position: relative;
}
@keyframes sticky-animation {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ------------------------------------
    05. Banner Section CSS
---------------------------------------*/
.rs-banner.style1 {
  padding: 125px 0 425px;
  background: url(../images/banner/home1.jpg);
  background-size: cover;
  background-position: center;
}
.rs-banner.style1 .banner-content {
  max-width: 750px;
  margin: 0 auto;
}
.rs-banner.style1 .banner-content .banner-title {
  font-size: 55px;
  margin-bottom: 16px;
}
.rs-banner.style1 .banner-content .desc {
  font-size: 20px;
  line-height: 30px;
}
.rs-banner.style3 {
  background: url(../images/banner/home3.jpg);
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: grid;
  align-items: center;
}
.rs-banner.style3 .banner-content .banner-title {
  font-size: 70px;
  line-height: 1.2;
  margin-bottom: 19px;
}
.rs-banner.style3 .banner-content .banner-desc {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 41px;
  position: relative;
  z-index: 9;
}
.rs-banner.style3 .banner-content .banner-btn li {
  display: inline;
  margin-right: 30px;
}
.rs-banner.style3 .banner-content .banner-btn li:last-child {
  margin: 0;
}
.rs-banner.style3 .banner-content .banner-image {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}
.rs-banner.style4 {
  background: url(../images/banner/home4.jpg);
  background-size: cover;
  background-position: center;
  min-height: 935px;
  display: grid;
  align-items: center;
}
.rs-banner.style4 .banner-content .banner-title {
  font-size: 70px;
  line-height: 1.2;
  margin-bottom: 5px;
}
.rs-banner.style4 .banner-line-shape {
  position: absolute;
  top: -205px;
  left: -25px;
}
.rs-banner.style4 .banner-circle-shape {
  text-align: right;
  position: absolute;
  bottom: -125px;
  right: -15px;
}
.rs-banner.style4 .banner-dots-shape {
  position: absolute;
  bottom: -220px;
  left: -200px;
}
.rs-banner.style5 {
  position: relative;
  background-color: #f3fafc;
  min-height: 750px;
  display: grid;
  align-items: flex-end;
  z-index: 9;
}
.rs-banner.style5 .banner-content {
  padding-bottom: 200px;
}
.rs-banner.style5 .banner-content .sub-title {
  color: #111111;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 20px;
}
.rs-banner.style5 .banner-content .banner-title {
  color: #111111;
  font-size: 75px;
  line-height: 1.2;
  margin-bottom: 39px;
}
.rs-banner.style5 .banner-img {
  position: absolute;
  bottom: 0;
  right: 0;
}
.rs-banner.style6 {
  background: url(../images/banner/home6/bg.png);
  background-size: cover;
  background-position: center;
  margin-bottom: 54px;
}
.rs-banner.style6 .container {
  position: relative;
}
.rs-banner.style6 .banner-content {
  padding: 232px 0 388px;
}
.rs-banner.style6 .banner-content .banner-title {
  font-weight: 700;
  line-height: 80px;
  font-size: 60px;
}
.rs-banner.style6 .banner-content .desc {
  font-size: 18px;
  line-height: 30px;
}
.rs-banner.style6 .shape-img {
  position: absolute;
  bottom: -54px;
}
.rs-banner.style6 .shape-img.left {
  left: 15px;
  z-index: 1;
}
.rs-banner.style6 .shape-img.center {
  left: 50%;
  transform: translateX(-50%);
}
.rs-banner.style6 .shape-img.center .inner {
  width: 810px;
  height: 385px;
  margin: 0 auto;
  position: relative;
}
.rs-banner.style6 .shape-img.center .inner .spiner {
  position: absolute;
  content: "";
}
.rs-banner.style6 .shape-img.center .inner .spiner.one {
  top: 0;
  left: 37%;
}
.rs-banner.style6 .shape-img.center .inner .spiner.one img:nth-child(1) {
  position: relative;
  right: 4px;
  top: 9px;
}
.rs-banner.style6 .shape-img.center .inner .spiner.two {
  top: 56%;
  left: 0;
}
.rs-banner.style6 .shape-img.center .inner .spiner.two img:nth-child(1) {
  max-width: 16px;
}
.rs-banner.style6 .shape-img.center .inner .spiner.two img:nth-child(2) {
  position: relative;
  right: -3px;
  top: -4px;
  max-width: 25px;
}
.rs-banner.style6 .shape-img.center .inner .spiner.three {
  top: 40%;
  right: 0;
}
.rs-banner.style6 .shape-img.center .inner .spiner.three img:nth-child(1) {
  max-width: 16px;
  position: relative;
  top: 29px;
  left: 31px;
}
.rs-banner.style6 .shape-img.center .inner .spiner.three img:nth-child(2) {
  position: relative;
  right: 7px;
  top: 1px;
  max-width: 25px;
}
.rs-banner.style6 .shape-img.right {
  right: 15px;
}
.rs-banner.style7 {
  background: url(../images/banner/home7/banner-bg.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 870px;
}
.rs-banner.style7 .banner-content {
  position: relative;
  padding: 200px 0;
}
.rs-banner.style7 .banner-content .banner-title {
  font-size: 70px;
  line-height: 80px;
  font-weight: 800;
}
.rs-banner.style7 .icons {
  position: absolute;
}
.rs-banner.style7 .icons.one {
  top: 136px;
  right: 50px;
}
.rs-banner.style7 .icons.two {
  left: 50%;
  bottom: 100px;
}
.rs-banner.style7 .icons.three {
  top: 95px;
  left: -160px;
}
.rs-banner.style7 .icons.four {
  bottom: 210px;
  left: -62px;
}
.rs-banner.style7 .img-part {
  position: absolute;
  right: 0;
  bottom: 88px;
}
.rs-banner.style8 {
  background: url(../images/banner/home9.jpg);
  background-size: cover;
  background-position: center;
  display: grid;
  align-items: center;
  min-height: 960px;
}
.rs-banner.style8 .banner-content {
  margin-top: 30px;
}
.rs-banner.style8 .banner-content .sl-sub-title {
  font-size: 48px;
  line-height: 50px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 22px;
}
.rs-banner.style8 .banner-content .sl-title {
  font-size: 90px;
  line-height: 90px;
  font-weight: 700;
  color: #ffffff;
  padding-right: 374px;
  margin-bottom: 45px;
}
.rs-banner.style9 {
  background: url(../images/banner/home11/banner.jpg);
  background-size: cover;
  display: grid;
  align-items: center;
  min-height: 880px;
  position: relative;
}
.rs-banner.style9 .banner-content {
  max-width: 615px;
}
.rs-banner.style9 .banner-content .banner-title {
  font-size: 70px;
  line-height: 1.3;
  color: #4e49a1;
}
.rs-banner.style9 .banner-content .desc {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  color: #4e49a1;
}
.rs-banner.style9 .shape-img .spiner {
  position: absolute;
  bottom: 0;
}
.rs-banner.style9 .shape-img .spiner.one {
  top: -40%;
  right: 70%;
}
.rs-banner.style9 .shape-img .spiner.two {
  left: 56%;
}
.rs-banner.style9 .shape-img .spiner.three {
  left: 290px;
  bottom: -118px;
}
.rs-banner.style9 .shape-img .spiner.four {
  top: 0%;
  left: -14%;
}
.rs-banner.style9 .social-icon {
  position: absolute;
  bottom: 35px;
  left: 70px;
}
.rs-banner.style9 .social-icon .icon-cart li {
  display: inline;
  margin-right: 8px;
}
.rs-banner.style9 .social-icon .icon-cart li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 44px;
  border-radius: 100%;
  background: #ffffff;
  color: #4e49a1;
  text-align: center;
}
.rs-banner.style9 .social-icon .icon-cart li a:hover {
  color: #21a7d0;
}
.rs-banner.style9 .social-icon .icon-cart li i {
  font-size: 20px;
}
.rs-banner.style10 {
  background: url(../images/banner/home12/banner-home12.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  align-items: center;
  min-height: 820px;
  position: relative;
}
.rs-banner.style10 .banner-content {
  padding: 120px 0 100px;
}
.rs-banner.style10 .banner-content .sl-sub-title {
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
  color: #FE6602;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.rs-banner.style10 .banner-content .sl-title {
  font-size: 50px;
  line-height: 70px;
  font-weight: 800;
  color: #171f32;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.rs-banner.style10 .img-part {
  width: 550px;
  position: absolute;
  top: 70px;
  left: 17%;
  z-index: 111;
}
.rs-banner.style10 .banner-intro-box .shape-img {
  position: absolute;
  top: 55px;
  left: 45px;
}
.rs-banner.style10 .banner-intro-box .shape-img img {
  width: 110px;
}
.rs-banner.style10 .banner-intro-box .intro-img {
  position: absolute;
  right: 8%;
  top: 60px;
}
.rs-banner.style10 .banner-intro-box .intro-img img {
  width: 600px;
}
.rs-banner.style11 {
  background: url(../images/banner/home13/banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: grid;
  align-items: center;
  min-height: 950px;
  z-index: 1;
}
.rs-banner.style11 .content-part {
  padding: 180px 0 100px;
}
.rs-banner.style11 .content-part .sub-title {
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  color: #FE6602;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}
.rs-banner.style11 .content-part .title {
  font-size: 70px;
  line-height: 75px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 32px;
}
.rs-banner.style11 .images-part {
  padding-top: 100px;
}
.rs-banner.style11 .images-part img {
  max-width: unset;
  width: 700px;
}
.rs-banner.style11 .icons-spiner .circle {
  top: 18%;
  right: 81%;
  position: absolute;
}
.rs-banner.style11 .icons-spiner .squre-img {
  position: absolute;
  right: 60%;
  bottom: 20%;
}
.rs-banner.style11 .icons-spiner .dot-img {
  position: absolute;
  right: 15%;
  top: 20%;
  z-index: -111;
}
.rs-banner.style12 {
  background-color: #F9F7F8;
  background-image: url(../images/banner/home14/border.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  padding: 100px 0px 100px 0px;
}
.rs-banner.style12 .banner-content .sub-text {
  font-size: 16px;
  line-height: 27px;
  font-weight: 500;
  color: #FE6602;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.rs-banner.style12 .banner-content .title {
  font-size: 48px;
  line-height: 62px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 30px;
}
.rs-banner.style12 .banner-content .title span {
  color: #FE6602;
}
.rs-banner.style12 .banner-content .desc {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 45px;
}
.rs-banner.style12 .banner-content .search-widget .search-wrap {
  position: relative;
}
.rs-banner.style12 .banner-content .search-widget .search-wrap [type=search] {
  outline: none;
  padding: 20px 30px;
  border: none;
  border-radius: 3px;
  box-shadow: none;
  padding-right: 77px;
  width: 100%;
}
.rs-banner.style12 .banner-content .search-widget .search-wrap button {
  background: transparent;
  border: medium none;
  color: #FE6602;
  padding: 11px 15px 12px;
  position: absolute;
  display: block;
  right: 10px;
  top: 10px;
  z-index: 10;
  font-size: 20px;
  font-weight: 700;
}
.rs-banner.style12 .banner-img img {
  max-width: unset;
  width: 620px;
}
.rs-banner.style13 {
  background-image: url(../images/banner/home15/banner-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 136px 0px 0px 0px;
  position: relative;
  z-index: 111;
  overflow: hidden;
}
.rs-banner.style13 .banner-content {
  padding: 30px 0 0;
}
.rs-banner.style13 .banner-content .sub-text {
  font-size: 16px;
  font-weight: 700;
  color: #FE6602;
  text-transform: uppercase;
  font-family: "Nunito", Sans-serif;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}
.rs-banner.style13 .banner-content .title {
  font-size: 52px;
  line-height: 68px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}
.rs-banner.style13 .banner-content .desc {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 35px;
}
.rs-banner.style13 .banner-content .search-widget .search-wrap {
  position: relative;
}
.rs-banner.style13 .banner-content .search-widget .search-wrap [type=search] {
  outline: none;
  padding: 20px 30px;
  border: none;
  border-radius: 3px;
  box-shadow: none;
  padding-right: 77px;
  width: 100%;
}
.rs-banner.style13 .banner-content .search-widget .search-wrap button {
  background: transparent;
  border: medium none;
  color: #FE6602;
  padding: 11px 15px 12px;
  position: absolute;
  display: block;
  right: 10px;
  top: 10px;
  z-index: 10;
  font-size: 20px;
  font-weight: 700;
}
.rs-banner.style13 .banner-content .search-widget .search-wrap button i:before {
  font-size: 20px;
}
.rs-banner.style13 .banner-content ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #363636;
  opacity: 0.3;
}
.rs-banner.style13 .banner-content ::-moz-placeholder {
  /* Firefox 19+ */
  color: #363636;
  opacity: 0.3;
}
.rs-banner.style13 .banner-content :-ms-input-placeholder {
  /* IE 10+ */
  color: #363636;
  opacity: 0.3;
}
.rs-banner.style13 .banner-content :-moz-placeholder {
  /* Firefox 18- */
  color: #363636;
  opacity: 0.3;
}
.rs-banner.style13 .banner-img img {
  position: relative;
  max-width: 925px;
  right: 5%;
  bottom: -8px;
}
.rs-banner.style13 .rs-animation-part .animate-style {
  position: absolute;
  bottom: 0;
  z-index: -111;
}
.rs-banner.style13 .rs-animation-part .animate-style.one {
  left: 10%;
  top: 42%;
}
.rs-banner.style13 .rs-animation-part .animate-style.two {
  left: 10%;
  bottom: 10%;
}
.rs-banner.style13 .rs-animation-part .animate-style.three {
  left: 30%;
  top: 3%;
}
.rs-banner.style13 .rs-animation-part .animate-style.four {
  left: 48%;
  top: 10%;
}
.rs-banner.style13 .rs-animation-part .animate-style.five {
  right: 25%;
  top: 17%;
}
.rs-banner.style13 .rs-animation-part .animate-style.six {
  left: 12%;
  top: 40%;
}
.rs-banner.biblioteca .sub-text {
  font-family: BebasNeue-Regular, sans-serif !important;
  font-size: 1.5rem !important;
  line-height: 1.5rem !important;
  font-weight: lighter !important;
}
@media only screen and (max-width: 768px) {
  .rs-banner.biblioteca .sub-text {
    font-size: 1.2rem !important;
    line-height: 1.2rem !important;
  }
}
.rs-banner.biblioteca .title {
  font-family: BebasNeue-Regular, sans-serif !important;
  font-size: 4rem !important;
  line-height: 4rem !important;
  font-weight: lighter !important;
}
@media only screen and (max-width: 768px) {
  .rs-banner.biblioteca .title {
    font-size: 3rem !important;
    line-height: 3rem !important;
  }
}
.rs-banner.biblioteca .highlight {
  color: black !important;
}
.rs-banner.biblioteca .btn-custom-2 {
  background-color: black;
}
.rs-banner.biblioteca .btn-custom-2:hover {
  background-color: #282828;
}
.rs-banner .left-shape {
  position: absolute;
  top: -30px;
  left: 40px;
  z-index: -1;
}
.rs-banner .right-shape {
  position: absolute;
  top: 65px;
  right: -90px;
  z-index: -1;
}
.rs-banner .bottom-shape {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.rs-banner .bottom-shape img {
  width: 100%;
}

/* ------------------------------------
    06. Slider Section CSS
---------------------------------------*/
.rs-slider.style1 {
  position: relative;
}
.rs-slider.style1 .slider-content {
  padding: 250px 0;
}
.rs-slider.style1 .slider-content .sl-sub-title {
  font-size: 48px;
  line-height: 58px;
  font-family: "Nunito", sans-serif;
  margin-bottom: 24px;
}
.rs-slider.style1 .slider-content .sl-title {
  font-size: 90px;
  line-height: 100px;
  margin-bottom: 39px;
  margin-left: -5px;
}
.rs-slider.style1 .slider-content.slide1 {
  background: url(../images/slider/h2-1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.rs-slider.style1 .slider-content.slide2 {
  background: url(../images/slider/h2-2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.rs-slider.style1 .owl-nav .owl-next, .rs-slider.style1 .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 50%;
  background: #21a7d0;
  text-align: center;
  color: #ffffff;
  transition: all 0.5s;
  transition-delay: 0.7s;
  opacity: 0;
  visibility: hidden;
}
.rs-slider.style1 .owl-nav .owl-next i:before, .rs-slider.style1 .owl-nav .owl-prev i:before {
  content: "\f138";
  font-family: Flaticon;
}
.rs-slider.style1 .owl-nav .owl-next {
  right: 30px;
  left: unset;
}
.rs-slider.style1 .owl-nav .owl-next i:before {
  content: "\f137";
}
.rs-slider.style1:hover .owl-nav .owl-next, .rs-slider.style1:hover .owl-nav .owl-prev {
  left: 50px;
  transition-delay: 0s;
  visibility: visible;
  opacity: 1;
}
.rs-slider.style1:hover .owl-nav .owl-next {
  right: 50px;
  left: unset;
}
.rs-slider.style2 .slide-part {
  background: #f9f8f8;
  padding: 100px 0 0;
}
.rs-slider.style2 .slide-part .img-part {
  margin-bottom: -80px;
  overflow: hidden;
}
.rs-slider.style2 .slide-part .content {
  padding: 100px 0 100px;
}
.rs-slider.style2 .slide-part .content .title {
  font-size: 55px;
  line-height: 70px;
  font-family: "Nunito", sans-serif;
  margin-bottom: 40px;
  color: #101010;
}
.rs-slider.style2 .slide-part .content .sub-title {
  font-size: 16px;
  line-height: 25px;
  color: #FE6602;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.rs-slider.style2 .owl-nav .owl-next, .rs-slider.style2 .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-align: center;
  color: #ffffff;
  transition: all 0.5s;
  transition-delay: 0.7s;
  opacity: 0;
  visibility: hidden;
}
.rs-slider.style2 .owl-nav .owl-next i:before, .rs-slider.style2 .owl-nav .owl-prev i:before {
  content: "\f138";
  font-family: Flaticon;
}
.rs-slider.style2 .owl-nav .owl-next:hover, .rs-slider.style2 .owl-nav .owl-prev:hover {
  background: #FE6602;
  color: #ffffff;
}
.rs-slider.style2 .owl-nav .owl-next {
  right: 30px;
  left: unset;
}
.rs-slider.style2 .owl-nav .owl-next i:before {
  content: "\f137";
}
.rs-slider.style2:hover .owl-nav .owl-next, .rs-slider.style2:hover .owl-nav .owl-prev {
  left: 50px;
  transition-delay: 0s;
  visibility: visible;
  opacity: 1;
}
.rs-slider.style2:hover .owl-nav .owl-next {
  right: 50px;
  left: unset;
}
.rs-slider.style2 .owl-carousel .owl-stage-outer {
  padding: 0 0 80px;
  margin: 0 0 -80px;
}
.rs-slider.main-home {
  position: relative;
}
.rs-slider.main-home .slider-content {
  text-align: center;
}
.rs-slider.main-home .slider-content .content-part {
  padding: 250px 35px 400px;
  max-width: 900px;
  margin: 0 auto;
}
.rs-slider.main-home .slider-content .content-part .sl-sub-title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  color: #FE6602;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.rs-slider.main-home .slider-content .content-part .sl-title {
  font-size: 70px;
  line-height: 80px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 65px;
}
.rs-slider.main-home .slider-content.slide1 {
  background: url(../images/slider/main-home/1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.rs-slider.main-home .slider-content.slide2 {
  background: url(../images/slider/main-home/2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.rs-slider.main-home .owl-nav .owl-next, .rs-slider.main-home .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 50%;
  background: #FE6602;
  text-align: center;
  color: #ffffff;
  transition: all 0.5s;
  transition-delay: 0.7s;
  opacity: 0;
  visibility: hidden;
}
.rs-slider.main-home .owl-nav .owl-next i:before, .rs-slider.main-home .owl-nav .owl-prev i:before {
  content: "\f138";
  font-family: Flaticon;
}
.rs-slider.main-home .owl-nav .owl-next:hover, .rs-slider.main-home .owl-nav .owl-prev:hover {
  background: #ed3600;
}
.rs-slider.main-home .owl-nav .owl-next {
  right: 30px;
  left: unset;
}
.rs-slider.main-home .owl-nav .owl-next i:before {
  content: "\f137";
}
.rs-slider.main-home:hover .owl-nav .owl-next, .rs-slider.main-home:hover .owl-nav .owl-prev {
  left: 50px;
  transition-delay: 0s;
  visibility: visible;
  opacity: 1;
}
.rs-slider.main-home:hover .owl-nav .owl-next {
  right: 50px;
  left: unset;
}

/* ------------------------------------
    06. Breadcrumbs Section CSS
---------------------------------------*/
.rs-breadcrumbs {
  position: relative;
}
.rs-breadcrumbs .breadcrumbs-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rs-breadcrumbs .breadcrumbs-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.rs-breadcrumbs .breadcrumbs-text .page-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: #FE6602;
}
.rs-breadcrumbs .breadcrumbs-text ul {
  padding: 0;
}
.rs-breadcrumbs .breadcrumbs-text ul li {
  color: #505050;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
}
.rs-breadcrumbs .breadcrumbs-text ul li a {
  position: relative;
  padding-right: 30px;
  transition: 0.3s;
  color: #505050;
}
.rs-breadcrumbs .breadcrumbs-text ul li a:before, .rs-breadcrumbs .breadcrumbs-text ul li a:after {
  background-color: #505050;
  content: "";
  height: 15px;
  width: 2px;
  position: absolute;
  right: 7px;
  top: 2px;
  transform: rotate(26deg);
}
.rs-breadcrumbs .breadcrumbs-text ul li a:before {
  right: 13px;
}
.rs-breadcrumbs .breadcrumbs-text ul li a:hover {
  color: #FE6602;
}
.rs-breadcrumbs .breadcrumbs-text.white-color .page-title {
  color: #ffffff;
}
.rs-breadcrumbs .breadcrumbs-text.white-color ul li {
  color: #ffffff;
}
.rs-breadcrumbs .breadcrumbs-text.white-color ul li a {
  color: #ffffff;
}
.rs-breadcrumbs .breadcrumbs-text.white-color ul li a:before, .rs-breadcrumbs .breadcrumbs-text.white-color ul li a:after {
  background-color: #ffffff;
}
.rs-breadcrumbs .breadcrumbs-text.white-color ul li a:before {
  right: 13px;
}
.rs-breadcrumbs .breadcrumbs-text.white-color ul li a:hover {
  color: #FE6602;
}
.rs-breadcrumbs .breadcrumbs-text.padding {
  padding-top: 100px;
}

.breadcrumbs-overlay:after {
  content: "";
  position: absolute;
  background-color: rgba(17, 17, 17, 0.89);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.breadcrumbs1 {
  background-image: url(../images/breadcrumbs/1.jpg);
  background-size: cover;
  background-position: center;
  background-position: center top;
}

/* ------------------------------------
    07. About Section CSS
---------------------------------------*/
.rs-about .histort-part {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border: none;
  display: block;
}
.rs-about .histort-part .single-history {
  display: block;
  margin-bottom: 30px;
}
.rs-about .histort-part .single-history a {
  padding: 28px 20px 22px;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 5px;
  width: 230px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  background: #171F32;
  transition: all 0.3s ease;
}
.rs-about .histort-part .single-history a .icon-part {
  display: block;
  margin-bottom: 15px;
}
.rs-about .histort-part .single-history a .icon-part i:before {
  font-size: 45px;
  line-height: 1;
  color: #ffffff;
}
.rs-about .histort-part .single-history a:hover, .rs-about .histort-part .single-history a.active {
  background: #FE6602;
}
.rs-about .histort-part .last-item {
  margin-bottom: 0;
}
.rs-about .history-list .title {
  font-size: 22px;
  padding: 0;
  margin-bottom: 15px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  color: #111111;
}
.rs-about .history-list .title:before {
  display: none;
}
.rs-about .history-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
}
.rs-about .history-list li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 25px;
  width: 5px;
  height: 5px;
  background: #111111;
}
.rs-about .history-list li:last-child {
  margin-bottom: 0;
}
.rs-about.style1 .about-part {
  background: #e7f4f6;
  padding: 60px 60px 70px;
  border-radius: 5px;
  margin-top: -60px;
}
.rs-about.style1 .about-part .desc {
  font-size: 18px;
  line-height: 30px;
  color: #505050;
}
.rs-about.style1 .about-part .sign-part {
  display: flex;
  align-items: center;
}
.rs-about.style1 .about-part .sign-part .img-part {
  padding-right: 30px;
}
.rs-about.style1 .about-part .sign-part .author-part span {
  display: block;
}
.rs-about.style1 .about-part .sign-part .author-part .post {
  font-size: 18px;
}
.rs-about.style1 .notice-bord.style1 {
  margin-top: -60px;
}
.rs-about.style1 .notice-bord.style1 .title {
  background: #21a7d0;
  font-size: 20px;
  text-transform: uppercase;
  padding: 18px 25px;
  text-align: center;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}
.rs-about.style1 .notice-bord.style1 li {
  position: relative;
  background: #e7f4f6;
  margin-bottom: 12px;
  border-radius: 3px;
  padding: 20px;
  padding-left: 0 !important;
  overflow: hidden;
}
.rs-about.style1 .notice-bord.style1 li .date {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #21a7d0;
  border-right: 1px solid #21a7d0;
  padding-right: 10px;
  font-weight: 600;
  width: 60px;
}
.rs-about.style1 .notice-bord.style1 li .date span {
  font-size: 22px;
  font-family: "Nunito", sans-serif;
  display: block;
}
.rs-about.style1 .notice-bord.style1 li .desc {
  padding-left: 95px;
  font-weight: 500;
}
.rs-about.style1 .notice-bord.style1 li:last-child {
  margin-bottom: 0;
}
.rs-about.style1 .img-part {
  position: relative;
}
.rs-about.style1 .img-part .shape {
  position: absolute;
}
.rs-about.style1 .img-part .top-center {
  top: -30px;
  left: 49%;
  z-index: -1;
}
.rs-about.style1 .img-part .left-bottom {
  left: 0;
  bottom: 0;
}
.rs-about.style1 .img-part .left-bottom.second {
  bottom: -40px;
}
.rs-about.style2 .about-intro {
  border-radius: 3px;
  background: url(../images/bg/about-intro-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 88px 50px 95px;
  box-shadow: 0 0 20px 0px rgba(17, 41, 88, 0.2);
}
.rs-about.style2 .couter-area .counter-item {
  text-align: center;
  padding: 34px 15px;
  border-radius: 3px;
}
.rs-about.style2 .couter-area .counter-item .number {
  margin-bottom: 7px;
  font-size: 42px;
}
.rs-about.style2 .couter-area .counter-item .title {
  font-size: 22px;
  color: #394459;
}
.rs-about.style2 .couter-area .counter-item.one {
  background: #ffd5b9;
}
.rs-about.style2 .couter-area .counter-item.two {
  background: #ffd5b9;
}
.rs-about.style2 .couter-area .counter-item.three {
  background: #ffd5b9;
}
.rs-about.style2 .grid-area .image-grid img {
  border-radius: 3px;
}
.rs-about.style3 .couter-area .counter-item {
  text-align: center;
  padding: 34px 15px;
  border-radius: 10px;
}
.rs-about.style3 .couter-area .counter-item .count-img {
  display: block;
  margin: 0 auto 23px;
}
.rs-about.style3 .couter-area .counter-item .number {
  margin-bottom: 7px;
  font-size: 42px;
  color: #111111;
}
.rs-about.style3 .couter-area .counter-item .title {
  font-size: 22px;
  color: #505050;
}
.rs-about.style3 .couter-area .counter-item.one {
  background: #ffd5b9;
}
.rs-about.style3 .couter-area .counter-item.two {
  background: #ffd5b9;
}
.rs-about.style3 .couter-area .counter-item.three {
  background: #ffd5b9;
}
.rs-about.style4 .img-part {
  position: relative;
}
.rs-about.style4 .img-part .about-main {
  position: relative;
  z-index: 9;
}
.rs-about.style4 .img-part .shape {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}
.rs-about.style4 .img-part .circle-bg {
  z-index: 1;
}
.rs-about.style4 .about-content .title {
  font-size: 36px;
  font-weight: 800;
}
.rs-about.style4 .about-content .sub-title {
  color: #54647b;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.rs-about.style4 .about-content .contact-part li {
  display: inline-flex;
  align-items: center;
  margin: 0 30px 0 0;
  float: left;
}
.rs-about.style4 .about-content .contact-part li span {
  display: block;
}
.rs-about.style4 .about-content .contact-part li .img-part {
  float: left;
  width: 70px;
  height: 70px;
  line-height: 60px;
  border-radius: 50%;
  border: 5px solid #e5e8eb;
  text-align: center;
  margin-right: 30px;
}
.rs-about.style4 .about-content .contact-part li .desc {
  font-size: 18px;
  font-weight: 500;
  color: #54647b;
}
.rs-about.style4 .about-content .contact-part li .desc span a {
  font-size: 24px;
  color: #111111;
}
.rs-about.style4 .about-content .contact-part li .desc a {
  color: #101010;
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
  display: block;
}
.rs-about.style4 .about-content .contact-part li .desc a:hover {
  color: #21a7d0;
}
.rs-about.style4 .about-content .contact-part li:last-child {
  margin: 0;
}
.rs-about.style4 .about-content .book-part {
  position: absolute;
  right: 0;
  bottom: -25px;
  width: 775px;
}
.rs-about.style4 .about-content .book-part .single-book {
  padding: 20px 60px;
  background: #f3f8f9;
  float: left;
}
.rs-about.style5 {
  background-image: url(../images/bg/about-bg.jpg);
  background-size: cover;
  background-position: center;
}
.rs-about.style5 .about-content .title {
  font-size: 42px;
  font-weight: 800;
}
.rs-about.style5 .about-content .sub-title {
  color: #505050;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.rs-about.style5 .about-content .contact-part li {
  position: relative;
  margin-bottom: 40px;
}
.rs-about.style5 .about-content .contact-part li span {
  display: block;
}
.rs-about.style5 .about-content .contact-part li .img-part {
  position: absolute;
  left: 0;
  width: 70px;
  height: 70px;
  line-height: 60px;
  border-radius: 50%;
  border: 5px solid #e5e8eb;
  text-align: center;
  margin-right: 30px;
}
.rs-about.style5 .about-content .contact-part li .desc {
  font-size: 18px;
  font-weight: 500;
  color: #505050;
  padding-left: 95px;
}
.rs-about.style5 .about-content .contact-part li .desc p {
  color: #101010;
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0 0;
}
.rs-about.style5 .about-content .contact-part li .desc a {
  color: #111111;
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
  display: block;
}
.rs-about.style5 .about-content .contact-part li .desc a:hover {
  color: #21a7d0;
}
.rs-about.style5 .about-content .contact-part li .desc .address {
  color: #111111;
  font-size: 22px;
  font-weight: bold;
  margin-top: 10px;
  display: block;
}
.rs-about.style5 .about-content .contact-part li:last-child {
  margin-bottom: 0;
}
.rs-about.style6 .desc {
  font-size: 16px;
  color: #505050;
  font-weight: 400;
}
.rs-about.style6 .shape-animate {
  position: relative;
}
.rs-about.style6 .shape-animate .transparent {
  position: absolute;
}
.rs-about.style6 .shape-animate .transparent.left {
  left: 27%;
}
.rs-about.style6 .shape-animate .transparent.right {
  right: 20%;
}
.rs-about.style9 .content .sub-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #FE6602;
  text-transform: uppercase;
}
.rs-about.style9 .content .sl-title {
  font-size: 36px;
  line-height: 45px;
  font-weight: 700;
  color: #111111;
}
.rs-about.style9 .content .desc {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #505050;
}
.rs-about.video-style {
  position: relative;
}
.rs-about.video-style .icon-shape {
  position: absolute;
  top: -130px;
  left: -130px;
}
.rs-about.video-style .dot-shape {
  position: absolute;
  right: -90px;
  bottom: 30px;
}
.rs-about.video-style .about-content {
  padding: 70px 70px 70px 160px;
  margin-left: -120px;
  margin-top: -70px;
}
.rs-about.video-img {
  background: url(../images/video/bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  border-radius: 10px;
  position: relative;
  padding-bottom: 500px;
}
.rs-about.video-img .shape-img {
  position: absolute;
  bottom: 0;
}
.rs-about.video-img .shape-img.left {
  left: 100px;
}
.rs-about.video-img .shape-img.center {
  left: 50%;
  transform: translateX(-50%);
}
.rs-about.video-img .shape-img.right {
  right: 100px;
}
.rs-about.style8 .main-content {
  padding: 40px 33px;
  background: #f9f8f8;
  position: relative;
  border-radius: 6px;
}
.rs-about.style8 .main-content .img-part {
  position: absolute;
  left: -240px;
  top: -50px;
  z-index: 111;
}
.rs-about.style8 .main-content .img-part img {
  border-radius: 6px;
}
.rs-about.style8 .main-content .images-title img {
  border-radius: 6px;
}
.rs-about.style9 .content-part {
  background-color: #F9F8F8;
  padding: 65px 30px 70px 100px;
  position: relative;
}
.rs-about.style9 .content-part .about-img {
  position: absolute;
  z-index: 111;
  left: -480px;
  top: 83px;
}
.rs-about.style9 .content-part .about-img img {
  border-radius: 6px;
}
.rs-about.orange-color .histort-part .single-history .icon-part i:before {
  color: #FE6602;
}
.rs-about.style10 {
  position: relative;
}
.rs-about.style10 .shape-icons .shape {
  position: absolute;
  bottom: 0;
}
.rs-about.style10 .shape-icons .shape.one {
  right: 49%;
  bottom: 28%;
}
.rs-about.style10 .shape-icons .shape.two {
  top: 19%;
  left: 23%;
}

/* ------------------------------------
    08. Services Section CSS
---------------------------------------*/
.rs-services.style1 .service-item {
  position: relative;
  overflow: hidden;
}
.rs-services.style1 .service-item .scale-img {
  transition: all 0.3s ease;
  transform: scale(1);
}
.rs-services.style1 .service-item .content-part {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  text-align: center;
}
.rs-services.style1 .service-item .content-part i {
  font-size: 40px;
  color: #ffffff;
}
.rs-services.style1 .service-item .content-part i:before {
  font-size: 40px;
}
.rs-services.style1 .service-item .content-part .title {
  font-size: 22px;
  margin: 17px 0 0 0;
}
.rs-services.style1 .service-item .content-part .title a {
  color: #ffffff;
}
.rs-services.style1 .service-item .content-part .title a:hover {
  opacity: 0.8;
}
.rs-services.style1 .service-item:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.rs-services.style1 .service-item.overly1:after {
  background: #FE6602;
}
.rs-services.style1 .service-item.overly2:after {
  background: #21a7d0;
}
.rs-services.style1 .service-item.overly3:after {
  background: #772bea;
}
.rs-services.style1 .service-item.overly4:after {
  background: #16aaca;
}
.rs-services.style1 .service-item:hover .scale-img {
  transform: scale(1.1);
}
.rs-services.style2 .service-item {
  text-align: center;
  background: #f3fafc;
}
.rs-services.style2 .service-item .content-part {
  position: unset;
  transform: unset;
  padding: 60px 35px 50px;
}
.rs-services.style2 .service-item .content-part .icon-part i {
  color: #21a7d0;
}
.rs-services.style2 .service-item .content-part .icon-part i:before {
  font-size: 75px;
}
.rs-services.style2 .service-item .content-part .title {
  font-size: 22px;
  margin: 20px 0 0 0;
}
.rs-services.style2 .service-item .content-part .title a {
  color: #111111;
}
.rs-services.style2 .service-item .content-part .title a:hover {
  color: #21a7d0;
}
.rs-services.style2 .service-item .content-part .desc {
  margin-bottom: 15px;
  margin-top: 5px;
}
.rs-services.style2 .service-item .content-part .service-btn {
  position: relative;
  padding-right: 20px;
  color: #111111;
}
.rs-services.style2 .service-item .content-part .service-btn i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.rs-services.style2 .service-item .content-part .service-btn:hover {
  color: #21a7d0;
}
.rs-services.style2 .service-item .content-part .service-btn:hover i {
  right: -5px;
}
.rs-services.style6 .services-wrap {
  text-align: center;
  padding: 50px 30px 50px;
  border-radius: 10px;
}
.rs-services.style6 .services-wrap .services-item {
  transition: all 0.8s ease;
  position: relative;
}
.rs-services.style6 .services-wrap .services-item .services-desc .title {
  font-size: 22px;
  line-height: 26px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.rs-services.style6 .services-wrap .services-item .services-desc .title a {
  color: #111111;
}
.rs-services.style6 .services-wrap .services-item .services-desc .title a:hover {
  color: #21a7d0;
  transition: all 0.3s ease;
}
.rs-services.style6 .services-wrap .services-item .services-desc p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #505050;
  margin: 0;
}
.rs-services.style6 .services-wrap.bg1 {
  background: #fdfcdb;
}
.rs-services.style6 .services-wrap.bg2 {
  background: #fbe7e4;
}
.rs-services.style6 .services-wrap.bg3 {
  background: #e7f6fa;
}
.rs-services.style6 .services-wrap.bg4 {
  background: #f3e9fe;
}
.rs-services.style6 .services-wrap:hover .services-item {
  transform: translateY(-10px);
}
.rs-services.style6 .services-wrap:hover .services-item .services-desc .title a {
  color: #21a7d0;
}
.rs-services.style7 .services-item {
  position: relative;
}
.rs-services.style7 .services-item .img-part img {
  width: 100%;
}
.rs-services.style7 .services-item .content-part {
  position: absolute;
  top: 0;
  left: 0;
  padding: 50px 30px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.rs-services.style7 .services-item .content-part .title {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 20px;
}
.rs-services.style7 .services-item .content-part .title a {
  color: #ffffff;
}
.rs-services.style7 .services-item .content-part .title a:hover {
  color: #21a7d0;
  transition: all 0.3s ease;
}
.rs-services.style7 .services-item .content-part .desc {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}
.rs-services.style7 .services-item:hover .content-part {
  top: -10px;
}
.rs-services.style8 .services-item .services-icon {
  margin-bottom: 20px;
}
.rs-services.style8 .services-item .services-icon img {
  width: 55px;
}
.rs-services.style8 .services-item .services-title .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}
.rs-services.style8 .services-item .services-title .title:hover {
  color: #FE6602;
}
.rs-services.style8 .services-item .services-txt {
  color: #ffffff;
  margin: 0;
}
.rs-services.home12-style {
  background: url(../images/bg/home12/services-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 150px 0;
}
.rs-services.home12-style .services-item {
  padding: 45px 15px 40px 15px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 0 30px #eee;
}
.rs-services.home12-style .services-item .services-image .services-icons {
  padding-bottom: 20px;
}
.rs-services.home12-style .services-item .services-image .services-icons img {
  width: 100px;
}
.rs-services.home12-style .services-item .services-image .services-text .services-title .title {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  color: #171f32;
  padding-bottom: 15px;
  margin: 0;
}
.rs-services.home12-style .services-item .services-image .services-text .text {
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  color: #363636;
  margin: 0;
  padding-bottom: 10px;
}
.rs-services.home12-style .services-item:hover .services-image .services-text .services-title .title {
  color: #FE6602;
}

/* ------------------------------------
    09. Subject Section CSS
---------------------------------------*/
.rs-subject.style1 .subject-wrap {
  text-align: center;
  background: #d3fcf8;
  border-radius: 10px;
  padding: 50px 30px 45px;
}
.rs-subject.style1 .subject-wrap img {
  transition: all 0.3s ease;
  transform: translateY(0);
}
.rs-subject.style1 .subject-wrap .title {
  margin: 20px 0 5px 0;
}
.rs-subject.style1 .subject-wrap .title a {
  color: #111111;
}
.rs-subject.style1 .subject-wrap .title a:hover {
  opacity: 0.8;
}
.rs-subject.style1 .subject-wrap:hover img {
  transition: all 0.3s ease;
  transform: translateY(-7px);
}
.rs-subject.style1 .subject-wrap.bgc1 {
  background: #d3fcf8;
}
.rs-subject.style1 .subject-wrap.bgc2 {
  background: #16aaca;
}
.rs-subject.style1 .subject-wrap.bgc3 {
  background: #f9e8e8;
}
.rs-subject.style1 .subject-wrap.bgc4 {
  background: #f8f6d1;
}
.rs-subject.style1 .subject-wrap.bgc5 {
  background: #eaddf8;
}
.rs-subject.style1 .subject-wrap.bgc6 {
  background: #e9fbd5;
}
.rs-subject.style1 .subject-wrap.text-light {
  color: #ffffff;
}
.rs-subject.style1 .subject-wrap.text-light .title a {
  color: #ffffff;
}

/* ------------------------------------
    10. Categories Section CSS
---------------------------------------*/
.rs-categories.style1 .categories-item {
  border: 1px solid #dfe9eb;
  background: #ffffff;
  overflow: hidden;
  padding: 30px;
  display: block;
  color: #505050;
  border-radius: 5px;
  display: flex;
  align-items: center;
}
.rs-categories.style1 .categories-item .icon-part {
  float: left;
  margin-right: 25px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 100%;
  background: rgba(22, 170, 202, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}
.rs-categories.style1 .categories-item .icon-part img {
  -webkit-transition: all 0.4s ease;
  transform: scale(1);
}
.rs-categories.style1 .categories-item .content-part .title {
  color: #111111;
  margin-bottom: 5px;
  font-size: 22px;
  transition: all 0.3s ease;
}
.rs-categories.style1 .categories-item:hover {
  background: #21a7d0;
  color: #ffffff;
  border-color: #21a7d0;
}
.rs-categories.style1 .categories-item:hover .icon-part {
  background: #ffffff;
}
.rs-categories.style1 .categories-item:hover .icon-part img {
  transform: scale(0.9);
}
.rs-categories.style1 .categories-item:hover .content-part .title {
  color: #ffffff;
}
.rs-categories.main-home .categories-items {
  position: relative;
  transition: all 0.3s ease;
}
.rs-categories.main-home .categories-items .cate-images a img {
  box-shadow: 0 0 30px #eee;
  background: #fff;
  border-radius: 0 0 5px 5px;
  position: relative;
  transition: all 500ms ease;
  border-radius: 5px;
}
.rs-categories.main-home .categories-items .contents {
  position: absolute;
  left: 0px;
  z-index: 3;
  width: 100%;
  text-align: left;
  transition: all 500ms ease;
  padding: 30px 40px;
  bottom: 0;
  display: flex;
  align-items: center;
}
.rs-categories.main-home .categories-items .contents .img-part img {
  width: 42px;
  margin: 0 20px 8px 0;
}
.rs-categories.main-home .categories-items .contents .content-wrap .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}
.rs-categories.main-home .categories-items .contents .content-wrap .title a {
  color: #ffffff;
}
.rs-categories.main-home .categories-items .contents .content-wrap .title a:hover {
  color: #FE6602;
}
.rs-categories.main-home .categories-items .contents .content-wrap .course-qnty {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #ffffff;
  transition: all 500ms ease;
  margin: 0px;
}
.rs-categories.main-home .categories-items:before {
  content: "";
  background: linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0) 50%);
  background: -webkit-linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0) 50%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  border-radius: 5px;
  transition: all 500ms ease;
  z-index: 1;
}
.rs-categories.main-home .categories-items:hover {
  transform: translateY(-10px);
}
.rs-categories.home9-style .categories-items {
  position: relative;
  transition: all 0.3s ease;
}
.rs-categories.home9-style .categories-items .images-part a img {
  border-radius: 4px 4px 0px 0px;
}
.rs-categories.home9-style .categories-items .image-content {
  border-radius: 0px 0px 4px 4px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.18);
  padding: 70px 30px 25px 40px;
  background-color: #ffffff;
  position: relative;
}
.rs-categories.home9-style .categories-items .image-content .effect-icon {
  background: #1c335e;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: -44px;
  text-align: center;
  right: 0;
  margin: 0 auto;
  box-shadow: 0 0 50px #eee;
}
.rs-categories.home9-style .categories-items .image-content .effect-icon i {
  color: #FE6602;
  font-size: 35px;
}
.rs-categories.home9-style .categories-items .image-content .title {
  font-size: 25px;
  line-height: 32px;
  font-weight: 700;
  color: #101010;
  margin-bottom: 17px;
}
.rs-categories.home9-style .categories-items .image-content .title a {
  color: #101010;
}
.rs-categories.home9-style .categories-items .image-content .title a:hover {
  color: #FE6602;
}
.rs-categories.home9-style .categories-items .image-content .description p {
  font-weight: 400;
  color: #505050;
  font-size: 16px;
  padding-right: 50px;
}
.rs-categories.home9-style .categories-items .image-content .button-bottom .button-effect {
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  transition: all 0.8s ease;
  width: 100%;
  text-align: center;
  visibility: hidden;
  opacity: 0;
}
.rs-categories.home9-style .categories-items .image-content .button-bottom .button-effect a {
  text-transform: uppercase;
  color: #1c335f;
  padding: 13px 35px 13px 35px;
  background-color: #FE6602;
  border-radius: 30px 30px 30px 30px;
}
.rs-categories.home9-style .categories-items .image-content .button-bottom .button-effect a:hover {
  color: #ffffff;
  background: #1c335f;
}
.rs-categories.home9-style .categories-items:hover {
  transform: translateY(-10px);
}
.rs-categories.home9-style .categories-items:hover .image-content .title a {
  color: #FE6602;
}
.rs-categories.home9-style .categories-items:hover .image-content .button-bottom .button-effect {
  opacity: 1;
  visibility: visible;
}
.rs-categories.home11-style {
  background-position: center;
}
.rs-categories.home11-style .img-part {
  background: url(../images/categories/home11/1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.rs-categories.home11-style .main-part {
  background: #e7f8fb;
  padding: 100px 300px 100px 70px;
}
.rs-categories.home11-style .main-part .categories-item {
  display: flex;
}
.rs-categories.home11-style .main-part .categories-item .icon-part {
  margin-right: 15px;
}
.rs-categories.home11-style .main-part .categories-item .content-part .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}
.rs-categories.home11-style .main-part .categories-item .content-part .title a {
  color: #4e49a1;
}
.rs-categories.home11-style .main-part .categories-item .content-part .title a:hover {
  color: #21a7d0;
}
.rs-categories.home11-style .main-part .categories-item .content-part p {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #54647b;
  margin: 0;
}
.rs-categories.home-style14 .categories-items {
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.rs-categories.home-style14 .categories-items .cate-images {
  position: relative;
  transition: all 500ms ease;
}
.rs-categories.home-style14 .categories-items .cate-images:before {
  content: "";
  left: 0;
  display: block;
  background: rgba(23, 31, 50, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  border-radius: 5px;
}
.rs-categories.home-style14 .categories-items .cate-images a img {
  box-shadow: 0 0 30px #eee;
  background: #fff;
  border-radius: 0 0 5px 5px;
  position: relative;
  transition: all 500ms ease;
  border-radius: 5px;
}
.rs-categories.home-style14 .categories-items .contents {
  position: absolute;
  left: 50%;
  bottom: -185px;
  z-index: 3;
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
  padding: 26px 20px 20px 20px;
}
.rs-categories.home-style14 .categories-items .contents .img-part img {
  width: 42px;
  margin: 0 0px 15px 0;
}
.rs-categories.home-style14 .categories-items .contents .content-wrap .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}
.rs-categories.home-style14 .categories-items .contents .content-wrap .title a {
  color: #ffffff;
}
.rs-categories.home-style14 .categories-items .contents .content-wrap .title a:hover {
  color: #FE6602;
}
.rs-categories.home-style14 .categories-items .contents .content-wrap .course-qnty {
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
  margin: 7px 0;
  display: inline-block;
}
.rs-categories.home-style14 .categories-items .contents .content-wrap .btn2 a {
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
  margin-top: 12px;
  background: #FE6602;
  color: #fff;
  display: inline-block;
  padding: 6px 22px;
  border-radius: 5px;
}
.rs-categories.home-style14 .categories-items:hover {
  transform: translateY(-10px);
}
.rs-categories.home-style14 .categories-items:hover .contents {
  bottom: -80px;
}
.rs-categories.home-style14 .categories-items:hover .contents .content-wrap .course-qnty, .rs-categories.home-style14 .categories-items:hover .contents .content-wrap .btn2 a {
  visibility: visible;
  opacity: 1;
}
.rs-categories.style2 .owl-stage-outer {
  padding: 20px;
  margin: -20px;
}
.rs-categories.style2 .categories-items .cate-item {
  position: relative;
  transition: all 500ms ease;
  box-shadow: 0 0 30px #eee;
  background: #fff;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 0 10px #eae4e4;
  padding: 30px 35px 35px;
  text-align: center;
}
.rs-categories.style2 .categories-items .cate-item .cate-img img {
  width: 60px;
  margin: 0 auto;
}
.rs-categories.style2 .categories-items .cate-item .cate-content .title {
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
  margin: 25px 0px 20px 0px;
}
.rs-categories.style2 .categories-items .cate-item .cate-content .title a {
  color: #101010;
}
.rs-categories.style2 .categories-items .cate-item .cate-content .title a:hover {
  color: #FE6602;
}
.rs-categories.style2 .categories-items .cate-item .cate-content .course-qnty {
  color: #101010;
}
.rs-categories.style2 .categories-items .cate-item:hover {
  transform: translateY(-10px);
}
.rs-categories.style2 .owl-nav .owl-next, .rs-categories.style2 .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  border: 1px solid #101010;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #101010;
  background: 0 0;
  transition: 0.4s;
  margin: 0 auto;
  text-align: center;
}
.rs-categories.style2 .owl-nav .owl-next i, .rs-categories.style2 .owl-nav .owl-prev i {
  margin-top: 13px;
}
.rs-categories.style2 .owl-nav .owl-next i:before, .rs-categories.style2 .owl-nav .owl-prev i:before {
  content: "\f133";
  font-family: Flaticon;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
}
.rs-categories.style2 .owl-nav .owl-next:hover, .rs-categories.style2 .owl-nav .owl-prev:hover {
  background: #FE6602;
  color: #ffffff;
  border: 1px solid #FE6602;
}
.rs-categories.style2 .owl-nav .owl-next {
  right: -75px;
  left: unset;
}
.rs-categories.style2 .owl-nav .owl-next i:before {
  content: "\f133";
  font-size: 18px;
  font-weight: 400;
}
.rs-categories.style2 .owl-nav .owl-prev {
  right: unset;
  left: -105px;
}
.rs-categories.style2 .owl-nav .owl-prev i:before {
  content: "\f134";
  font-size: 18px;
  font-weight: 400;
}

/* ------------------------------------
    11. Popular Courses Section CSS
---------------------------------------*/
.rs-popular-courses.style1 .courses-item {
  padding: 30px;
  border: 1px solid #dfe9eb;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.rs-popular-courses.style1 .courses-item .img-part {
  margin-bottom: 30px;
}
.rs-popular-courses.style1 .courses-item .img-part img {
  width: 100%;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.rs-popular-courses.style1 .courses-item .content-part .meta-part {
  margin-bottom: 17px;
}
.rs-popular-courses.style1 .courses-item .content-part .meta-part li {
  display: inline;
  margin-right: 10px;
}
.rs-popular-courses.style1 .courses-item .content-part .meta-part li span.price {
  display: inline-block;
  padding: 3px 20px;
  color: #ffffff;
  font-weight: 500;
  background: #21a7d0;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.rs-popular-courses.style1 .courses-item .content-part .meta-part li a.categorie {
  color: #505050;
}
.rs-popular-courses.style1 .courses-item .content-part .meta-part li:last-child {
  margin: 0;
}
.rs-popular-courses.style1 .courses-item .content-part .title {
  font-size: 24px;
}
.rs-popular-courses.style1 .courses-item .content-part .title a {
  color: #111111;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part {
  overflow: hidden;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .info-meta {
  float: left;
  padding-top: 10px;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .info-meta li {
  display: inline;
  margin-right: 15px;
  transition: all 0.3s ease;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .info-meta li.user i {
  color: #505050;
  margin-right: 8px;
  transition: all 0.3s ease;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .info-meta li.ratings i {
  color: #fcb903;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .info-meta li:last-child {
  margin: 0;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .btn-part {
  text-align: right;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .btn-part a {
  padding: 5px 13px;
  background: #f3f8f9;
  border: 1px solid #21a7d0;
  display: inline-block;
  border-radius: 3px;
  color: #111111;
}
.rs-popular-courses.style1 .courses-item .content-part .bottom-part .btn-part a i:before {
  font-size: 18px;
  font-weight: 700;
}
.rs-popular-courses.style1.modify1 .courses-item {
  overflow: hidden;
  transition: all 0.3s ease;
}
.rs-popular-courses.style1.modify1 .courses-item .img-part {
  overflow: hidden;
  margin-bottom: 35px;
  border-radius: 4px;
}
.rs-popular-courses.style1.modify1 .courses-item .img-part img {
  transition: all 500ms ease;
  transform: scale(1);
}
.rs-popular-courses.style1.modify1 .courses-item .content-part .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}
.rs-popular-courses.style1.modify1 .courses-item .content-part .title a {
  color: #111111;
}
.rs-popular-courses.style1.modify1 .courses-item .content-part .title a:hover {
  color: #FE6602;
}
.rs-popular-courses.style1.modify1 .courses-item:hover .img-part img {
  transform: scale(1.1);
}
.rs-popular-courses.style2 .course-wrap {
  background: #c7e8f0;
  position: relative;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 30px;
}
.rs-popular-courses.style2 .course-wrap .front-part {
  z-index: 1;
  position: relative;
  transition: all 0.3s ease;
  opacity: 1;
  visibility: visible;
}
.rs-popular-courses.style2 .course-wrap .front-part .img-part {
  margin-bottom: 21px;
}
.rs-popular-courses.style2 .course-wrap .front-part .content-part a.categorie {
  color: #505050;
}
.rs-popular-courses.style2 .course-wrap .front-part .content-part .title {
  margin: 7px 0 0 0;
}
.rs-popular-courses.style2 .course-wrap .front-part .content-part .title a {
  color: #111111;
}
.rs-popular-courses.style2 .course-wrap .inner-part {
  z-index: 1;
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  padding: 0 30px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part a.categorie {
  color: #ffffff;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part a.categorie:hover {
  color: #111111;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part .title {
  margin: 10px 0 25px;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part .title a {
  color: #ffffff;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part .title a:hover {
  color: #111111;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part .course-meta li {
  color: #ffffff;
  display: inline;
  margin-right: 15px;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part .course-meta li.course-user i {
  margin-right: 6px;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part .course-meta li.ratings i {
  margin-right: 3px;
  color: #fcb903;
}
.rs-popular-courses.style2 .course-wrap .inner-part .content-part .course-meta li:last-child {
  margin: 0;
}
.rs-popular-courses.style2 .course-wrap .price-btn {
  position: absolute;
  bottom: 0;
  padding-bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.rs-popular-courses.style2 .course-wrap .price-btn a {
  font-weight: 500;
  background: #ffffff;
  border-radius: 3px;
  color: #111111;
  display: inline-block;
  padding: 5px 5px 5px 10px;
}
.rs-popular-courses.style2 .course-wrap .price-btn a i {
  padding-left: 5px;
}
.rs-popular-courses.style2 .course-wrap .price-btn a i:before {
  font-size: 15px;
  color: #ffffff;
  width: 41px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #21a7d0;
  display: inline-block;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.rs-popular-courses.style2 .course-wrap .price-btn a:hover i:before {
  background: #111111;
}
.rs-popular-courses.style2 .course-wrap:after, .rs-popular-courses.style2 .course-wrap:before {
  position: absolute;
  content: "";
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 0;
  background: #b5e2ec;
}
.rs-popular-courses.style2 .course-wrap:after {
  width: 146px;
  height: 146px;
  left: -73px;
  bottom: 70px;
}
.rs-popular-courses.style2 .course-wrap:before {
  width: 412px;
  height: 412px;
  right: -133px;
  top: -80px;
}
.rs-popular-courses.style2 .course-wrap:hover {
  background: #16aaca;
}
.rs-popular-courses.style2 .course-wrap:hover .front-part {
  opacity: 0;
  visibility: hidden;
}
.rs-popular-courses.style2 .course-wrap:hover .inner-part, .rs-popular-courses.style2 .course-wrap:hover .price-btn {
  opacity: 1;
  visibility: visible;
}
.rs-popular-courses.style2 .course-wrap:hover:after, .rs-popular-courses.style2 .course-wrap:hover:before {
  background: #1ca6c7;
}
.rs-popular-courses.style3 .courses-item {
  border: 1px solid #dfe9eb;
  transition: all 0.3s ease;
}
.rs-popular-courses.style3 .courses-item .img-part img {
  width: 100%;
  transition: all 0.3s ease;
}
.rs-popular-courses.style3 .courses-item .content-part {
  position: relative;
  padding: 40px 25px;
}
.rs-popular-courses.style3 .courses-item .content-part a.categories {
  display: inline-block;
  padding: 0 15px;
  height: 40px;
  line-height: 40px;
  color: #ffffff;
  font-weight: 500;
  background: #21a7d0;
  border-radius: 3px;
  transition: all 0.3s ease;
  position: absolute;
  top: -20px;
}
.rs-popular-courses.style3 .courses-item .content-part .meta-part {
  margin-bottom: 17px;
}
.rs-popular-courses.style3 .courses-item .content-part .meta-part li {
  display: inline;
  margin-right: 10px;
  font-weight: 700;
}
.rs-popular-courses.style3 .courses-item .content-part .meta-part li:last-child {
  margin: 0;
}
.rs-popular-courses.style3 .courses-item .content-part .title a {
  color: #111111;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part {
  overflow: hidden;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part .info-meta {
  float: left;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part .info-meta li {
  display: inline;
  margin-right: 15px;
  transition: all 0.3s ease;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part .info-meta li.ratings i {
  color: #fcb903;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part .info-meta li:last-child {
  margin: 0;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part .btn-part {
  text-align: right;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part .btn-part a {
  color: #505050;
}
.rs-popular-courses.style3 .courses-item .content-part .bottom-part .btn-part a i:before {
  font-size: 18px;
  font-weight: 700;
  padding-left: 10px;
}
.rs-popular-courses.style4 .sec-title .title {
  font-weight: 800;
}
.rs-popular-courses.style4 .sec-title .sub-title {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 500;
  color: #485973;
}
.rs-popular-courses.style4 .courses-item {
  border: 1px solid #dfe9eb;
  transition: all 0.3s ease;
}
.rs-popular-courses.style4 .courses-item .img-part img {
  width: 100%;
  transition: all 0.3s ease;
}
.rs-popular-courses.style4 .courses-item .content-part {
  position: relative;
  padding: 40px 25px;
}
.rs-popular-courses.style4 .courses-item .content-part .price {
  display: inline-block;
  padding: 0 15px;
  height: 40px;
  line-height: 40px;
  color: #ffffff;
  font-weight: 500;
  background: #21a7d0;
  border-radius: 3px;
  transition: all 0.3s ease;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.rs-popular-courses.style4 .courses-item .content-part a.categories {
  color: #485973;
  display: inline-block;
  margin-bottom: 10px;
}
.rs-popular-courses.style4 .courses-item .content-part .meta-part {
  margin-bottom: 17px;
}
.rs-popular-courses.style4 .courses-item .content-part .meta-part li {
  display: inline;
  margin-right: 10px;
  font-weight: 700;
}
.rs-popular-courses.style4 .courses-item .content-part .meta-part li:last-child {
  margin: 0;
}
.rs-popular-courses.style4 .courses-item .content-part .title {
  font-size: 24px;
}
.rs-popular-courses.style4 .courses-item .content-part .title a {
  color: #111111;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part {
  overflow: hidden;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .user {
  float: left;
  margin-right: 20px;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .info-meta {
  float: left;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .info-meta li {
  display: inline;
  margin-right: 15px;
  transition: all 0.3s ease;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .info-meta li.ratings i {
  color: #fcb903;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .info-meta li:last-child {
  margin: 0;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .btn-part {
  text-align: right;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .btn-part a {
  color: #505050;
}
.rs-popular-courses.style4 .courses-item .content-part .bottom-part .btn-part a i:before {
  font-size: 18px;
  font-weight: 700;
  padding-left: 10px;
}
.rs-popular-courses.style5 .courses-item .courses-grid .img-part {
  overflow: hidden;
}
.rs-popular-courses.style5 .courses-item .courses-grid .img-part a img {
  border-radius: 5px;
  transition: all 500ms ease;
  transform: scale(1);
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part {
  padding: 50px 30px 50px;
  position: relative;
  text-align: center;
  background: #F9F8F8;
  border-color: #F9F8F8;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .course-price .price {
  padding: 9px 20px;
  color: #ffffff;
  font-weight: 500;
  background: #FE6602;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .title {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 18px;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .title a {
  color: #101010;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .title a:hover {
  color: #21a7d0;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .meta-part {
  text-align: center;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .meta-part .user {
  display: inline-block;
  margin-right: 8px;
  color: #363636;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .meta-part .user i:before {
  color: #FE6602;
  padding-right: 6px;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .meta-part .user i:before:last-child {
  padding-left: 0;
}
.rs-popular-courses.style5 .courses-item .courses-grid .content-part .meta-part .user:last-child {
  margin-right: 0;
}
.rs-popular-courses.style5 .courses-item:hover .courses-grid .img-part a img {
  transform: scale(1.1);
}
.rs-popular-courses.style6 .courses-item {
  background: #fff;
  border-radius: 5px;
  transition: 0.4s;
  overflow: hidden;
}
.rs-popular-courses.style6 .courses-item .img-part {
  overflow: hidden;
}
.rs-popular-courses.style6 .courses-item .img-part img {
  border-radius: 5px;
  transition: all 500ms ease;
  transform: scale(1.1);
}
.rs-popular-courses.style6 .courses-item .content-part {
  padding: 25px 0px 25px 20px;
}
.rs-popular-courses.style6 .courses-item .content-part .title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 0;
}
.rs-popular-courses.style6 .courses-item .content-part .title a {
  color: #101010;
}
.rs-popular-courses.style6 .courses-item .content-part .title a:hover {
  color: #FE6602;
}
.rs-popular-courses.style6 .courses-item .content-part .meta-part li .price {
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  color: #FE6602;
}
.rs-popular-courses.style6 .courses-item:hover .img-part img {
  transform: scale(1);
}
.rs-popular-courses.course-view-style .course-part {
  margin: 0 -15px;
}
.rs-popular-courses.course-view-style .course-part .courses-item {
  float: left;
  width: 46%;
  margin: 0 15px;
  margin-bottom: 30px;
}
.rs-popular-courses.course-view-style .course-part .courses-item.right {
  float: right;
}
.rs-popular-courses.course-view-style .course-search-part {
  background-color: #fff;
  border: 1px solid rgba(224, 224, 224, 0.5490196078);
  margin-bottom: 30px;
  padding: 15px 30px;
  display: inline-flex;
  width: 100%;
}
.rs-popular-courses.course-view-style .course-search-part .course-view-part {
  display: flex;
  align-items: center;
  float: left;
  width: 90%;
}
.rs-popular-courses.course-view-style .course-search-part .course-view-part .view-icons {
  float: left;
  margin-right: 20px;
  line-height: 1;
}
.rs-popular-courses.course-view-style .course-search-part .course-view-part .view-icons a {
  color: #505050;
  font-size: 20px;
  opacity: 0.7;
}
.rs-popular-courses.course-view-style .course-search-part .course-view-part .view-icons a.view-grid, .rs-popular-courses.course-view-style .course-search-part .course-view-part .view-icons a:hover {
  color: #FE6602;
  opacity: 1;
}
.rs-popular-courses.course-view-style .course-search-part .type-form {
  position: relative;
  float: right;
}
.rs-popular-courses.course-view-style .course-search-part .type-form select {
  display: block;
  width: 100%;
  min-width: 125px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  padding: 0 40px 0 20px;
  background: #FE6602;
  border: none;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 300ms ease;
  cursor: pointer;
}
.rs-popular-courses.course-view-style .course-search-part .type-form .custom-select-box {
  position: relative;
}
.rs-popular-courses.course-view-style .course-search-part .type-form .custom-select-box:before {
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
}
.rs-popular-courses.course-view-style.list-view .course-part {
  margin: 0;
}
.rs-popular-courses.course-view-style.list-view .course-part .courses-item {
  width: 100%;
  margin: 0 0 30px;
  display: flex;
  align-items: center;
}
.rs-popular-courses.course-view-style.list-view .course-part .courses-item .img-part {
  margin: 0;
  margin-right: 30px;
}
.rs-popular-courses.course-view-style.list-view .course-search-part .course-view-part .view-icons a.view-grid {
  color: #505050;
  opacity: 0.7;
}
.rs-popular-courses.course-view-style.list-view .course-search-part .course-view-part .view-icons a.view-list {
  color: #FE6602;
  opacity: 1;
}
.rs-popular-courses.course-view-style .widget-archives .categories {
  margin-left: 25px;
}
.rs-popular-courses.course-view-style .filter-widget {
  position: relative;
}
.rs-popular-courses.course-view-style .filter-widget h5, .rs-popular-courses.course-view-style .filter-widget .h5 {
  position: relative;
  padding: 12px 25px;
  padding-left: 0;
  font-size: 16px;
  font-weight: 600;
  color: #03382e;
  display: block;
  border-bottom: 1px solid #f0f5fb;
}
.rs-popular-courses.course-view-style .filter-form {
  position: relative;
}
.rs-popular-courses.course-view-style .filter-form span {
  position: relative;
  color: #626262;
  font-size: 16px;
  display: block;
  font-weight: 600;
  margin-bottom: 15px;
}
.rs-popular-courses.course-view-style .filter-form .radio-box {
  position: relative;
  margin-left: 25px;
  margin-bottom: 12px;
}
.rs-popular-courses.course-view-style .filter-form .radio-box label {
  position: relative;
  display: block;
  width: 100%;
  line-height: 1;
  padding-left: 25px;
  cursor: pointer;
  margin-bottom: 0;
  transition: all 300ms ease;
}
.rs-popular-courses.course-view-style .filter-form .radio-box label:before {
  position: absolute;
  left: 0;
  top: 3px;
  height: 10px;
  width: 10px;
  background: #b6b6b6;
  content: "";
  border-radius: 50px;
  transition: all 300ms ease;
  border: 1px solid transparent;
}
.rs-popular-courses.course-view-style .filter-form .radio-box label:after {
  position: absolute;
  left: 0px;
  top: 0;
  height: 15px;
  line-height: 15px;
  max-width: 0;
  font-size: 14px;
  color: #ffffff;
  font-weight: 800;
  overflow: hidden;
  background: transparent;
  text-align: center;
  font-family: "Font Awesome 5 Free";
  transition: max-width 500ms ease;
}
.rs-popular-courses.course-view-style .filter-form .radio-box input[type=radio] {
  display: none;
}
.rs-popular-courses.course-view-style .filter-form .radio-box input[type=radio]:checked + label {
  border-color: #25a9e0;
}
.rs-popular-courses.course-view-style .filter-form .radio-box input[type=radio]:checked + label:before {
  border: 5px solid #FE6602;
  background: #ffffff;
}
.rs-popular-courses.course-view-style .filter-form .radio-box input[type=radio]:checked + label:after {
  max-width: 20px;
  opacity: 1;
}
.rs-popular-courses.course-view-style .filter-form .radio-box:last-child {
  margin-bottom: 0px;
}
.rs-popular-courses.course-view-style .filter-form .check-box {
  margin-left: 25px;
  margin-bottom: 12px;
}
.rs-popular-courses.course-view-style .filter-form .check-box label {
  padding-left: 10px;
  line-height: 1;
}
.rs-popular-courses.main-home .courses-item .courses-grid {
  padding: 0px;
  box-shadow: 0 0 30px #eee;
  border-radius: 0 0 4px 4px;
  background: #ffffff;
}
.rs-popular-courses.main-home .courses-item .courses-grid .img-part {
  margin-bottom: 0px;
  overflow: hidden;
}
.rs-popular-courses.main-home .courses-item .courses-grid .img-part a img {
  border-radius: 4px 4px 0 0;
  transition: all 0.8s ease;
  transform: scale(1);
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part {
  padding: 32px 35px 35px 35px;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .info-meta {
  padding-bottom: 10px;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .info-meta li {
  display: inline-block;
  margin-right: 10px;
  transition: all 0.3s ease;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .info-meta li i {
  color: #fcb903;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .course-price .price {
  padding: 3px 15px;
  color: #ffffff;
  font-weight: 500;
  background: #FE6602;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: absolute;
  top: 20px;
  right: 38px;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .title {
  margin: 0 0 10px;
  line-height: 30px;
  font-size: 22px;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .title a {
  color: #101010;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .title a:hover {
  color: #FE6602;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .meta-part {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 25px 0 0;
  padding: 25px 0 0;
  font-size: 14px;
  border-top: 1px solid #f4f0f0;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .meta-part .user {
  display: inline-block;
  margin-right: 8px;
  color: #363636;
}
.rs-popular-courses.main-home .courses-item .courses-grid .content-part .meta-part .user i:before {
  color: #FE6602;
  padding-right: 6px;
}
.rs-popular-courses.main-home .courses-item:hover .courses-grid .img-part a img {
  transform: scale(1.1);
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part {
  padding: 32px 35px 35px 35px;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .info-meta {
  padding-bottom: 10px;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .info-meta li i {
  color: #fcb903;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .course-price .price {
  background: #FE6602;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .title {
  margin: 0 0 10px;
  line-height: 30px;
  font-size: 22px;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .title a {
  color: #101010;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .title a:hover {
  color: #FE6602;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .meta-part {
  border-top: 1px solid #f4f0f0;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .meta-part .user {
  display: inline-block;
  margin-right: 8px;
  color: #363636;
}
.rs-popular-courses.main-home.home12-style .courses-item .courses-grid .content-part .meta-part .user i:before {
  color: #FE6602;
  padding-right: 6px;
}
.rs-popular-courses.orange-color .courses-item .content-part .meta-part li span.price {
  background: #FE6602;
}
.rs-popular-courses.orange-color .courses-item .content-part .title a:hover {
  color: #FE6602;
}
.rs-popular-courses.orange-color .courses-item .content-part .bottom-part .btn-part a {
  border: 1px solid #f2f2f2;
  background: transparent;
}
.rs-popular-courses.orange-color .courses-item .content-part .bottom-part .btn-part a:hover {
  background: #FE6602;
  color: #ffffff;
}
.rs-popular-courses.orange-color.style2 .course-wrap {
  background: #FE6602;
}
.rs-popular-courses.orange-color.style2 .course-wrap .price-btn a i:before {
  background: #FE6602;
}
.rs-popular-courses.orange-color.style2 .course-wrap .price-btn a:hover i:before {
  background: #ff4007;
}
.rs-popular-courses.orange-color.style2 .course-wrap:after, .rs-popular-courses.orange-color.style2 .course-wrap:before {
  background: #FE6602;
}
.rs-popular-courses.orange-color.style2 .course-wrap:hover {
  background: #FE6602;
}
.rs-popular-courses.orange-color.style2 .course-wrap:hover:after, .rs-popular-courses.orange-color.style2 .course-wrap:hover:before {
  background: #FE6602;
}
.rs-popular-courses.orange-color.style3 .courses-item .content-part a.categories {
  background: #FE6602;
  color: #ffffff;
}
.rs-popular-courses.orange-color.style3 .courses-item .content-part .meta-part li span.price {
  background: unset;
}
.rs-popular-courses.orange-color.style3 .courses-item .content-part .title a {
  color: #111111;
}
.rs-popular-courses.orange-color.style3 .courses-item .content-part .title a:hover {
  color: #FE6602;
}
.rs-popular-courses.orange-color.style3 .courses-item .content-part .bottom-part .btn-part a {
  border: unset;
}
.rs-popular-courses.orange-color.style3 .courses-item .content-part .bottom-part .btn-part a:hover {
  background: transparent;
  color: #FE6602;
}
.rs-popular-courses.orange-color.style4 .courses-item .content-part .price {
  background: #FE6602;
}
.rs-popular-courses.orange-color.style4 .courses-item .content-part .bottom-part .btn-part a {
  border: unset;
}
.rs-popular-courses.orange-color.style4 .courses-item .content-part .bottom-part .btn-part a:hover {
  background: transparent;
  color: #FE6602;
}
.rs-popular-courses.home11-style .courses-item {
  border: 1px solid #e5e4f1;
  padding: 30px;
  position: relative;
  transition: all 0.4s ease;
}
.rs-popular-courses.home11-style .courses-item .content-part {
  padding: 30px 0 0px;
}
.rs-popular-courses.home11-style .courses-item .content-part .course-body .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 800;
  margin-bottom: 12px;
}
.rs-popular-courses.home11-style .courses-item .content-part .course-body .title a {
  color: #4e49a1;
}
.rs-popular-courses.home11-style .courses-item .content-part .course-body .title a:hover {
  color: #21a7d0;
}
.rs-popular-courses.home11-style .courses-item .content-part .course-body p {
  font-size: 16px;
  line-height: 28px;
  color: #54647b;
  font-weight: 400;
  margin-bottom: 20px;
}
.rs-popular-courses.home11-style .courses-item .content-part .bottom-part {
  border-top: 1px solid #e5e4f1;
  padding: 20px 0 0;
}
.rs-popular-courses.home11-style .courses-item .content-part .bottom-part .course-footer {
  display: inline-block;
  border-right: 1px solid #e5e4f1;
  padding-right: 15px;
  padding-left: 15px;
}
.rs-popular-courses.home11-style .courses-item .content-part .bottom-part .course-footer .label {
  display: block;
  font-size: 16px;
  line-height: 28px;
  color: #54647b;
  font-weight: 500;
}
.rs-popular-courses.home11-style .courses-item .content-part .bottom-part .course-footer .desc {
  font-size: 14px;
  line-height: 23px;
  color: #21a7d0;
  font-weight: 400;
}
.rs-popular-courses.home11-style .courses-item .btn-part {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  clip-path: none;
  background: #4e49a1;
  position: absolute;
  text-align: center;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.rs-popular-courses.home11-style .courses-item .btn-part a {
  font-size: 16px;
  color: #ffffff;
  display: inline-block;
  font-weight: 500;
}
.rs-popular-courses.home11-style .courses-item .btn-part a:hover {
  color: #21a7d0;
}
.rs-popular-courses.home11-style .courses-item:hover .btn-part {
  bottom: -20px;
  opacity: 1;
  visibility: visible;
}
.rs-popular-courses.home11-style .owl-carousel .owl-stage-outer {
  padding-bottom: 20px;
  margin-bottom: -20px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid {
  border-radius: 0 0 4px 4px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .img-part {
  margin-bottom: 0px;
  overflow: hidden;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .img-part a img {
  border-radius: 4px 4px 0 0;
  transition: all 0.8s ease;
  transform: scale(1);
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part {
  padding: 25px 25px 25px 25px;
  border-style: solid;
  border-width: 0px 1px 1px 1px;
  border-color: #252525;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .course-price .price {
  padding: 3px 15px;
  color: #ffffff;
  font-weight: 500;
  background: #FE6602;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: absolute;
  top: 20px;
  right: 38px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .title {
  margin: 0 0 10px;
  line-height: 30px;
  font-size: 22px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .title a {
  color: #ffffff;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .title a:hover {
  color: #FE6602;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .meta-part {
  display: flex;
  justify-content: space-between;
  list-style: none;
  font-size: 15px;
  margin: 0 0 20px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .meta-part .user {
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .meta-part .user i:before {
  color: #FE6602;
  padding-right: 6px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .avatar-part {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .avatar-part .avatar-img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .avatar-part .avatar-img img {
  border-radius: 50%;
}
.rs-popular-courses.home13-style .courses-item .courses-grid .content-part .avatar-part .title {
  font-size: 15px;
  color: #ffffff;
  line-height: 27px;
  margin-bottom: 0;
}
.rs-popular-courses.home13-style .courses-item:hover .courses-grid .img-part a img {
  transform: scale(1.1);
}

.free-course-contact {
  margin: 0px;
  padding: 40px 50px 50px;
  background: url(../images/bg/course-contact-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.free-course-contact span {
  font-size: 30px;
  color: #111111;
  display: block;
}
.free-course-contact form input, .free-course-contact form textarea, .free-course-contact form select {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #ffffff;
  color: #767676;
  background: #ffffff;
  padding: 10px 18px;
}
.free-course-contact form input, .free-course-contact form select {
  margin-bottom: 30px;
  height: 45px;
}
.free-course-contact form textarea {
  height: 140px;
  display: inherit;
}
.free-course-contact form .select-option {
  position: relative;
}
.free-course-contact form .select-option select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  z-index: 11;
  position: relative;
}
.free-course-contact form .select-option:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  color: #767676;
  right: 15px;
  position: absolute;
  top: 16px;
  font-size: 20px;
  pointer-events: none;
}
.free-course-contact form ::-webkit-input-placeholder, .free-course-contact form :-ms-input-placeholder, .free-course-contact form ::placeholder {
  color: #767676;
}

.rs-latest-couses .course-item {
  align-items: flex-start;
  border-radius: 300px 5px 5px 300px;
  display: flex;
  background: #ffffff;
}
.rs-latest-couses .course-item .course-image a {
  width: 200px;
  /*height: 120px;*/
  overflow: hidden;
  /*border-radius: 100%;*/
  display: block;
}
.rs-latest-couses .course-item .course-image a img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  height: 100%;
  width: 100%;
}
.rs-latest-couses .course-item .course-info {
  align-self: center;
  padding: 0 30px;
}
.rs-latest-couses .course-item .course-info .meta-part {
  padding-bottom: 5px;
}
.rs-latest-couses .course-item .course-info .meta-part li {
  display: inline;
  margin-right: 10px;
  font-weight: 700;
}
.rs-latest-couses .course-item .course-info .course-title {
  font-size: 22px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
}
.rs-latest-couses .course-item .course-info .course-title a {
  color: #111111;
}
.rs-latest-couses .course-item .course-info .course-title a:hover {
  color: #21a7d0;
  transition: all 0.3s ease;
}
.rs-latest-couses .course-item .course-info .bottom-part .info-meta {
  float: left;
}
.rs-latest-couses .course-item .course-info .bottom-part .info-meta ul .ratings {
  display: inline-block;
  margin-right: 10px;
  transition: all 0.3s ease;
}
.rs-latest-couses .course-item .course-info .bottom-part .info-meta ul .ratings i {
  color: #fcb903;
}
.rs-latest-couses .course-item .course-info .bottom-part .btn-part {
  text-align: right;
}
.rs-latest-couses .course-item .course-info .bottom-part .btn-part a {
  color: #505050;
}
.rs-latest-couses .course-item .course-info .bottom-part .btn-part a i:before {
  font-size: 18px;
  font-weight: 700;
  padding-left: 10px;
}
.rs-latest-couses .course-item .course-info .bottom-part .btn-part a:hover {
  color: #21a7d0;
  transition: all 0.3s ease;
}
.rs-latest-couses .course-item:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
}
.rs-latest-couses.orange-color .course-item .course-info .course-title a:hover, .rs-latest-couses.orange-color .course-item .bottom-part .btn-part a:hover {
  color: #FE6602;
}
.rs-latest-couses.orange-color .course-item:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
}

.rs-featured-courses {
  background: #e7f8fb;
}
.rs-featured-courses .rs-carousel .owl-dots {
  text-align: center;
}
.rs-featured-courses .rs-carousel .owl-dots .owl-dot {
  width: 30px;
  height: 10px;
  display: inline-block;
  margin: 0 6px;
  padding: 3px 0;
  border-radius: 30px;
  background: #111111;
}
.rs-featured-courses .rs-carousel .owl-dots .owl-dot:hover {
  background: #21a7d0;
}
.rs-featured-courses .rs-carousel .owl-dots .active {
  background: #21a7d0;
}
.rs-featured-courses .owl-stage-outer {
  padding-bottom: 10px;
}
.rs-featured-courses .courses-item {
  padding: 0 30px;
  position: relative;
  transition: all 0.3s ease;
}
.rs-featured-courses .courses-item .img-part {
  position: relative;
  z-index: 111;
}
.rs-featured-courses .courses-item .content-part {
  padding: 30px 0;
  position: relative;
  z-index: 111;
}
.rs-featured-courses .courses-item .content-part span .categories {
  display: inline-block;
  padding: 0 15px;
  height: 40px;
  line-height: 40px;
  color: #ffffff;
  font-weight: 500;
  border-radius: 3px;
  transition: all 0.3s ease;
  position: absolute;
  top: -20px;
  left: 32px;
}
.rs-featured-courses .courses-item .content-part span .categories.bg1 {
  background: #c701f1;
}
.rs-featured-courses .courses-item .content-part span .categories.bg2 {
  background: #065ce8;
}
.rs-featured-courses .courses-item .content-part span .categories.bg3 {
  background: #f6075b;
}
.rs-featured-courses .courses-item .content-part .meta-part {
  display: flex;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 12px;
}
.rs-featured-courses .courses-item .content-part .meta-part .user {
  display: inline;
  margin-right: 10px;
  font-weight: 700;
}
.rs-featured-courses .courses-item .content-part .meta-part .ratings {
  padding-left: 25px;
}
.rs-featured-courses .courses-item .content-part .meta-part .ratings i {
  color: #fcb903;
}
.rs-featured-courses .courses-item .content-part .title {
  font-size: 24px;
  line-height: 35px;
  font-weight: 700;
}
.rs-featured-courses .courses-item .content-part .title a {
  color: #101010;
}
.rs-featured-courses .courses-item .content-part .title a:hover {
  color: #21a7d0;
}
.rs-featured-courses .courses-item .content-part .images {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e8eb;
  padding-bottom: 35px;
}
.rs-featured-courses .courses-item .content-part .images .img-part img {
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.rs-featured-courses .courses-item .content-part .images span {
  color: #54647b;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  padding-left: 15px;
}
.rs-featured-courses .courses-item .content-part .bottom-part .info-meta {
  float: left;
}
.rs-featured-courses .courses-item .content-part .bottom-part .info-meta li {
  color: #101010;
  font-size: 15px;
  line-height: 25px;
  font-weight: 700;
}
.rs-featured-courses .courses-item .content-part .bottom-part .btn-part {
  text-align: right;
}
.rs-featured-courses .courses-item .content-part .bottom-part .btn-part a {
  color: #101010;
  font-size: 15px;
  line-height: 25px;
}
.rs-featured-courses .courses-item .content-part .bottom-part .btn-part a i:before {
  font-size: 18px;
  font-weight: 700;
  padding-left: 10px;
}
.rs-featured-courses .courses-item .content-part .bottom-part .btn-part a:hover {
  color: #21a7d0;
}
.rs-featured-courses .courses-item:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 78%;
  background: white;
  border-radius: 3px;
}
.rs-featured-courses .courses-item:hover {
  transform: translateY(-10px);
}

.rs-features {
  position: relative;
  margin-top: -245px;
  z-index: 111;
}
.rs-features .features-wrap {
  border-radius: 5px 5px 5px 5px;
  background: #171f32;
  padding: 25px 40px 25px;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}
.rs-features .features-wrap .icon-part img {
  width: 50px;
  margin: 0 35px 8px 0;
}
.rs-features .features-wrap .content-part .title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}
.rs-features .features-wrap .content-part .title .watermark {
  color: #ffffff;
}
.rs-features .features-wrap .content-part .dese {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}
.rs-features .features-wrap:hover {
  transform: translateY(-10px);
}
.rs-features.style2 {
  margin-top: -110px;
}
.rs-features.style2 .rs-iconbox-area {
  position: relative;
  transition: all 0.3s ease;
  padding: 50px;
  background-color: #1C335F;
  border-radius: 5px 5px 5px 5px;
  text-align: center;
}
.rs-features.style2 .rs-iconbox-area .icon-area {
  margin-bottom: 32px !important;
}
.rs-features.style2 .rs-iconbox-area .icon-area img {
  width: 80px;
  height: 80px;
}
.rs-features.style2 .rs-iconbox-area .text-area .icon-title {
  font-size: 22px;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 0;
}
.rs-features.style2 .rs-iconbox-area:hover {
  transform: translateY(-10px);
}
.rs-features.main-home {
  width: 100%;
  position: absolute;
  bottom: 100px;
  margin: 0;
}
.rs-features.style3 {
  margin: unset;
}
.rs-features.style3 .features-item {
  position: relative;
  transition: all 0.3s ease;
}
.rs-features.style3 .features-item .content-part {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  padding: 50px 35px 0;
  text-align: center;
}
.rs-features.style3 .features-item .content-part .icon-part {
  padding-bottom: 20px;
}
.rs-features.style3 .features-item .content-part .icon-part img {
  -webkit-transition: all 0.4s ease;
  transform: scale(1);
}
.rs-features.style3 .features-item .content-part .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}
.rs-features.style3 .features-item .content-part .title a {
  color: #ffffff;
}
.rs-features.style3 .features-item .content-part p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #ffffff;
  margin-bottom: 4px;
}
.rs-features.style3 .features-item:hover {
  transform: translateY(-10px);
}
.rs-features.style3 .features-item:hover .content-part .icon-part img {
  transform: scale(0.9);
}
.rs-features.style4 {
  position: unset;
  margin-top: unset;
  z-index: unset;
}
.rs-features.style4 .features-wrap {
  background: unset;
  display: unset;
  align-items: unset;
  position: unset;
}
.rs-features.style4 .features-wrap .icon-part {
  margin: 0 0px 17px 0;
}
.rs-features.style4 .features-wrap .content-part .title {
  margin-bottom: 10px;
}
.rs-features.style4 .features-wrap .content-part .title .watermark {
  color: #333333;
}
.rs-features.style4 .features-wrap .content-part .dese {
  color: #505050;
}

.rs-degree.style1 .degree-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.rs-degree.style1 .degree-wrap img {
  width: 100%;
}
.rs-degree.style1 .degree-wrap .title-part {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 30px 21px;
  opacity: 1;
  transition: all 0.3s ease;
}
.rs-degree.style1 .degree-wrap .title-part .title {
  margin: 0;
  color: #ffffff;
}
.rs-degree.style1 .degree-wrap .content-part {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotateY(90deg);
  text-align: center;
  background: rgba(17, 41, 88, 0.9);
  border-radius: 3px;
  padding: 78px 35px 0;
  color: #ffffff;
  opacity: 0;
  transition: all 0.3s ease;
}
.rs-degree.style1 .degree-wrap .content-part .title {
  margin-bottom: 13px;
}
.rs-degree.style1 .degree-wrap .content-part .title a {
  color: #ffffff;
}
.rs-degree.style1 .degree-wrap .content-part .title a:hover {
  color: #cccccc;
}
.rs-degree.style1 .degree-wrap .content-part .desc {
  margin-bottom: 15px;
}
.rs-degree.style1 .degree-wrap .content-part .btn-part a {
  text-transform: uppercase;
  font-weight: 500;
  color: #ffffff;
  padding-bottom: 0;
  border-bottom: 1px solid #ffffff;
}
.rs-degree.style1 .degree-wrap .content-part .btn-part a:hover {
  color: #cccccc;
}
.rs-degree.style1 .degree-wrap:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background: linear-gradient(transparent, #273c66);
}
.rs-degree.style1 .degree-wrap:hover .content-part {
  transform: translate(-50%, -50%) rotateY(0);
  opacity: 1;
}
.rs-degree.style1 .degree-wrap:hover .title-part {
  bottom: -60px;
  opacity: 0;
}

/* -----------------------------------
    12. Course Single Section CSS
-------------------------------------*/
/*Intro Section*/
.intro-section {
  position: relative;
  /*Video Column Style*/
  /*Intro Tabs Style*/
}
.intro-section .video-column {
  position: relative;
  z-index: 1;
}
.intro-section .video-column .intro-video {
  position: relative;
  text-align: center;
  width: 100%;
  display: block;
}
.intro-section .video-column .intro-video h4, .intro-section .video-column .intro-video .h4 {
  position: absolute;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.intro-section .video-column .intro-video .intro-video-box {
  position: relative;
  width: 60px;
  height: 60px;
  z-index: 99;
  color: #00aa15;
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  border-radius: 50%;
  padding-left: 7px;
  line-height: 60px;
  display: inline-block;
  background-color: #ffffff;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.intro-section .video-column .intro-video:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.1);
}
.intro-section .video-column .course-features-info {
  margin: 0;
  border-radius: 3px;
  padding: 30px 40px 30px;
}
.intro-section .video-column .course-features-info ul li {
  display: block;
  padding: 10px 0;
}
.intro-section .video-column .course-features-info ul li i {
  color: #FE6602;
}
.intro-section .video-column .course-features-info ul li .label {
  padding-left: 10px;
}
.intro-section .video-column .course-features-info ul li .value {
  float: right;
  padding-right: 5px;
}
.intro-section .video-column .btn-part {
  background: #ffffff;
  box-shadow: 0 0 35px #eee;
  padding: 50px 50px 35px;
  border-radius: 5px;
}
.intro-section .video-column .btn-part .btn {
  margin: 0 0 15px;
  width: 100%;
}
.intro-section .intro-tabs {
  border: none;
}
.intro-section .intro-tabs .tab-btns {
  position: relative;
  text-align: center;
}
.intro-section .intro-tabs .tab-btns .tab-btn {
  position: relative;
  display: block;
  width: 100%;
  font-size: 0.8rem;
  background: none;
  background: #ffffff;
  color: #626262;
  border: 1px solid #eee;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
  float: left;
  padding: 12px 0 10px;
  text-transform: uppercase;
  transition: all 500ms ease;
}
.intro-section .intro-tabs .tab-btns .tab-btn:hover, .intro-section .intro-tabs .tab-btns .tab-btn.active {
  color: #ffffff;
  background: #FE6602;
  border-color: #FE6602;
}
.intro-section .intro-tabs .tabs-content {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.intro-section .intro-tabs .tabs-content .minutes {
  position: relative;
  color: #21a7d0;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
}

/* Course Overview */
.course-overview {
  position: relative;
}
.course-overview .instructor-title {
  position: relative;
  color: #111111;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3em;
  margin-bottom: 18px;
}
.course-overview .inner-box {
  position: relative;
  padding: 0px 40px 40px;
}
.course-overview .inner-box h4, .course-overview .inner-box .h4 {
  position: relative;
  color: #111111;
  font-weight: 600;
  line-height: 1.3em;
  margin-bottom: 15px;
}
.course-overview .inner-box h3, .course-overview .inner-box .h3 {
  position: relative;
  color: #111111;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3em;
  margin-bottom: 18px;
}
.course-overview .inner-box p {
  position: relative;
  color: #626262;
  font-size: 16px;
  line-height: 1.8em;
  margin-bottom: 15px;
}
.course-overview .inner-box .student-list {
  position: relative;
  margin-top: 25px;
  margin-bottom: 30px;
}
.course-overview .inner-box .student-list li {
  position: relative;
  color: #393939;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3em;
  margin-right: 80px;
  display: inline-block;
  list-style: disc;
  margin-bottom: 10px;
}
.course-overview .inner-box .student-list li .fa {
  color: #FE6602;
  margin: 0px 2px;
}
.course-overview .inner-box .student-list li:last-child {
  margin-right: 0px;
}

.review-list {
  position: relative;
  margin-bottom: 20px;
}
.review-list li {
  position: relative;
  color: #626262;
  font-size: 16px;
  margin-bottom: 14px;
  padding-left: 30px;
}
.review-list li:before {
  position: absolute;
  content: "\f101";
  left: 0px;
  top: 5px;
  font-size: 14px;
  line-height: 1em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.review-list li:last-child {
  margin-bottom: 0px;
}

/*Course Review*/
.cource-review-box {
  position: relative;
  padding: 0px 40px;
}
.cource-review-box h4, .cource-review-box .h4 {
  position: relative;
  color: #111111;
  font-weight: 700;
  line-height: 1.3em;
  margin-bottom: 15px;
}
.cource-review-box .rating {
  position: relative;
  color: #626262;
  font-size: 16px;
}
.cource-review-box .rating .fa {
  position: relative;
  color: #FE6602;
  margin: 0px 2px;
  font-size: 16px;
}
.cource-review-box .total-rating {
  position: relative;
  color: #FE6602;
  font-size: 16px;
  font-weight: 600;
  margin-right: 5px;
}
.cource-review-box .text {
  position: relative;
  color: #626262;
  font-size: 16px;
  line-height: 1.8em;
  margin-top: 15px;
}
.cource-review-box .helpful {
  position: relative;
  color: #393939;
  font-size: 16px;
  line-height: 1.8em;
  margin-top: 12px;
  font-weight: 500;
  margin-bottom: 15px;
}
.cource-review-box .like-option {
  position: relative;
}
.cource-review-box .like-option li {
  position: relative;
  margin-right: 10px;
  display: inline-block;
}
.cource-review-box .like-option li i {
  position: relative;
  width: 36px;
  height: 36px;
  color: #626262;
  text-align: center;
  line-height: 36px;
  border-radius: 50px;
  display: inline-block;
  background-color: #eaeff5;
}
.cource-review-box .like-option li i:hover {
  color: #21a7d0;
}
.cource-review-box .like-option .report {
  position: relative;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}
.cource-review-box .like-option .report:hover {
  color: #21a7d0;
}
.cource-review-box .more {
  position: relative;
  color: #FE6602;
  font-size: 14px;
  font-weight: 500;
  margin-top: 30px;
  display: inline-block;
}

/* -----------------------------------
    13. Accordion Section CSS
-------------------------------------*/
.accordion-box {
  position: relative;
}
.accordion-box .block {
  position: relative;
  background-color: #ffffff;
  border: none;
  border-bottom: 4px solid #f6f6f6;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.accordion-box .block .acc-btn {
  position: relative;
  width: 100%;
  text-align: left;
  font-size: 20px;
  margin-bottom: 0px;
  cursor: pointer;
  font-weight: 600;
  color: #111111;
  padding: 0 25px;
  height: 65px;
  line-height: 65px;
  text-decoration: none !important;
  text-transform: capitalize;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.accordion-box .block .acc-btn:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f077";
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-weight: 900;
  color: #111111;
  padding: unset;
  transition: all 0.3s ease;
  background: unset;
  height: unset;
  width: unset;
}
.accordion-box .block .acc-btn.collapsed:after {
  content: "\f078";
}
.accordion-box .block .card-header {
  position: relative;
  padding: 0;
  border: none;
  border-radius: unset;
}
.accordion-box .block .content {
  position: relative;
  padding: 0px 40px 25px;
}
.accordion-box .block .play-icon {
  position: relative;
  color: #626262;
  font-size: 18px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background-color: #ffffff;
}
.accordion-box .block .play-icon:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  transition: all 0.3s ease;
}
.accordion-box .block .play-icon .fa {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  left: 0px;
  z-index: 99;
  color: #FE6602;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  border-radius: 50%;
  padding-left: 4px;
  margin-right: 30px;
  display: inline-block;
  margin-top: -20px;
  margin-left: -20px;
  background-color: #ffffff;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.accordion-box .block .play-icon:hover:before {
  background: #FE6602;
}

/* ------------------------------------
    14. Why Choose US Section CSS
---------------------------------------*/
.why-choose-us .choose-us-part .facilities-part .single-facility .icon-part {
  position: relative;
  float: left;
  margin-right: 5px;
}
.why-choose-us .choose-us-part .facilities-part .single-facility .icon-part .shape-img {
  position: relative;
}
.why-choose-us .choose-us-part .facilities-part .single-facility .icon-part i {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #21a7d0;
}
.why-choose-us .choose-us-part .facilities-part .single-facility .icon-part i:before {
  font-size: 28px;
}
.why-choose-us .choose-us-part .facilities-part .single-facility .text-part .title {
  font-size: 22px;
  color: #111111;
  font-weight: bold;
  margin-bottom: 10px;
}
.why-choose-us.style2 .facilities-two .content-part {
  display: flex;
  align-items: center;
}
.why-choose-us.style2 .facilities-two .content-part .icon-part {
  width: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  margin-right: 20px;
  position: relative;
  transition: all 0.3s ease;
}
.why-choose-us.style2 .facilities-two .content-part .icon-part img {
  -webkit-transition: all 0.4s ease;
  transform: scale(1);
}
.why-choose-us.style2 .facilities-two .content-part .icon-part.purple-bg {
  background: #4e49a1;
}
.why-choose-us.style2 .facilities-two .content-part .icon-part.pink-bg {
  background: #ff6666;
}
.why-choose-us.style2 .facilities-two .content-part .icon-part.orange-bg {
  background: #ffaf40;
}
.why-choose-us.style2 .facilities-two .content-part .icon-part.green-bg {
  background: #95cc47;
}
.why-choose-us.style2 .facilities-two .content-part .icon-part:hover {
  transform: scale(0.9);
}
.why-choose-us.style2 .facilities-two .content-part .text-part .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 800;
  color: #4e49a1;
  margin-bottom: 0;
}
.why-choose-us.style2 .video-wrap {
  position: relative;
  display: inline-block;
}
.why-choose-us.style2 .video-wrap .popup-videos {
  color: #4e49a1;
  display: block;
  overflow: hidden;
  max-width: 270px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.why-choose-us.style2 .video-wrap .popup-videos i {
  width: 70px;
  height: 70px;
  line-height: 61px;
  border: 5px solid #4e49a1;
  border-radius: 50%;
  text-align: center;
  font-size: 25px;
  float: left;
  margin-right: 20px;
}
.why-choose-us.style2 .video-wrap .popup-videos i:before {
  padding-left: 5px;
}
.why-choose-us.style2 .video-wrap .popup-videos:hover {
  opacity: 0.7;
}
.why-choose-us.style3 {
  background: url(../images/bg/home12/why-learn-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 200px 0;
}
.why-choose-us.style3 .services-part {
  display: flex;
  box-shadow: 0 0 30px #eee;
  background: #ffffff;
  padding: 15px 30px 20px 30px;
}
.why-choose-us.style3 .services-part .services-icon {
  margin-right: 29px;
}
.why-choose-us.style3 .services-part .services-icon img {
  width: 90px;
}
.why-choose-us.style3 .services-part .services-text .title {
  font-size: 20px;
  line-height: 36px;
  font-weight: 700;
  padding-bottom: 5px;
  margin: 0;
  color: #171f32;
}
.why-choose-us.style3 .services-part .services-text .services-txt {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
  color: #333333;
}

/* ------------------------------------
    15. Team Section CSS
---------------------------------------*/
.rs-team.style1 .team-item {
  position: relative;
  overflow: hidden;
}
.rs-team.style1 .team-item img {
  width: 100%;
}
.rs-team.style1 .team-item .content-part {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  text-align: center;
  z-index: 1;
  transition: all 0.3s ease;
  opacity: 0;
}
.rs-team.style1 .team-item .content-part .name {
  margin-bottom: 8px;
  font-size: 22px;
}
.rs-team.style1 .team-item .content-part .name a {
  color: #ffffff;
}
.rs-team.style1 .team-item .content-part .name a:hover {
  color: #111111;
}
.rs-team.style1 .team-item .content-part .designation {
  color: #ffffff;
  margin-bottom: 16px;
  display: block;
}
.rs-team.style1 .team-item .content-part .social-links li {
  display: inline;
  margin-right: 35px;
}
.rs-team.style1 .team-item .content-part .social-links li a {
  display: inline-block;
  color: #ffffff;
}
.rs-team.style1 .team-item .content-part .social-links li a:hover {
  color: #111111;
}
.rs-team.style1 .team-item .content-part .social-links li:last-child {
  margin: 0;
}
.rs-team.style1 .team-item:after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, 100%) scale(0.1);
  background: #21a7d0;
  opacity: 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.rs-team.style1 .team-item:hover .content-part {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.rs-team.style1 .team-item:hover:after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.9;
}
.rs-team.style1 .owl-item.center .team-item .content-part {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.rs-team.style1 .owl-item.center .team-item:after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.9;
}
.rs-team.style1 .nav-style {
  position: relative;
}
.rs-team.style1 .nav-style .owl-nav {
  display: block;
  position: absolute;
  top: -80px;
  right: 0;
}
.rs-team.style1 .nav-style .owl-nav .owl-prev, .rs-team.style1 .nav-style .owl-nav .owl-next {
  display: inline-block;
}
.rs-team.style1 .nav-style .owl-nav .owl-prev i, .rs-team.style1 .nav-style .owl-nav .owl-next i {
  transition: all 0.3s ease;
}
.rs-team.style1 .nav-style .owl-nav .owl-prev i:before, .rs-team.style1 .nav-style .owl-nav .owl-next i:before {
  font-family: Flaticon;
  font-size: 22px;
}
.rs-team.style1 .nav-style .owl-nav .owl-prev:hover i, .rs-team.style1 .nav-style .owl-nav .owl-next:hover i {
  color: #21a7d0;
}
.rs-team.style1 .nav-style .owl-nav .owl-prev i:before {
  content: "\f134";
}
.rs-team.style1 .nav-style .owl-nav .owl-prev:after {
  content: "/";
  padding: 0 5px 0 5px;
  position: relative;
  top: -3px;
}
.rs-team.style1 .nav-style .owl-nav .owl-next i:before {
  content: "\f133";
}
.rs-team.style1.orange-color .team-item:after {
  background: #FE6602;
}
.rs-team.style7 .team-item {
  position: relative;
  overflow: hidden;
}
.rs-team.style7 .team-item:after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, 100%) scale(0.1);
  background: #c701f1 !important;
  opacity: 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.rs-team.style7 .team-item:hover .content-part {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.rs-team.style7 .team-item:hover:after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.9;
}
.rs-team.inner-style .team-item {
  overflow: hidden;
}
.rs-team.inner-style .team-item .content-part {
  top: unset !important;
  bottom: -205px;
  transform: translateX(-50%) !important;
  width: 100% !important;
  height: 320px !important;
  background: #ffffff;
  border-radius: 50%;
  padding-top: 30px;
  opacity: 1 !important;
  transition: all 0.3s ease;
}
.rs-team.inner-style .team-item .content-part .name a {
  color: #111111 !important;
}
.rs-team.inner-style .team-item .content-part .name a:hover {
  color: #21a7d0 !important;
}
.rs-team.inner-style .team-item .content-part .designation {
  color: #505050 !important;
}
.rs-team.inner-style .team-item .content-part .social-links {
  display: none;
}
.rs-team.inner-style .team-item:hover .content-part {
  bottom: unset;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: unset !important;
  height: unset !important;
  background: transparent;
  border-radius: unset;
  padding-top: 0;
  opacity: 1 !important;
}
.rs-team.inner-style .team-item:hover .content-part .name a {
  color: #ffffff !important;
}
.rs-team.inner-style .team-item:hover .content-part .name a:hover {
  color: #111111 !important;
}
.rs-team.inner-style .team-item:hover .content-part .designation {
  color: #ffffff !important;
}
.rs-team.inner-style .team-item:hover .content-part .social-links {
  display: block;
}
.rs-team.home11-style .team-item .team-thumbnail {
  position: relative;
  overflow: hidden;
}
.rs-team.home11-style .team-item .team-thumbnail .team-img {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.rs-team.home11-style .team-item .team-thumbnail .team-img .team-social-link {
  display: grid;
  border: 30px solid #4e49a1;
  border-radius: 50%;
  width: 196px;
  height: 193px;
  grid-template-columns: auto auto;
  position: absolute;
  right: -196px;
  bottom: -193px;
  padding: 30px 30px 30px 30px;
  opacity: 0;
  z-index: 9;
  transition: all 0.3s ease;
}
.rs-team.home11-style .team-item .team-thumbnail .team-img .team-social-link li {
  display: inline-block;
}
.rs-team.home11-style .team-item .team-thumbnail .team-img .team-social-link li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
}
.rs-team.home11-style .team-item .team-thumbnail .team-img .team-social-link li a:hover {
  color: #21a7d0;
}
.rs-team.home11-style .team-item .team-thumbnail .team-img:before {
  content: "";
  transition: all ease-in-out 0.4s;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 2;
  opacity: 0;
}
.rs-team.home11-style .team-item .team-thumbnail .team-header {
  text-align: center;
  padding-top: 35px;
}
.rs-team.home11-style .team-item .team-thumbnail .team-header .name {
  font-size: 22px;
  line-height: 32px;
  font-weight: 800;
  margin-bottom: 5px;
}
.rs-team.home11-style .team-item .team-thumbnail .team-header .name a {
  color: #4e49a1;
}
.rs-team.home11-style .team-item .team-thumbnail .team-header .name a:hover {
  color: #21a7d0;
}
.rs-team.home11-style .team-item .team-thumbnail .team-header .subject {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: #54647b;
  margin-bottom: 10px;
}
.rs-team.home11-style .team-item .team-thumbnail:hover .team-img .team-social-link {
  right: -50px;
  bottom: -45px;
  opacity: 1;
}
.rs-team.home11-style .team-item .team-thumbnail:hover .team-img .team-social-link li a:hover {
  color: #21a7d0;
}
.rs-team.home11-style .team-item .team-thumbnail:hover .team-img:before {
  opacity: 0.4;
}
.rs-team.home-style15 .team-item .team-wrap {
  position: relative;
  overflow: hidden;
}
.rs-team.home-style15 .team-item .team-wrap .team-img {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.rs-team.home-style15 .team-item .team-wrap .team-img .team-social-link {
  position: absolute;
  top: 10px;
  right: -20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  background: #FE6602;
  padding: 5px 5px 5px 10px;
  border-radius: 3px;
}
.rs-team.home-style15 .team-item .team-wrap .team-img .team-social-link li {
  display: block;
  color: #fff;
}
.rs-team.home-style15 .team-item .team-wrap .team-content {
  text-align: center;
  padding-top: 35px;
}
.rs-team.home-style15 .team-item .team-wrap .team-content .name {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}
.rs-team.home-style15 .team-item .team-wrap .team-content .name a {
  color: #FE6602;
}
.rs-team.home-style15 .team-item .team-wrap .team-content .name a:hover {
  color: #FE6602;
}
.rs-team.home-style15 .team-item .team-wrap .team-content .subject {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: #54647b;
  margin-bottom: 10px;
}
.rs-team.home-style15 .team-item .team-wrap:hover .team-img .team-social-link {
  opacity: 1;
  visibility: visible;
  right: 10px;
}
.rs-team.home-style15 .team-item .team-wrap:hover .team-img .team-social-link li {
  display: block;
  color: #fff;
}
.rs-team.home-style15 .team-item .team-wrap:hover .team-img .team-social-link li a {
  color: #ffffff;
}
.rs-team.home-style15 .team-item .team-wrap:hover .team-img .team-social-link li a:hover {
  color: #171F32;
}

/* -----------------------------------
    16. Team Single Section CSS
-------------------------------------*/
.profile-section {
  position: relative;
}
.profile-section .content-part .title {
  color: #111111;
  font-weight: 600;
  line-height: 1.3em;
  font-size: 26px;
}
.profile-section .content-part p {
  font-size: 16px;
  margin: 0;
}
.profile-section .content-column {
  position: relative;
}
.profile-section .content-column .inner-column {
  position: relative;
}
.profile-section .content-column .inner-column h2, .profile-section .content-column .inner-column .h2 {
  position: relative;
  color: #111111;
  font-weight: 700;
  margin: 0;
}
.profile-section .content-column .inner-column h4, .profile-section .content-column .inner-column .h4 {
  position: relative;
  color: #111111;
  font-weight: 600;
  line-height: 1.3em;
  margin-top: 15px;
  margin-bottom: 20px;
}
.profile-section .content-column .inner-column h5, .profile-section .content-column .inner-column .h5 {
  position: relative;
  color: #111111;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.3em;
  margin-top: 12px;
  margin-bottom: 0px;
}
.profile-section .content-column .inner-column p {
  position: relative;
  color: #626262;
  font-weight: 400;
  line-height: 1.9em;
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 35px;
}
.profile-section .content-column .inner-column .student-list {
  position: relative;
  margin-top: 25px;
  margin-bottom: 10px;
}
.profile-section .content-column .inner-column .student-list li {
  position: relative;
  color: #393939;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3em;
  margin-right: 80px;
  display: inline-block;
  list-style: disc;
  margin-bottom: 20px;
}
.profile-section .content-column .inner-column .student-list li .fa {
  color: #FE6602;
  margin: 0px 2px;
}
.profile-section .content-column .inner-column .student-list li:last-child {
  margin-right: 0px;
}
.profile-section .image-column {
  position: relative;
}
.profile-section .image-column .inner-column {
  position: relative;
  padding: 30px;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.12);
}
.profile-section .image-column .inner-column .image {
  position: relative;
}
.profile-section .image-column .inner-column .image img {
  position: relative;
  display: inline-block;
  border-radius: 5px;
  width: 100%;
}
.profile-section .image-column .team-content h3, .profile-section .image-column .team-content .h3 {
  position: relative;
  font-weight: 700;
  color: #111111;
  margin-top: 30px;
  margin-bottom: 10px;
}
.profile-section .image-column .team-content .text {
  position: relative;
  color: #626262;
  font-size: 16px;
  line-height: 1.7em;
  margin-bottom: 8px;
}
.profile-section .image-column .team-content .personal-info {
  margin-bottom: 20px;
}
.profile-section .image-column .team-content .personal-info li {
  margin: 5px 0;
  display: inline-block;
  padding-right: 15px;
}
.profile-section .image-column .team-content .personal-info li:last-child {
  margin-right: none;
}
.profile-section .image-column .team-content .personal-info li a {
  color: #111111;
}
.profile-section .image-column .team-content .personal-info li a:hover {
  color: #FE6602;
}
.profile-section .image-column .team-content .personal-info li span i:before {
  font-size: 16px;
  margin-right: 10px;
}
.profile-section .image-column .social-box {
  position: relative;
  text-align: center;
}
.profile-section .image-column .social-box a {
  position: relative;
  color: #626262;
  font-size: 28px;
  margin: 0px 5px;
  display: inline-block;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.profile-section .image-column .social-box a:hover {
  color: #FE6602;
}
.profile-section .browse-course-section {
  position: relative;
  margin-top: 50px;
}
.profile-section .browse-course-section .styled-pagination {
  margin-top: 20px;
}
.profile-section .skill-title {
  font-size: 25px;
  margin-top: 15px;
  margin-bottom: 30px;
}
.profile-section .rs-progress {
  height: 8px;
  border: 1px solid #FE6602;
  border-radius: 0;
  overflow: visible;
  padding: 1px;
  background: #fff;
  margin-top: 25px;
}
.profile-section .rs-progress + .rs-progress {
  margin-top: 50px;
}
.profile-section .rs-progress .progress-bar {
  position: relative;
  text-align: left;
  line-height: 4px;
  border-radius: 0;
  box-shadow: none;
  background-color: #FE6602;
  overflow: visible;
}
.profile-section .rs-progress .progress-bar .pb-label {
  position: absolute;
  left: 0px;
  top: -24px;
  color: #666;
  font-size: 15px;
  font-weight: 600;
}
.profile-section .rs-progress .progress-bar .pb-percent {
  position: absolute;
  right: -13px;
  font-weight: 500;
  color: #fff;
  font-size: 10px;
  top: -30px;
  background: #FE6602;
  padding: 8px 5px;
}
.profile-section .rs-progress .progress-bar .pb-percent:after {
  content: "";
  position: absolute;
  border: 5px solid transparent;
  left: 50%;
  border-top-color: #FE6602;
  top: 20px;
  transform: translateX(-50%);
}

/* ------------------------------------
    17. Testimonial Section CSS
---------------------------------------*/
.rs-testimonial.style1 .testi-item {
  background: #f3f8f9;
  max-width: 1000px;
  margin: 0 0 0 auto;
  position: relative;
}
.rs-testimonial.style1 .testi-item .img-part {
  position: absolute;
  left: -240px;
  top: 50px;
}
.rs-testimonial.style1 .testi-item .img-part img {
  border-radius: 5px;
  max-width: 450px;
}
.rs-testimonial.style1 .testi-item .content-part {
  padding: 98px 0 98px 320px;
}
.rs-testimonial.style1 .testi-item .content-part .desc {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  color: #111111;
  font-size: 36px;
  line-height: 46px;
  position: relative;
}
.rs-testimonial.style1 .testi-item .content-part .desc:before, .rs-testimonial.style1 .testi-item .content-part .desc:after {
  content: "\f151";
  font-family: Flaticon;
  font-size: 20px;
  color: #111111;
}
.rs-testimonial.style1 .testi-item .content-part .desc:before {
  transform: rotateY(180deg);
  position: absolute;
  left: -30px;
  top: -13px;
}
.rs-testimonial.style1 .testi-item .content-part .desc:after {
  position: relative;
  bottom: -7px;
  right: -8px;
}
.rs-testimonial.style1 .testi-item .content-part .desc.title-color {
  color: #111111;
}
.rs-testimonial.style1 .testi-item .content-part .name {
  margin: 0;
  color: #111111;
  font-weight: 500;
}
.rs-testimonial.style1 .rs-carousel.nav-style2 .owl-nav {
  bottom: 35px;
  right: 50px;
  top: unset;
}
.rs-testimonial.style2 .donation-part img {
  border-radius: 5px;
  margin-bottom: 22px;
}
.rs-testimonial.style2 .testi-wrap {
  overflow: hidden;
  background: #f3f8f9;
  border-radius: 5px;
  padding: 30px;
}
.rs-testimonial.style2 .testi-wrap .img-part {
  max-width: 209px;
  float: left;
  margin-right: 58px;
}
.rs-testimonial.style2 .testi-wrap .img-part img {
  border-radius: 5px;
}
.rs-testimonial.style2 .testi-wrap .content-part .desc {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  font-family: "Nunito", sans-serif;
  color: #111111;
  display: inline;
  position: relative;
}
.rs-testimonial.style2 .testi-wrap .content-part .desc:before {
  content: "\f151";
  font-family: Flaticon;
  font-size: 20px;
  color: #111111;
}
.rs-testimonial.style2 .testi-wrap .content-part .desc:after {
  content: "\f151";
  font-family: Flaticon;
  font-size: 20px;
  color: #111111;
  position: relative;
  bottom: -7px;
  right: -8px;
}
.rs-testimonial.style2 .testi-wrap .content-part .desc:before {
  transform: rotateY(180deg);
  position: absolute;
  left: -30px;
  top: -13px;
}
.rs-testimonial.style2 .testi-wrap .content-part .desc.title-color {
  color: #111111;
}
.rs-testimonial.style2 .testi-wrap .content-part .info {
  margin-top: 20px;
  color: #505050;
}
.rs-testimonial.style2 .testi-wrap .content-part .info .name {
  margin: 0;
  font-weight: 600;
}
.rs-testimonial.style2 .testi-wrap .content-part.new-content .desc {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  font-family: "Nunito", sans-serif;
  color: #111111;
  display: inline;
  position: relative;
}
.rs-testimonial.style2 .testi-wrap .content-part.new-content .desc:before {
  content: "\f151";
  font-family: Flaticon;
  font-size: 20px;
  color: #111111;
}
.rs-testimonial.style2 .testi-wrap .content-part.new-content .desc:after {
  content: "\f151";
  font-family: Flaticon;
  font-size: 20px;
  color: #111111;
  position: relative;
  bottom: -7px;
  right: -8px;
}
.rs-testimonial.style2 .testi-wrap .content-part.new-content .desc:before {
  transform: rotateY(180deg);
  position: absolute;
  left: -30px;
  top: -13px;
}
.rs-testimonial.style3 .testi-item {
  background-color: #f3f8f9;
  background-image: url(../images/testimonial/cloud-pattern.png);
  background-repeat: no-repeat;
  background-size: 130%;
  background-position: 0 70px;
  border-radius: 10px;
  padding: 40px 45px;
}
.rs-testimonial.style3 .testi-item .user-info img {
  max-width: 84px;
  height: auto;
  margin-bottom: 22px;
}
.rs-testimonial.style3 .testi-item .user-info .name {
  font-size: 20px;
  margin-bottom: 5px;
}
.rs-testimonial.style3 .testi-item .user-info .designation {
  font-size: 14px;
  color: #555555;
  font-weight: 500;
}
.rs-testimonial.style3 .testi-item .user-info .ratings {
  margin-top: 10px;
}
.rs-testimonial.style3 .testi-item .user-info .ratings li {
  display: inline;
}
.rs-testimonial.style3 .testi-item .user-info .ratings li i {
  color: #fcb903;
}
.rs-testimonial.style3 .testi-item .desc {
  font-size: 17px;
  font-style: italic;
}
.rs-testimonial.style3 .owl-dots {
  text-align: center;
  margin-top: 47px;
}
.rs-testimonial.style3 .owl-dots .owl-dot {
  display: inline-block;
  width: 15px;
  height: 5px;
  border-radius: 2.5px;
  background: #21a7d0;
  margin: 0 5px;
  opacity: 0.5;
}
.rs-testimonial.style3 .owl-dots .owl-dot.active {
  opacity: 1;
}
.rs-testimonial.style4 .testi-item {
  border-radius: 10px;
  padding: 30px;
  padding-right: 20px;
  background: #ffffff;
  border: 1px solid rgba(33, 167, 208, 0.1);
  transition: all 0.3s ease;
}
.rs-testimonial.style4 .testi-item .user-img img {
  max-width: 100px;
  height: auto;
}
.rs-testimonial.style4 .testi-item .user-info {
  padding-left: 20px;
}
.rs-testimonial.style4 .testi-item .user-info .name {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
  color: #111111;
}
.rs-testimonial.style4 .testi-item .user-info .name:hover {
  color: #21a7d0;
}
.rs-testimonial.style4 .testi-item .user-info .designation {
  display: block;
}
.rs-testimonial.style4 .testi-item .user-info .desc {
  margin-bottom: 20px;
}
.rs-testimonial.style4 .testi-item .user-info .quote {
  color: #111111;
  font-weight: bold;
}
.rs-testimonial.style4 .center .testi-item {
  border: none;
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.1);
}
.rs-testimonial.style4 .owl-dots {
  text-align: center;
  margin-top: 47px;
}
.rs-testimonial.style4 .owl-dots .owl-dot {
  display: inline-block;
  width: 15px;
  height: 5px;
  border-radius: 2.5px;
  background: #21a7d0;
  margin: 0 5px;
  opacity: 0.5;
}
.rs-testimonial.style4 .owl-dots .owl-dot.active {
  opacity: 1;
}
.rs-testimonial.style4 .owl-stage-outer {
  padding: 10px;
  margin: -10px;
}
.rs-testimonial.style5 {
  background: url(../images/bg/testi-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.rs-testimonial.style5 .testi-item .author-desc {
  position: relative;
  text-align: center;
  padding: 35px 15px;
}
.rs-testimonial.style5 .testi-item .author-desc .desc {
  position: relative;
  background: #ffffff;
  padding: 25px 25px 55px;
}
.rs-testimonial.style5 .testi-item .author-desc .desc .quote {
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
}
.rs-testimonial.style5 .testi-item .author-desc .desc:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #dbf2f7;
  z-index: -1;
  transform: rotate(10deg);
  border-radius: 10px;
}
.rs-testimonial.style5 .testi-item .author-desc .author-img {
  position: absolute;
  bottom: -55px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.rs-testimonial.style5 .testi-item .author-desc .author-img img {
  width: auto;
  border-radius: 50%;
}
.rs-testimonial.style5 .testi-item .author-part {
  text-align: center;
}
.rs-testimonial.style5 .testi-item .author-part .name {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  margin-top: 15px;
}
.rs-testimonial.style6 .testimonial-item {
  display: flex;
}
.rs-testimonial.style6 .testimonial-item .content-part {
  padding: 0 30px;
}
.rs-testimonial.style6 .testimonial-item .content-part .content-wrap .text p {
  font-size: 24px;
  line-height: 40px;
  color: #222222;
  font-style: italic;
}
.rs-testimonial.style6 .testimonial-item .content-part .content-wrap .info .name {
  font-size: 22px;
  line-height: 38px;
  color: #101010;
  margin-bottom: 10px;
}
.rs-testimonial.style6 .testimonial-item .content-part .content-wrap .info .position {
  font-size: 16px;
  line-height: 28px;
  color: #54647b;
}
.rs-testimonial.style7 {
  background: #e7f8fb;
}
.rs-testimonial.style7 .testi-item {
  background: #ffffff !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05) !important;
}
.rs-testimonial.style7 .testi-item .user-info img {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50% !important;
  display: block !important;
}
.rs-testimonial.style8 .testi-item .author-desc {
  position: relative;
  text-align: center;
  padding: 35px 15px;
}
.rs-testimonial.style8 .testi-item .author-desc .desc {
  position: relative;
  background-color: #f9f8f8;
  padding: 25px 25px 55px;
}
.rs-testimonial.style8 .testi-item .author-desc .desc .quote {
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
}
.rs-testimonial.style8 .testi-item .author-desc .desc:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #f9f8f8;
  z-index: -1;
  transform: rotate(10deg);
  border-radius: 10px;
}
.rs-testimonial.style8 .testi-item .author-desc .author-img {
  position: absolute;
  bottom: -55px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.rs-testimonial.style8 .testi-item .author-desc .author-img img {
  margin: auto;
  max-width: 70px;
  border-radius: 50%;
}
.rs-testimonial.style8 .testi-item .author-part {
  text-align: center;
}
.rs-testimonial.style8 .testi-item .author-part .name {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  margin-top: 15px;
}
.rs-testimonial.style8 .owl-dots {
  text-align: center;
  margin-top: 47px;
}
.rs-testimonial.style8 .owl-dots .owl-dot {
  width: 25px;
  height: 10px;
  display: inline-block;
  margin: 0 6px;
  padding: 3px 0;
  border-radius: 30px;
  background: #ed3600;
  border: none;
  transition: all 0.3s ease;
}
.rs-testimonial.style8 .owl-dots .owl-dot:hover, .rs-testimonial.style8 .owl-dots .owl-dot.active {
  width: 40px;
  opacity: 1;
  background: #FE6602;
}
.rs-testimonial.style8 .owl-stage-outer {
  padding: 10px;
  margin: -10px;
}
.rs-testimonial.main-home {
  background: url(../images/bg/main-home.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.rs-testimonial.main-home .testi-item .author-desc {
  padding: 70px 15px;
  background-color: rgba(23, 31, 50, 0.5882352941);
  border-radius: 5px 5px 5px 5px;
}
.rs-testimonial.main-home .testi-item .author-desc .desc {
  text-align: center;
  position: relative;
  color: #ffffff;
  padding: 80px 40px 30px;
  font-size: 23px;
  line-height: 33px;
  font-weight: 500;
  font-style: italic;
}
.rs-testimonial.main-home .testi-item .author-desc .desc .quote {
  width: 66px;
  top: -13px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.rs-testimonial.main-home .testi-item .author-desc .desc:before {
  content: none;
}
.rs-testimonial.main-home .testi-item .author-desc .author-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 80px;
}
.rs-testimonial.main-home .testi-item .author-desc .author-img img {
  width: auto;
  border-radius: 50%;
}
.rs-testimonial.main-home .testi-item .author-part {
  text-align: center;
  padding-top: 45px;
}
.rs-testimonial.main-home .testi-item .author-part .name {
  font-size: 20px;
  font-weight: 700;
  line-height: 45px;
  color: #ffffff;
  display: block;
}
.rs-testimonial.main-home .testi-item .author-part .designation {
  font-size: 16px;
  color: #ffffff;
}
.rs-testimonial.main-home .owl-dots {
  text-align: center;
  margin-top: 47px;
}
.rs-testimonial.main-home .owl-dots .owl-dot {
  width: 25px;
  height: 10px;
  display: inline-block;
  margin: 0 6px;
  padding: 3px 0;
  border-radius: 30px;
  background: #ed3600;
  border: none;
  transition: all 0.3s ease;
}
.rs-testimonial.main-home .owl-dots .owl-dot:hover, .rs-testimonial.main-home .owl-dots .owl-dot.active {
  width: 40px;
  background: #FE6602;
  opacity: 1;
}
.rs-testimonial.main-home .owl-stage-outer {
  padding: 10px;
  margin: -10px;
}
.rs-testimonial.home9-style .testi-item p {
  font-size: 25px;
  font-style: italic;
  color: #111111;
  padding: 15px 0px 15px 0px;
  margin-bottom: 30px;
}
.rs-testimonial.home9-style .testi-item .testi-information {
  color: #505050;
}
.rs-testimonial.home9-style .testi-item .testi-information .name {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 15px;
}
.rs-testimonial.home9-style .testi-item .testi-information .designation {
  font-size: 22px;
  font-weight: 500;
}
.rs-testimonial.home-style1 .testi-item .author-desc {
  padding: 70px 15px;
  background-color: #f3f8f9;
  border-radius: 5px 5px 5px 5px;
}
.rs-testimonial.home-style1 .testi-item .author-desc .desc {
  text-align: center;
  position: relative;
  color: #505050;
  padding: 80px 40px 30px;
  font-size: 23px;
  line-height: 33px;
  font-weight: 500;
  font-style: italic;
}
.rs-testimonial.home-style1 .testi-item .author-desc .desc .quote {
  width: 66px;
  top: -13px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.rs-testimonial.home-style1 .testi-item .author-desc .desc:before {
  content: none;
}
.rs-testimonial.home-style1 .testi-item .author-desc .author-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 80px;
}
.rs-testimonial.home-style1 .testi-item .author-desc .author-img img {
  width: auto;
  border-radius: 50%;
}
.rs-testimonial.home-style1 .testi-item .author-part {
  text-align: center;
  padding-top: 45px;
}
.rs-testimonial.home-style1 .testi-item .author-part .name {
  font-size: 20px;
  font-weight: 700;
  line-height: 45px;
  color: #ffffff;
  display: block;
}
.rs-testimonial.home-style1 .testi-item .author-part .designation {
  font-size: 16px;
  color: #ffffff;
}
.rs-testimonial.home-style1 .owl-dots {
  text-align: center;
  margin-top: 47px;
}
.rs-testimonial.home-style1 .owl-dots .owl-dot {
  width: 40px;
  height: 10px;
  display: inline-block;
  margin: 0 6px;
  padding: 3px 0;
  border-radius: 30px;
  background: #21a7d0;
  border: none;
}
.rs-testimonial.home-style1 .owl-dots .owl-dot:hover, .rs-testimonial.home-style1 .owl-dots .owl-dot.active {
  background: #21a7d0;
  opacity: 1;
}
.rs-testimonial.home-style1 .owl-stage-outer {
  padding: 10px;
  margin: -10px;
}
.rs-testimonial.home11-style .rs-carousel .owl-dots {
  text-align: center;
}
.rs-testimonial.home11-style .rs-carousel .owl-dots .owl-dot {
  position: relative;
  border: none;
  border-radius: 50%;
  background: #21a7d0;
  width: 10px;
  height: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  margin-right: 11px;
}
.rs-testimonial.home11-style .rs-carousel .owl-dots .owl-dot:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: -4px;
  top: -4px;
  border-radius: 50%;
  border-width: 1px;
  border-style: solid;
  border-color: #4e49a1;
  -o-border-image: initial;
     border-image: initial;
}
.rs-testimonial.home11-style .rs-carousel .owl-dots .active {
  background: #4e49a1;
}
.rs-testimonial.home11-style .testi-item .user-info {
  position: relative;
  padding: 25px 30px;
  background: #e7f9fb;
  border: 1px solid #e7f9fb;
}
.rs-testimonial.home11-style .testi-item .user-info .desc {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #54647b;
  margin-bottom: 15px;
}
.rs-testimonial.home11-style .testi-item .user-info .name {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #4e49a1;
  margin-bottom: 0;
}
.rs-testimonial.home11-style .testi-item .user-info .name:hover {
  color: #21a7d0;
}
.rs-testimonial.home11-style .testi-item .user-info .position {
  font-size: 15px;
  margin-bottom: 0;
}
.rs-testimonial.home11-style .testi-item .user-info .position span {
  font-weight: 500;
}
.rs-testimonial.home11-style .testi-item .user-info::before {
  content: "";
  height: 0;
  width: 0;
  top: 30px;
  right: 100%;
  border: solid transparent;
  position: absolute;
  pointer-events: none;
}
.rs-testimonial.home11-style .testi-item .user-info:before {
  border-right-color: #e7f9fb;
  border-width: 15px;
}
.rs-testimonial.orange-color .testi-item .user-info .ratings li i {
  color: #FE6602;
}
.rs-testimonial.orange-color .owl-dots .owl-dot {
  border-color: #FE6602 !important;
  background: #FE6602 !important;
}
.rs-testimonial.home12-style {
  background: url(../images/bg/home12/testi-bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 150px 0;
}
.rs-testimonial.home12-style .testi-item {
  padding: 100px 40px 40px 40px;
  background-color: #ffffff;
  margin-right: 14px;
  margin-bottom: 0px;
}
.rs-testimonial.home12-style .testi-item .item-content-basic {
  position: relative;
  text-align: center;
}
.rs-testimonial.home12-style .testi-item .item-content-basic .desc {
  font-style: italic;
  margin-bottom: 28px;
}
.rs-testimonial.home12-style .testi-item .item-content-basic .desc .quote {
  width: 46px;
  top: -70px;
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}
.rs-testimonial.home12-style .testi-item .item-content-basic .testi-content .img-wrap {
  margin-bottom: 20px;
}
.rs-testimonial.home12-style .testi-item .item-content-basic .testi-content .img-wrap img {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
}
.rs-testimonial.home12-style .testi-item .item-content-basic .testi-content .name {
  font-size: 20px;
  color: #000000;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
}
.rs-testimonial.home12-style .testi-item .item-content-basic .testi-content .designation {
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  color: #555555;
}
.rs-testimonial.home13-style .content {
  margin-bottom: -170px;
}
.rs-testimonial.home13-style .content .sub-title {
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  color: #FE6602;
  text-transform: uppercase;
}
.rs-testimonial.home13-style .content .title {
  font-size: 42px;
  line-height: 52px;
  font-weight: 600;
  color: #ffffff;
}
.rs-testimonial.home13-style .slick-part .slider-nav .slick-list {
  padding: 0 7px !important;
  margin-bottom: 32px;
}
.rs-testimonial.home13-style .slick-part .slider .images-single {
  padding: 0 0 0 6.5px;
}
.rs-testimonial.home13-style .slick-part .slider .images-single img {
  border-radius: 3px;
}
.rs-testimonial.home13-style .slick-part .slider .images-single .polite {
  background: #f00;
}
.rs-testimonial.home13-style .slick-part .slider .images-slide-single .single-testimonial {
  display: flex;
  align-items: center;
}
.rs-testimonial.home13-style .slick-part .slider .images-slide-single .single-testimonial .images-part, .rs-testimonial.home13-style .slick-part .slider .images-slide-single .single-testimonial .content-part {
  width: 50%;
}
.rs-testimonial.home13-style .slick-part .slider .images-slide-single .content-part {
  width: 50%;
  padding: 0px 0px 0px 34px;
}
.rs-testimonial.home13-style .slick-part .slider .images-slide-single .content-part .quote {
  width: 40px;
  margin-bottom: 20px;
}
.rs-testimonial.home13-style .slick-part .slider .images-slide-single .content-part p {
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  padding: 0px 0px 30px 0px;
}
.rs-testimonial.home13-style .slick-part .slider .images-slide-single .content-part .name {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  color: #ffffff;
}
.rs-testimonial.home13-style .slick-part .slider button {
  border: none;
  font-size: 0px;
  background: none;
}
.rs-testimonial.home13-style .slick-part .slider button.slick-prev:before {
  content: "\f137";
  font-family: Flaticon;
  color: #fff;
  font-size: 18px;
  background: #FE6602;
  width: 45px;
  display: block;
  height: 45px;
  line-height: 45px;
  border-radius: 35px;
  right: 40%;
  bottom: 50px;
  position: absolute;
  z-index: 10;
}
.rs-testimonial.home14-style .owl-stage-outer {
  padding: 10px 10px 10px;
  margin: 0 10px;
}
.rs-testimonial.home14-style .testi-item {
  padding: 38px 37px 30px 37px;
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.03);
}
.rs-testimonial.home14-style .testi-item .image-wrap {
  position: relative;
  margin-bottom: 25px;
}
.rs-testimonial.home14-style .testi-item .image-wrap img {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  position: relative;
}
.rs-testimonial.home14-style .testi-item .item-content {
  position: relative;
}
.rs-testimonial.home14-style .testi-item .item-content .quote-positions {
  width: 18px;
  top: 136px;
  position: absolute;
  z-index: 1;
  left: 154px;
}
.rs-testimonial.home14-style .testi-item .item-content p {
  font-size: 18px;
  line-height: 31px;
  font-weight: 400;
  color: #505050;
  margin-bottom: 18px;
}
.rs-testimonial.home14-style .testi-item .testi-content .testi-name {
  font-size: 20px;
  line-height: 34px;
  font-weight: 500;
  color: #101010;
}
.rs-testimonial.home14-style .testi-item .testi-content .testi-title {
  font-size: 18px;
  line-height: 31px;
  font-weight: 400;
  color: #505050;
  display: block;
}

/* ------------------------------------
    18. Blog Section CSS
---------------------------------------*/
.rs-blog.style1 .blog-item {
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid #dfe9eb;
}
.rs-blog.style1 .blog-item .image-part {
  overflow: hidden;
}
.rs-blog.style1 .blog-item .image-part a img {
  transition: all 0.5s;
  transform: scale(1);
  height: 100%;
  width: 100%;
}
.rs-blog.style1 .blog-item .blog-content {
  padding: 37px 19px 30px;
}
.rs-blog.style1 .blog-item .blog-content .title {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 34px;
}
.rs-blog.style1 .blog-item .blog-content .title a {
  color: #111111;
}
.rs-blog.style1 .blog-item .blog-content .title a:hover {
  color: #21a7d0;
}
.rs-blog.style1 .blog-item .blog-content .blog-meta {
  margin-bottom: 11px;
}
.rs-blog.style1 .blog-item .blog-content .blog-meta li {
  position: relative;
  margin-right: 5px;
  padding-right: 15px;
  display: inline-block;
}
.rs-blog.style1 .blog-item .blog-content .blog-meta li i {
  padding-right: 3px;
  font-size: 14px;
}
.rs-blog.style1 .blog-item .blog-content .blog-meta li i.fa-calendar {
  padding-right: 7px;
}
.rs-blog.style1 .blog-item .blog-content .blog-meta li a {
  color: #505050;
}
.rs-blog.style1 .blog-item .blog-content .blog-meta li:last-child {
  margin: 0;
  padding: 0;
}
.rs-blog.style1 .blog-item .blog-content .readon-arrow {
  text-transform: uppercase;
}
.rs-blog.style1 .blog-item:hover .image-part a img {
  transform: scale(1.07);
}
.rs-blog.style1 .events-short {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
  padding: 30px;
  border: 1px solid #dfe9eb;
  border-radius: 3px;
}
.rs-blog.style1 .events-short .date-part {
  position: absolute;
  background: #f3f8f9;
  width: 100px;
  text-align: center;
  padding: 11px 0 22px;
  border-radius: 3px;
}
.rs-blog.style1 .events-short .date-part .month {
  margin-bottom: 10px;
  display: block;
}
.rs-blog.style1 .events-short .date-part .date {
  font-size: 50px;
  font-family: "Nunito", sans-serif;
  color: #21a7d0;
  font-weight: 700;
}
.rs-blog.style1 .events-short .content-part {
  padding-left: 120px;
}
.rs-blog.style1 .events-short .content-part .categorie a {
  color: #505050;
}
.rs-blog.style1 .events-short .content-part .categorie a:hover {
  color: #21a7d0;
}
.rs-blog.style1 .events-short .content-part .title {
  line-height: 1.5;
}
.rs-blog.style1 .events-short .content-part .title a {
  color: #111111;
}
.rs-blog.style1 .events-short .content-part .title a:hover {
  color: #21a7d0;
}
.rs-blog.style1 .events-short.new-style {
  padding: unset;
  border: none;
}
.rs-blog.style1 .events-short.new-style .date-part {
  position: absolute;
  width: 100px;
  text-align: center;
  padding: 11px 0 22px;
  border-radius: 3px;
}
.rs-blog.style1 .events-short.new-style .date-part .month, .rs-blog.style1 .events-short.new-style .date-part .date {
  color: #ffffff;
}
.rs-blog.style1 .events-short.new-style .date-part.bg1 {
  background: #4e49a1;
}
.rs-blog.style1 .events-short.new-style .date-part.bg2 {
  background: #ff6666;
}
.rs-blog.style1 .events-short.new-style .date-part.bg3 {
  background: #ffaf40;
}
.rs-blog.style1 .events-short.new-style .date-part.bg4 {
  background: #95cc47;
}
.rs-blog.style1 .events-short.new-style .content-part .categorie .timesec {
  color: #54647b;
}
.rs-blog.style1 .events-short.new-style .content-part .categorie a {
  color: #4e49a1;
}
.rs-blog.style1 .events-short.new-style .content-part .title {
  padding-right: 62px;
  font-size: 22px;
}
.rs-blog.style1 .events-short.new-style .content-part .title a {
  color: #4e49a1;
}
.rs-blog.style1 .events-short.new-style .content-part .title a:hover {
  color: #FE6602;
}
.rs-blog.style1.modify1 .blog-item {
  border: 1px solid #c7e8f0;
}
.rs-blog.style1.modify1 .blog-item .blog-content {
  padding: 33px 30px 34px;
}
.rs-blog.style1.modify1 .events-short {
  overflow: visible;
  background: #ffffff;
  padding: 6px 0;
  border: none;
  border-radius: 0;
}
.rs-blog.style1.modify1 .events-short .date-part {
  background: #f3f8f9;
}
.rs-blog.style1.modify1 .events-short .date-part.bgc1 {
  background: #dcf1fd;
}
.rs-blog.style1.modify1 .events-short .date-part.bgc2 {
  background: #eaddf8;
}
.rs-blog.style1.modify1 .events-short .date-part.bgc3 {
  background: #f8f6d1;
}
.rs-blog.style1.modify1 .events-short .date-part.bgc4 {
  background: #f9e8e8;
}
.rs-blog.style1.modify1 .events-short .content-part .title {
  font-size: 22px;
}
.rs-blog.style1.home11-style .blog-item {
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid #dfe9eb;
}
.rs-blog.style1.home11-style .blog-item .blog-content {
  padding: 37px 25px 30px;
}
.rs-blog.style1.home11-style .blog-item .blog-content .title a {
  color: #4e49a1;
}
.rs-blog.style1.home11-style .blog-item .blog-content .title a:hover {
  color: #21a7d0;
}
.rs-blog.style1.home11-style .blog-item .blog-content .blog-meta {
  margin-bottom: 11px;
}
.rs-blog.style1.home11-style .blog-item .blog-content .blog-meta li {
  color: #54647b;
}
.rs-blog.style1.home11-style .blog-item .blog-content .btn-part .readon-arrow {
  color: #4e49a1;
}
.rs-blog.style1.home11-style .blog-item .blog-content .btn-part .readon-arrow:after {
  color: #4e49a1;
}
.rs-blog.style1.home11-style .blog-item .blog-content .btn-part .readon-arrow:hover {
  color: #21a7d0;
}
.rs-blog.style1.home11-style .blog-item .blog-content .btn-part .readon-arrow:hover:after {
  color: #21a7d0;
}
.rs-blog.style1.home11-style .blog-item:hover .image-part a img {
  transform: scale(1.07);
}
.rs-blog.style2 .blog-item {
  border-radius: 3px;
  background: #ffffff;
  overflow: hidden;
}
.rs-blog.style2 .blog-item .image-part {
  overflow: hidden;
}
.rs-blog.style2 .blog-item .image-part img {
  transition: all 0.5s;
  transform: scale(1);
}
.rs-blog.style2 .blog-item .blog-content {
  padding: 21px 30px 30px;
  color: #273c66;
  background: #fcfcfc;
}
.rs-blog.style2 .blog-item .blog-content .title {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 34px;
}
.rs-blog.style2 .blog-item .blog-content .title a {
  color: #111111;
}
.rs-blog.style2 .blog-item .blog-content .title a:hover {
  color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content .categories, .rs-blog.style2 .blog-item .blog-content .desc {
  color: #505050;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta {
  margin-bottom: 11px;
  color: #505050;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta li {
  position: relative;
  margin-right: 5px;
  padding-right: 15px;
  display: inline-block;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta li i {
  padding-right: 3px;
  font-size: 14px;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta li i.fa-calendar {
  padding-right: 7px;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta li a {
  color: #273c66;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta li:last-child {
  margin: 0;
  padding: 0;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom {
  overflow: hidden;
  padding-top: 21px;
  margin-top: 21px;
  border-top: 1px solid #dcdfe6;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li {
  display: inline;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li.cmnt-part a {
  color: #273c66;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li.cmnt-part a:hover {
  color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li.btn-part {
  float: right;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li.btn-part .readon-arrow {
  text-transform: uppercase;
  color: #273c66;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li.btn-part .readon-arrow:hover {
  color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content.primary-border {
  border: 1px solid rgba(33, 167, 208, 0.1);
  border-top: none;
}
.rs-blog.style2 .blog-item .blog-content.new-style .title a {
  color: #111111;
}
.rs-blog.style2 .blog-item .blog-content.new-style .title a:hover {
  color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li {
  display: inline;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li.cmnt-part a {
  color: #505050;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li.cmnt-part a:hover {
  color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li.btn-part {
  float: right;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li.btn-part .readon-arrow {
  text-transform: uppercase;
  color: #111111;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li.btn-part .readon-arrow:hover {
  color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.cmnt-part a {
  color: #505050;
}
.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.cmnt-part a:hover {
  color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.btn-part {
  float: right;
}
.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.btn-part .readon-arrow {
  text-transform: uppercase;
  color: #111111;
}
.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.btn-part .readon-arrow:hover {
  color: #21a7d0;
}
.rs-blog.style2 .blog-item:hover .image-part img {
  transform: scale(1.07);
}
.rs-blog.style2.modify .blog-item .blog-content {
  border: none;
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}
.rs-blog.style2.modify .blog-item .blog-content .blog-bottom .btn-part {
  font-weight: 600;
  color: #111111;
}
.rs-blog.style2.modify .blog-item .blog-content .blog-bottom .btn-part .readon-arrow {
  font-weight: 600;
  color: #111111;
}
.rs-blog.style2.modify2 .owl-stage-outer {
  padding-bottom: 10px;
  margin: -10px;
  padding-left: 10px;
}
.rs-blog.style2.modify2 .blog-item {
  overflow: visible !important;
}
.rs-blog.style2.modify2 .blog-item .blog-content {
  background: #ffffff !important;
  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.2) !important;
  transition: all 500ms ease;
  position: relative;
}
.rs-blog.style2.modify2 .blog-item .blog-content .categories.color-bg1 {
  color: #c701f1;
}
.rs-blog.style2.modify2 .blog-item .blog-content .categories.color-bg2 {
  color: #065ce8;
}
.rs-blog.style2.modify2 .blog-item .blog-content .categories.color-bg3 {
  color: #f6075b;
}
.rs-blog.style2.modify2 .blog-item:hover .blog-content {
  transform: translateY(-10px);
}
.rs-blog.main-home .owl-stage-outer {
  padding: 0 10px 10px;
  margin: 0 -10px;
}
.rs-blog.main-home .blog-item {
  background: #fff;
  transition: all 500ms ease;
  border-radius: 5px;
}
.rs-blog.main-home .blog-item .blog-content {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  padding: 40px 35px 16px;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta {
  margin-bottom: 11px;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta li {
  position: relative;
  margin-right: 5px;
  padding-right: 15px;
  display: inline-block;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta li i {
  padding-right: 3px;
  font-size: 14px;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta li i:before {
  padding-right: 7px;
  color: #FE6602;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta li a {
  color: #505050;
}
.rs-blog.main-home .blog-item .blog-content .blog-meta li:last-child {
  margin: 0;
  padding: 0;
}
.rs-blog.main-home .blog-item .blog-content .title {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 34px;
}
.rs-blog.main-home .blog-item .blog-content .title a {
  color: #101010;
}
.rs-blog.main-home .blog-item .blog-content .title a:hover {
  color: #FE6602;
}
.rs-blog.main-home .blog-item .blog-content .desc {
  color: #505050;
  padding-bottom: 20px;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #f4f0f0;
  padding-top: 20px;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .cat-list .post-categories {
  display: flex;
  position: relative;
  padding-left: 22px;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .cat-list .post-categories:before {
  content: "\f02d";
  font-family: "Font Awesome 5 Free";
  font-size: 15px;
  color: #FE6602;
  position: absolute;
  left: 0px;
  top: 1px;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .cat-list .post-categories li {
  font-size: 14px;
  text-transform: capitalize;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .cat-list .post-categories li a {
  color: #505050;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .cat-list .post-categories li a:hover {
  color: #FE6602;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .rs-view-btn a {
  padding: 0px 0px 0px 0px;
  font-family: "Rubik", Sans-serif;
  font-weight: 400;
  color: #505050;
  font-size: 15px;
  position: relative;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .rs-view-btn a:after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  position: relative;
  right: 0px;
  top: 0px;
  display: inline-block;
  margin-left: 3px;
}
.rs-blog.main-home .blog-item .blog-content .btn-btm .rs-view-btn a:hover {
  color: #FE6602;
}
.rs-blog.main-home .blog-item:hover {
  transform: translateY(-10px);
}
.rs-blog.main-home.modify1 .blog-item .blog-content {
  background-color: #F3FCF8;
  padding: 30px 25px 30px 25px;
  border-radius: 0 0 5px 5px;
  box-shadow: unset;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .blog-meta {
  font-size: 14px;
  text-transform: capitalize;
  display: flex;
  justify-content: space-between;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .blog-meta .date, .rs-blog.main-home.modify1 .blog-item .blog-content .blog-meta .admin {
  color: #333333;
  font-size: 14px;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .blog-meta .date i:before, .rs-blog.main-home.modify1 .blog-item .blog-content .blog-meta .admin i:before {
  color: #FE6602;
  padding-right: 5px;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .title a {
  color: #101010;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .title a:hover {
  color: #FE6602;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .cat-list .post-categories:before {
  color: #FE6602;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .cat-list .post-categories li {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .cat-list .post-categories li a {
  color: #333333;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .cat-list .post-categories li a:hover {
  color: #FE6602;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .rs-view-btn a {
  font-weight: 500;
  color: #333333;
  font-size: 15px;
}
.rs-blog.main-home.modify1 .blog-item .blog-content .btn-btm .rs-view-btn a:hover {
  color: #FE6602;
}
.rs-blog.home9-style .blog-item {
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid #dfe9eb;
}
.rs-blog.home9-style .blog-item .image-part {
  overflow: hidden;
}
.rs-blog.home9-style .blog-item .image-part a img {
  transition: all 0.5s;
  transform: scale(1);
  height: 100%;
  width: 100%;
}
.rs-blog.home9-style .blog-item .blog-content {
  padding: 10px 20px 0px 30px;
}
.rs-blog.home9-style .blog-item .blog-content .title {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 34px;
}
.rs-blog.home9-style .blog-item .blog-content .title a {
  color: #101010;
}
.rs-blog.home9-style .blog-item .blog-content .title a:hover {
  color: #FE6602;
}
.rs-blog.home9-style .blog-item .blog-content .txt {
  font-size: 16px;
  color: #505050;
  font-weight: 400;
  margin: 0;
}
.rs-blog.home9-style .blog-item .blog-content .blog-meta {
  margin-bottom: 11px;
}
.rs-blog.home9-style .blog-item .blog-content .blog-meta li {
  position: relative;
  margin-right: 5px;
  padding-right: 15px;
  display: inline-block;
  font-size: 16px;
  color: #505050;
  font-weight: 400;
}
.rs-blog.home9-style .blog-item .blog-content .blog-meta li i {
  padding-right: 3px;
  font-size: 14px;
}
.rs-blog.home9-style .blog-item .blog-content .blog-meta li i:before {
  color: #FE6602;
  padding-right: 5px;
}
.rs-blog.home9-style .blog-item .blog-content .blog-meta li i:before:last-child {
  padding-right: 0;
}
.rs-blog.home9-style .blog-item .blog-content .blog-meta li a {
  color: #505050;
}
.rs-blog.home9-style .blog-item .blog-content .blog-meta li:last-child {
  margin: 0;
  padding: 0;
}
.rs-blog.home9-style .blog-item:hover .image-part a img {
  transform: scale(1.07);
}
.rs-blog.home9-style .events-short-top {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #dfe9eb;
  padding: 25px 39px 38px 25px;
  align-items: flex-start;
  background: #ffffff;
}
.rs-blog.home9-style .events-short-top .date-part {
  background: #eae8e8;
  min-width: 100px;
  text-align: center;
  padding: 11px 0 22px;
  border-radius: 3px;
  margin-right: 25px;
  transition: all 500ms ease;
}
.rs-blog.home9-style .events-short-top .date-part .month {
  margin-bottom: 10px;
  display: block;
  color: #FE6602;
}
.rs-blog.home9-style .events-short-top .date-part .date {
  font-size: 50px;
  color: #FE6602;
  font-weight: 700;
  line-height: 25px;
}
.rs-blog.home9-style .events-short-top .date-part:hover {
  transform: translateY(-10px);
}
.rs-blog.home9-style .events-short-top .content-part .categorie a {
  color: #505050;
}
.rs-blog.home9-style .events-short-top .content-part .categorie a:hover {
  color: #FE6602;
}
.rs-blog.home9-style .events-short-top .content-part .title {
  line-height: 1.5;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 6px;
}
.rs-blog.home9-style .events-short-top .content-part .title a {
  color: #101010;
}
.rs-blog.home9-style .events-short-top .content-part .title a:hover {
  color: #FE6602;
}
.rs-blog.home9-style .events-short-top .content-part .txt {
  font-size: 16px;
  color: #505050;
  margin: 0;
}
.rs-blog.home9-style .short {
  position: relative;
  display: flex;
  overflow: hidden;
  background: #ffffff;
  padding: 30px;
  border: 1px solid #dfe9eb;
  border-radius: 3px;
}
.rs-blog.home9-style .short .date-part {
  position: absolute;
  background: #1c335f;
  width: 100px;
  text-align: center;
  padding: 11px 0 22px;
  border-radius: 3px;
}
.rs-blog.home9-style .short .date-part .month {
  margin-bottom: 10px;
  display: block;
}
.rs-blog.home9-style .short .date-part .date {
  font-size: 50px;
  font-family: "Nunito", sans-serif;
  color: #21a7d0;
  font-weight: 700;
}
.rs-blog.home9-style .short .content-part {
  padding-left: 120px;
}
.rs-blog.home9-style .short .content-part .categorie a {
  color: #505050;
}
.rs-blog.home9-style .short .content-part .categorie a:hover {
  color: #21a7d0;
}
.rs-blog.home9-style .short .content-part .title {
  line-height: 1.5;
}
.rs-blog.home9-style .short .content-part .title a {
  color: #111111;
}
.rs-blog.home9-style .short .content-part .title a:hover {
  color: #21a7d0;
}
.rs-blog.orange-color .blog-item .blog-content .title a:hover {
  color: #FE6602;
}
.rs-blog.orange-color .blog-item .blog-content .readon-arrow:hover {
  color: #FE6602;
}
.rs-blog.orange-color .blog-item .blog-content .readon-arrow:hover:after {
  color: #FE6602;
}
.rs-blog.orange-color .events-short .content-part .title a:hover {
  color: #FE6602;
}
.rs-blog.gym-home .blog-item {
  transition: all 500ms ease;
  border-radius: 5px;
}
.rs-blog.gym-home .blog-item .blog-content {
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #252525;
  background-color: #1D0E15;
  padding: 26px 26px 30px 26px;
}
.rs-blog.gym-home .blog-item .blog-content .post-categories li {
  margin-bottom: 10px;
}
.rs-blog.gym-home .blog-item .blog-content .post-categories li a {
  font-size: 15px;
  color: #FE6602;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.rs-blog.gym-home .blog-item .blog-content .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}
.rs-blog.gym-home .blog-item .blog-content .title a {
  color: #ffffff;
}
.rs-blog.gym-home .blog-item .blog-content .title a:hover {
  color: #FE6602;
}
.rs-blog.gym-home .blog-item .blog-content .blog-meta {
  font-size: 14px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
}
.rs-blog.gym-home .blog-item .blog-content .blog-meta li i {
  padding-right: 3px;
  font-size: 14px;
  color: #FE6602;
}
.rs-blog.gym-home .blog-item .blog-content .blog-meta li i.fa-calendar {
  padding-right: 7px;
}
.rs-blog.gym-home .blog-item:hover {
  transform: translateY(-10px);
}

.rs-inner-blog .blog-item {
  background: #fff;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
}
.rs-inner-blog .blog-item .blog-content {
  padding: 40px 46px 45px;
  overflow: hidden;
}
.rs-inner-blog .blog-item .blog-content .blog-title {
  margin: 4px 0 10px;
  font-size: 26px;
  line-height: 35px;
}
.rs-inner-blog .blog-item .blog-content .blog-title a {
  color: #111111;
}
.rs-inner-blog .blog-item .blog-content .blog-title a:hover {
  color: #21a7d0;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate {
  overflow: hidden;
  margin: 0 0 5px;
  padding: 0 0 12px;
  font-size: 13px;
  display: flex;
  align-items: center;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li {
  margin-right: 15px;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .blog-date {
  display: inline-block;
  font-weight: 400;
  font-size: 13px;
  color: #505050;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .blog-date i {
  color: #21a7d0;
  margin-right: 3px;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .author {
  display: inline-block;
  padding: 0;
  margin-right: 0;
  line-height: normal;
  color: #555;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .author i {
  color: #21a7d0;
  margin-right: 3px;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .tag-line {
  position: relative;
  padding-left: 2px;
  color: #555;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .tag-line i {
  margin-right: 3px;
  color: #21a7d0;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .tag-line i:before {
  font-size: 14px;
  font-weight: 600;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .tag-line a {
  color: #555;
}
.rs-inner-blog .blog-item .blog-content .blog-desc {
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  color: #505050;
  margin-bottom: 35px;
}
.rs-inner-blog .widget-area .widget-title {
  color: #111111;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  padding-bottom: 12px;
}
.rs-inner-blog .widget-area .widget-title:before {
  content: "";
  position: absolute;
  border: 0;
  width: 50px;
  height: 2px;
  background: #FE6602;
  z-index: 1;
  margin-left: 0;
  bottom: 0;
  left: 0;
}
.rs-inner-blog .widget-area .search-widget {
  background: #fff;
  padding: 40px 30px 40px;
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
}
.rs-inner-blog .widget-area .search-widget .search-wrap {
  position: relative;
}
.rs-inner-blog .widget-area .search-widget .search-wrap [type=search] {
  border: 1px solid #ddd;
  color: #444444;
  padding: 12px 17px;
  width: 100%;
  border-radius: 5px;
  position: relative;
}
.rs-inner-blog .widget-area .search-widget .search-wrap button {
  background: transparent;
  border: medium none;
  color: #505050;
  padding: 11px 15px 12px;
  position: absolute;
  display: block;
  right: 0px;
  top: 0;
  z-index: 10;
  font-size: 20px;
  border-radius: 0 5px 5px;
}
.rs-inner-blog .widget-area .search-widget .search-wrap button i:before {
  font-weight: 600;
  font-size: 18px;
}
.rs-inner-blog .widget-area .search-widget .search-wrap button:hover {
  color: #21a7d0;
}
.rs-inner-blog .widget-area .recent-posts {
  background: #fff;
  padding: 40px 30px 40px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
}
.rs-inner-blog .widget-area .recent-posts ul li {
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-weight: 400;
  font-size: 16px;
}
.rs-inner-blog .widget-area .recent-posts ul li a {
  color: #505050;
}
.rs-inner-blog .widget-area .recent-posts ul li a:hover {
  color: #21a7d0;
}
.rs-inner-blog .widget-area .recent-posts-widget {
  background: #fff;
  padding: 40px 30px 40px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
}
.rs-inner-blog .widget-area .recent-posts-widget .show-featured {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.rs-inner-blog .widget-area .recent-posts-widget .show-featured .post-img {
  max-width: 150px;
  padding-right: 15px;
  border-radius: 3px;
  overflow: hidden;
}
.rs-inner-blog .widget-area .recent-posts-widget .show-featured .post-desc a {
  font-size: 15px;
  line-height: 22px;
  color: #111111;
  font-weight: 400;
}
.rs-inner-blog .widget-area .recent-posts-widget .show-featured .post-desc a:hover {
  color: #21a7d0;
}
.rs-inner-blog .widget-area .recent-posts-widget .show-featured .post-desc .date {
  font-size: 12px;
  line-height: 20px;
  color: #21a7d0;
  font-weight: 400;
  display: block;
}
.rs-inner-blog .widget-area .recent-posts-widget .show-featured .post-desc .date i {
  font-size: 12px;
  line-height: 12px;
  color: #21a7d0;
  font-weight: 400;
}
.rs-inner-blog .widget-area .recent-posts-widget .show-featured:last-child {
  margin: 0;
  padding: 0;
  border: none;
}
.rs-inner-blog .widget-area .widget-archives {
  background: #fff;
  padding: 40px 30px 40px;
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
}
.rs-inner-blog .widget-area .widget-archives ul li {
  border: none;
  position: relative;
  padding: 6px 0px 6px 14px;
  margin: 0;
  font-size: 16px;
}
.rs-inner-blog .widget-area .widget-archives ul li a {
  color: #505050;
}
.rs-inner-blog .widget-area .widget-archives ul li a:after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  text-decoration: inherit;
  position: absolute;
  left: 0;
  top: 6px;
  color: #273c66;
}
.rs-inner-blog .widget-area .widget-archives ul li a:hover {
  color: #FE6602;
}
.rs-inner-blog .blog-deatails {
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 0;
}
.rs-inner-blog .blog-deatails .blog-full {
  padding: 40px 45px 40px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta {
  display: flex;
  align-items: center;
  padding: 0 0 30px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta li .p-date {
  color: #555;
  font-size: 14px;
  margin-right: 8px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta li .p-date i {
  font-size: 13px;
  margin-right: 3px;
  color: #21a7d0;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta li .p-date i:before {
  margin-right: 5px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta .Post-cate {
  list-style: none;
  display: inline-block;
  padding-right: 10px;
  color: #555;
  font-size: 14px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta .Post-cate .tag-line i {
  color: #21a7d0;
  margin-right: 3px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta .Post-cate .tag-line i:before {
  margin-right: 4px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta .Post-cate .tag-line a {
  font-weight: 400;
  color: #555;
  font-size: 14px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta .Post-cate .tag-line a:hover {
  color: #21a7d0;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta .post-comment {
  color: #555;
  font-size: 14px;
}
.rs-inner-blog .blog-deatails .blog-full .single-post-meta .post-comment i:before {
  color: #21a7d0;
}
.rs-inner-blog .blog-deatails .blog-full .blog-desc p {
  font-size: 16px;
  font-weight: 400;
  color: #505050;
}
.rs-inner-blog .blog-deatails .blog-full .title {
  color: #111111;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}
.rs-inner-blog .blog-deatails .blog-full .sm-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #111111;
}
.rs-inner-blog .blog-deatails .blog-full .unorder-list li {
  display: block;
  position: relative;
  padding-left: 25px;
  padding-bottom: 15px;
  font-weight: 500;
  line-height: 25px;
}
.rs-inner-blog .blog-deatails .blog-full .unorder-list li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  color: #21a7d0;
  font-size: 20px;
}
.rs-inner-blog .ps-navigation {
  border-top: 1px solid rgba(170, 170, 170, 0.25);
  border-bottom: 1px solid rgba(170, 170, 170, 0.25);
  padding: 30px 0;
  margin: 60px 0 0;
}
.rs-inner-blog .ps-navigation ul li {
  text-align: right;
}
.rs-inner-blog .ps-navigation ul li a {
  display: inline-block;
}
.rs-inner-blog .ps-navigation ul li a .next-link {
  text-transform: uppercase;
  color: #909090;
  margin-top: 0;
  display: block;
}
.rs-inner-blog .ps-navigation ul li a .next-link:hover {
  color: #21a7d0;
}
.rs-inner-blog .ps-navigation ul li a .next-link i:before {
  font-size: 16px;
  font-style: normal;
  color: #505050;
}
.rs-inner-blog .ps-navigation ul li a .link-text {
  font-size: 16px;
  font-weight: 500;
  color: #1c1b1b;
}
.rs-inner-blog .ps-navigation ul li a .link-text:hover {
  color: #21a7d0;
}
.rs-inner-blog .comment-area .comment-full .reply-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: 45px;
  position: relative;
  padding: 0 0 12px;
  color: #111111;
}
.rs-inner-blog .comment-area .comment-full p span {
  font-size: 16px;
  color: #505050;
}
.rs-inner-blog .comment-area .comment-full .from-group {
  width: 100%;
  height: 50px;
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.rs-inner-blog .comment-area .comment-full .submit-btn .submit {
  border: 2px solid;
  border-color: #21a7d0;
  background: #21a7d0;
  position: relative;
  display: inline-block;
  padding: 12px 22px;
  border-radius: 3px;
  line-height: normal;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease 0s;
  text-transform: uppercase;
}
.rs-inner-blog .comment-area .comment-full .submit-btn .submit:hover {
  opacity: 0.9;
}
.rs-inner-blog.orange-color .blog-btn:hover {
  color: #FE6602;
}
.rs-inner-blog.orange-color .blog-btn:hover::after {
  color: #FE6602;
}
.rs-inner-blog.orange-color .widget-area .recent-posts ul li a:hover, .rs-inner-blog.orange-color .blog-item .blog-content .blog-title a:hover, .rs-inner-blog.orange-color .widget-area .search-widget .search-wrap button:hover {
  color: #FE6602;
}
.rs-inner-blog.orange-color .blog-item .blog-content .blog-meta .btm-cate li .author i, .rs-inner-blog.orange-color .blog-item .blog-content .blog-meta .btm-cate li .tag-line i, .rs-inner-blog.orange-color .blog-item .blog-content .blog-meta .btm-cate li .blog-date i {
  color: #FE6602;
}
.rs-inner-blog.orange-color .widget-area .recent-posts-widget .show-featured .post-desc .date {
  color: #FE6602;
}
.rs-inner-blog.orange-color .widget-area .recent-posts-widget .show-featured .post-desc .date i {
  color: #FE6602;
}
.rs-inner-blog.orange-color .widget-area .recent-posts-widget .show-featured .post-desc a:hover {
  color: #FE6602;
}
.rs-inner-blog.orange-color .blog-deatails .blog-full .single-post-meta .Post-cate .tag-line i, .rs-inner-blog.orange-color .blog-deatails .blog-full .single-post-meta .post-comment i::before, .rs-inner-blog.orange-color .blog-deatails .blog-full .single-post-meta .Post-cate .tag-line a:hover, .rs-inner-blog.orange-color .blog-deatails .blog-full .single-post-meta li .p-date i {
  color: #FE6602;
}
.rs-inner-blog.orange-color .blog-deatails .blog-full .unorder-list li::before {
  color: #FE6602;
}
.rs-inner-blog.orange-color .ps-navigation ul li a .link-text:hover {
  color: #FE6602;
}
.rs-inner-blog.orange-color .ps-navigation ul li a .next-link:hover {
  color: #FE6602;
}
.rs-inner-blog.orange-color .ps-navigation ul li a .next-link:hover i::before {
  color: #FE6602;
}
.rs-inner-blog.orange-color blockquote::before {
  background: #FE6602;
}
.rs-inner-blog.orange-color .comment-area .comment-full .submit-btn .submit {
  border-color: #FE6602;
  background: #FE6602;
}
.rs-inner-blog.orange-color .comment-area .comment-full .submit-btn .submit:hover {
  border-color: #ed3600;
  background: #ed3600;
}

/* ------------------------------------
    19. Latest Events Section CSS
---------------------------------------*/
.rs-event .event-item {
  transition: all 0.3s ease;
  position: relative;
}
.rs-event .event-item .event-short {
  text-align: left;
  box-shadow: 0 0 20px #eee;
}
.rs-event .event-item .event-short .featured-img {
  position: relative;
}
.rs-event .event-item .event-short .featured-img img {
  border-radius: 5px 5px 0 0;
}
.rs-event .event-item .event-short .categorie {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
}
.rs-event .event-item .event-short .categorie a {
  background: #FE6602;
  padding: 5px 20px;
  display: inline-block;
  color: #ffffff;
  border-radius: 4px;
}
.rs-event .event-item .event-short .categorie a:hover {
  opacity: 0.9;
}
.rs-event .event-item .event-short .content-part {
  padding: 25px 30px 15px 30px;
  border-radius: 0 0 5px 5px;
}
.rs-event .event-item .event-short .content-part .address {
  padding-bottom: 15px;
  color: #363636;
  font-size: 14px;
}
.rs-event .event-item .event-short .content-part .address i {
  font-size: 13px;
  margin-right: 4px;
}
.rs-event .event-item .event-short .content-part .title {
  font-size: 26px;
  line-height: 32px;
  transition: all 0.8s ease;
}
.rs-event .event-item .event-short .content-part .title a {
  color: #000000;
}
.rs-event .event-item .event-short .content-part .title a:hover {
  color: #FE6602;
}
.rs-event .event-item .event-short .content-part .text {
  color: #363636;
  margin: 0;
  font-size: 14px;
}
.rs-event .event-item .event-short .content-part .event-btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #efefef;
  margin-top: 34px;
  padding-top: 26px;
}
.rs-event .event-item .event-short .content-part .event-btm .date-part {
  font-size: 13px;
}
.rs-event .event-item .event-short .content-part .event-btm .date-part .date i {
  font-size: 13px;
  margin-right: 7px;
}
.rs-event .event-item .event-short .content-part .event-btm .btn-part a {
  background: #FE6602;
  text-transform: capitalize;
  padding: 7px 15px;
  color: #ffffff;
  border-radius: 2px;
  font-size: 14px;
  display: inline-block;
}
.rs-event .event-item .event-short .content-part .event-btm .btn-part a:hover {
  background: #ed3600;
}
.rs-event .event-item:hover {
  transform: translateY(-10px);
}
.rs-event .event-item.home12-style .event-short {
  text-align: left;
  background: #ffffff;
}
.rs-event .event-item.home12-style .event-short .featured-img {
  position: relative;
}
.rs-event .event-item.home12-style .event-short .featured-img img {
  border-radius: 5px 5px 0 0;
}
.rs-event .event-item.home12-style .event-short .content-part {
  padding: 25px 30px 30px 30px;
  border-radius: 0 0 5px 5px;
}
.rs-event .event-item.home12-style .event-short .content-part .all-dates-time {
  display: flex;
}
.rs-event .event-item.home12-style .event-short .content-part .all-dates-time .address {
  color: #363636;
  padding-right: 20px;
}
.rs-event .event-item.home12-style .event-short .content-part .all-dates-time .address i:before {
  color: #FE6602;
}
.rs-event .event-item.home12-style .event-short .content-part .all-dates-time .time {
  color: #363636;
  font-size: 14px;
}
.rs-event .event-item.home12-style .event-short .content-part .all-dates-time .time i:before {
  color: #FE6602;
  padding-right: 5px;
}
.rs-event .event-item.home12-style .event-short .content-part .title {
  font-size: 22px;
  line-height: 32px;
  transition: all 0.8s ease;
}
.rs-event .event-item.home12-style .event-short .content-part .title a {
  color: #000000;
}
.rs-event .event-item.home12-style .event-short .content-part .title a:hover {
  color: #FE6602;
}
.rs-event .event-item.home12-style .event-short .content-part .event-btm {
  border-top: 1px solid #efefef;
}
.rs-event .event-item.home12-style .event-short .content-part .event-btm .date-part {
  font-size: 13px;
  color: #363636;
}
.rs-event .event-item.home12-style .event-short .content-part .event-btm .date-part .date i {
  font-size: 13px;
  margin-right: 7px;
  color: #FE6602;
}
.rs-event .event-item.home12-style .event-short .content-part .event-btm .btn-part a {
  background: #FE6602;
}
.rs-event .event-item.home12-style .event-short .content-part .event-btm .btn-part a:hover {
  background: #D75601;
}
.rs-event .event-item.home12-style .rs-carousel .owl-dots {
  text-align: center;
}
.rs-event .event-item.home12-style .rs-carousel .owl-dots .owl-dot {
  width: 40px;
  height: 10px;
  display: inline-block;
  margin: 0 6px;
  padding: 3px 0;
  border-radius: 30px;
  background: red;
  border: none;
}
.rs-event .event-item.home12-style .rs-carousel .owl-dots .owl-dot:hover {
  width: 40px;
  opacity: 1;
}
.rs-event .event-item.home12-style .rs-carousel .owl-dots .active {
  background: red;
}
.rs-event.home12style {
  background: url(../images/bg/home12/event-bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 150px 0;
}
.rs-event.home12style .owl-dots {
  text-align: center;
  margin-top: 47px;
}
.rs-event.home12style .owl-dots .owl-dot {
  width: 25px;
  height: 8px;
  display: inline-block;
  margin: 0 6px;
  padding: 3px 0;
  border-radius: 30px;
  background: #F8D0B6;
  border: none;
  transition: all 0.3s ease;
}
.rs-event.home12style .owl-dots .owl-dot:hover, .rs-event.home12style .owl-dots .owl-dot.active {
  width: 40px;
  background: #FE6602;
  opacity: 0.5;
}
.rs-event.modify1 .event-item .event-short .featured-img .dates {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: #21a7d0;
  padding: 7px 20px;
  display: inline-block;
  color: #fff;
  border-radius: 15px 15px 0 0;
  right: 0;
  margin: 0 auto;
  max-width: 220px;
  text-align: center;
}
.rs-event.modify1 .event-item .event-short .content-part {
  padding: 30px 30px 35px 30px;
  text-align: center;
}
.rs-event.modify1 .event-item .event-short .content-part .title {
  font-size: 24px;
}
.rs-event.modify1 .event-item .event-short .content-part .time-sec {
  display: inline-flex;
}
.rs-event.modify1 .event-item .event-short .content-part .time-sec .timesec {
  margin-right: 15px;
  font-size: 14px;
}
.rs-event.modify1 .event-item .event-short .content-part .time-sec .timesec i:before {
  font-size: 16px;
}
.rs-event.modify1 .event-item .event-short .content-part .time-sec .address {
  color: #363636;
  font-size: 14px;
}
.rs-event.modify1 .event-item .event-short .content-part .time-sec .address i {
  font-size: 13px;
  margin-right: 4px;
}
.rs-event.modify2 .event-item .event-short {
  transition: all 500ms ease;
  box-shadow: 0 0 20px #eee;
  position: relative;
}
.rs-event.modify2 .event-item .event-short .featured-img {
  position: relative;
  padding: 0px 0px 0px 0px;
}
.rs-event.modify2 .event-item .event-short .featured-img:before {
  opacity: 0.85;
  background: 0 0;
  background: linear-gradient(transparent, #333333), linear-gradient(transparent, #333333);
  background: -o-linear-gradient(transparent, #333333), -o-linear-gradient(transparent, #333333);
  content: "";
  height: 100%;
  bottom: 0;
  left: 0px;
  right: 0px;
  position: absolute;
  z-index: 1;
  transition: all 0.7s ease 0s;
}
.rs-event.modify2 .event-item .event-short .content-part {
  padding: 40px 40px 40px 40px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  border-radius: 0 0 5px 5px;
}
.rs-event.modify2 .event-item .event-short .content-part .title a {
  color: #ffffff;
}
.rs-event.modify2 .event-item .event-short .content-part .address {
  color: #ffffff;
  font-size: 14px;
}
.rs-event.modify2 .event-item .event-short .content-part .address i {
  font-size: 13px;
  margin-right: 4px;
}
.rs-event.modify2 .event-item .event-short .content-part .date-part {
  padding: 0px 0px 10px 0px;
}
.rs-event.modify2 .event-item .event-short .content-part .date-part .date {
  color: #ffffff;
  font-size: 13px;
}
.rs-event.modify2 .event-item .event-short .content-part .date-part .date i {
  font-size: 13px;
  margin-right: 7px;
}
.rs-event.modify2 .event-item .event-short .content-part .time {
  color: #ffffff;
  font-size: 14px;
}
.rs-event.modify2 .event-item .event-short .content-part .time i:before {
  margin: 0;
  font-size: 14px;
  color: #fff;
  margin-right: 4px;
}
.rs-event.home8-style1 .rs-carousel .owl-dots {
  text-align: center;
}
.rs-event.home8-style1 .rs-carousel .owl-dots .owl-dot {
  width: 40px;
  height: 10px;
  display: inline-block;
  margin: 0 6px;
  padding: 3px 0;
  border-radius: 30px;
  background: #FE6602;
  border: none;
}
.rs-event.home8-style1 .rs-carousel .owl-dots .owl-dot:hover {
  width: 40px;
  opacity: 1;
}
.rs-event.home8-style1 .rs-carousel .owl-dots .active {
  background: #FE6602;
}
.rs-event.home8-style1 .owl-stage-outer {
  padding-bottom: 10px;
}
.rs-event.home8-style1 .event-item .event-short .featured-img .dates {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: #FE6602;
  padding: 7px 20px;
  display: inline-block;
  color: #fff;
  border-radius: 15px 15px 0 0;
  right: 0;
  margin: 0 auto;
  max-width: 220px;
  text-align: center;
}
.rs-event.home8-style1 .event-item .event-short .content-part {
  padding: 30px 30px 35px 30px;
  text-align: center;
}
.rs-event.home8-style1 .event-item .event-short .content-part .title {
  font-size: 24px;
}
.rs-event.home8-style1 .event-item .event-short .content-part .time-sec {
  display: inline-flex;
}
.rs-event.home8-style1 .event-item .event-short .content-part .time-sec .timesec {
  padding-right: 4px;
}
.rs-event.home8-style1 .event-item .event-short .content-part .time-sec .timesec i:before {
  color: #FE6602;
  font-size: 14px;
}
.rs-event.home8-style1 .event-item .event-short .content-part .time-sec .address {
  font-size: 14px;
}
.rs-event.home8-style1 .event-item .event-short .content-part .time-sec .address i {
  font-size: 13px;
  margin-right: 5px;
}
.rs-event.home8-style1 .event-item .event-short .content-part .time-sec .address i:before {
  color: #FE6602;
}
.rs-event.orange-color.modify1 .event-item .event-short .featured-img .dates {
  background: #FE6602;
}

.rs-latest-events.style1 .single-img {
  z-index: 1;
  position: relative;
}
.rs-latest-events.style1 .single-img img {
  border-radius: 3px;
}
.rs-latest-events.style1 .event-wrap {
  z-index: 1;
  position: relative;
}
.rs-latest-events.style1 .event-wrap .events-short {
  overflow: hidden;
  background: #ffffff;
  padding: 31px 30px;
  border-radius: 3px;
}
.rs-latest-events.style1 .event-wrap .events-short .date-part {
  width: 100px;
  float: left;
  text-align: center;
  padding: 11px 0 22px;
  border-radius: 3px;
  margin-right: 25px;
}
.rs-latest-events.style1 .event-wrap .events-short .date-part .month {
  margin-bottom: 10px;
  display: block;
}
.rs-latest-events.style1 .event-wrap .events-short .date-part .date {
  font-size: 50px;
  font-family: "Nunito", sans-serif;
  color: #111111;
  font-weight: 700;
}
.rs-latest-events.style1 .event-wrap .events-short .date-part.bgc1 {
  background: #dcf1fd;
}
.rs-latest-events.style1 .event-wrap .events-short .date-part.bgc2 {
  background: #e9fbd5;
}
.rs-latest-events.style1 .event-wrap .events-short .date-part.bgc3 {
  background: #fee2c0;
}
.rs-latest-events.style1 .event-wrap .events-short .content-part .categorie a {
  color: #505050;
}
.rs-latest-events.style1 .event-wrap .events-short .content-part .categorie a:hover {
  color: #21a7d0;
}
.rs-latest-events.style1 .event-wrap .events-short .content-part .title {
  line-height: 1.5;
}
.rs-latest-events.style1 .event-wrap .events-short .content-part .title a {
  color: #111111;
}
.rs-latest-events.style1 .event-wrap .events-short .content-part .title a:hover {
  color: #21a7d0;
}
.rs-latest-events.style1 .event-wrap .btn-part a {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  color: #111111;
  position: relative;
  display: inline-block;
}
.rs-latest-events.style1 .event-wrap .btn-part a:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 3px;
  width: 0;
  height: 1px;
  background: #111111;
  transition: all 0.3s ease;
}
.rs-latest-events.style1 .event-wrap .btn-part a:hover:after {
  left: 0;
  right: auto;
  width: 100%;
}
.rs-latest-events.bg-wrap {
  position: relative;
}
.rs-latest-events.bg-wrap:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 63%;
  height: 100%;
  background: #f3f8f9;
}

/* ------------------------------------
    19. Download Section CSS
---------------------------------------*/
.rs-download-app .mobile-img {
  display: flex;
}
.rs-download-app .mobile-img .apps-image img {
  max-width: 195px;
}

/* ------------------------------------
    20. Partner Section CSS
---------------------------------------*/
.rs-partner .partner-item a img {
  max-width: 163px;
  margin: 0 auto;
}
.rs-partner.style2 .partner-item a img {
  max-width: 100px;
  margin: 0 auto;
}

/* ------------------------------------
    21. Gallery Section CSS
---------------------------------------*/
.rs-gallery .gallery-item {
  padding: 0 30px 30px 0;
}
.rs-gallery .gallery-item .gallery-img a img {
  border-radius: 5px;
}
.rs-gallery .gallery-item .title {
  padding-top: 25px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #111111;
}
.rs-gallery.style2 .gallery-part {
  position: relative;
  overflow: hidden;
}
.rs-gallery.style2 .gallery-part .gallery-img {
  position: relative;
  overflow: hidden;
}
.rs-gallery.style2 .gallery-part .gallery-img a img {
  transform: scale(1);
  transition: all 0.8s ease;
  height: 220px;
}
.rs-gallery.style2 .gallery-part .gallery-img a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #171f32;
  opacity: 0;
  display: block;
  transition: all 0.8s ease;
  z-index: 1;
}
.rs-gallery.style2 .gallery-part:hover .gallery-img a img {
  transform: scale(1.1);
}
.rs-gallery.style2 .gallery-part:hover .gallery-img a:before {
  opacity: 0.4;
}
.rs-gallery.home11-style .gallery-part .gallery-img {
  position: relative;
}
.rs-gallery.home11-style .gallery-part .gallery-img img {
  border-radius: 30px;
}
.rs-gallery.home11-style .gallery-part .gallery-img .content-part {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: #4e49a1;
  padding: 5px 20px;
  display: inline-block;
  color: #fff;
  border-radius: 30px;
  right: 0;
  transition: all 0.4s ease;
}
.rs-gallery.home11-style .gallery-part .gallery-img .content-part .title {
  font-size: 22px;
  line-height: 34px;
  font-weight: 700;
  color: #ffffff;
  padding: 15px 0 15px;
  margin: 0;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  z-index: 1;
  text-align: center;
  width: 100%;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info .title-part {
  font-size: 22px;
  line-height: 34px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #ffffff;
  padding-right: 60px;
  padding-left: 60px;
  margin-bottom: 15px;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info .btn-part a {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #ffffff;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info .btn-part a i {
  padding-left: 6px;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info .btn-part a i:before {
  font-size: 16px;
}
.rs-gallery.home11-style .gallery-part .gallery-img:before {
  content: "";
  background: #4e49a1;
  position: absolute;
  visibility: hidden;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  opacity: 0;
  display: block;
  transition: all 0.4s ease;
  z-index: 1;
}
.rs-gallery.home11-style .gallery-part:hover .content-part {
  visibility: hidden;
  opacity: 0;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img .gallery-info {
  opacity: 1;
  visibility: visible;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img .gallery-info .title-part, .rs-gallery.home11-style .gallery-part:hover .gallery-img .gallery-info p, .rs-gallery.home11-style .gallery-part:hover .gallery-img .gallery-info .btn-part a {
  color: #ffffff;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img:before {
  visibility: visible;
  opacity: 0.9;
}

/* ------------------------------------
    22. CTA Section CSS
---------------------------------------*/
.rs-cta {
  position: relative;
}
.rs-cta .cta-img img {
  min-height: 425px;
  width: 100%;
}
.rs-cta .cta-content {
  position: absolute;
  width: 100%;
  max-width: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rs-cta.style1 {
  background: url(../images/bg/pattern1.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
}
.rs-cta.style1 .partition-bg-wrap {
  position: relative;
}
.rs-cta.style1 .partition-bg-wrap:after, .rs-cta.style1 .partition-bg-wrap:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  bottom: 0;
  z-index: -1;
}
.rs-cta.style1 .partition-bg-wrap:after {
  left: 0;
}
.rs-cta.style1 .partition-bg-wrap:before {
  right: 0;
}
.rs-cta.style2 .video-wrap .popup-videos {
  color: #ffffff;
  display: block;
  overflow: hidden;
  max-width: 270px;
}
.rs-cta.style2 .video-wrap .popup-videos i {
  width: 70px;
  height: 70px;
  line-height: 61px;
  border: 5px solid #ffffff;
  border-radius: 50%;
  text-align: center;
  font-size: 25px;
  float: left;
  margin-right: 20px;
}
.rs-cta.style2 .video-wrap .popup-videos i:before {
  padding-left: 5px;
}
.rs-cta.style2 .video-wrap .popup-videos .title {
  color: #ffffff;
}
.rs-cta.style2 .video-wrap .popup-videos:hover {
  opacity: 0.7;
}
.rs-cta.style2 .partition-bg-wrap {
  position: relative;
}
.rs-cta.style2 .partition-bg-wrap:after {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.rs-cta.style2 .partition-bg-wrap:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: url(../images/cta/style2/left-bg.jpg);
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.rs-cta.style2 .partition-bg-wrap:after {
  background: url(../images/cta/style2/right-bg.jpg);
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
}
.rs-cta.style2 .partition-bg-wrap.inner-page:before {
  background: url(../images/cta/style2/left-bg2.png);
  background-size: cover;
}
.rs-cta.style2 .partition-bg-wrap.inner-page:after {
  background: url(../images/cta/style2/right-bg2.png);
  background-size: cover;
}
.rs-cta.style3 {
  background: url(../images/bg/pattern1.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
}
.rs-cta.style3 .partition-bg-wrap {
  position: relative;
}
.rs-cta.style3 .partition-bg-wrap:after, .rs-cta.style3 .partition-bg-wrap:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  bottom: 0;
  z-index: -1;
}
.rs-cta.style3 .partition-bg-wrap:after {
  background: #21a7d0;
  left: 0;
}
.rs-cta.style3 .partition-bg-wrap:before {
  background: #273c66;
  right: 0;
}
.rs-cta.style7 .partition-bg-wrap {
  background: none !important;
  position: relative;
}
.rs-cta.style7 .partition-bg-wrap:after, .rs-cta.style7 .partition-bg-wrap:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  bottom: 0;
  z-index: -1;
}
.rs-cta.style7 .partition-bg-wrap:after {
  background: url(../images/cta/home7/1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.rs-cta.style7 .partition-bg-wrap:before {
  background: url(../images/cta/home7/2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  right: 0;
}
.rs-cta.main-home .partition-bg-wrap {
  background: none !important;
  position: relative;
  padding: 130px 0;
}
.rs-cta.main-home .partition-bg-wrap:after, .rs-cta.main-home .partition-bg-wrap:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  bottom: 0;
  z-index: -1;
}
.rs-cta.main-home .partition-bg-wrap:after {
  background: url(../images/cta/home1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.rs-cta.main-home .partition-bg-wrap:before {
  background: url(../images/cta/main-home.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  right: 0;
}
.rs-cta.home9-style .partition-bg-wrap {
  background: none !important;
  position: relative;
  padding: 100px 0;
}
.rs-cta.home9-style .partition-bg-wrap:after, .rs-cta.home9-style .partition-bg-wrap:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  bottom: 0;
  z-index: -1;
}
.rs-cta.home9-style .partition-bg-wrap:after {
  background: url(../images/cta/covid-19.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.rs-cta.home9-style .partition-bg-wrap:before {
  background: #1c335f;
  background-size: cover;
  background-repeat: no-repeat;
  right: 0;
}
.rs-cta.section-wrap .content-wrap {
  padding: 100px 100px 100px 105px;
  background: #273c66;
}
.rs-cta.section-wrap .content-wrap .text-part {
  padding-right: 400px;
}
.rs-cta.section-wrap .content-wrap .text-part .sub-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.rs-cta.section-wrap .content-wrap .text-part .title {
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}
.rs-cta.section-wrap .content-wrap .text-part .desc {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 40px;
}
.rs-cta.section-wrap .content {
  max-width: 700px;
  padding-left: 90px;
  padding-right: 15px;
}
.rs-cta.home11-style {
  background: url(../images/cta/home11.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
}
.rs-cta.home-style14 {
  max-width: 700px;
  margin: 0 auto;
  background: url(../images/bg/home14/cta.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 44px 30px 44px 30px;
  border-radius: 5px 5px 5px 5px;
}
.rs-cta.home-style14 .content-part .sub-text {
  font-family: "Nunito", Sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FE6602;
  display: block;
  margin-bottom: 10px;
}
.rs-cta.home-style14 .content-part .title {
  font-family: "Nunito", Sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #101010;
  margin: 0px 0px 0px 0px;
}
.rs-cta.effects-layer .effects-bg .content-part {
  padding: 56px 244px 60px 50px;
}
.rs-cta.effects-layer .effects-bg .content-part .title {
  font-size: 24px;
  line-height: 40px;
  font-weight: 800;
  color: #101010;
  margin-bottom: 13px;
}
.rs-cta.effects-layer .effects-bg.apply-bg {
  background-color: #F9F7F8;
  background-image: url(../images/cta/style3/1-2.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  border-radius: 4px 4px 4px 4px;
  margin-top: 20px;
}
.rs-cta.effects-layer .effects-bg.enroll-bg {
  background-color: #F9F7F8;
  background-image: url(../images/cta/style3/2.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  border-radius: 4px 4px 4px 4px;
  margin-top: 20px;
}

/* ------------------------------------
    23. Counter Section CSS
---------------------------------------*/
.rs-counter .counter-item .rs-count {
  position: relative;
  display: inline-block;
  font-size: 42px;
  line-height: 1;
  color: #111111;
  padding-right: 25px;
  margin-bottom: 15px;
}
.rs-counter .counter-item .rs-count:before {
  content: "";
  position: absolute;
  right: 0;
}
.rs-counter .counter-item .rs-count.plus:before {
  content: "+";
}
.rs-counter .counter-item .rs-count.kplus:before {
  content: "k+";
  right: -25px;
}
.rs-counter .counter-item .rs-count.percent:before {
  content: "%";
  right: -15px;
}
.rs-counter .counter-item .title {
  font-size: 22px;
  color: #505050;
}
.rs-counter .counter-item .counter-text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}
.rs-counter.style2-about .counter-item .rs-count {
  color: #111111;
}
.rs-counter.style2-about .counter-item .title {
  font-size: 22px;
  color: #505050;
}
.rs-counter.style7 .counter-item .rs-count.purple-color {
  color: #c701f1;
}
.rs-counter.style7 .counter-item .rs-count.blue-color {
  color: #065ce8;
}
.rs-counter.style7 .counter-item .rs-count.pink-color {
  color: #f6075b;
}
.rs-counter.style7 .counter-item .rs-count.orange-color {
  color: #ffbc00;
}
.rs-counter.style7 .counter-item .title {
  color: #54647b;
}
.rs-counter.style-home8 .counter-item {
  padding: 40px 10px 32px 10px;
  background-color: #F9F8F8;
  border-radius: 4px 4px 4px 4px;
}
.rs-counter.style-home8 .counter-item .rs-count {
  color: #FE6602;
}
.rs-counter.style-home8 .counter-item .title {
  color: #101010;
}
.rs-counter.home12-style .counter-item .rs-count, .rs-counter.home12-style .counter-item .prefix {
  color: #FE6602;
  font-size: 42px;
  font-weight: 900;
  line-height: 51px;
  font-family: "Nunito", Sans-serif;
}
.rs-counter.home12-style .counter-item .title {
  color: #505050;
}
.rs-counter.home12-style .counter-item .title:hover {
  color: #FE6602;
}
.rs-counter.home13-style .counter-item {
  transition: all 500ms ease;
}
.rs-counter.home13-style .counter-item .rs-count {
  color: #FE6602;
  font-size: 42px;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 5px;
}
.rs-counter.home13-style .counter-item .title {
  font-size: 22px;
  font-weight: 500;
  line-height: 37px;
  color: #ffffff;
}
.rs-counter.home13-style .counter-item:hover {
  transform: translateY(-5px);
}

/* ------------------------------------
    24. Newsletter Section CSS
---------------------------------------*/
.rs-newsletter.style1 .newsletter-wrap {
  background: url(../images/bg/newsletter-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 3px;
  padding: 60px 70px;
  position: relative;
}
.rs-newsletter.style1 .newsletter-wrap .content-part .sec-title {
  display: flex;
  align-items: center;
}
.rs-newsletter.style1 .newsletter-wrap .content-part .sec-title .title-icon img {
  max-width: 50px;
  margin-right: 20px;
}
.rs-newsletter.style1 .newsletter-wrap .newsletter-form {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.rs-newsletter.style1 .newsletter-wrap .newsletter-form input, .rs-newsletter.style1 .newsletter-wrap .newsletter-form button {
  outline: none;
  border: none;
}
.rs-newsletter.style1 .newsletter-wrap .newsletter-form input {
  background: #ffffff;
  width: 100%;
  color: #505050;
  padding: 17px 30px;
  padding-right: 150px;
}
.rs-newsletter.style1 .newsletter-wrap .newsletter-form button {
  position: absolute;
  right: 0;
  top: 0;
  background: #273c66;
  color: #ffffff;
  padding: 17px 40px;
  transition: all 0.3s ease;
}
.rs-newsletter.style1 .newsletter-wrap .newsletter-form button:hover {
  background: #D75601;
}
.rs-newsletter.style1.modify1 .newsletter-wrap {
  background: url(../images/bg/newslatter-bg15.jpg);
}
.rs-newsletter.style1.modify1 .newsletter-wrap .newsletter-form button {
  background: #FE6602;
}
.rs-newsletter.style1.modify1 .newsletter-wrap .newsletter-form button:hover {
  background: #FE6602;
}
.rs-newsletter.style2 {
  background: url(../images/bg/newsletter-bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.rs-newsletter.style2 .sec-title .title {
  margin-bottom: 10px;
}
.rs-newsletter.style2 .sec-title .sub-title {
  margin: 0;
  text-transform: capitalize;
}
.rs-newsletter.style2 .newsletter-wrap {
  border-radius: 3px;
  padding: 60px 70px;
  padding-left: 0;
  position: relative;
}
.rs-newsletter.style2 .newsletter-wrap .newsletter-form {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  max-width: 500px;
}
.rs-newsletter.style2 .newsletter-wrap .newsletter-form input, .rs-newsletter.style2 .newsletter-wrap .newsletter-form button {
  outline: none;
  border: none;
}
.rs-newsletter.style2 .newsletter-wrap .newsletter-form input {
  background: #ffffff;
  width: 100%;
  color: #505050;
  padding: 17px 30px;
  padding-right: 150px;
}
.rs-newsletter.style2 .newsletter-wrap .newsletter-form button {
  position: absolute;
  right: 0;
  top: 0;
  background: #21a7d0;
  color: #ffffff;
  padding: 17px 40px;
  transition: all 0.3s ease;
}
.rs-newsletter.style2 .newsletter-wrap .newsletter-form button:hover {
  background: #2db4de;
}
.rs-newsletter.style2.home11-style {
  background: url(../images/bg/home11-news.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.rs-newsletter.style2.home11-style .sec-title2 .title {
  margin-bottom: 10px;
}
.rs-newsletter.style2.home11-style .sec-title2 .sub-title {
  margin: 0;
  text-transform: capitalize;
}
.rs-newsletter.style2.home11-style .newsletter-wrap {
  padding: unset;
}
.rs-newsletter.style2.home11-style .newsletter-wrap .newsletter-form input {
  outline: none;
  border: none;
}
.rs-newsletter.style2.home11-style .newsletter-wrap .newsletter-form button {
  outline: none;
  border: none;
  position: absolute;
  right: 5px;
  top: 5px;
  background: #4e49a1;
  color: #ffffff;
  padding: 12px 40px 12px;
  border-radius: 5px;
}
.rs-newsletter.style2.home11-style .newsletter-wrap .newsletter-form button:hover {
  background: #625eaa;
}
.rs-newsletter.style6 .newsletter-wrap .content-part .title {
  font-size: 42px;
  line-height: 46px;
  font-weight: 600;
  color: #101010;
}
.rs-newsletter.style6 .newsletter-wrap .content-part .sub-title {
  font-weight: 400;
  line-height: 30px;
  font-size: 20px;
  color: #54647b;
}
.rs-newsletter.style6 .newsletter-wrap .newsletter-form {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  border-radius: 4px;
  overflow: hidden;
}
.rs-newsletter.style6 .newsletter-wrap .newsletter-form input, .rs-newsletter.style6 .newsletter-wrap .newsletter-form button {
  outline: none;
  border: none;
}
.rs-newsletter.style6 .newsletter-wrap .newsletter-form input {
  background: #ffffff;
  color: #505050;
  padding: 18px 40px;
  padding-right: 150px;
}
.rs-newsletter.style6 .newsletter-wrap .newsletter-form button {
  position: absolute;
  right: 0;
  top: 0;
  background: #21a7d0;
  color: #ffffff;
  padding: 17px 40px;
  transition: all 0.3s ease;
  border-radius: 0 0 5px 5px;
}
.rs-newsletter.style6 .newsletter-wrap .newsletter-form button:hover {
  background: #D75601;
}
.rs-newsletter.style6 .newsletter-wrap .newsletter-form #email {
  width: 100%;
}
.rs-newsletter.style6 .newsletter-wrap .newsletter-form span {
  margin: 0;
}
.rs-newsletter.modify .newsletter-wrap .newsletter-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  background: #21a7d0;
  color: #ffffff;
  padding: 14px 38px;
  transition: all 0.3s ease;
  border-radius: 3px;
}
.rs-newsletter.modify.home13 .newsletter-wrap .newsletter-form button {
  background: #FE6602;
}
.rs-newsletter.modify.home13 .newsletter-wrap .newsletter-form button:hover {
  background: #D75601;
}
.rs-newsletter.home8-style1 .content-wrap .newsletter-form {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  border-radius: 4px;
  overflow: hidden;
}
.rs-newsletter.home8-style1 .content-wrap .newsletter-form input, .rs-newsletter.home8-style1 .content-wrap .newsletter-form button {
  outline: none;
  border: none;
}
.rs-newsletter.home8-style1 .content-wrap .newsletter-form input {
  background: #ffffff;
  color: #505050;
  padding: 18px 40px;
  padding-right: 150px;
}
.rs-newsletter.home8-style1 .content-wrap .newsletter-form button {
  position: absolute;
  right: 0;
  top: 0;
  background: #FE6602;
  color: #ffffff;
  padding: 17px 40px;
  transition: all 0.3s ease;
  border-radius: 0 3px 3px 0;
}
.rs-newsletter.home8-style1 .content-wrap .newsletter-form button:hover {
  background: #D75601;
}
.rs-newsletter.home8-style1 .content-wrap .newsletter-form #email {
  width: 100%;
}
.rs-newsletter.main-home .newsletter-wrap {
  background: #171f32;
  padding: 60px 70px;
  position: relative;
  border-radius: 5px;
}
.rs-newsletter.main-home .newsletter-wrap .newsletter-form {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.rs-newsletter.main-home .newsletter-wrap .newsletter-form input, .rs-newsletter.main-home .newsletter-wrap .newsletter-form button {
  outline: none;
  border: none;
}
.rs-newsletter.main-home .newsletter-wrap .newsletter-form input {
  background: #ffffff;
  width: 100%;
  color: #505050;
  padding: 17px 30px;
  padding-right: 150px;
}
.rs-newsletter.main-home .newsletter-wrap .newsletter-form button {
  position: absolute;
  right: 0;
  top: 0;
  background: #FE6602;
  color: #ffffff;
  padding: 17px 40px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.rs-newsletter.main-home .newsletter-wrap .newsletter-form button:hover {
  background: #FF6030;
}
.rs-newsletter.orange-color .newsletter-wrap {
  background: #171F32;
}
.rs-newsletter.orange-color .newsletter-wrap .newsletter-form button {
  background: #FE6602;
}
.rs-newsletter.orange-color .newsletter-wrap .newsletter-form button:hover {
  background: #ff683b;
}
.rs-newsletter.yellow-color .newsletter-wrap {
  background: #172e58;
}
.rs-newsletter.yellow-color .newsletter-wrap .newsletter-form button {
  background: #FE6602;
  color: #1c335f;
}
.rs-newsletter.yellow-color .newsletter-wrap .newsletter-form button:hover {
  background: #ffcb0f;
}
.rs-newsletter.green-color .newsletter-wrap {
  background: #FE6602;
}
.rs-newsletter.green-color .newsletter-wrap .newsletter-form {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.rs-newsletter.green-color .newsletter-wrap .newsletter-form input, .rs-newsletter.green-color .newsletter-wrap .newsletter-form button {
  outline: none;
  border: none;
}
.rs-newsletter.green-color .newsletter-wrap .newsletter-form input {
  background: #127c4b;
}
.rs-newsletter.green-color .newsletter-wrap .newsletter-form button {
  background: #0fcb75;
  text-transform: uppercase;
}
.rs-newsletter.green-color .newsletter-wrap .newsletter-form button:hover {
  background: #22cc7f;
}
.rs-newsletter.green-color .newsletter-wrap ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ffffff;
  opacity: 1;
}
.rs-newsletter.green-color .newsletter-wrap ::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
  opacity: 1;
}
.rs-newsletter.green-color .newsletter-wrap :-ms-input-placeholder {
  /* IE 10+ */
  color: #ffffff;
  opacity: 1;
}
.rs-newsletter.green-color .newsletter-wrap :-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
  opacity: 1;
}

/* ------------------------------------
    25. Publication Section CSS
---------------------------------------*/
.rs-publication .product-list .image-product {
  position: relative;
  transition: all 0.3s;
}
.rs-publication .product-list .image-product .overley i {
  position: absolute;
  bottom: 0px;
  right: 22px;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.rs-publication .product-list .image-product .overley i:before {
  font-size: 30px;
  color: #ffffff;
  font-weight: 400;
  background: #21a7d0;
  padding: 0px 14px 4px;
  height: 60px;
  width: 60px;
  line-height: 60px;
  display: block;
  border-radius: 5px;
}
.rs-publication .product-list .image-product .overley i:hover:before {
  background: #111111;
  color: #ffffff;
  transition: all 0.3s ease;
}
.rs-publication .product-list .content-desc {
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  padding: 30px 0;
  border-style: solid;
  border-width: 0px 1px 1px 1px;
  border-color: rgba(22, 170, 202, 0.168627451);
}
.rs-publication .product-list .content-desc .product-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 32px;
  margin-bottom: 12px;
}
.rs-publication .product-list .content-desc .product-title a {
  color: #101010;
}
.rs-publication .product-list .content-desc .price {
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  color: #54647b;
}
.rs-publication .product-list:hover .image-product .overley i {
  opacity: 1;
  visibility: visible;
  bottom: 280px;
}

/* ------------------------------------
    26. Facilities Section CSS
---------------------------------------*/
.rs-facilities .img-part {
  position: relative;
}
.rs-facilities .img-part .media-icon {
  position: absolute;
  left: 80px;
  top: 90px;
}
.rs-facilities .choose-part {
  max-width: 700px;
  border-radius: 10px;
  padding: 80px 40px;
  background: #e7f8fb;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.rs-facilities .choose-part .our-facilities {
  display: flex;
  align-items: center;
}
.rs-facilities .choose-part .our-facilities .icon-part img {
  max-width: 55px;
}
.rs-facilities .choose-part .our-facilities .content-part .text-part {
  padding-left: 30px;
}
.rs-facilities .choose-part .our-facilities .content-part .text-part .title {
  font-size: 24px;
  line-height: 22px;
  font-weight: 800;
  color: #101010;
  margin: 0;
  padding-bottom: 10px;
}
.rs-facilities .choose-part .our-facilities .content-part .text-part .desc {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #54647b;
  margin: 0;
}

/*----------------------------------------
    27. Faq Section CSS
----------------------------------------*/
.rs-faq-part .content-part .title .text-part {
  font-size: 20px;
  color: #111111;
  line-height: 28px;
  font-weight: 700;
  text-transform: uppercase;
}
.rs-faq-part .content-part .accordion {
  border-width: 12px;
}
.rs-faq-part .content-part .accordion .card {
  margin-bottom: 15px;
  border: none;
}
.rs-faq-part .content-part .accordion .card:last-child {
  margin-bottom: 0;
}
.rs-faq-part .content-part .accordion .card .card-header {
  padding: 0 !important;
  border: none;
}
.rs-faq-part .content-part .accordion .card .card-header .card-link {
  font-size: 17px;
  font-weight: 600;
  line-height: 28px;
  color: #ffffff;
  display: block;
  padding: 15px 15px;
  text-transform: capitalize;
  background: #21a7d0;
}
.rs-faq-part .content-part .accordion .card .card-header .card-link.collapsed {
  background: #f9f8ff;
  color: #505050;
}
.rs-faq-part .content-part .accordion .card .card-body {
  background: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  color: #505050;
  padding: 15px 14px 15px !important;
  border: 1px solid #f9f8ff;
}
.rs-faq-part.style1 .main-part {
  background: #f9f8f8;
  padding: 60px 60px 70px;
}
.rs-faq-part.style1 .main-part .title .text-part {
  font-size: 36px;
  color: #111111;
  line-height: 46px;
  font-weight: 700;
}
.rs-faq-part.style1 .main-part .faq-content .accordion {
  border-width: 12px;
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card {
  margin-bottom: 25px;
  border: none;
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card:last-child {
  margin-bottom: 0;
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card .card-header {
  display: flex;
  align-items: center;
  padding: 0 !important;
  border: none;
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card .card-header .card-link {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 60px;
  height: 65px;
  line-height: 65px;
  font-size: 16px;
  font-weight: 600;
  background: #21a7d0;
  box-shadow: 0 0 49px 0 rgba(0, 0, 0, 0.08);
  color: #ffffff;
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card .card-header .card-link:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f1f7";
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-weight: 400;
  background: unset;
  height: unset;
  width: unset;
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card .card-header .card-link.collapsed {
  background: #ffffff;
  color: #111111;
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card .card-header .card-link.collapsed:after {
  content: "\f0a2";
}
.rs-faq-part.style1 .main-part .faq-content .accordion .card .card-body {
  background: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  color: #505050;
  padding: 15px 14px 15px !important;
  width: 100%;
}
.rs-faq-part.style1 .main-part.new-style {
  background: #f3fcf8;
  padding: 49px 50px 70px;
}
.rs-faq-part.style1 .main-part.new-style .faq-content .accordion .card:last-child {
  margin-bottom: 0;
}
.rs-faq-part.style1 .main-part.new-style .faq-content .accordion .card .card-header .card-link {
  background: #FE6602;
}
.rs-faq-part.style1 .main-part.new-style .faq-content .accordion .card .card-header .card-link:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-weight: 900;
}
.rs-faq-part.style1 .main-part.new-style .faq-content .accordion .card .card-header .card-link.collapsed {
  background: #ffffff;
  color: #111111;
}
.rs-faq-part.style1 .main-part.new-style .faq-content .accordion .card .card-header .card-link.collapsed:after {
  content: "\f105";
}
.rs-faq-part.style1 .main-part.new-style .faq-content .accordion .card .card-body {
  padding: 20px 14px 35px !important;
}
.rs-faq-part.style1 .img-part {
  background: url(../images/faq/1.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  min-height: 615px;
}
.rs-faq-part.orange-color .content-part .accordion .card .card-header .card-link, .rs-faq-part.orange-color .main-part .faq-content .accordion .card .card-header .card-link {
  background: #FE6602;
}
.rs-faq-part.orange-color .content-part .accordion .card .card-header .card-link.collapsed, .rs-faq-part.orange-color .main-part .faq-content .accordion .card .card-header .card-link.collapse {
  background: #f9f8ff;
}

/* ------------------------------------
    28. Error Section CSS
---------------------------------------*/
.rs-page-error {
  margin: 3rem auto 3rem auto !important;
  padding: 3rem 1rem 3rem 1rem !important;
}
.rs-page-error .error-text {
  color: #111111;
  text-align: center;
}
.rs-page-error .error-text .error-code {
  font-size: 5rem;
  color: #111111;
  position: relative;
}
.rs-page-error .error-text .error-code:after {
  position: absolute;
  content: "";
  background: #eee;
  height: 1px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
}
.rs-page-error .error-text h3.error-message, .rs-page-error .error-text .error-message.h3 {
  color: #111111;
}
.rs-page-error .error-text form {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}
.rs-page-error .error-text form input {
  border: 1px solid #ddd;
  color: #444444;
  padding: 10px 17px;
  width: 100%;
  border-radius: 5px;
  margin-bottom: 19px;
}
.rs-page-error .error-text form button {
  background: transparent;
  border: medium none;
  color: #666666;
  padding: 11px 16px;
  position: absolute;
  right: 0px;
  top: 0;
  z-index: 10;
  font-size: 20px;
  outline: none;
  border-radius: 25px;
}
.rs-page-error.generic .error-text .error-code {
  font-size: 5rem;
}

/*----------------------------------------
    29. Shop Section CSS
----------------------------------------*/
.rs-shop-part .woocommerce-result-count {
  font-size: 15px;
  line-height: 26px;
  color: #505050;
  font-weight: 400;
  margin: 0;
}
.rs-shop-part .from-control {
  float: right;
  font-size: 15px;
  color: #505050;
  font-weight: 400;
  vertical-align: top;
  padding: 10px;
  border: 1px solid #ced4da;
  border-radius: 5px;
}
.rs-shop-part .product-list .image-product {
  position: relative;
}
.rs-shop-part .product-list .image-product .overley i {
  position: absolute;
  bottom: 150px;
  right: 13px;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.rs-shop-part .product-list .image-product .overley i:before {
  font-size: 30px;
  color: #505050;
  font-weight: 400;
  background: #ffffff;
  border: none;
  padding: 8px 10px 8px;
  height: 45px;
  width: 45px;
  line-height: 45px;
}
.rs-shop-part .product-list .image-product .onsale {
  font-size: 13px;
  color: #ffffff;
  font-weight: 700;
  line-height: 40px;
  background: #273c66;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 13px;
  right: 13px;
}
.rs-shop-part .product-list .content-desc .loop-product-title {
  margin: 0;
  font-size: 18px;
  line-height: 50px;
  color: #505050;
  font-weight: 700;
}
.rs-shop-part .product-list .content-desc .loop-product-title a {
  color: #111111;
  font-size: 22px;
  font-weight: 600;
}
.rs-shop-part .product-list .content-desc .loop-product-title a:hover {
  color: #21a7d0;
}
.rs-shop-part .product-list .content-desc .price {
  font-size: 20px;
  line-height: 30px;
  color: #21a7d0;
  font-weight: 700;
  margin: 0;
}
.rs-shop-part .product-list .content-desc .price del {
  opacity: 0.6;
  padding-right: 10px;
}
.rs-shop-part .product-list:hover .image-product .overley i {
  opacity: 1;
  visibility: visible;
  bottom: 13px;
}
.rs-shop-part.part2 {
  /*Shop Single CSS*/
}
.rs-shop-part.part2 .img-part a {
  border: 1px solid #505050;
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: #505050;
  background: #ffffff;
}
.rs-shop-part.part2 .rs-single-product .tab-area ul.nav-tabs {
  margin-bottom: 25px;
  border: none;
  border-bottom: 1px solid #e6ebee;
}
.rs-shop-part.part2 .rs-single-product .tab-area ul.nav-tabs li {
  margin-right: 40px;
}
.rs-shop-part.part2 .rs-single-product .tab-area ul.nav-tabs li a {
  display: inline-block;
  font-size: 18px;
  line-height: 31px;
  font-weight: 700;
  color: #ffffff;
  padding: 18px 40px 18px;
  background: #273c66;
}
.rs-shop-part.part2 .rs-single-product .tab-area ul.nav-tabs li a.active {
  color: #505050;
  background: transparent;
}
.rs-shop-part.part2 .rs-single-product .tab-area ul.nav-tabs li a.active:hover {
  color: #ffffff;
  background: #273c66;
}
.rs-shop-part.part2 .rs-single-product .tab-area ul.nav-tabs li:last-child {
  margin-right: 0;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .tab-title {
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: 600;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .dsc-p {
  margin: 0;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .top-area {
  margin-bottom: 5px;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .top-area p {
  margin-bottom: 23px;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .top-area h4, .rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .top-area .h4 {
  font-weight: 400;
  color: unset;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form p.comment-notes {
  margin-bottom: 15px;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form .placeholder-cntrl label {
  font-weight: 600;
  min-width: 100px;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form .placeholder-cntrl input {
  border: 1px solid rgba(54, 54, 54, 0.1);
  padding: 10px 15px;
  margin-bottom: 10px;
  outline: none;
  width: 50%;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form .placeholder-cntrl textarea {
  display: block;
  width: 100%;
  padding: 10px 15px;
  height: 75px;
  border: 1px solid rgba(54, 54, 54, 0.1);
  margin-bottom: 20px;
  outline: none;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form .ratings {
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form .ratings ul li {
  display: inline;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form .ratings ul li i {
  color: #f5d109;
  font-weight: normal;
}
.rs-shop-part.part2 .rs-single-product .tab-area .tab-content .tab-pane .reviews-grid .comment-form .readon {
  font-weight: 500;
  font-size: 15px;
  padding: 13px 45px;
  border: none;
  outline: none;
}
.rs-shop-part.part2 .content-part .loop-product {
  font-size: 25px;
  line-height: 25px;
  color: #111111;
  font-weight: 700;
}
.rs-shop-part.part2 .content-part .price {
  font-size: 20px;
  line-height: 34px;
  color: #21a7d0;
  font-weight: 800;
  display: block;
}
.rs-shop-part.part2 .content-part .desc-part {
  font-size: 15px;
  line-height: 26px;
  color: #505050;
  font-weight: 400;
}
.rs-shop-part.part2 .content-part .add-cart {
  font-size: 15px;
  line-height: 25px;
  color: #ffffff;
  font-weight: 400;
  background: #273c66;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 10px 30px 10px;
  border: 2px solid #21a7d0;
}
.rs-shop-part.part2 .content-part .add-cart:hover {
  background: transparent;
  color: #21a7d0;
}
.rs-shop-part.orange-color .product-list .content-desc .loop-product-title a:hover, .rs-shop-part.orange-color .product-list .content-desc .price {
  color: #FE6602;
}

/*----------------------------------------
    30. Single Shop Section CSS
----------------------------------------*/
.rs-single-shop .single-product-image .images-single {
  z-index: 1 !important;
}
.rs-single-shop .single-product-image img {
  width: 100%;
}
.rs-single-shop .single-price-info .product-title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 12px;
}
.rs-single-shop .single-price-info .single-price {
  color: #21a7d0;
  font-weight: 600;
}
.rs-single-shop .single-price-info .some-text {
  margin-top: 15px;
}
.rs-single-shop .single-price-info form {
  margin-bottom: 30px;
}
.rs-single-shop .single-price-info form input {
  height: 40px;
  width: 70px;
  line-height: 40px;
  text-align: center;
  padding-left: 10px;
  border: 1px solid rgba(54, 54, 54, 0.1);
  outline: none;
}
.rs-single-shop .single-price-info p.category {
  margin: 0;
  padding-top: 25px;
  border-top: 1px solid #e6e6e6;
  font-size: 14px;
}
.rs-single-shop .single-price-info p.category span {
  font-weight: 700;
  padding-right: 10px;
}
.rs-single-shop .single-price-info p.category a {
  color: #505050;
}
.rs-single-shop .single-price-info p.category a:hover {
  color: #21a7d0;
}
.rs-single-shop .single-price-info .tag {
  margin: 0;
}
.rs-single-shop .single-price-info .tag span {
  font-weight: 700;
}
.rs-single-shop .tab-area {
  margin-top: 50px;
}
.rs-single-shop .tab-area ul.nav-tabs {
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 32px;
}
.rs-single-shop .tab-area ul.nav-tabs li {
  margin-right: 3px;
}
.rs-single-shop .tab-area ul.nav-tabs li a {
  padding: 10px 15px;
  display: inline-block;
  border-radius: 5px 5px 0 0;
  background: #f0f0f0;
  color: #111111;
  font-weight: 600;
}
.rs-single-shop .tab-area ul.nav-tabs li a:hover, .rs-single-shop .tab-area ul.nav-tabs li a.active {
  background: #21a7d0;
  color: #ffffff;
}
.rs-single-shop .tab-area ul.nav-tabs li:last-child {
  margin-right: 0;
}
.rs-single-shop .tab-area .tab-content .tab-pane .tab-title {
  font-weight: 700;
  margin-bottom: 34px;
}
.rs-single-shop .tab-area .tab-content .tab-pane .dsc-p {
  margin: 0;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .top-area {
  margin-bottom: 5px;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .top-area p {
  margin-bottom: 23px;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .top-area h4, .rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .top-area .h4 {
  font-weight: 400;
  color: unset;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form {
  max-width: 600px;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form p.comment-notes {
  margin-bottom: 15px;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form .placeholder-cntrl label {
  font-weight: 600;
  display: block;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form .placeholder-cntrl input {
  border: 1px solid rgba(54, 54, 54, 0.1);
  padding: 10px 15px;
  margin-bottom: 10px;
  width: 100%;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form .placeholder-cntrl textarea {
  width: 100%;
  padding: 10px 15px;
  height: 75px;
  border: 1px solid rgba(54, 54, 54, 0.1);
  margin-bottom: 20px;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form .ratings {
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form .ratings ul li {
  display: inline;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form .ratings ul li i {
  color: #21a7d0;
  font-weight: normal;
}
.rs-single-shop .tab-area .tab-content .tab-pane .reviews-grid .comment-form .readon {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  padding: 0 22px;
}
.rs-single-shop.orange-color .single-price-info .single-price, .rs-single-shop.orange-color .single-price-info p.category a:hover {
  color: #FE6602;
}
.rs-single-shop.orange-color .tab-area .tab-content .tab-pane .reviews-grid .comment-form .ratings ul li i {
  color: #FE6602;
}
.rs-single-shop.orange-color .tab-area ul.nav-tabs li a:hover, .rs-single-shop.orange-color .tab-area ul.nav-tabs li a.active {
  background: #FE6602;
}

/*----------------------------------------
    31. Cart Section CSS
----------------------------------------*/
.rs-cart .cart-wrap table.cart-table {
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  border-collapse: collapse;
}
.rs-cart .cart-wrap table.cart-table td {
  padding: 25px;
  text-align: center;
  border: 1px solid #ccc;
}
.rs-cart .cart-wrap table.cart-table th {
  border: 1px solid #ccc;
  border: none;
  font-size: 18px;
  padding: 25px;
  text-align: center;
  vertical-align: middle;
  font-weight: 700;
}
.rs-cart .cart-wrap table.cart-table td {
  border-bottom: none;
  border-left: none;
  border-right: none;
  border-top: 1px solid #e6e6e6;
}
.rs-cart .cart-wrap table.cart-table .product-remove a {
  margin: 0 auto;
  color: #111111;
  display: block;
  border-radius: 100%;
  border: 1px solid #ddd;
  font-size: 16px;
  font-weight: 400;
  height: 20px;
  width: 20px;
  line-height: 17px;
  text-align: center;
}
.rs-cart .cart-wrap table.cart-table .product-remove a:hover {
  background: #ff0000;
  color: #ffffff;
}
.rs-cart .cart-wrap table.cart-table .product-thumbnail {
  min-width: 32px;
}
.rs-cart .cart-wrap table.cart-table .product-thumbnail a img {
  width: 80px;
  height: auto;
}
.rs-cart .cart-wrap table.cart-table .product-name a {
  color: #505050;
  font-weight: 700;
}
.rs-cart .cart-wrap table.cart-table .product-name a:hover {
  color: #21a7d0;
}
.rs-cart .cart-wrap table.cart-table .product-price {
  font-weight: 700;
}
.rs-cart .cart-wrap table.cart-table .product-quantity input {
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 0 0 0 10px;
  max-width: 65px;
  margin: 0 auto;
  outline: none;
}
.rs-cart .cart-wrap table.cart-table .action .coupon {
  float: left;
}
.rs-cart .cart-wrap table.cart-table .action .coupon input {
  box-sizing: border-box;
  border: 1px solid #d3ced2;
  padding: 6px 6px 5px;
  margin: 0 4px 0 0;
  outline: none;
  width: 320px;
  border-radius: 4px;
  height: 45px;
  margin-right: 20px;
  text-align: left;
  padding-left: 22px;
}
.rs-cart .cart-collaterals {
  width: 100%;
  overflow: hidden;
}
.rs-cart .cart-collaterals .cart-totals {
  float: right;
  width: 48%;
}
.rs-cart .cart-collaterals .cart-totals .title {
  font-weight: 700;
  color: #505050;
  text-transform: capitalize;
}
.rs-cart .cart-collaterals .cart-totals table.cart-total-table {
  text-align: left;
  width: 100%;
  border-collapse: collapse;
  border-radius: 5px;
}
.rs-cart .cart-collaterals .cart-totals table.cart-total-table tr {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.rs-cart .cart-collaterals .cart-totals table.cart-total-table tr th {
  font-size: 18px;
  font-weight: 700;
}
.rs-cart .cart-collaterals .cart-totals table.cart-total-table tr td, .rs-cart .cart-collaterals .cart-totals table.cart-total-table tr th {
  padding: 30px 10px;
}
.rs-cart.orange-color .cart-wrap table.cart-table .product-name a:hover {
  color: #FE6602;
}

/*-----------------------------------------------
    32. Header Cart Section CSS
-----------------------------------------------*/
.woocommerce-mini-cart {
  position: absolute;
  right: 0;
  top: 200%;
  transition: all 0.3s ease;
  width: 270px;
  opacity: 0;
  padding-top: 120px;
  visibility: hidden;
  overflow: hidden;
}
.woocommerce-mini-cart .cart-bottom-part {
  padding: 30px 20px;
  background: #21a7d0;
}
.woocommerce-mini-cart.left-view {
  right: unset;
  left: 0;
}
.woocommerce-mini-cart li {
  border-bottom: 1px solid rgba(170, 170, 170, 0.25);
  padding: 0 0 20px 0 !important;
  margin: 0 0 20px 0 !important;
  margin-right: 0 !important;
  border: none !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.woocommerce-mini-cart li:last-child {
  margin: 0 !important;
}
.woocommerce-mini-cart .product-info {
  padding: 0 26px;
}
.woocommerce-mini-cart .product-info a {
  color: #ffffff !important;
  font-weight: 700;
}
.woocommerce-mini-cart .product-info a:hover {
  color: #273c66 !important;
}
.woocommerce-mini-cart .total-price {
  padding: 0 0 20px;
}
.woocommerce-mini-cart .quantity, .woocommerce-mini-cart .total-price {
  color: #f3f8f9;
}
.woocommerce-mini-cart .icon-cart {
  margin-top: 2px;
}
.woocommerce-mini-cart .icon-cart i {
  color: #ffffff;
  width: 18px;
  height: 18px;
  line-height: 16px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  transition: all 0.3s ease;
}
.woocommerce-mini-cart .icon-cart i:hover {
  color: #273c66;
}
.woocommerce-mini-cart .product-image {
  margin-top: 2px;
  display: block;
  float: right;
  text-align: right;
  width: 56px;
}
.woocommerce-mini-cart .crt-btn {
  padding: 5px 10px;
  background: #273c66;
  color: #ffffff;
  display: inline-block;
  border-radius: 3px;
}
.woocommerce-mini-cart .crt-btn:hover {
  background: #D75601;
  color: #ffffff;
}
.woocommerce-mini-cart .crt-btn.btn1 {
  margin-right: 10px;
}

.mini-cart-active:hover .woocommerce-mini-cart {
  visibility: visible;
  opacity: 1;
  top: 0;
}

/*-----------------------------------------------
    28. Woocommerce Section CSS
-----------------------------------------------*/
.woocommerce-mini-cart2 {
  line-height: 20px;
  background-color: #fff;
  position: absolute;
  right: 11.3%;
  font-size: 14px;
  top: 100%;
  width: 278px;
  z-index: 10000;
  transition: all 0.2s ease 0s;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  -webkit-transform-origin: 0 0 0;
}
.woocommerce-mini-cart2 .cart-bottom-part {
  padding: 25px 10px 0;
}
.woocommerce-mini-cart2 .cart-bottom-part .widget-title {
  text-align: center;
  text-transform: uppercase;
  position: relative;
  padding-top: 50px;
  color: #0a0a0a;
  font-family: Nunito;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.woocommerce-mini-cart2 .cart-bottom-part .widget-title:before {
  position: absolute;
  content: "\f131";
  color: #101010;
  left: 50%;
  transform: translateX(-50%);
  bottom: 42px;
  font-family: Flaticon;
  font-size: 30px;
  font-style: normal;
}

.cart-active2 {
  cursor: pointer;
}

.icon-bar.cart-active:hover .woocommerce-mini-cart2, .cart-active2:hover .woocommerce-mini-cart2, .icon-bar.cart-active:hover .woocommerce-mini-cart, .cart-active2:hover .woocommerce-mini-cart {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}

/*----------------------------------------
    33. Checkout Section CSS
----------------------------------------*/
.rs-checkout .checkout-title {
  margin-bottom: 30px;
}
.rs-checkout .checkout-title h3, .rs-checkout .checkout-title .h3 {
  font-size: 26px;
  margin: 0;
}
.rs-checkout .coupon-toggle .accordion .card {
  border: unset;
  border-top: 3px solid #21a7d0;
  border-radius: 0;
}
.rs-checkout .coupon-toggle .accordion .card .card-header {
  border: none;
  margin: 0;
  border-radius: unset;
}
.rs-checkout .coupon-toggle .accordion .card .card-header .card-title {
  margin: 0;
}
.rs-checkout .coupon-toggle .accordion .card .card-header .card-title span i {
  margin-right: 10px;
}
.rs-checkout .coupon-toggle .accordion .card .card-header .card-title button {
  background: unset;
  border: none;
  color: #273c66;
  transition: all 0.3s ease;
  outline: none;
  cursor: pointer;
}
.rs-checkout .coupon-toggle .accordion .card .card-header .card-title button:hover {
  color: #21a7d0;
}
.rs-checkout .coupon-toggle .accordion .card .card-body {
  border: 1px solid #d3ced2;
  padding: 20px 20px 50px 20px;
  margin-top: 2em;
  text-align: left;
}
.rs-checkout .coupon-toggle .accordion .card .card-body .coupon-code-input {
  width: 47%;
  float: left;
  margin-right: 50px;
}
.rs-checkout .coupon-toggle .accordion .card .card-body .coupon-code-input input {
  width: 100%;
  height: 45px;
  outline: none;
  padding: 10px 18px;
  color: #505050;
  border: 1px solid rgba(54, 54, 54, 0.1);
}
.rs-checkout .full-grid {
  margin-top: 25px;
}
.rs-checkout .full-grid .form-content-box {
  margin-bottom: 50px;
}
.rs-checkout .full-grid .form-content-box .form-group label {
  line-height: 2;
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
.rs-checkout .full-grid .form-content-box .form-group select {
  color: #666666;
  opacity: 0.5;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 1px solid #ccc;
  border-radius: 0;
  height: 45px;
  line-height: 45px;
  cursor: pointer;
  width: 100%;
  outline: none;
}
.rs-checkout .full-grid .form-content-box .form-group textarea {
  height: 4em;
  line-height: 1.5;
  display: block;
  box-shadow: none;
  width: 100%;
  border: 1px solid rgba(54, 54, 54, 0.1);
  padding: 10px 18px;
  margin: 0;
  outline: none;
}
.rs-checkout .full-grid .form-content-box .form-group .form-control-mod {
  border: 1px solid rgba(54, 54, 54, 0.1);
  height: 45px;
  padding: 10px 18px;
  width: 100%;
  margin: 0;
  outline: none;
  line-height: normal;
  border-radius: unset;
}
.rs-checkout .full-grid .form-content-box .form-group .form-control-mod.margin-bottom {
  margin-bottom: 10px !important;
}
.rs-checkout .full-grid .ordered-product table {
  width: 100%;
}
.rs-checkout .full-grid .ordered-product table tr th {
  border: 1px solid #ccc;
  padding: 9px 12px;
}
.rs-checkout .full-grid .ordered-product table tr td {
  border: 1px solid #ccc;
  padding: 6px 12px;
}
.rs-checkout .full-grid .payment-method .top-area {
  border-bottom: 1px solid #d3ced2;
}
.rs-checkout .full-grid .payment-method .top-area .payment-co {
  margin-bottom: 20px;
}
.rs-checkout .full-grid .payment-method .top-area .payment-co span {
  font-weight: 600;
  margin-right: 10px;
}
.rs-checkout .full-grid .payment-method .top-area .p-msg {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 1em;
  margin: 1em 0 2em;
  font-size: 0.92em;
  border-radius: 2px;
  line-height: 1.5;
  background-color: #f9f9f9;
}
.rs-checkout .full-grid .payment-method .top-area .p-msg:before {
  content: "";
  display: block;
  border: 1em solid #f9f9f9;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  top: -0.75em;
  left: 0;
  margin: -1em 0 0 2em;
}
.rs-checkout.orange-color .coupon-toggle .accordion .card {
  border-color: #FE6602;
}
.rs-checkout.orange-color .coupon-toggle .accordion .card .card-header .card-title button:hover {
  color: #FE6602;
}

/*----------------------------------------
    34. Login Section CSS
----------------------------------------*/
.rs-login .noticed {
  background: #f9f8f8;
  max-width: 800px;
  padding: 70px;
  margin: 0 auto;
}
.rs-login .noticed .main-part {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  border-radius: 5px;
}
.rs-login .noticed .main-part .method-account .login {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  color: #111111;
}
.rs-login .noticed .main-part .method-account label {
  font-size: 15px;
  line-height: 30px;
  font-weight: 600;
  color: #505050;
}
.rs-login .noticed .main-part .method-account input {
  margin-bottom: 30px;
  font-size: 15px;
  font-weight: 400;
  color: #505050;
  width: 100%;
  display: block;
  border: none;
  height: 45px;
  padding: 10px 18px;
  border-radius: 5px;
  box-shadow: 0 0 30px #eee;
}
.rs-login .noticed .main-part .method-account span {
  font-size: 15px;
  line-height: 30px;
  font-weight: 600;
  color: #505050;
  padding-left: 10px;
}
.rs-login .noticed .main-part .method-account .last-password p {
  color: #505050;
  margin: 0;
}
.rs-login .noticed .main-part .method-account .last-password p a {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: #FE6602;
}
.rs-login .noticed .main-part .method-account .last-password p a:hover {
  color: #505050;
}

/* -----------------------------------
    35. Register Section CSS
-------------------------------------*/
.register-section {
  position: relative;
}
.register-section .register-box {
  position: relative;
  max-width: 970px;
  margin: 0 auto;
  padding: 45px 40px 35px;
  background: #f9f8f8;
}
.register-section .register-box .styled-form {
  max-width: 600px;
  margin: 0 auto;
}
.register-section .register-box .styled-form .form-group .title-box {
  position: relative;
  text-align: center;
  margin-bottom: 32px;
}
.register-section .register-box .styled-form .form-group .title-box h2, .register-section .register-box .styled-form .form-group .title-box .h2 {
  position: relative;
  color: #03382e;
  font-weight: 700;
  line-height: 1.3em;
}
.register-section .register-box .styled-form .form-group .title-box .text {
  position: relative;
  color: #03382e;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
  margin-top: 12px;
}

/* Styled Form */
.styled-form {
  position: relative;
}
.styled-form .form-group {
  position: relative;
  /* CheckBox */
  /* RadioBox */
}
.styled-form .form-group .eye-icon {
  position: absolute;
  right: 20px;
  top: 52px;
  color: #222222;
  font-size: 18px;
  z-index: 1;
  opacity: 0.5;
}
.styled-form .form-group label {
  position: relative;
  color: #626262;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
}
.styled-form .form-group input {
  position: relative;
  height: 50px;
  padding: 6px 30px;
  width: 100%;
  color: #222222;
  font-size: 16px;
  border-radius: 0px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  border: none;
  box-shadow: 0 0 30px #eee;
}
.styled-form .form-group input:focus {
  border-color: #ff6262;
}
.styled-form .form-group textarea {
  position: relative;
  height: 150px;
  width: 100%;
  resize: none;
  padding: 15px 15px;
  border-radius: 50px;
  border: 1px solid #f2f2f2;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.styled-form .form-group .users {
  position: relative;
  color: #626262;
  font-size: 16px;
  text-align: center;
}
.styled-form .form-group .users a {
  position: relative;
  color: #FE6602;
  font-weight: 600;
  text-decoration: underline;
}
.styled-form .form-group .users a:hover {
  color: #ed3600;
}
.styled-form .form-group .check-box {
  position: relative;
  margin-bottom: 3px;
  margin-top: 7px;
}
.styled-form .form-group .check-box label {
  position: relative;
  display: block;
  width: 100%;
  line-height: 22px;
  padding: 4px 10px 0px;
  padding-left: 25px;
  background: #ffffff;
  font-size: 16px;
  font-weight: 400;
  color: #626262;
  cursor: pointer;
  margin-bottom: 0;
  transition: all 300ms ease;
  font-family: "Poppins", sans-serif;
}
.styled-form .form-group .check-box label:before {
  position: absolute;
  left: 0;
  top: 6px;
  height: 15px;
  width: 15px;
  background: #ffffff;
  content: "";
  border-radius: 3px;
  transition: all 300ms ease;
  border: 1px solid #21a7d0;
}
.styled-form .form-group .check-box label:after {
  position: absolute;
  left: 0px;
  top: 0;
  height: 15px;
  line-height: 15px;
  max-width: 0;
  font-size: 14px;
  color: #ffffff;
  font-weight: 800;
  overflow: hidden;
  background: transparent;
  text-align: center;
  font-family: "Font Awesome 5 Free";
  transition: max-width 500ms ease;
}
.styled-form .form-group .check-box input[type=checkbox]:checked + label {
  border-color: #25a9e0;
}
.styled-form .form-group .radio-box {
  position: relative;
  margin-bottom: 3px;
  margin-top: 7px;
}
.styled-form .form-group .radio-box label {
  position: relative;
  display: block;
  height: 30px;
  width: 100%;
  line-height: 9px;
  padding: 4px 10px 0px;
  padding-left: 25px;
  background: #ffffff;
  font-size: 16px;
  font-weight: 400;
  color: #626262;
  cursor: pointer;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  transition: all 300ms ease;
}
.styled-form .form-group .radio-box label:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 15px;
  width: 15px;
  background: #ffffff;
  content: "";
  border-radius: 3px;
  transition: all 300ms ease;
  border: 1px solid #21a7d0;
}
.styled-form .form-group .radio-box label:after {
  position: absolute;
  left: 0px;
  top: 0;
  height: 15px;
  line-height: 15px;
  max-width: 0;
  font-size: 14px;
  color: #ffffff;
  font-weight: 800;
  overflow: hidden;
  background: transparent;
  text-align: center;
  font-family: "Font Awesome 5 Free";
  transition: max-width 500ms ease;
}
.styled-form .forgot {
  position: relative;
  font-weight: 500;
  color: #626262;
  font-size: 16px;
  margin-top: 10px;
  display: inline-block;
  text-decoration: underline;
}
.styled-form .form-group .form-group .check-box label {
  padding-left: 30px;
  padding-top: 1px;
  cursor: pointer;
}
.styled-form .form-group .check-box input[type=checkbox] {
  display: none;
}
.styled-form .form-group .check-box input[type=checkbox]:checked + label:before {
  border: 5px solid #21a7d0;
  background: #ffffff;
}
.styled-form .form-group .check-box input[type=checkbox]:checked + label:after {
  max-width: 20px;
  opacity: 1;
}
.styled-form .form-group .radio-box input[type=radio]:checked + label {
  border-color: #25a9e0;
}
.styled-form .form-group .form-group .radio-box label {
  padding-left: 30px;
  padding-top: 1px;
  cursor: pointer;
}
.styled-form .form-group .radio-box input[type=radio] {
  display: none;
}
.styled-form .form-group .radio-box input[type=radio]:checked + label:before {
  border: 5px solid #21a7d0;
  background: #ffffff;
}
.styled-form .form-group .radio-box input[type=radio]:checked + label:after {
  max-width: 20px;
  opacity: 1;
}

.rs-free-contact {
  background: #FE6602;
  padding: 50px 50px 50px 50px;
}
.rs-free-contact .from-control {
  width: 100%;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #FE6602;
  background-color: #127C4B;
  border-radius: 3px;
  padding: 10px 18px;
}
.rs-free-contact textarea {
  height: 140px;
}
.rs-free-contact ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ffffff;
  opacity: 1;
}
.rs-free-contact ::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
  opacity: 1;
}
.rs-free-contact :-ms-input-placeholder {
  /* IE 10+ */
  color: #ffffff;
  opacity: 1;
}
.rs-free-contact :-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
  opacity: 1;
}

/*-------------------------------------
    36. Contact Section CSS
--------------------------------------*/
.contact-page-section .inner-part .title {
  font-size: 36px;
  color: #101010;
  line-height: 46px;
  font-weight: 700;
  margin-bottom: 14px;
}
.contact-page-section .inner-part .title2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25em;
  color: #111111;
}
.contact-page-section .inner-part p {
  font-size: 19px;
  color: #363636;
  line-height: 32px;
  font-weight: 400;
}
.contact-page-section .rs-quick-contact {
  background-color: #F9F8F8;
  padding: 70px 150px 70px;
}
.contact-page-section .rs-quick-contact .from-control {
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #F1F1F1;
  box-shadow: 0 0 30px #eee;
  width: 100%;
  max-width: 100%;
  opacity: 1;
  border-radius: 3px;
  border: 1px solid #ffffff;
  color: #767676;
  background: #ffffff;
  padding: 10px 18px;
}
.contact-page-section .rs-quick-contact textarea {
  height: 140px;
}
.contact-page-section .rs-quick-contact .form-group .btn-send {
  padding: 16px 0px 16px 0px;
  text-transform: uppercase;
  box-shadow: 0px 28px 50px 0px rgba(0, 0, 0, 0.05);
  outline: none;
  border: none;
  padding: 12px 40px;
  border-radius: 3px;
  display: inline-block;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background: #FE6602;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.contact-page-section .rs-quick-contact .form-group .btn-send:hover {
  opacity: 0.9;
}
.contact-page-section .rs-quick-contact.new-style {
  padding: 70px 60px 70px;
}
.contact-page-section .rs-contact-box .address-item {
  padding: 50px 40px 50px 40px;
  background: #ffffff;
  box-shadow: 0 0 30px #fff;
  text-align: center;
  margin: 0px 20px 0px 0px;
  border-radius: 5px 5px 5px 5px;
}
.contact-page-section .rs-contact-box .address-item .icon-part {
  padding-bottom: 20px;
}
.contact-page-section .rs-contact-box .address-item .icon-part img {
  width: 65px;
}
.contact-page-section .rs-contact-box .address-item .address-text .label {
  display: block;
  color: #101010;
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
}
.contact-page-section .rs-contact-box .address-item .address-text .des {
  font-size: 17px;
  color: #101010;
}
.contact-page-section .rs-contact-box .address-item .address-text .des a {
  color: #101010;
}
.contact-page-section .rs-contact-box .address-item .address-text .des a:hover {
  color: #FE6602;
}
.contact-page-section .rs-contact-wrap {
  padding: 40px 35px 30px 35px;
  background-color: #F9F8F8;
  border-radius: 5px 5px 5px 5px;
}
.contact-page-section .rs-contact-wrap .address-item {
  display: flex;
  position: relative;
  margin-bottom: 40px;
}
.contact-page-section .rs-contact-wrap .address-item .address-icon {
  margin-right: 20px;
}
.contact-page-section .rs-contact-wrap .address-item .address-icon i {
  font-size: 35px;
  color: #FE6602;
}
.contact-page-section .rs-contact-wrap .address-item .address-text .label {
  display: block;
  color: #505050;
  font-size: 15px;
  font-weight: 700;
  padding-bottom: 10px;
  line-height: 1.2;
}
.contact-page-section .rs-contact-wrap .address-item .address-text .des {
  font-size: 18px;
  color: #111111;
  font-weight: 500;
}
.contact-page-section .rs-contact-wrap .address-item .address-text .des a {
  color: #111111;
  font-weight: 500;
}
.contact-page-section .rs-contact-wrap .address-item .address-text .des a:hover {
  color: #FE6602;
}
.contact-page-section .contact-comment-box .from-control {
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #F1F1F1;
  box-shadow: 0 0 30px #eee;
  width: 100%;
  max-width: 100%;
  opacity: 1;
  border-radius: 3px;
  border: 1px solid #ffffff;
  color: #767676;
  background: #ffffff;
  padding: 10px 18px;
}
.contact-page-section .contact-comment-box textarea {
  height: 140px;
}
.contact-page-section .contact-comment-box .form-group .btn-send {
  padding: 16px 0px 16px 0px;
  box-shadow: 0px 28px 50px 0px rgba(0, 0, 0, 0.05);
  outline: none;
  border: none;
  padding: 12px 40px;
  border-radius: 3px;
  display: inline-block;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background: #FE6602;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-transform: uppercase;
}
.contact-page-section .contact-comment-box .form-group .btn-send:hover {
  opacity: 0.9;
}
.contact-page-section .contact-comment-box.new-style {
  padding: 60px 70px 60px !important;
}
.contact-page-section .contact-map {
  overflow: hidden;
}
.contact-page-section .contact-map iframe {
  float: left;
  width: 100%;
  height: 550px;
  border: none;
}
.contact-page-section .contact-map2 {
  overflow: hidden;
}
.contact-page-section .contact-map2 iframe {
  float: left;
  width: 100%;
  height: 720px;
  border: none;
}
.contact-page-section .contact-map3 {
  overflow: hidden;
}
.contact-page-section .contact-map3 iframe {
  float: left;
  width: 100%;
  height: 600px;
  border: none;
}
.contact-page-section .contact-address-section {
  text-align: center;
  margin: 0 0 50px;
}
.contact-page-section .contact-address-section .contact-info {
  background: #f9f9f9;
  display: flex;
  text-align: left;
  align-items: center;
  padding: 0 30px;
  min-height: 175px;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease;
}
.contact-page-section .contact-address-section .contact-info .icon-part {
  margin-right: 30px;
}
.contact-page-section .contact-address-section .contact-info .icon-part i {
  color: #FE6602;
  font-size: 30px;
  margin: 0;
  padding: 0;
  width: 70px;
  height: 70px;
  line-height: 58px;
  border-radius: 50%;
  text-align: center;
  background: transparent;
  border: 6px solid #f9ede9;
}
.contact-page-section .contact-address-section .contact-info .content-part .info-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #505050;
  margin: 0 0 5px;
}
.contact-page-section .contact-address-section .contact-info .content-part .info-title {
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  margin: 0;
}
.contact-page-section .contact-address-section .contact-info .content-part a {
  color: #111111;
  display: block;
}
.contact-page-section .contact-address-section .contact-info .content-part a:hover {
  color: #FE6602;
}
.contact-page-section .contact-address-section .contact-info:hover {
  transform: translateY(-5px);
}
.contact-page-section .contact-address-section.style2 {
  margin: 0;
}
.contact-page-section .contact-comment-section {
  padding: 50px;
}
.contact-page-section .contact-comment-section h3, .contact-page-section .contact-comment-section .h3 {
  font-size: 36px;
  margin: 0;
  padding-bottom: 15px;
  font-weight: 700;
}
.contact-page-section .contact-comment-section form .form-group input {
  height: 43px;
  padding: 0 15px;
  border: none;
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
}
.contact-page-section .contact-comment-section form .form-group textarea {
  border: none;
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
}
.contact-page-section .contact-comment-section form .form-group label {
  color: #505050;
  font-weight: 400;
}
.contact-page-section .contact-comment-section form .form-group input.btn-send {
  text-transform: uppercase;
  color: #ffffff;
  background-color: #FE6602;
  margin-top: 15px;
  border: none;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-weight: 600;
  padding: 0 50px;
  cursor: pointer;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -ms-transition: 0.4s;
}
.contact-page-section .contact-comment-section form .form-group input.btn-send:hover {
  background: #ed3600;
}
.contact-page-section .contact-bg1 {
  background: #f9f9f9;
}

/*------------------------------------
    37. Footer Section CSS
------------------------------------*/
.rs-footer {
  background-color: #273c66;
  background-image: url(../images/bg/footer-bg.png);
  background-size: cover;
}
.rs-footer .footer-top {
  padding: 218px 0 93px;
}
.rs-footer .footer-top .widget-title {
  color: #ffffff;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 35px;
}
.rs-footer .footer-top .site-map li {
  padding-left: 15px;
  position: relative;
  margin-bottom: 11px;
}
.rs-footer .footer-top .site-map li a {
  color: #e8e8e8;
}
.rs-footer .footer-top .site-map li a:hover {
  color: #21a7d0;
}
.rs-footer .footer-top .site-map li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #21a7d0;
}
.rs-footer .footer-top .site-map li:last-child {
  margin-bottom: 0;
}
.rs-footer .footer-top .address-widget li {
  position: relative;
  margin-bottom: 16px;
}
.rs-footer .footer-top .address-widget li i {
  position: absolute;
}
.rs-footer .footer-top .address-widget li i:before {
  color: #ffffff;
}
.rs-footer .footer-top .address-widget li .desc {
  padding-left: 35px;
  color: #ffffff;
}
.rs-footer .footer-top .address-widget li .desc a {
  color: #ffffff;
}
.rs-footer .footer-top .address-widget li .desc a:hover {
  color: #21a7d0;
}
.rs-footer .footer-top .address-widget li:last-child {
  margin-bottom: 0;
}
.rs-footer .footer-top.no-gap {
  padding-top: 93px;
}
.rs-footer .footer-bottom {
  padding: 40px 0;
  background: transparent;
  position: relative;
}
.rs-footer .footer-bottom .copyright p {
  margin-bottom: 0;
  color: #f3f8f9;
}
.rs-footer .footer-bottom .copyright a {
  color: #21a7d0;
}
.rs-footer .footer-bottom .footer-logo a {
  display: inline-block;
}
.rs-footer .footer-bottom .footer-logo a img {
  max-width: 190px;
}
.rs-footer .footer-bottom .footer-social li {
  display: inline;
  margin-right: 5px;
}
.rs-footer .footer-bottom .footer-social li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 100%;
  background: #21a7d0;
  color: #ffffff;
  text-align: center;
}
.rs-footer .footer-bottom .footer-social li a:hover {
  color: #ffffff;
  background: #273c66;
}
.rs-footer .footer-bottom .footer-social li:last-child {
  margin: 0;
}
.rs-footer .footer-bottom:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 100%;
  max-width: 1240px;
  background: rgba(255, 255, 255, 0.1);
}
.rs-footer.style6 .footer-top {
  padding: 100px 0 93px;
}
.rs-footer.style6 .footer-top .site-map li a {
  color: #e8e8e8;
}
.rs-footer.style6 .footer-top .site-map li a:hover {
  color: #21a7d0;
}
.rs-footer.style6 .footer-top .site-map li:before {
  background: #FE6602 !important;
}
.rs-footer.style6 .footer-top .site-map li:last-child {
  margin-bottom: 0;
}
.rs-footer.style6 .footer-top .address-widget li i:before {
  color: #FE6602 !important;
}
.rs-footer.style6 .footer-bottom {
  background: none;
}
.rs-footer.style6 .footer-bottom .main-part {
  padding-top: 30px;
  padding-bottom: 18px;
}
.rs-footer.style6 .footer-bottom .main-part p a {
  color: #FE6602 !important;
}
.rs-footer.style6 .footer-bottom .main-part p a:hover {
  color: #21a7d0 !important;
}
.rs-footer.style6 .footer-bottom .main-part .footer-social li a {
  color: #111111 !important;
  background: #FE6602 !important;
}
.rs-footer.style7 .footer-top {
  padding: 100px 0 93px;
}
.rs-footer.style7 .footer-top .address-widget li i:before {
  color: #21a7d0 !important;
}
.rs-footer.style8 .footer-top {
  padding: 100px 0 93px;
}
.rs-footer.style8 .footer-top .site-map li a {
  color: #e8e8e8;
}
.rs-footer.style8 .footer-top .site-map li a:hover {
  color: #FE6602;
}
.rs-footer.style8 .footer-top .site-map li:before {
  background: #FE6602 !important;
}
.rs-footer.style8 .footer-top .site-map li:last-child {
  margin-bottom: 0;
}
.rs-footer.style8 .footer-top .address-widget li i:before, .rs-footer.style8 .footer-top .address-widget li .desc a:hover {
  color: #FE6602 !important;
}
.rs-footer.style8 .footer-bottom .copyright p a {
  color: #FE6602 !important;
}
.rs-footer.style8 .footer-bottom .copyright p a:hover {
  color: #ed3600 !important;
}
.rs-footer.style8 .footer-bottom .footer-social li a {
  background: #FE6602 !important;
}
.rs-footer.orange-footer {
  background-color: #151515;
  background-image: url(../images/bg/footer-bg2.jpg);
}
.rs-footer.orange-footer .footer-top .widget-title {
  color: #ffffff;
}
.rs-footer.orange-footer .footer-top .site-map li a:hover {
  color: #FE6602;
}
.rs-footer.orange-footer .footer-top .site-map li:before {
  background: #FE6602;
}
.rs-footer.orange-footer .footer-top .address-widget li i:before {
  color: #ffffff;
}
.rs-footer.orange-footer .footer-top .address-widget li .desc {
  color: #ffffff;
}
.rs-footer.orange-footer .footer-top .address-widget li .desc a {
  color: #ffffff;
}
.rs-footer.orange-footer .footer-top .address-widget li .desc a:hover {
  color: #FE6602;
}
.rs-footer.orange-footer .footer-bottom .copyright a {
  color: #FE6602;
}
.rs-footer.orange-footer .footer-bottom .footer-social li a {
  background: #FE6602;
}
.rs-footer.orange-footer .footer-bottom .footer-social li a:hover {
  background: #ed3600;
}
.rs-footer.home9-style .footer-top {
  padding: 100px 0 93px;
}
.rs-footer.home9-style .footer-top .widget-title {
  color: #ffffff;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 35px;
  position: relative;
}
.rs-footer.home9-style .footer-top .widget-title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 40px;
  background: #FE6602;
}
.rs-footer.home9-style .footer-top .site-map li {
  padding-left: 15px;
  position: relative;
  margin-bottom: 11px;
}
.rs-footer.home9-style .footer-top .site-map li a {
  color: #e8e8e8;
}
.rs-footer.home9-style .footer-top .site-map li a:hover {
  color: #FE6602;
}
.rs-footer.home9-style .footer-top .site-map li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #FE6602;
}
.rs-footer.home9-style .footer-top .site-map li:last-child {
  margin-bottom: 0;
}
.rs-footer.home9-style .footer-top .address-widget li {
  position: relative;
  margin-bottom: 16px;
}
.rs-footer.home9-style .footer-top .address-widget li i {
  position: absolute;
}
.rs-footer.home9-style .footer-top .address-widget li i:before {
  color: #FE6602;
}
.rs-footer.home9-style .footer-top .address-widget li .desc {
  padding-left: 35px;
  color: #ffffff;
}
.rs-footer.home9-style .footer-top .address-widget li .desc a {
  color: #ffffff;
}
.rs-footer.home9-style .footer-top .address-widget li .desc a:hover {
  color: #FE6602;
}
.rs-footer.home9-style .footer-top .address-widget li:last-child {
  margin-bottom: 0;
}
.rs-footer.home9-style .footer-top.no-gap {
  padding-top: 93px;
}
.rs-footer.home9-style .footer-top .recent-post {
  display: flex;
}
.rs-footer.home9-style .footer-top .recent-post .post-img {
  width: 130px;
  float: left;
  padding-right: 15px;
}
.rs-footer.home9-style .footer-top .recent-post .post-img img {
  border-radius: 4px;
}
.rs-footer.home9-style .footer-top .recent-post .post-item .post-desc a {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  line-height: 22px;
  text-transform: capitalize;
}
.rs-footer.home9-style .footer-top .recent-post .post-item .post-desc a:hover {
  color: #FE6602;
}
.rs-footer.home9-style .footer-top .recent-post .post-item .post-date {
  font-size: 13px;
  color: #ffffff;
  font-weight: 400;
}
.rs-footer.home9-style .footer-top .recent-post .post-item .post-date i {
  font-size: 13px;
  color: #FE6602;
  padding-right: 5px;
}
.rs-footer.home9-style .footer-bottom {
  padding: 40px 0;
  background: transparent;
  position: relative;
}
.rs-footer.home9-style .footer-bottom .copyright p {
  margin-bottom: 0;
  color: #f3f8f9;
}
.rs-footer.home9-style .footer-bottom .copyright a {
  color: #FE6602;
}
.rs-footer.home9-style .footer-bottom .copyright a:hover {
  color: #21a7d0;
}
.rs-footer.home9-style .footer-bottom .footer-logo a {
  display: inline-block;
}
.rs-footer.home9-style .footer-bottom .footer-logo a img {
  max-width: 190px;
}
.rs-footer.home9-style .footer-bottom .footer-social li {
  display: inline;
  margin-right: 5px;
}
.rs-footer.home9-style .footer-bottom .footer-social li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 100%;
  background: #FE6602;
  color: #ffffff;
  text-align: center;
}
.rs-footer.home9-style .footer-bottom .footer-social li a:hover {
  color: #ffffff;
  background: #273c66;
}
.rs-footer.home9-style .footer-bottom .footer-social li:last-child {
  margin: 0;
}
.rs-footer.home9-style .footer-bottom:before {
  background: rgba(255, 255, 255, 0.1);
}
.rs-footer.home9-style.main-home {
  background: #151515;
}
.rs-footer.home9-style.main-home .footer-top .widget-title:before {
  background: #FE6602;
}
.rs-footer.home9-style.main-home .footer-top .footer-logo a {
  display: inline-block;
}
.rs-footer.home9-style.main-home .footer-top .footer-logo a img {
  max-width: 190px;
}
.rs-footer.home9-style.main-home .footer-top .textwidget p {
  color: #ffffff !important;
}
.rs-footer.home9-style.main-home .footer-top .site-map li a {
  color: #e8e8e8;
}
.rs-footer.home9-style.main-home .footer-top .site-map li a:hover {
  color: #FE6602;
}
.rs-footer.home9-style.main-home .footer-top .site-map li:before {
  background: #FE6602;
}
.rs-footer.home9-style.main-home .footer-top .address-widget li i:before, .rs-footer.home9-style.main-home .footer-top .address-widget li .desc a:hover {
  color: #FE6602;
}
.rs-footer.home9-style.main-home .footer-top.no-gap {
  padding-top: 93px;
}
.rs-footer.home9-style.main-home .footer-top .recent-post .post-img img {
  border-radius: 4px;
}
.rs-footer.home9-style.main-home .footer-top .recent-post .post-item .post-desc a:hover {
  color: #FE6602;
}
.rs-footer.home9-style.main-home .footer-top .recent-post .post-item .post-date i {
  font-size: 13px;
  color: #FE6602;
  padding-right: 5px;
}
.rs-footer.home9-style.main-home .footer-bottom {
  padding: 40px 0;
  background: transparent;
  position: relative;
}
.rs-footer.home9-style.main-home .footer-bottom .copyright p {
  margin-bottom: 0;
  color: #f3f8f9;
}
.rs-footer.home9-style.main-home .footer-bottom .copyright a {
  color: #ffffff;
}
.rs-footer.home9-style.main-home .footer-bottom .copyright a:hover {
  color: #FE6602;
}
.rs-footer.home9-style.main-home .footer-bottom .copy-right-menu li {
  display: inline-block;
  position: relative;
  padding: 0px 19px 0 25px;
}
.rs-footer.home9-style.main-home .footer-bottom .copy-right-menu li a {
  color: #e8e8e8;
}
.rs-footer.home9-style.main-home .footer-bottom .copy-right-menu li a:hover {
  color: #FE6602;
}
.rs-footer.home9-style.main-home .footer-bottom .copy-right-menu li:before {
  display: block;
  content: "";
  position: absolute;
  font-size: 18px;
  background: #FE6602;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 50%;
}
.rs-footer.home9-style.main-home .footer-bottom .copy-right-menu li:first-child:before {
  display: none;
}
.rs-footer.home9-style.main-home .footer-bottom:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 100%;
  max-width: 1240px;
  background: rgba(255, 255, 255, 0.1);
}
.rs-footer.home9-style.main-home.home13-style {
  background: url(../images/bg/home13/footer.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.rs-footer.home9-style.main-home.home13-style .footer-top {
  padding: 100px 0 93px;
}
.rs-footer.home9-style.main-home.home14-style {
  background: #f9f7f8;
}
.rs-footer.home9-style.main-home.home14-style .footer-top {
  padding: 100px 0 93px;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .widget-title {
  color: #101010;
  text-transform: capitalize;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .widget-title:before {
  bottom: -8px;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .textwidget p {
  color: #333333 !important;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .footer_social li a {
  color: #101010;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .footer_social li a:hover {
  color: #FE6602;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .address-widget li i:before {
  color: #FE6602;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .address-widget li .desc {
  color: #101010;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .address-widget li .desc a {
  color: #505050;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .address-widget li .desc a:hover {
  color: #FE6602;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .site-map li a {
  color: #101010;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .site-map li a:hover {
  color: #FE6602;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .site-map li:before {
  background: #FE6602;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .recent-post .post-item .post-desc {
  color: #505050;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .recent-post .post-item .post-desc a {
  color: #505050;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .recent-post .post-item .post-desc a:hover {
  color: #FE6602;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .recent-post .post-item .post-date {
  color: #505050;
}
.rs-footer.home9-style.main-home.home14-style .footer-top .recent-post .post-item .post-date i {
  color: #FE6602;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom .copyright p {
  color: #101010;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom .copyright a {
  color: #101010;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom .copyright a:hover {
  color: #FE6602;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom .copy-right-menu li a {
  color: #101010;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom .copy-right-menu li a:hover {
  color: #FE6602;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom .copy-right-menu li:before {
  background: #FE6602;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom .copy-right-menu li:first-child:before {
  display: none;
}
.rs-footer.home9-style.main-home.home14-style .footer-bottom:before {
  background: #f0ecee;
}
.rs-footer.home9-style.main-home.home15 .footer-top {
  padding: 190px 0 68px;
}
.rs-footer.home9-style.home12-style {
  background: #d0f4e4;
}
.rs-footer.home9-style.home12-style .footer-top .widget-title {
  color: #101010;
}
.rs-footer.home9-style.home12-style .footer-top .widget-title:before {
  background: #FE6602;
}
.rs-footer.home9-style.home12-style .footer-top .footer-logo a {
  display: inline-block;
}
.rs-footer.home9-style.home12-style .footer-top .footer-logo a img {
  max-width: 190px;
}
.rs-footer.home9-style.home12-style .footer-top .footer_social li {
  display: inline-block;
  margin-right: 6px;
  color: #333333;
}
.rs-footer.home9-style.home12-style .footer-top .footer_social li a {
  color: #333333;
  width: auto;
  height: auto;
  line-height: 16px;
  font-size: 16px;
  margin-right: 10px;
}
.rs-footer.home9-style.home12-style .footer-top .footer_social li a:hover {
  color: #FE6602;
}
.rs-footer.home9-style.home12-style .footer-top .site-map li a {
  color: #333333;
}
.rs-footer.home9-style.home12-style .footer-top .site-map li a:hover {
  color: #FE6602;
}
.rs-footer.home9-style.home12-style .footer-top .site-map li:before {
  background: #FE6602;
}
.rs-footer.home9-style.home12-style .footer-top .address-widget li i:before {
  color: #FE6602;
}
.rs-footer.home9-style.home12-style .footer-top .address-widget li .desc {
  color: #333333;
}
.rs-footer.home9-style.home12-style .footer-top .address-widget li .desc a {
  color: #333333;
}
.rs-footer.home9-style.home12-style .footer-top .address-widget li .desc a:hover {
  color: #FE6602;
}
.rs-footer.home9-style.home12-style .footer-top.no-gap {
  padding-top: 93px;
}
.rs-footer.home9-style.home12-style .footer-top .recent-post .post-img img {
  border-radius: 4px;
}
.rs-footer.home9-style.home12-style .footer-top .recent-post .post-item .post-desc a {
  color: #333333;
}
.rs-footer.home9-style.home12-style .footer-top .recent-post .post-item .post-desc a:hover {
  color: #FE6602;
}
.rs-footer.home9-style.home12-style .footer-top .recent-post .post-item .post-date {
  color: #333333;
}
.rs-footer.home9-style.home12-style .footer-top .recent-post .post-item .post-date i {
  font-size: 13px;
  color: #FE6602;
  padding-right: 5px;
}
.rs-footer.home9-style.home12-style .footer-bottom {
  padding: 40px 0;
  background: transparent;
  position: relative;
}
.rs-footer.home9-style.home12-style .footer-bottom .copyright p {
  margin-bottom: 0;
  color: #333333;
}
.rs-footer.home9-style.home12-style .footer-bottom .copyright a {
  color: #333333;
}
.rs-footer.home9-style.home12-style .footer-bottom .copyright a:hover {
  color: #FE6602;
}
.rs-footer.home9-style.home12-style .footer-bottom .copy-right-menu li {
  display: inline-block;
  position: relative;
  padding: 0px 19px 0 25px;
}
.rs-footer.home9-style.home12-style .footer-bottom .copy-right-menu li a {
  color: #333333;
}
.rs-footer.home9-style.home12-style .footer-bottom .copy-right-menu li a:hover {
  color: #FE6602;
}
.rs-footer.home9-style.home12-style .footer-bottom .copy-right-menu li:before {
  display: block;
  content: "";
  position: absolute;
  font-size: 18px;
  background: #FE6602;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 50%;
}
.rs-footer.home9-style.home12-style .footer-bottom .copy-right-menu li:first-child:before {
  display: none;
}
.rs-footer.home9-style.home12-style .footer-bottom:before {
  background: #8fcea4;
}
.rs-footer.home11-style {
  background: #4e49a1;
}
.rs-footer.home11-style .footer-top {
  padding: 100px 0 93px;
}
.rs-footer.home11-style .footer-top .site-map li a:hover {
  color: #FE6602;
}
.rs-footer.home11-style .footer-top .site-map li:before {
  background: #FE6602 !important;
}
.rs-footer.home11-style .footer-top .site-map li:last-child {
  margin-bottom: 0;
}
.rs-footer.home11-style .footer-bottom {
  padding: 40px 0;
  background: transparent;
  position: relative;
}
.rs-footer.home11-style .footer-bottom .copyright p {
  color: #ffffff;
}
.rs-footer.home11-style .footer-bottom .footer-logo a {
  display: inline-block;
}
.rs-footer.home11-style .footer-bottom .footer-logo a img {
  max-width: 190px;
}
.rs-footer.home11-style .footer-bottom .footer-social li a {
  color: #4e49a1;
  background: #ffffff;
}
.rs-footer.home11-style .footer-bottom .footer-social li a:hover {
  color: #FE6602;
}

/* -----------------------
    38. Scroll Up CSS
--------------------------*/
#scrollUp {
  text-align: center;
  bottom: 40px;
  cursor: pointer;
  display: none;
  position: fixed;
  right: 20px;
  z-index: 999;
  border-radius: 50px 50px 4px 4px;
}
#scrollUp i {
  background: #21a7d0;
  border-radius: 50%;
  height: 40px;
  font-size: 24px;
  font-weight: 600;
  width: 42px;
  color: #fff;
  line-height: 36px;
  transition: all 0.3s ease;
  margin-left: 2px;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
}
#scrollUp i:hover {
  background-color: #1a84a4;
}
#scrollUp.orange-color i {
  background: #FE6602;
}
#scrollUp.orange-color i:hover {
  background-color: #ed3600;
}
#scrollUp.yellow-color i {
  background: #FE6602;
}
#scrollUp.yellow-color i:hover {
  background-color: #c19700;
}
#scrollUp.purple-color i {
  background: #4e49a1;
}
#scrollUp.purple-color i:hover {
  background-color: #3d397e;
}
#scrollUp.green-color i {
  background: #FE6602;
}
#scrollUp.green-color i:hover {
  background-color: #D75601;
}

/*Pulse Border Animation*/
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
/*Pulse Border Animation*/
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@keyframes circle-ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 84, 33, 0.3), 0 0 0 1em rgba(255, 84, 33, 0.3), 0 0 0 3em rgba(255, 84, 33, 0.3), 0 0 0 5em rgba(255, 84, 33, 0.3);
  }
  100% {
    box-shadow: 0 0 0 1em rgba(255, 84, 33, 0.3), 0 0 0 3em rgba(255, 84, 33, 0.3), 0 0 0 5em rgba(255, 84, 33, 0.3), 0 0 0 8em rgba(255, 84, 33, 0);
  }
}
.up-down {
  animation: up-down 4s alternate infinite;
  -webkit-animation: up-down 4s alternate infinite;
}

.up-down-new {
  animation: up-down 8s alternate infinite;
  -webkit-animation: up-down 8s alternate infinite;
}

@keyframes up-down {
  0% {
    transform: translateY(30px);
    -webkit-transform: translateY(0);
  }
  50% {
    transform: translateY(-50px);
    -webkit-transform: translateY(-50px);
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
}
.left-right {
  animation: left-right 5s cubic-bezier(0.41, 0.04, 0.03, 1.1) infinite;
  -webkit-animation: left-right 5s cubic-bezier(0.41, 0.04, 0.03, 1.1) infinite;
}

.left-right-new {
  animation: left-right 8s cubic-bezier(0.41, 0.04, 0.03, 1.1) infinite;
  -webkit-animation: left-right 8s cubic-bezier(0.41, 0.04, 0.03, 1.1) infinite;
}

@keyframes left-right {
  0% {
    transform: translatex(0);
    -webkit-transform: translatex(0);
  }
  50% {
    transform: translateY(-50px);
    -webkit-transform: translatex(-50px);
  }
  100% {
    transform: translatex(0);
    -webkit-transform: translatex(0);
  }
}
.spine {
  animation: spine 5s linear infinite;
  -webkit-animation: spine 5s linear infinite;
}

@keyframes spine {
  0% {
    transform: rotate(0);
    -webkit-transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
.spine-r {
  animation: spine-r 5s linear infinite;
  -webkit-animation: spine-r 5s linear infinite;
}

@keyframes spine-r {
  0% {
    transform: rotate(0);
    -webkit-transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
  }
}
.spine2 {
  animation: spine 8s linear infinite;
}

@keyframes spine2 {
  from {
    transform: rotate(0deg);
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
.rotated-style {
  -webkit-animation: rotated-style 30s linear infinite;
}

@keyframes rotated-style {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
.veritcal-two {
  animation-name: veritcal-two;
  animation-timing-function: linear;
  animation-duration: 12s;
  animation-iteration-count: infinite;
}

@keyframes veritcal-two {
  0% {
    transform: translateY(30px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(30px);
  }
}
/* ------------------------------------
    39. Preloader CSS
---------------------------------------*/
.loader {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  margin-top: 0px;
  top: 0px;
  z-index: 9999999;
}
.loader .loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border: 5px solid #ebebec;
  border-radius: 50%;
}
.loader .loader-container:before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-top: 4px solid #21a7d0;
  border-radius: 50%;
  animation: loaderspin 1.8s infinite ease-in-out;
  -webkit-animation: loaderspin 1.8s infinite ease-in-out;
}
.loader .loader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
}
.loader .loader-icon img {
  animation: loaderpulse alternate 900ms infinite;
}
.loader.orange-color .loader-container:before {
  border-color: #FE6602;
}
.loader.yellow-color .loader-container:before {
  border-color: #FE6602;
}
.loader.purple-color .loader-container:before {
  border-color: #4e49a1;
}
.loader.green-color .loader-container:before {
  border-color: #FE6602;
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.footer_social li a:after {
  content: none !important;
  margin: 0 !important;
}

.btn-custom-1 {
  background: #FE6602;
  color: #FFFFFF !important;
}
.btn-custom-1:hover {
  background: #D75601;
}

.btn-mas-info, .btn-custom-1 {
  padding: 16px 0px 16px 0px;
  text-transform: uppercase;
  box-shadow: 0px 28px 50px 0px rgba(0, 0, 0, 0.05);
  outline: none;
  border: none;
  padding: 12px 40px;
  border-radius: 3px;
  display: inline-block;
  /*text-transform: capitalize;*/
  font-size: 16px;
  font-weight: 500;
  color: #ffffff !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  /*width: 100%;*/
}
.btn-mas-info:hover, .btn-custom-1:hover {
  color: #ffffff !important;
}

.btn-whatsapp {
  padding: 12px 20px;
  border-radius: 50%;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.32);
  outline: none;
  border: none;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
  position: fixed;
  overflow: hidden;
  background: #42C051;
  z-index: 999;
}
.btn-whatsapp:hover {
  color: white;
}

@media (max-width: 575.98px) {
  .btn-whatsapp {
    bottom: 28px;
    right: 90px;
  }
}
@media (min-width: 576px) {
  .btn-whatsapp {
    bottom: 110px;
    right: 8px;
  }
}
.btn-custom-2 {
  background: #FE6602;
  color: #FFFFFF !important;
  padding: 16px 0px 16px 0px;
  text-transform: uppercase;
  box-shadow: 0px 28px 50px 0px rgba(0, 0, 0, 0.05);
  outline: none;
  border: none;
  padding: 12px 40px;
  border-radius: 3px;
  display: inline-block;
  /*text-transform: capitalize;*/
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  /*width: 100%;*/
}
.btn-custom-2:hover {
  background: #D75601;
}

.btn-white {
  background: #FFFFFF;
  color: #000000;
  cursor: pointer;
  padding: 16px 0px 16px 0px;
  text-transform: uppercase;
  box-shadow: 0px 28px 50px 0px rgba(0, 0, 0, 0.05);
  outline: none;
  border: none;
  padding: 12px 40px;
  border-radius: 3px;
  display: inline-block;
  /*text-transform: capitalize;*/
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  /*width: 100%;*/
}
.btn-white:hover {
  background: #c5c3c3;
}

.intro-info-tabs, .formulario-mas-info {
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
}

.footer_social {
  margin-bottom: 2em;
}
.footer_social li {
  display: inline-block;
  margin-right: 6px;
  color: #ffffff;
}
.footer_social li a {
  color: #ffffff;
  width: auto;
  height: auto;
  line-height: 16px;
  font-size: 16px;
  margin-right: 10px;
}
.footer_social li a:hover {
  color: #FE6602;
}

.nav-menu a {
  cursor: pointer;
}

@media (max-width: 575.98px) {
  .carrera-tabs {
    position: sticky;
    top: 0px;
    z-index: 10;
    display: inherit;
  }
}
/* -------------------------------------------------- */ /* fix acordon docentes mobile */
#cursos-relacionados {
  padding: 1rem 0rem 3rem 0rem !important;
}
@media only screen and (max-width: 768px) {
  #cursos-relacionados .sec-title4 h2, #cursos-relacionados .sec-title4 .h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 576px) {
  #cursos-relacionados .sec-title4 h2, #cursos-relacionados .sec-title4 .h2 {
    font-size: 25px;
  }
}
#cursos-relacionados #proximos-inicios-slider .splide__arrow {
  background-color: transparent;
}
#cursos-relacionados #proximos-inicios-slider .splide__arrow.splide__arrow--prev {
  left: -3rem;
}
#cursos-relacionados #proximos-inicios-slider .splide__arrow.splide__arrow--next {
  right: -3rem;
}
#cursos-relacionados #proximos-inicios-slider .splide__arrow svg {
  width: 2em;
  height: 2em;
}
@media only screen and (max-width: 768px) {
  #cursos-relacionados #proximos-inicios-slider .splide__arrow {
    display: none;
  }
}
#cursos-relacionados #proximos-inicios-slider .splide__pagination {
  bottom: -2em;
}

/* -------------------------------------------------- */ /* fix acordon docentes mobile */
.accordion-item#docentes-m-parent .accordion-body,
.accordion-item#docentes-m-parent .accordion-body .content-carrera {
  padding-bottom: 0px !important;
}

/* -------------------------------------------------- */ /* fix acordon dias de cursada */
.accordion.tabla-dias-cursada .accordion-item b {
  font-weight: normal;
}

/* -------------------------------------------------- */
.info-curso .vacantes_disponibles {
  display: block;
  margin: 0px 0px 20px 0px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 10px 10px 10px 10px;
}

/* -------------------------------------------------- */
.bt-add-to-cart {
  cursor: pointer;
}
.bt-add-to-cart p {
  margin: 0px !important;
}

/* -------------------------------------------------- */
#rs-menu-nav li.highlight {
  width: 100%;
  padding: 1rem;
}
#rs-menu-nav li.highlight a {
  width: 100%;
  text-align: center;
  color: #ffffff !important;
  background: #FE6602;
  border-radius: 5rem;
  padding: 0.8rem 0.5rem !important;
}
#rs-menu-nav li.highlight a.active, #rs-menu-nav li.highlight a:hover {
  color: #ffffff !important;
}
#rs-menu-nav li.highlight a:hover {
  opacity: 0.75;
}

/* -------------------------------------------------- */
.form-interesado-generico-desktop-container {
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
  background: #ffffff;
}

.formulario-mas-info-generico #formulario-mas-info-bg {
  background: rgba(254, 102, 2, 0.8);
}

/* -------------------------------------------------- */
.impersonate-out-link .impersonate-out-container {
  display: inline-block;
  background-color: #FFFFFF;
  border-radius: 10rem;
  padding: 0.5rem 2rem;
  position: fixed;
  z-index: 1000;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}
.impersonate-out-link .impersonate-out-container i {
  margin-right: 0.8rem;
  font-size: 0.8rem;
}
