:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  animation-duration: .5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  animation-duration: .8s;
  -webkit-animation-duration: calc(var(--animate-duration) * .8);
  animation-duration: calc(var(--animate-duration) * .8);
}

.animate__animated.animate__slow {
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*="Out"] {
    opacity: 0;
  }
}

@keyframes bounce {
  from, 20%, 53%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: translate3d(0, 0, 0);
  }

  40%, 43% {
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -30px, 0)scaleY(1.1);
  }

  70% {
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -15px, 0)scaleY(1.05);
  }

  80% {
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: translate3d(0, 0, 0)scaleY(.95);
  }

  90% {
    transform: translate3d(0, -4px, 0)scaleY(1.02);
  }
}

.animate__bounce {
  transform-origin: bottom;
  animation-name: bounce;
}

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

  25%, 75% {
    opacity: 0;
  }
}

.animate__flash {
  animation-name: flash;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

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

.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}

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

  30% {
    transform: scale3d(1.25, .75, 1);
  }

  40% {
    transform: scale3d(.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, .85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.animate__rubberBand {
  animation-name: rubberBand;
}

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

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

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.animate__shakeX {
  animation-name: shakeX;
}

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

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

  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}

.animate__shakeY {
  animation-name: shakeY;
}

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

  6.5% {
    transform: translateX(-6px)rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px)rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px)rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px)rotateY(3deg);
  }

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

.animate__headShake {
  animation-name: headShake;
  animation-timing-function: ease-in-out;
}

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

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

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

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

  to {
    transform: rotate3d(0, 0, 1, 0);
  }
}

.animate__swing {
  transform-origin: top;
  animation-name: swing;
}

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

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

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

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

  to {
    transform: scale3d(1, 1, 1);
  }
}

.animate__tada {
  animation-name: tada;
}

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

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

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

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

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

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

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

.animate__wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    transform: skewX(-12.5deg)skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg)skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg)skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg)skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-.78125deg)skewY(-.78125deg);
  }

  77.7% {
    transform: skewX(.390625deg)skewY(.390625deg);
  }

  88.8% {
    transform: skewX(-.195313deg)skewY(-.195313deg);
  }
}

.animate__jello {
  transform-origin: center;
  animation-name: jello;
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

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

.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}

@keyframes backInDown {
  0% {
    opacity: .7;
    transform: translateY(-1200px)scale(.7);
  }

  80% {
    opacity: .7;
    transform: translateY(0)scale(.7);
  }

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

.animate__backInDown {
  animation-name: backInDown;
}

@keyframes backInLeft {
  0% {
    opacity: .7;
    transform: translateX(-2000px)scale(.7);
  }

  80% {
    opacity: .7;
    transform: translateX(0)scale(.7);
  }

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

.animate__backInLeft {
  animation-name: backInLeft;
}

@keyframes backInRight {
  0% {
    opacity: .7;
    transform: translateX(2000px)scale(.7);
  }

  80% {
    opacity: .7;
    transform: translateX(0)scale(.7);
  }

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

.animate__backInRight {
  animation-name: backInRight;
}

@keyframes backInUp {
  0% {
    opacity: .7;
    transform: translateY(1200px)scale(.7);
  }

  80% {
    opacity: .7;
    transform: translateY(0)scale(.7);
  }

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

.animate__backInUp {
  animation-name: backInUp;
}

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

  20% {
    opacity: .7;
    transform: translateY(0)scale(.7);
  }

  100% {
    opacity: .7;
    transform: translateY(700px)scale(.7);
  }
}

.animate__backOutDown {
  animation-name: backOutDown;
}

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

  20% {
    opacity: .7;
    transform: translateX(0)scale(.7);
  }

  100% {
    opacity: .7;
    transform: translateX(-2000px)scale(.7);
  }
}

.animate__backOutLeft {
  animation-name: backOutLeft;
}

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

  20% {
    opacity: .7;
    transform: translateX(0)scale(.7);
  }

  100% {
    opacity: .7;
    transform: translateX(2000px)scale(.7);
  }
}

.animate__backOutRight {
  animation-name: backOutRight;
}

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

  20% {
    opacity: .7;
    transform: translateY(0)scale(.7);
  }

  100% {
    opacity: .7;
    transform: translateY(-700px)scale(.7);
  }
}

.animate__backOutUp {
  animation-name: backOutUp;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

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

  40% {
    transform: scale3d(.9, .9, .9);
  }

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

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.animate__bounceIn {
  animation-duration: .75s;
  -webkit-animation-duration: calc(var(--animate-duration) * .75);
  animation-duration: calc(var(--animate-duration) * .75);
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

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

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0)scaleY(.9);
  }

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

  90% {
    transform: translate3d(0, 5px, 0)scaleY(.985);
  }

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

.animate__bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

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

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

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

  90% {
    transform: translate3d(5px, 0, 0)scaleX(.995);
  }

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

.animate__bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

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

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

  75% {
    transform: translate3d(10px, 0, 0)scaleX(.98);
  }

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

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

.animate__bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

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

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

  75% {
    transform: translate3d(0, 10px, 0)scaleY(.95);
  }

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

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

.animate__bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }

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

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

.animate__bounceOut {
  animation-duration: .75s;
  -webkit-animation-duration: calc(var(--animate-duration) * .75);
  animation-duration: calc(var(--animate-duration) * .75);
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0)scaleY(.985);
  }

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

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0)scaleY(3);
  }
}

.animate__bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0)scaleX(.9);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0)scaleX(2);
  }
}

.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0)scaleX(.9);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0)scaleX(2);
  }
}

.animate__bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0)scaleY(.985);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0)scaleY(.9);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0)scaleY(3);
  }
}

.animate__bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate__fadeIn {
  animation-name: fadeIn;
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInDown {
  animation-name: fadeInDown;
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInLeft {
  animation-name: fadeInLeft;
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInRight {
  animation-name: fadeInRight;
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.animate__fadeInUp {
  animation-name: fadeInUp;
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}

@keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}

@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}

@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.animate__fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

.animate__fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

.animate__fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

.animate__fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

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

.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}

@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

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

.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}

@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

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

.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}

@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

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

.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}

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

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

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

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

  to {
    animation-timing-function: ease-in;
    transform: perspective(400px)scale3d(1, 1, 1)translate3d(0, 0, 0)rotate3d(0, 1, 0, 0);
  }
}

.animate__animated.animate__flip {
  backface-visibility: visible;
  animation-name: flip;
}

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

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

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

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

  to {
    transform: perspective(400px);
  }
}

.animate__flipInX {
  animation-name: flipInX;
  backface-visibility: visible !important;
}

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

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

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

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

  to {
    transform: perspective(400px);
  }
}

.animate__flipInY {
  animation-name: flipInY;
  backface-visibility: visible !important;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

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

  to {
    opacity: 0;
    transform: perspective(400px)rotate3d(1, 0, 0, 90deg);
  }
}

.animate__flipOutX {
  animation-duration: .75s;
  -webkit-animation-duration: calc(var(--animate-duration) * .75);
  animation-duration: calc(var(--animate-duration) * .75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

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

  to {
    opacity: 0;
    transform: perspective(400px)rotate3d(0, 1, 0, 90deg);
  }
}

.animate__flipOutY {
  animation-duration: .75s;
  -webkit-animation-duration: calc(var(--animate-duration) * .75);
  animation-duration: calc(var(--animate-duration) * .75);
  animation-name: flipOutY;
  backface-visibility: visible !important;
}

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

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

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

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

.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}

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

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

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

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

.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0)skewX(30deg);
  }
}

.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}

@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0)skewX(-30deg);
  }
}

.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__rotateIn {
  transform-origin: center;
  animation-name: rotateIn;
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__rotateInDownLeft {
  transform-origin: 0 100%;
  animation-name: rotateInDownLeft;
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__rotateInDownRight {
  transform-origin: 100% 100%;
  animation-name: rotateInDownRight;
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__rotateInUpLeft {
  transform-origin: 0 100%;
  animation-name: rotateInUpLeft;
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__rotateInUpRight {
  transform-origin: 100% 100%;
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 200deg);
  }
}

.animate__rotateOut {
  transform-origin: center;
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 45deg);
  }
}

.animate__rotateOutDownLeft {
  transform-origin: 0 100%;
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -45deg);
  }
}

.animate__rotateOutDownRight {
  transform-origin: 100% 100%;
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -45deg);
  }
}

.animate__rotateOutUpLeft {
  transform-origin: 0 100%;
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 90deg);
  }
}

.animate__rotateOutUpRight {
  transform-origin: 100% 100%;
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }

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

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

  to {
    opacity: 0;
    transform: translate3d(0, 700px, 0);
  }
}

.animate__hinge {
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  transform-origin: 0 0;
  animation-name: hinge;
}

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

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

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

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

.animate__jackInTheBox {
  animation-name: jackInTheBox;
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__rollIn {
  animation-name: rollIn;
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0)rotate3d(0, 0, 1, 120deg);
  }
}

.animate__rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.animate__zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    transform: scale3d(.1, .1, .1)translate3d(0, -1000px, 0);
  }

  60% {
    opacity: 1;
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    transform: scale3d(.475, .475, .475)translate3d(0, 60px, 0);
  }
}

.animate__zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    transform: scale3d(.1, .1, .1)translate3d(-1000px, 0, 0);
  }

  60% {
    opacity: 1;
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    transform: scale3d(.475, .475, .475)translate3d(10px, 0, 0);
  }
}

.animate__zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    transform: scale3d(.1, .1, .1)translate3d(1000px, 0, 0);
  }

  60% {
    opacity: 1;
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    transform: scale3d(.475, .475, .475)translate3d(-10px, 0, 0);
  }
}

.animate__zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    transform: scale3d(.1, .1, .1)translate3d(0, 1000px, 0);
  }

  60% {
    opacity: 1;
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    transform: scale3d(.475, .475, .475)translate3d(0, -60px, 0);
  }
}

.animate__zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.animate__zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    transform: scale3d(.475, .475, .475)translate3d(0, -60px, 0);
  }

  to {
    opacity: 0;
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    transform: scale3d(.1, .1, .1)translate3d(0, 2000px, 0);
  }
}

.animate__zoomOutDown {
  transform-origin: bottom;
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475)translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1)translate3d(-2000px, 0, 0);
  }
}

.animate__zoomOutLeft {
  transform-origin: 0;
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475)translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1)translate3d(2000px, 0, 0);
  }
}

.animate__zoomOutRight {
  transform-origin: 100%;
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    transform: scale3d(.475, .475, .475)translate3d(0, 60px, 0);
  }

  to {
    opacity: 0;
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    transform: scale3d(.1, .1, .1)translate3d(0, -2000px, 0);
  }
}

.animate__zoomOutUp {
  transform-origin: bottom;
  animation-name: zoomOutUp;
}

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

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

.animate__slideInDown {
  animation-name: slideInDown;
}

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

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

.animate__slideInLeft {
  animation-name: slideInLeft;
}

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

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

.animate__slideInRight {
  animation-name: slideInRight;
}

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

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

.animate__slideInUp {
  animation-name: slideInUp;
}

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

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.animate__slideOutDown {
  animation-name: slideOutDown;
}

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

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.animate__slideOutLeft {
  animation-name: slideOutLeft;
}

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

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.animate__slideOutRight {
  animation-name: slideOutRight;
}

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

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.animate__slideOutUp {
  animation-name: slideOutUp;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  height: 100%;
  display: flex;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  pointer-events: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  display: flex;
}

.splide__pagination li {
  pointer-events: auto;
  margin: 0;
  line-height: 1;
  list-style-type: none;
  display: inline-block;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  visibility: hidden;
  position: relative;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  margin: 0;
  position: relative;
  list-style-type: none !important;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  contain: strict;
  border: 2px solid #999;
  border-left-color: #0000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: auto;
  animation: 1s linear infinite splide-loading;
  display: inline-block;
  position: absolute;
  inset: 0;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  z-index: 0;
  position: relative;
  overflow: hidden;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  opacity: 0;
  z-index: 0;
  margin: 0 !important;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  cursor: pointer;
  opacity: .7;
  z-index: 1;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  padding: 0;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.splide__arrow svg {
  fill: #000;
  width: 1.2em;
  height: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: .9;
}

.splide__arrow:disabled {
  opacity: .3;
}

.splide__arrow:focus-visible {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__pagination {
  z-index: 1;
  padding: 0 1em;
  position: absolute;
  bottom: .5em;
  left: 0;
  right: 0;
}

.splide__pagination__page {
  opacity: .7;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin: 3px;
  padding: 0;
  transition: transform .2s linear;
  display: inline-block;
  position: relative;
}

.splide__pagination__page.is-active {
  z-index: 1;
  background: #fff;
  transform: scale(1.4);
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: .9;
}

.splide__pagination__page:focus-visible, .splide.is-focus-in .splide__pagination__page:focus {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: #0000;
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline-offset: -3px;
    outline: 3px solid #0bf;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline-offset: -3px;
    outline: 3px solid #0bf;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible, .splide.is-focus-in .splide__toggle:focus {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__track--nav > .splide__list > .splide__slide {
  cursor: pointer;
  border: 3px solid #0000;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  top: auto;
  bottom: 1em;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  flex-direction: column;
  padding: 1em 0;
  display: flex;
  inset: 0 .5em 0 auto;
}

:root {
  --navy: #0a2540;
  --maroon: maroon;
  --slate: #e5e7eb;
}

body {
  font-family: Inter;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Montserrat;
}

.text-sm {
  font-size: .8rem;
}

nav.top {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

nav.top .social-icons svg {
  width: 28px;
  transition: transform .3s;
  display: inline-block;
}

nav.top .social-icons svg:hover {
  transform: scale(1.5);
}

nav.primary {
  z-index: 1000;
}

nav.primary .navbar-brand {
  width: 250px;
}

nav.primary .navbar-brand img {
  object-fit: contain;
  width: auto;
  max-width: 100%;
  height: 50px;
}

nav.primary .navbar-nav .nav-link {
  color: #1a1a2e;
  padding: .5rem .8rem;
  font-size: .95rem;
  font-weight: 600;
  transition: color .3s;
  position: relative;
}

nav.primary .navbar-nav .nav-link:hover {
  color: #8b0000;
}

nav.primary .navbar-nav .nav-link.active {
  color: #8b0000;
  position: relative;
}

nav.primary .navbar-nav .nav-link.active:after {
  content: "";
  background: #8b0000;
  border-radius: 2px;
  width: 100%;
  height: 4px;
  animation: .3s forwards slideIn;
  position: absolute;
  bottom: -2px;
  left: 0;
}

@keyframes slideIn {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

nav.primary a.apply-now {
  background: #8b0000;
  border-radius: 20px;
  transition: all .3s;
  color: #fff !important;
  padding: .5rem 1.5rem !important;
}

nav.primary a.apply-now:hover {
  background: #6d0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px #8b00004d;
}

.dropdown-menu {
  border: none;
  border-radius: 8px;
  margin-top: .5rem;
  box-shadow: 0 4px 12px #0000001a;
}

.dropdown-item {
  padding: .6rem 1.5rem;
  font-size: .9rem;
  transition: all .2s;
}

.dropdown-item:hover {
  color: #8b0000;
  background-color: #f8f9fa;
  padding-left: 2rem;
}

.dropdown-divider {
  margin: .5rem 0;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  margin-top: -1px;
  top: 0;
  left: 100%;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

@media (width <= 991.98px) {
  nav.primary .navbar-brand {
    width: 70%;
    margin-right: 0;
  }

  nav.primary .navbar-brand img {
    width: 100%;
    height: auto;
  }

  nav.primary .navbar-nav .nav-link {
    padding: .75rem 0;
  }

  nav.primary .navbar-nav .nav-link.active:after {
    width: 30%;
  }

  .dropdown-submenu > .dropdown-menu {
    box-shadow: none;
    margin-left: 1rem;
    position: static;
  }

  nav.primary a.apply-now {
    margin: .5rem 0;
    display: inline-block;
  }
}

@media (width >= 992px) {
  nav.primary .navbar-nav .nav-link {
    padding: .5rem .7rem;
  }
}

@media (width >= 1200px) {
  nav.primary .navbar-brand {
    width: 280px;
  }

  nav.primary .navbar-brand img {
    height: 55px;
  }

  nav.primary .navbar-nav .nav-link {
    padding: .5rem .85rem;
    font-size: 1rem;
  }
}

.no-underline {
  text-decoration: none;
}

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

.cursor-pointer {
  cursor: pointer;
}

footer {
  background: #111827;
}

footer img.logo-2 {
  width: 48px;
}

footer .social-icons svg {
  stroke: #fff;
}

footer .list-group .list-group-item {
  color: #fff;
  background-color: #0000;
  border: none;
  padding-left: 0;
}

footer table.contact td {
  background-color: #0000 !important;
  border: none !important;
}

footer table.contact td svg {
  stroke: #fff;
}

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

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

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.text-maroon {
  color: var(--maroon);
}

.bg-maroon {
  background-color: var(--maroon);
}

.btn.bg-maroon:hover {
  background-color: var(--maroon) !important;
}

.text-navy {
  color: var(--navy);
}

.bg-navy {
  background-color: var(--navy);
}

.text-slate {
  color: var(--slate);
}

.bg-slate {
  background-color: var(--slate);
}

.quick-contact {
  z-index: 999;
  flex-direction: column;
  gap: 15px;
  display: flex;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.quick-contact .btn {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  text-decoration: none;
  transition: transform .3s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px #0000004d;
}

.quick-contact .btn:hover {
  transform: translateY(-3px)scale(1.05);
  box-shadow: 0 6px 20px #0006;
}

.quick-contact .btn.whatsapp {
  background-color: #25d366;
  animation: 2s infinite pulse;
}

.quick-contact .btn.call {
  background-color: #007aff;
  animation: 2s 1s infinite pulse-call;
}

.quick-contact .btn.whatsapp .icon {
  z-index: 1;
  width: 35px;
  height: 35px;
  position: relative;
}

.quick-contact .btn.call .icon {
  z-index: 1;
  width: 30px;
  height: 30px;
  position: relative;
}

.quick-contact .btn .tooltip {
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  background: #000000d9;
  border-radius: 6px;
  padding: 8px 12px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  transition: opacity .3s;
  position: absolute;
  top: 50%;
  right: 70px;
  transform: translateY(-50%);
}

.quick-contact .btn:hover .tooltip {
  opacity: 1;
}

@keyframes pulse-call {
  0% {
    box-shadow: 0 0 #007affb3;
  }

  70% {
    box-shadow: 0 0 0 15px #007aff00;
  }

  100% {
    box-shadow: 0 0 #007aff00;
  }
}

@media (width <= 600px) {
  .quick-contact {
    gap: 12px;
    bottom: 15px;
    right: 15px;
  }

  .quick-contact .btn {
    width: 56px;
    height: 56px;
  }

  .quick-contact .btn .tooltip {
    padding: 6px 10px;
    font-size: 13px;
    right: 65px;
  }

  .quick-contact .btn.whatsapp .icon {
    width: 32px;
    height: 32px;
  }

  .quick-contact .btn.call .icon {
    width: 28px;
    height: 28px;
  }
}

.btn-bg-gradient {
  background: linear-gradient(45deg, #06b6d4, #a855f7);
}

.linkedin-button {
  border: 1px solid #f2edee;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.linkedin-button svg {
  width: 24px;
  height: 24px;
}

.linkedin-button:hover {
  background-color: #f2edee;
}

.fill-muted svg {
  fill: #212529bf;
}

.fill-white svg {
  fill: #fff;
}

.stroke-white svg {
  stroke: #fff;
}

.svg-36 svg {
  width: 36px;
  height: 36px;
}

.home--hero {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 350px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-video-background {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.hero-video-background video {
  object-fit: cover;
  opacity: 1;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-overlay {
  z-index: 2;
  background: #0000004d;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#particles-js {
  z-index: 3;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#particles-js canvas {
  opacity: .7;
}

.hero-text {
  z-index: 4;
  width: 100%;
  position: relative;
}

.hero-text h1 {
  text-shadow: 2px 2px 8px #000c;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  animation: .8s ease-out fadeInUp;
}

.hero-text p.sub {
  text-shadow: 1px 1px 6px #000c;
  font-size: 1rem;
  line-height: 1.5;
  animation: .8s ease-out .2s both fadeInUp;
}

.hero-text .d-flex {
  animation: .8s ease-out .4s both fadeInUp;
}

.hero-text .btn {
  border-radius: 8px;
  padding: .625rem 1.75rem;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
}

.hero-text .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px #0003;
}

@media (width <= 1199.98px) {
  .home--hero {
    height: 350px;
  }
}

@media (width <= 991.98px) {
  .home--hero {
    height: 320px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p.sub {
    font-size: .95rem;
  }
}

@media (width <= 767.98px) {
  .home--hero {
    height: 300px;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .hero-text p.sub {
    font-size: .9rem;
  }

  .hero-text .btn {
    padding: .5rem 1.25rem;
    font-size: .875rem;
  }

  .video-overlay {
    background: #00000080;
  }
}

@media (width <= 575.98px) {
  .home--hero {
    height: 300px;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text p.sub {
    font-size: .85rem;
  }

  .hero-text .btn {
    padding: .625rem 1.25rem;
    font-size: .875rem;
  }

  .video-overlay {
    background: #0009;
  }
}

@media screen and (width <= 400px) {
  .home--hero {
    height: 350px;
  }

  .hero-text h1 {
    font-size: 1.35rem;
  }

  .hero-text p.sub {
    font-size: .8rem;
  }
}

@media screen and (height <= 600px) and (orientation: landscape) {
  .home--hero {
    height: 300px;
  }

  .hero-text h1 {
    font-size: 1.5rem;
    margin-bottom: .5rem !important;
  }

  .hero-text p.sub {
    font-size: .85rem;
    margin-bottom: .75rem !important;
  }

  .hero-text .btn {
    padding: .5rem 1rem;
    font-size: .8rem;
  }
}

.home--news-ticker {
  color: #fff;
  background: linear-gradient(135deg, #7c2d12 0%, #991b1b 50%, #1e3a8a 100%) 0 0 / 200% 200%;
  border-bottom: 2px solid #fff3;
  padding: 16px 0;
  animation: 15s infinite subtleGradient;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px #00000026;
}

.home--news-ticker button {
  border-radius: 5px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.home--news-ticker button.btn-updates {
  color: var(--maroon);
  background-color: #fff;
}

.home--news-ticker button.ticker-button {
  white-space: nowrap;
  color: #fff;
  background-color: #931e19;
  border: 1px solid #fff;
  width: max-content;
  padding-left: 8px;
  padding-right: 8px;
}

.home--news-ticker .ticker-wrapper {
  width: 100%;
  overflow: hidden;
}

.home--news-ticker .ticker-wrapper .ticker-content {
  gap: 2rem;
  animation: 20s linear infinite scroll;
  display: flex;
}

.home--banner, .home--banner .item {
  position: relative;
}

.home--banner .item:after {
  content: "";
  pointer-events: none;
  z-index: 1;
  background: #00000059;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.home--banner img {
  filter: brightness(.9);
  height: 450px;
}

.home--banner .owl-dots {
  z-index: 3;
  width: 100%;
  position: absolute;
  bottom: 20px;
  left: 0;
}

.home--banner .caption {
  text-align: center;
  color: #fff;
  z-index: 2;
  background: none;
  width: 100%;
  padding: 10px 0;
  font-size: 24px;
  position: absolute;
  bottom: 50px;
  left: 0;
}

.home--banner .banner-icon {
  filter: drop-shadow(0 0 8px #ffffff80);
  width: 36px;
}

.home--banner .banner-icon svg {
  stroke: #fff;
  fill: #fff;
}

.home--banner .banner-title {
  color: #fff;
  text-shadow: 2px 2px 10px #000c;
  font-size: 28px;
  font-weight: 700;
}

.home--banner .banner-desc {
  color: #fff;
  text-shadow: 1px 1px 6px #000000b3;
  font-size: 18px;
}

.home--banner .banner-cta {
  padding: 12px 30px;
  font-weight: 600;
  transition: all .3s;
  box-shadow: 0 4px 15px #ffffff4d;
}

.home--banner .banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #ffffff80;
}

.home--skills img {
  object-fit: cover;
  width: 100%;
  height: 260px;
}

.home--skills .card {
  border: 1px solid #e0e0e0;
  margin-bottom: 2rem;
  transition: transform .3s, box-shadow .3s;
}

.home--skills .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px #0000001a;
}

.home--skills .card-body {
  padding: 1.5rem;
}

.home--skills .card-title {
  color: #1a1a2e;
  min-height: 3rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.home--skills .card-text {
  color: #666;
  margin-bottom: 1rem;
  font-size: .95rem;
}

.home--skills .card-meta {
  margin-bottom: 1.5rem;
}

.home--skills .card-meta .meta-item {
  align-items: center;
  gap: .4rem;
  display: flex !important;
}

.home--skills .card-meta .meta-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.home--skills .card-meta .meta-item .meta-text {
  white-space: nowrap;
  font-weight: 500;
  line-height: 1.2;
  visibility: visible !important;
  opacity: 1 !important;
  color: #555 !important;
  font-size: .875rem !important;
  display: inline-block !important;
}

.home--skills .card-body span {
  color: #555;
  font-size: .875rem;
  visibility: visible !important;
  opacity: 1 !important;
  display: inline-block !important;
}

.home--skills .btn {
  border-radius: 6px;
  padding: .6rem 1.5rem;
  font-weight: 600;
  transition: all .3s;
}

.home--skills .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px #8b00004d;
}

@media (width <= 991px) {
  .home--skills .card-title {
    min-height: auto;
    font-size: 1rem;
  }

  .home--skills img {
    height: 220px;
  }
}

@media (width <= 767px) {
  .home--skills img {
    height: 200px;
  }

  .home--skills .card-meta {
    flex-direction: column;
    gap: .5rem !important;
  }
}

.home--recruiters button.ticker-button {
  white-space: nowrap;
  width: max-content;
}

.home--recruiters .recruiters-wrapper {
  width: 100%;
  display: flex;
  overflow: hidden;
}

.home--recruiters .recruiters-wrapper .recruiters-content {
  flex-shrink: 0;
  gap: 1.5rem;
  animation: 60s linear infinite scroll;
  display: flex;
}

.home--recruiters .recruiters-wrapper .recruiters-content .item {
  flex-shrink: 0;
}

.home--recruiters .recruiters-wrapper .recruiters-content .card {
  background: #fff;
  flex-shrink: 0;
  width: 250px;
  min-width: 250px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 2px 4px #0000001a;
}

.home--recruiters .recruiters-wrapper .recruiters-content .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px #00000026;
}

.home--recruiters .recruiters-wrapper .recruiters-content .card .card-body {
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  display: flex;
}

@media (width <= 768px) {
  .home--recruiters .recruiters-wrapper .recruiters-content .card {
    width: 200px;
    min-width: 200px;
  }

  .home--recruiters .recruiters-wrapper .recruiters-content .card .card-body {
    padding: 1rem;
  }
}

@media (width <= 576px) {
  .home--recruiters .recruiters-wrapper .recruiters-content .card {
    width: 150px;
    min-width: 150px;
  }

  .home--recruiters .recruiters-wrapper .recruiters-content .card .card-body {
    padding: .75rem;
  }
}

.home--recruiters .recruiters-wrapper .recruiters-content img {
  object-fit: contain;
  width: 100%;
  height: 60px;
  transition: transform .3s;
}

.home--recruiters .recruiters-wrapper .recruiters-content img.logo-large {
  transform: scale(2.9);
}

@media (width <= 768px) {
  .home--recruiters .recruiters-wrapper .recruiters-content img {
    height: 50px;
  }
}

@media (width <= 576px) {
  .home--recruiters .recruiters-wrapper .recruiters-content img {
    height: 40px;
  }
}

.home--projects {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
}

.home--projects .nav-pills .nav-link.active, .home--projects .nav-pills .show > .nav-link {
  background-color: var(--maroon);
  color: #fff;
}

.home--projects .nav-pills .nav-link {
  color: var(--maroon);
  background-color: #fff;
}

.home--director-message {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.home--director-message:before {
  content: "";
  background: radial-gradient(circle, #1c2a4b0d 0%, #0000 70%);
  border-radius: 50%;
  width: 500px;
  height: 500px;
  position: absolute;
  top: -50%;
  right: -10%;
}

@media (width <= 768px) {
  .home--director-message:before {
    width: 300px;
    height: 300px;
    right: -20%;
  }
}

@media (width >= 992px) {
  .home--director-message {
    padding: 60px 0;
  }

  .home--director-message .row {
    align-items: center;
  }
}

.home--director-message .director-profile {
  text-align: center;
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  display: flex;
  position: relative;
}

.home--director-message .director-profile .profile-image-wrapper {
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}

@media (width >= 768px) {
  .home--director-message .director-profile .profile-image-wrapper {
    margin-bottom: 20px;
  }
}

.home--director-message .director-profile .profile-image-wrapper .profile-border {
  z-index: -1;
  border: 3px solid #8b1538;
  border-radius: 15px;
  position: absolute;
  inset: -8px;
  transform: rotate(5deg);
}

@media (width >= 768px) {
  .home--director-message .director-profile .profile-image-wrapper .profile-border {
    border-radius: 20px;
    inset: -10px;
  }
}

.home--director-message .director-profile .profile-image-wrapper .profile-image {
  object-fit: cover;
  object-position: center top;
  border-radius: 15px;
  width: 180px;
  height: 240px;
  transition: transform .3s;
  box-shadow: 0 10px 25px #8b153833;
}

@media (width >= 576px) {
  .home--director-message .director-profile .profile-image-wrapper .profile-image {
    width: 200px;
    height: 270px;
  }
}

@media (width >= 992px) {
  .home--director-message .director-profile .profile-image-wrapper .profile-image {
    border-radius: 20px;
    width: 220px;
    height: 290px;
  }
}

.home--director-message .director-profile .profile-image-wrapper .profile-image:hover {
  transform: scale(1.05);
}

.home--director-message .director-profile .profile-info .director-name {
  color: #1c2a4b;
  margin-bottom: 5px;
  font-size: 1.15rem;
  font-weight: 700;
}

@media (width >= 768px) {
  .home--director-message .director-profile .profile-info .director-name {
    font-size: 1.3rem;
  }
}

.home--director-message .director-profile .profile-info .director-credentials {
  color: #6c757d;
  margin-bottom: 10px;
  font-size: .9rem;
}

@media (width >= 768px) {
  .home--director-message .director-profile .profile-info .director-credentials {
    font-size: .95rem;
  }
}

.home--director-message .director-profile .profile-info .director-badge {
  color: #fff;
  background: linear-gradient(135deg, #1c2a4b, #2d4373);
  border: 2px solid #4caf50;
  border-radius: 25px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 4px 15px #1c2a4b4d;
}

@media (width >= 768px) {
  .home--director-message .director-profile .profile-info .director-badge {
    padding: 7px 18px;
    font-size: .85rem;
  }
}

.home--director-message .message-content {
  z-index: 2;
  background: #fff;
  border-top: 4px solid #8b1538;
  border-radius: 15px;
  height: 100%;
  padding: 25px 20px;
  position: relative;
  box-shadow: 0 10px 40px #1c2a4b1a;
}

@media (width >= 576px) {
  .home--director-message .message-content {
    padding: 30px;
  }
}

@media (width >= 992px) {
  .home--director-message .message-content {
    padding: 35px 40px;
  }
}

.home--director-message .message-content .message-header {
  margin-bottom: 18px;
  position: relative;
}

@media (width >= 768px) {
  .home--director-message .message-content .message-header {
    margin-bottom: 22px;
  }
}

.home--director-message .message-content .message-header .quote-icon {
  color: #8b15381a;
  font-family: Georgia, serif;
  font-size: 45px;
  line-height: 1;
  position: absolute;
  top: -12px;
  left: -5px;
}

@media (width >= 576px) {
  .home--director-message .message-content .message-header .quote-icon {
    font-size: 50px;
    top: -15px;
    left: -8px;
  }
}

@media (width >= 992px) {
  .home--director-message .message-content .message-header .quote-icon {
    font-size: 60px;
    top: -18px;
    left: -10px;
  }
}

.home--director-message .message-content .message-header .section-title {
  color: #8b1538;
  margin-bottom: 0;
  padding-left: 25px;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
}

@media (width >= 576px) {
  .home--director-message .message-content .message-header .section-title {
    padding-left: 30px;
    font-size: 1.75rem;
  }
}

@media (width >= 768px) {
  .home--director-message .message-content .message-header .section-title {
    padding-left: 35px;
    font-size: 2rem;
  }
}

@media (width >= 992px) {
  .home--director-message .message-content .message-header .section-title {
    padding-left: 40px;
    font-size: 2.2rem;
  }
}

.home--director-message .message-content .message-header .section-title:after {
  content: "";
  background: linear-gradient(90deg, #8b1538, #4caf50);
  border-radius: 2px;
  width: 50px;
  height: 3px;
  position: absolute;
  bottom: -6px;
  left: 25px;
}

@media (width >= 576px) {
  .home--director-message .message-content .message-header .section-title:after {
    width: 60px;
    bottom: -8px;
    left: 30px;
  }
}

@media (width >= 768px) {
  .home--director-message .message-content .message-header .section-title:after {
    width: 70px;
    height: 4px;
    left: 35px;
  }
}

@media (width >= 992px) {
  .home--director-message .message-content .message-header .section-title:after {
    width: 80px;
    left: 40px;
  }
}

.home--director-message .message-content .message-body .lead-paragraph {
  color: #1c2a4b;
  margin-bottom: 12px;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.65;
}

@media (width >= 768px) {
  .home--director-message .message-content .message-body .lead-paragraph {
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.7;
  }
}

@media (width >= 992px) {
  .home--director-message .message-content .message-body .lead-paragraph {
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.75;
  }
}

.home--director-message .message-content .message-body p {
  color: #495057;
  text-align: left;
  margin-bottom: 12px;
  font-size: .9rem;
  line-height: 1.65;
}

@media (width >= 768px) {
  .home--director-message .message-content .message-body p {
    margin-bottom: 14px;
    font-size: .95rem;
    line-height: 1.7;
  }
}

@media (width >= 992px) {
  .home--director-message .message-content .message-body p {
    text-align: justify;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.75;
  }
}

.home--director-message .message-content .message-body .commitment-box {
  background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f7 100%);
  border-left: 4px solid #4caf50;
  border-radius: 10px;
  margin: 16px 0;
  padding: 18px;
}

@media (width >= 768px) {
  .home--director-message .message-content .message-body .commitment-box {
    margin: 18px 0;
    padding: 20px;
  }
}

@media (width >= 992px) {
  .home--director-message .message-content .message-body .commitment-box {
    margin: 20px 0;
    padding: 22px;
  }
}

.home--director-message .message-content .message-body .commitment-box p {
  color: #1c2a4b;
  margin-bottom: 0;
  font-size: .9rem;
}

@media (width >= 768px) {
  .home--director-message .message-content .message-body .commitment-box p {
    font-size: .95rem;
  }
}

@media (width >= 992px) {
  .home--director-message .message-content .message-body .commitment-box p {
    font-size: 1rem;
  }
}

.home--director-message .message-content .message-body .closing-statement {
  color: #1c2a4b;
  border-top: 2px solid #e9ecef;
  margin-top: 12px;
  margin-bottom: 0;
  padding-top: 12px;
  font-size: .95rem;
  font-weight: 600;
}

@media (width >= 768px) {
  .home--director-message .message-content .message-body .closing-statement {
    margin-top: 14px;
    padding-top: 14px;
    font-size: 1rem;
  }
}

@media (width >= 992px) {
  .home--director-message .message-content .message-body .closing-statement {
    margin-top: 16px;
    padding-top: 16px;
    font-size: 1.05rem;
  }
}

.home--director-message .message-content .message-body strong {
  color: #8b1538;
  font-weight: 600;
}

.home--testimonials {
  background-color: #f9fafb;
}

.home--testimonials button.ticker-button {
  white-space: nowrap;
  width: max-content;
}

.home--testimonials .testimonials-wrapper {
  width: 100%;
  overflow: hidden;
}

.home--testimonials .testimonials-wrapper .testimonials-content {
  gap: 2rem;
  animation: 20s linear infinite scroll;
  display: flex;
}

.home--testimonials .testimonials-wrapper .testimonials-content:hover {
  animation-play-state: paused;
}

.home--testimonials .testimonials-wrapper .testimonials-content .card {
  flex-direction: column;
  width: 350px;
  height: 100%;
  min-height: 400px;
  display: flex;
}

.home--testimonials .testimonials-wrapper .testimonials-content .card .card-body {
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
  display: flex;
}

.home--testimonials .testimonials-wrapper .testimonials-content .card .card-body p {
  flex: 1;
  margin-bottom: 1rem;
}

.home--testimonials .testimonials-wrapper .testimonials-content .card .card-body .card-footer {
  border-top: 1px solid #e5e7eb;
  margin-top: auto;
  padding: 1rem 0 0;
}

.home--testimonials .testimonials-wrapper .testimonials-content .card .star {
  color: #fbbf24;
  width: 30px;
}

.home--testimonials .testimonials-wrapper .testimonials-content img {
  width: 40px;
  height: 40px;
}

.home--testimonials .testimonials-content .card .card-body {
  min-height: 350px;
}

@media screen and (width <= 992px) {
  .home--testimonials .testimonials-content .card {
    width: 320px;
    min-height: 380px;
  }

  .home--testimonials .testimonials-content .card .card-body {
    min-height: 320px;
    padding: 1.25rem;
  }
}

@media screen and (width <= 768px) {
  .home--testimonials .testimonials-content .card {
    width: 300px;
    min-height: 400px;
  }

  .home--testimonials .testimonials-content .card .card-body {
    min-height: 340px;
    padding: 1rem;
  }

  .home--testimonials .testimonials-content .card .card-body p {
    font-size: .95rem;
  }

  .home--testimonials .testimonials-content .card .card-footer .d-flex {
    gap: .75rem;
    flex-direction: column !important;
  }
}

@media screen and (width <= 576px) {
  .home--testimonials {
    padding: 2rem 0 !important;
  }

  .home--testimonials h2 {
    font-size: 1.5rem;
  }

  .home--testimonials .testimonials-content {
    gap: 1.5rem;
  }

  .home--testimonials .testimonials-content .card {
    width: 280px;
    min-height: 420px;
  }

  .home--testimonials .testimonials-content .card .card-body {
    min-height: 360px;
    padding: 1rem;
  }

  .home--testimonials .testimonials-content .card .card-body p {
    font-size: .9rem;
    line-height: 1.5;
  }

  .home--testimonials .testimonials-content .card .star {
    width: 24px;
  }

  .home--testimonials .testimonials-content img {
    width: 36px;
    height: 36px;
  }
}

#placementSplideModal .modal-xl {
  max-width: 900px;
}

#placementSplideModal .modal-content {
  border-radius: 12px;
  overflow: hidden;
}

#placementSplideModal .modal-body img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  display: block;
}

#placementSplideModal .btn-close {
  opacity: .9;
  background-color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  box-shadow: 0 2px 8px #00000026;
}

#placementSplideModal .btn-close:hover {
  opacity: 1;
  transition: all .2s;
  transform: scale(1.1);
}

@media (width <= 992px) {
  #placementSplideModal .modal-xl {
    max-width: 90%;
    margin: 1rem auto;
  }
}

@media (width <= 576px) {
  #placementSplideModal .modal-xl {
    max-width: 95%;
    margin: .5rem auto;
  }

  #placementSplideModal .btn-close {
    width: 30px;
    height: 30px;
    margin: 10px !important;
  }
}

.home--target-companies {
  background-color: #f8f9fa;
}

.home--target-companies .companies-wrapper {
  width: 100%;
  overflow: hidden;
}

.home--target-companies .companies-wrapper .companies-content {
  gap: 2rem;
  animation: 12s linear infinite scroll-left-to-right;
  display: flex;
}

.home--target-companies .companies-wrapper .companies-content:hover {
  animation-play-state: paused;
}

.home--target-companies .companies-wrapper .companies-content .item {
  flex-shrink: 0;
}

.home--target-companies .companies-wrapper .companies-content .card {
  background: #fff;
  width: 180px;
  min-width: 180px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 2px 4px #0000001a;
}

.home--target-companies .companies-wrapper .companies-content .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px #00000026;
}

.home--target-companies .companies-wrapper .companies-content .card .card-body {
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  display: flex;
}

@media (width <= 768px) {
  .home--target-companies .companies-wrapper .companies-content .card {
    width: 150px;
    min-width: 150px;
  }

  .home--target-companies .companies-wrapper .companies-content .card .card-body {
    padding: 1rem;
  }
}

@media (width <= 576px) {
  .home--target-companies .companies-wrapper .companies-content .card {
    width: 120px;
    min-width: 120px;
  }

  .home--target-companies .companies-wrapper .companies-content .card .card-body {
    padding: .75rem;
  }
}

.home--target-companies .companies-wrapper .companies-content img {
  object-fit: contain;
  width: 100%;
  height: 60px;
}

.home--target-companies .companies-wrapper .companies-content img.logo-large {
  transform: scale(2.5);
}

@media (width <= 768px) {
  .home--target-companies .companies-wrapper .companies-content img {
    height: 50px;
  }
}

@media (width <= 576px) {
  .home--target-companies .companies-wrapper .companies-content img {
    height: 40px;
  }
}

@keyframes scroll-left-to-right {
  0% {
    transform: translateX(-50%);
  }

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

.home--recruiters .recruiters-wrapper {
  width: 100%;
  overflow: hidden;
}

.home--recruiters .recruiters-wrapper .recruiters-content {
  gap: 1.5rem;
  animation: 100s linear infinite scroll;
  display: flex;
}

.home--recruiters .recruiters-wrapper .recruiters-content:hover {
  animation-play-state: paused;
}

.home--recruiters .recruiters-wrapper .recruiters-content .card {
  width: 250px;
  min-width: 250px;
}

@media (width <= 768px) {
  .home--recruiters .recruiters-wrapper .recruiters-content .card {
    width: 200px;
    min-width: 200px;
  }
}

@media (width <= 576px) {
  .home--recruiters .recruiters-wrapper .recruiters-content .card {
    width: 150px;
    min-width: 150px;
  }
}

.home--recruiters .recruiters-wrapper .recruiters-content img {
  object-fit: contain;
  width: 100%;
  height: 60px;
}

@media (width <= 768px) {
  .home--recruiters .recruiters-wrapper .recruiters-content img {
    height: 50px;
  }
}

@media (width <= 576px) {
  .home--recruiters .recruiters-wrapper .recruiters-content img {
    height: 40px;
  }
}

.courses--hero {
  color: #fff;
  background: linear-gradient(-45deg, var(--navy), var(--maroon), var(--navy));
  text-align: left;
  flex-direction: column;
  align-items: center;
  min-height: 250px;
  padding: 64px 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  opacity: .2;
  background-image: url("course-hero.fc473ca2.jpeg");
  background-position: 50%;
  background-size: cover;
  min-height: 250px;
  position: absolute;
  inset: 0;
}

.pathway {
  color: #1d2433;
  text-align: left;
  background: linear-gradient(135deg, #fef3f2 0%, #fee2e2 100%);
  border-left: 4px solid #8b1e3f;
  border-radius: 12px;
  margin: 24px 0;
  padding: 24px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.icon-box-sm {
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 24px;
  display: flex;
}

.card {
  border: 2px solid #e9ecef;
  height: 100%;
  transition: all .3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px #0000001a;
}

.feature-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px #00000014;
}

.gradient-icon {
  color: #fff;
  background: linear-gradient(135deg, #0d6efd 0%, #4c3fb1 100%);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  font-size: 32px;
  display: flex;
}

.badge-custom {
  color: #fff;
  background: #0d6efd;
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 8px 20px;
  display: inline-block;
}

.cta-section {
  color: #fff;
  background: linear-gradient(135deg, #0d6efd 0%, #4c3fb1 100%);
  border-radius: 20px;
  padding: 60px 30px;
}

.btn-custom {
  border-radius: 8px;
  padding: 12px 32px;
  font-weight: 500;
  transition: all .3s;
}

.highlight-card {
  border-radius: 15px;
  padding: 40px;
}

.bg-gradient-green {
  background: linear-gradient(135deg, #d1f4e0 0%, #bef0d4 100%);
}

footer {
  color: #adb5bd;
  background: #212529;
  padding: 40px 0;
}

.check-icon {
  color: #28a745;
  margin-right: 10px;
  font-size: 20px;
}

@media (width <= 768px) {
  .hero-section {
    padding: 50px 0;
  }

  .cta-section {
    padding: 40px 20px;
  }
}

.course-card {
  background: #fff;
  border: none;
  border-radius: 16px;
  flex-direction: column;
  height: 100%;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px #00000014;
}

.course-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px #80002026;
}

.course-card:before {
  content: "";
  background: linear-gradient(90deg, #800020, #a01030);
  height: 4px;
  transition: transform .4s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

.course-card:hover:before {
  transform: scaleX(1);
}

.course-card .card-body {
  position: relative;
}

.course-card .card-body:after {
  content: "";
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(135deg, #80002005 0%, #8000200d 100%);
  transition: opacity .4s;
  position: absolute;
  inset: 0;
}

.course-card:hover .card-body:after {
  opacity: 1;
}

.course-card .card-title {
  z-index: 1;
  transition: color .3s;
  position: relative;
}

.course-card:hover .card-title {
  color: #800020;
}

.course-card .card-text {
  z-index: 1;
  transition: color .3s;
  position: relative;
}

.course-card:hover .card-text {
  color: #495057;
}

.course-card .card-footer {
  background: none;
  transition: all .3s;
}

.course-card:hover .card-footer {
  background: #80002008;
  border-top-color: #8000201a;
}

.course-card .btn {
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.course-card .btn:before {
  content: "";
  background: linear-gradient(90deg, #0000, #ffffff4d, #0000);
  width: 100%;
  height: 100%;
  transition: left .5s;
  position: absolute;
  top: 0;
  left: -100%;
}

.course-card:hover .btn:before {
  left: 100%;
}

.course-card .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px #8000204d;
}

.course-card .btn:active {
  transform: scale(.98);
}

.course-card .btn:after {
  content: "→";
  margin-left: 8px;
  transition: transform .3s;
  display: inline-block;
}

.course-card:hover .btn:after {
  transform: translateX(4px);
}

@media (width <= 768px) {
  .course-card:hover {
    transform: translateY(-8px);
  }
}

.internship--hero {
  background: linear-gradient(-45deg, var(--navy), var(--maroon), var(--navy));
  justify-content: center;
  align-items: center;
  min-height: 250px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.internship--hero .hero-bg {
  opacity: .2;
  background-image: url("https://images.unsplash.com/photo-1744368191937-8fe5fde474a8?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxlbGVjdHJvbmljcyUyMGVuZ2luZWVyaW5nJTIwVkxTSSUyMGNoaXAlMjBkZXNpZ258ZW58MXx8fHwxNzU4NjI5MTM1fDA&ixlib=rb-4.1.0&q=80&w=1080");
  background-position: 50%;
  background-size: cover;
  height: 350px;
  position: absolute;
  inset: 0;
}

.internship--hero .floating-particles {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.internship--hero .particle {
  opacity: .3;
  background: #fff;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 2.97445s ease-in-out .152096s infinite float;
  position: absolute;
  top: 84.4406%;
  left: 99.2234%;
}

.internship--hero .animated-text {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(45deg, #06b6d4, #a855f7) text;
  animation: 2s ease-in-out infinite pulse;
}

.hands-on-splide .card {
  cursor: pointer;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  min-width: 230px;
  max-width: 100%;
  overflow: hidden;
}

.hands-on-splide .splide__slide {
  justify-content: center;
  align-items: center;
  display: flex;
}

.hands-on-splide .card:hover {
  transition: all .3s;
  transform: translateY(-5px);
  box-shadow: 0 4px 15px #00000026;
}

.hands-on-splide img.hands-on-image {
  object-fit: cover;
  width: 100%;
  height: 200px;
}

@media screen and (width <= 425px) {
  .modal-dialog {
    margin: 0 auto;
  }

  .hands-on-splide .card {
    min-width: 200px;
  }

  .hands-on-splide img.hands-on-image {
    height: 150px;
  }
}

.industry-exposure-splide .card {
  cursor: pointer;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  min-width: 230px;
  max-width: 100%;
  overflow: hidden;
}

.industry-exposure-splide .splide__slide {
  justify-content: center;
  align-items: center;
  display: flex;
}

.industry-exposure-splide .card:hover {
  transition: all .3s;
  transform: translateY(-5px);
  box-shadow: 0 4px 15px #00000026;
}

.industry-exposure-splide img.industry-exposure-image {
  object-fit: cover;
  width: 100%;
  height: 200px;
}

@media screen and (width <= 425px) {
  .modal-dialog {
    margin: 0 auto;
  }

  .industry-exposure-splide .card {
    min-width: 200px;
  }

  .industry-exposure-splide img.industry-exposure-image {
    height: 150px;
  }
}

:root {
  --maroon: #800020;
  --maroon-light: #a01030;
  --slate: #f8f9fa;
}

body, .bg-slate {
  background-color: var(--slate);
}

.internship-section h2 {
  color: #212529;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.internship-section h2:after {
  content: "";
  background: linear-gradient(90deg, var(--maroon), var(--maroon-light));
  width: 60%;
  height: 4px;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.subtitle {
  color: #6c757d;
  margin-bottom: 3rem;
  font-size: 1.125rem;
}

.internship-card {
  background: #fff;
  border: none;
  border-radius: 16px;
  flex-direction: column;
  height: 100%;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px #00000014;
}

.internship-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px #80002026;
}

.internship-card:before {
  content: "";
  background: linear-gradient(90deg, var(--maroon), var(--maroon-light));
  height: 4px;
  transition: transform .4s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

.internship-card:hover:before {
  transform: scaleX(1);
}

.internship-card .card-body {
  padding: 3rem 2rem;
  position: relative;
}

.internship-card .card-body:after {
  content: "";
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(135deg, #80002005 0%, #8000200d 100%);
  transition: opacity .4s;
  position: absolute;
  inset: 0;
}

.internship-card:hover .card-body:after {
  opacity: 1;
}

.internship-card .card-title {
  color: #212529;
  z-index: 1;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  transition: color .3s;
  position: relative;
}

.internship-card:hover .card-title {
  color: var(--maroon);
}

.internship-card .card-text {
  color: #6c757d;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.6;
  transition: color .3s;
  position: relative;
}

.internship-card:hover .card-text {
  color: #495057;
}

.program-option {
  cursor: pointer;
  background: #fff;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1rem 1.5rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.program-option:before {
  content: "";
  background: linear-gradient(90deg, #0000, #8000200d, #0000);
  width: 100%;
  height: 100%;
  transition: left .5s;
  position: absolute;
  top: 0;
  left: -100%;
}

.program-option:hover:before {
  left: 100%;
}

.program-option:hover {
  border-color: var(--maroon);
  background: #80002005;
  transform: translateX(5px);
}

.program-title {
  color: #212529;
  margin-bottom: .5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.program-meta {
  color: #6c757d;
  font-size: .875rem;
}

.program-meta i {
  color: var(--maroon);
  margin-right: .25rem;
}

.internship-card .card-footer {
  background: none;
  border-top: 1px solid #dee2e6;
  padding: 1.5rem;
  transition: all .3s;
}

.internship-card:hover .card-footer {
  background: #80002008;
  border-top-color: #8000201a;
}

.btn-view-details {
  background-color: var(--maroon);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .75rem 2rem;
  font-weight: 600;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.btn-view-details:before {
  content: "";
  background: linear-gradient(90deg, #0000, #ffffff4d, #0000);
  width: 100%;
  height: 100%;
  transition: left .5s;
  position: absolute;
  top: 0;
  left: -100%;
}

.btn-view-details:hover:before {
  left: 100%;
}

.btn-view-details:hover {
  background-color: var(--maroon-light);
  transform: scale(1.05);
  box-shadow: 0 4px 15px #8000204d;
}

.btn-view-details:active {
  transform: scale(.98);
}

.btn-view-details:after {
  content: "→";
  margin-left: 8px;
  transition: transform .3s;
  display: inline-block;
}

.btn-view-details:hover:after {
  transform: translateX(4px);
}

.modal-header {
  background: linear-gradient(90deg, var(--maroon), var(--maroon-light));
  color: #fff;
  border-bottom: none;
}

.modal-title {
  font-size: 1.75rem;
  font-weight: 700;
}

.modal-body h4 {
  color: var(--maroon);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-body h4:first-child {
  margin-top: 0;
}

.modal-body ul {
  padding-left: 1.5rem;
}

.modal-body ul li {
  color: #495057;
  margin-bottom: .5rem;
  line-height: 1.6;
}

.pathway {
  color: #495057;
  border-left: 4px solid var(--maroon);
  background: #8000200d;
  border-radius: 4px;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

.btn.bg-maroon {
  background-color: var(--maroon);
  border: none;
  margin-top: 1rem;
  margin-right: .5rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: all .3s;
}

.btn.bg-maroon:hover {
  background-color: var(--maroon-light);
  transform: scale(1.05);
}

.btn.bt-white {
  border: 2px solid var(--maroon);
  background-color: #fff;
  margin-top: 1rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: all .3s;
}

.btn.bt-white:hover {
  background-color: var(--maroon);
  color: #fff !important;
}

.btn-close-white {
  filter: brightness(0) invert();
}

@media (width <= 768px) {
  .internship-card:hover {
    transform: translateY(-8px);
  }

  .internship-section h2 {
    font-size: 2rem;
  }
}

.about--hero {
  color: #fff;
  background: linear-gradient(-45deg, var(--navy), var(--maroon), var(--navy));
  text-align: left;
  flex-direction: column;
  align-items: center;
  min-height: 250px;
  padding: 64px 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.about--directors img {
  height: 300px;
}

.svg-36 svg {
  width: 36px;
  height: 36px;
  transition: transform .3s;
}

.d-flex:hover svg {
  transform: scale(1.1);
}

.mis-vis .icon-wrapper {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  animation: 3s ease-in-out infinite float;
  display: flex;
  box-shadow: 0 10px 25px #667eea4d;
}

.mis-vis .mission-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  box-shadow: 0 10px 25px #f5576c4d;
}

.mis-vis .vision-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  box-shadow: 0 10px 25px #4facfe4d;
}

.mis-vis .icon-wrapper svg {
  color: #fff;
  width: 45px;
  height: 45px;
}

.mis-vis .card {
  border: none;
  border-radius: 15px;
  height: 100%;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 5px 20px #0000001a;
}

.mis-vis .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px #00000026;
}

.mis-vis .card-body h4 {
  color: #333;
  margin-bottom: 1rem;
  font-weight: 700;
}

.mis-vis .card-body p {
  color: #666;
  line-height: 1.8;
}

@media (width <= 767px) {
  .mis-vis .icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }

  .mis-vis .icon-wrapper svg {
    width: 38px;
    height: 38px;
  }

  .mis-vis .card-body {
    padding: 1.5rem;
  }
}

.placement--hero {
  color: #fff;
  background: linear-gradient(-45deg, var(--navy), var(--maroon), var(--navy));
  text-align: left;
  flex-direction: column;
  align-items: center;
  min-height: 250px;
  padding: 64px 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-purple {
  color: #6f42c1;
}

.bg-purple {
  background-color: #6f42c1;
}

@media (width >= 992px) {
  .col-lg-5th {
    flex: none;
    width: 20%;
  }
}

.placement--students .student {
  position: relative;
}

.placement--students .student .company {
  background: #fff;
  padding: 5px;
  position: absolute;
  bottom: 100px;
  right: 10px;
}

.placement--students .student .company img {
  width: 120px;
}

.placement-card {
  transition: transform .3s, box-shadow .3s;
}

.placement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 .5rem 1rem #00000026;
}

.linkedin-icon {
  color: #0a66c2;
  margin-top: .4rem;
  font-size: 1rem;
  display: inline-block;
}

.linkedin-icon:hover {
  color: #004182;
}

@media (width >= 992px) {
  .placement--recruiters .col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.placement--recruiters .recruiter {
  width: 200px;
  position: relative;
}

@media (width <= 767.98px) {
  .placement--recruiters .recruiter {
    width: 100%;
  }
}

.placement--recruiters .card-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.placement--recruiters .card-link:hover {
  text-decoration: none;
}

.placement--recruiters .recruiter-card {
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}

.placement--recruiters .recruiter-card:hover {
  z-index: 10;
  transform: scale(1.08);
  box-shadow: 0 8px 20px #00000040 !important;
}

.placement--recruiters .recruiter-card img {
  object-fit: contain;
  height: 80px;
  transition: transform .3s;
}

.placement--recruiters .company-name {
  color: #333;
  font-weight: 500;
  transition: color .2s;
  display: block;
}

.placement--recruiters .card-link:hover .company-name {
  color: #0d6efd;
}

.support .bg-purple {
  background-color: #6f42c1;
}

.support .text-purple {
  color: #6f42c1;
}

.support .card h5, .support .card p {
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  white-space: normal;
}

.support .card {
  min-height: 220px;
}

.list-group-item {
  background-color: #0000;
}

@media (width <= 768px) {
  .display-3 {
    font-size: 2.5rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .display-5 {
    font-size: 1.75rem;
  }
}

.admissions--steps .step {
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  font-size: 2rem;
  display: flex;
}

.admissions--banner {
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  white-space: normal;
}

.admissions--banner .card {
  word-break: keep-all;
  overflow-wrap: break-word;
  hyphens: none;
}

.admissions--banner .card-title {
  word-break: keep-all;
  overflow-wrap: normal;
  white-space: normal;
  hyphens: none;
}

.admissions--banner .card-text {
  word-break: keep-all;
  overflow-wrap: break-word;
  hyphens: none;
}

.bg-gradient-success {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.step-number {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
}

.step-card {
  padding-left: 80px;
  position: relative;
}

.step-card:before {
  content: "";
  background: linear-gradient(#667eea, #0000);
  width: 2px;
  position: absolute;
  top: 60px;
  bottom: -40px;
  left: 30px;
}

.step-card:last-child:before {
  display: none;
}

@media (width <= 768px) {
  .step-card {
    padding-top: 20px;
    padding-left: 0;
  }

  .step-card:before {
    display: none;
  }

  .display-3 {
    font-size: 2.5rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .display-5 {
    font-size: 1.75rem;
  }

  .admissions--banner .card-title {
    font-size: 1rem;
    line-height: 1.4;
  }

  .admissions--banner .card-text {
    font-size: .875rem;
  }
}

@media (width <= 576px) {
  .admissions--banner .card-title {
    font-size: .95rem;
  }

  .admissions--banner .card-body {
    padding: 1rem !important;
  }

  .admissions--banner .col-12 {
    min-width: 200px;
  }
}

@media (width >= 769px) and (width <= 1199px) {
  .admissions--banner .card-title {
    font-size: 1.1rem;
  }
}

.icon-box {
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  font-size: 2rem;
  display: flex;
}

.cta-button {
  transition: all .3s;
}

.cta-button:hover {
  transform: scale(1.05);
}

.bg {
  background: linear-gradient(-45deg, var(--navy), var(--maroon), var(--navy));
}

.admissions--hero {
  color: #fff;
  background: linear-gradient(-45deg, var(--navy), var(--maroon), var(--navy));
  text-align: left;
  flex-direction: column;
  align-items: center;
  min-height: 250px;
  padding: 64px 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  opacity: .2;
  background-image: url("home-hero.9b867261.jpeg");
  background-position: 50%;
  background-size: cover;
  position: absolute;
  inset: 0;
}

.highlights--hero {
  color: #fff;
  background: linear-gradient(-45deg, var(--navy), var(--maroon), var(--navy));
  text-align: left;
  flex-direction: column;
  align-items: center;
  min-height: 250px;
  padding: 64px 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.badge {
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
}

#lightbox {
  z-index: 9999;
  opacity: 1;
  background-color: #000000e6;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  transition: opacity .3s;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

#lightbox.hidden {
  opacity: 0;
  display: none;
}

.lightbox-content {
  justify-content: center;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
  animation: .3s lightboxZoom;
  display: flex;
  position: relative;
}

@keyframes lightboxZoom {
  from {
    opacity: 0;
    transform: scale(.8);
  }

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

#lightboxImage {
  object-fit: contain;
  border-radius: 8px;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 90vh;
  display: block;
  box-shadow: 0 10px 50px #00000080;
}

.lightbox-close {
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  z-index: 10000;
  background: #fff3;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 32px;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: -40px;
  right: 0;
}

.lightbox-close:hover {
  background: #ffffff4d;
  transform: rotate(90deg);
}

.lightbox-close:before {
  content: "×";
  line-height: 1;
}

.image-loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%) 0 0 / 200% 100%;
  min-height: 200px;
  animation: 1.5s infinite loading;
  position: relative;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

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

img[loading="lazy"] {
  opacity: 0;
  transition: opacity .3s;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

.detail-card-image {
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.detail-card-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: opacity .3s;
}

.detail-card-image img:not([src]), .detail-card-image img[src=""] {
  opacity: 0;
}

.image-slider {
  will-change: transform;
  transition: transform .3s;
  display: flex;
}

.image-slide {
  background: #f5f5f5;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  display: flex;
}

.image-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

@media (width <= 768px) {
  #lightbox {
    padding: 10px;
  }

  .lightbox-content {
    max-width: 95vw;
    max-height: 85vh;
  }

  #lightboxImage {
    border-radius: 4px;
    max-height: 85vh;
  }

  .lightbox-close {
    width: 35px;
    height: 35px;
    font-size: 28px;
    top: -35px;
    right: -5px;
  }
}

@media (width <= 480px) {
  .lightbox-content {
    max-width: 100vw;
    max-height: 80vh;
  }

  #lightboxImage {
    border-radius: 0;
    max-height: 80vh;
  }

  .lightbox-close {
    background: #0009;
    top: 10px;
    right: 10px;
  }
}

body.lightbox-open {
  overflow: hidden;
}

.main-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .3s, opacity .3s;
}

.main-card img:not([src]), .main-card img[src=""] {
  opacity: 0;
  background: #f0f0f0;
}

img.error {
  content: "";
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

img.error:after {
  content: "⚠ Image not available";
  color: #999;
  text-align: center;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fade-in {
  animation: .3s fadeIn;
}

@media (hover: none) and (pointer: coarse) {
  .lightbox-close:active {
    background: #fff6;
    transform: scale(.95);
  }

  #lightboxImage {
    touch-action: pinch-zoom;
  }
}

.lightbox-close:focus {
  outline-offset: 2px;
  outline: 2px solid #fff;
}

@media print {
  #lightbox {
    display: none !important;
  }
}

.hover-card {
  transition: transform .3s, box-shadow .3s;
}

.hover-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 2rem #0003 !important;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-gradient-blue {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.bg-gradient-orange {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.hero-icon {
  font-size: 4rem;
  animation: 3s ease-in-out infinite float;
}

.step-container {
  position: relative;
}

.step-item {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  transition: all .3s;
  position: relative;
}

.step-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px #667eea4d;
}

.step-arrow {
  color: #667eea;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  display: flex;
}

.icon-large {
  font-size: 3.5rem;
}

.icon-box {
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  display: flex;
}

.check-item {
  background: #28a7450d;
  border-left: 4px solid #28a745;
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1rem;
  transition: all .3s;
}

.check-item:hover {
  background: #28a7451a;
  transform: translateX(10px);
}

.stats-box {
  text-align: center;
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px #0000001a;
}

.stats-number {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) text;
  font-size: 3rem;
  font-weight: bold;
}

@media (width <= 768px) {
  .display-3 {
    font-size: 2.5rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .display-5 {
    font-size: 1.75rem;
  }

  .step-arrow {
    margin: 1rem 0;
    transform: rotate(90deg);
  }

  .hero-icon {
    font-size: 3rem;
  }

  .icon-large {
    font-size: 2.5rem;
  }
}

.pulse-animation {
  animation: 2s infinite pulse;
}

.contact--hero {
  background: linear-gradient(-45deg, var(--navy), var(--maroon), var(--navy));
  justify-content: center;
  align-items: center;
  min-height: 250px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.contact--hero .hero-bg {
  opacity: .2;
  background-image: url("https://images.unsplash.com/photo-1744368191937-8fe5fde474a8?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxlbGVjdHJvbmljcyUyMGVuZ2luZWVyaW5nJTIwVkxTSSUyMGNoaXAlMjBkZXNpZ258ZW58MXx8fHwxNzU4NjI5MTM1fDA&ixlib=rb-4.1.0&q=80&w=1080");
  background-position: 50%;
  background-size: cover;
  height: 350px;
  position: absolute;
  inset: 0;
}

.contact--hero .floating-particles {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.contact--hero .particle {
  opacity: .3;
  background: #fff;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 2.97445s ease-in-out .152096s infinite float;
  position: absolute;
  top: 84.4406%;
  left: 99.2234%;
}

.contact--hero .animated-text {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(45deg, #06b6d4, #a855f7) text;
  animation: 2s ease-in-out infinite pulse;
}

.hr-gray {
  background: #fff;
  border: #fff;
  width: 100%;
  height: 1px;
}
/*# sourceMappingURL=about.8d28056f.css.map */
