.larkenvariableroman{
  font-family: "LarkenVariableRoman";
}
@charset "UTF-8";
/*!
 * animate.css - https://animate.style/
 * Version - 4.0.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  animation-duration: 1s;
  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;
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  animation-delay: calc(1s * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  animation-delay: calc(1s * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  animation-delay: calc(1s * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  animation-delay: calc(1s * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  animation-duration: calc(1s / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  animation-duration: calc(1s * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  animation-duration: calc(1s * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  animation-duration: calc(1s * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

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

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

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

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

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

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

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

  to {
    transform: scale3d(1, 1, 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, 0.75, 1);
  }

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

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

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

  75% {
    transform: scale3d(1.05, 0.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-timing-function: ease-in-out;
  animation-name: headShake;
}
@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, 0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.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;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@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(-0.78125deg) skewY(-0.78125deg);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.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(0.98);
  }

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.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(0.98);
  }

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

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

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

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

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

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

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

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

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

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.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(0.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(0.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(0.985);
  }

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

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@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: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 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;
}
/* Fading exits */
@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;
}
/* Flippers */
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  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 {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@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;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}
/* Sliding exits */
@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;
}
/*! tailwindcss v3.3.2 | MIT License | https://tailwindcss.com
 */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/
html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.container{
  width: 100%;
}
@media (min-width: 1450px){
  .container{
    max-width: 1450px;
  }
}
.visible{
  visibility: visible;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.top-0{
  top: 0px;
}
.top-\[38px\]{
  top: 38px;
}
.top-\[4px\]{
  top: 4px;
}
.z-10{
  z-index: 10;
}
.z-20{
  z-index: 20;
}
.z-\[9999\]{
  z-index: 9999;
}
.z-\[999\]{
  z-index: 999;
}
.col-span-1{
  grid-column: span 1 / span 1;
}
.col-span-5{
  grid-column: span 5 / span 5;
}
.col-span-7{
  grid-column: span 7 / span 7;
}
.float-right{
  float: right;
}
.float-left{
  float: left;
}
.clear-both{
  clear: both;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-\[40px\]{
  margin-top: 40px;
  margin-bottom: 40px;
}
.mb-24{
  margin-bottom: 6rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-7{
  margin-bottom: 1.75rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.mb-\[-100px\]{
  margin-bottom: -100px;
}
.mb-\[-10px\]{
  margin-bottom: -10px;
}
.mb-\[-14px\]{
  margin-bottom: -14px;
}
.mb-\[-27px\]{
  margin-bottom: -27px;
}
.mb-\[-30px\]{
  margin-bottom: -30px;
}
.mb-\[-35px\]{
  margin-bottom: -35px;
}
.mb-\[-36px\]{
  margin-bottom: -36px;
}
.mb-\[-40px\]{
  margin-bottom: -40px;
}
.mb-\[-79px\]{
  margin-bottom: -79px;
}
.mb-\[100px\]{
  margin-bottom: 100px;
}
.mb-\[105px\]{
  margin-bottom: 105px;
}
.mb-\[106px\]{
  margin-bottom: 106px;
}
.mb-\[107px\]{
  margin-bottom: 107px;
}
.mb-\[10px\]{
  margin-bottom: 10px;
}
.mb-\[112px\]{
  margin-bottom: 112px;
}
.mb-\[11px\]{
  margin-bottom: 11px;
}
.mb-\[125px\]{
  margin-bottom: 125px;
}
.mb-\[12px\]{
  margin-bottom: 12px;
}
.mb-\[13px\]{
  margin-bottom: 13px;
}
.mb-\[14px\]{
  margin-bottom: 14px;
}
.mb-\[15px\]{
  margin-bottom: 15px;
}
.mb-\[169px\]{
  margin-bottom: 169px;
}
.mb-\[16px\]{
  margin-bottom: 16px;
}
.mb-\[17px\]{
  margin-bottom: 17px;
}
.mb-\[18px\]{
  margin-bottom: 18px;
}
.mb-\[20px\]{
  margin-bottom: 20px;
}
.mb-\[21px\]{
  margin-bottom: 21px;
}
.mb-\[22px\]{
  margin-bottom: 22px;
}
.mb-\[25px\]{
  margin-bottom: 25px;
}
.mb-\[26px\]{
  margin-bottom: 26px;
}
.mb-\[27px\]{
  margin-bottom: 27px;
}
.mb-\[28px\]{
  margin-bottom: 28px;
}
.mb-\[29px\]{
  margin-bottom: 29px;
}
.mb-\[30px\]{
  margin-bottom: 30px;
}
.mb-\[34px\]{
  margin-bottom: 34px;
}
.mb-\[35px\]{
  margin-bottom: 35px;
}
.mb-\[36px\]{
  margin-bottom: 36px;
}
.mb-\[37px\]{
  margin-bottom: 37px;
}
.mb-\[38px\]{
  margin-bottom: 38px;
}
.mb-\[39px\]{
  margin-bottom: 39px;
}
.mb-\[3px\]{
  margin-bottom: 3px;
}
.mb-\[40px\]{
  margin-bottom: 40px;
}
.mb-\[44px\]{
  margin-bottom: 44px;
}
.mb-\[45px\]{
  margin-bottom: 45px;
}
.mb-\[4px\]{
  margin-bottom: 4px;
}
.mb-\[54px\]{
  margin-bottom: 54px;
}
.mb-\[55px\]{
  margin-bottom: 55px;
}
.mb-\[57px\]{
  margin-bottom: 57px;
}
.mb-\[60px\]{
  margin-bottom: 60px;
}
.mb-\[64px\]{
  margin-bottom: 64px;
}
.mb-\[65px\]{
  margin-bottom: 65px;
}
.mb-\[6px\]{
  margin-bottom: 6px;
}
.mb-\[70px\]{
  margin-bottom: 70px;
}
.mb-\[74px\]{
  margin-bottom: 74px;
}
.mb-\[75px\]{
  margin-bottom: 75px;
}
.mb-\[78px\]{
  margin-bottom: 78px;
}
.mb-\[7px\]{
  margin-bottom: 7px;
}
.mb-\[84px\]{
  margin-bottom: 84px;
}
.mb-\[85px\]{
  margin-bottom: 85px;
}
.mb-\[8px\]{
  margin-bottom: 8px;
}
.mb-\[96px\]{
  margin-bottom: 96px;
}
.mb-\[9px\]{
  margin-bottom: 9px;
}
.ml-\[-10px\]{
  margin-left: -10px;
}
.ml-\[14px\]{
  margin-left: 14px;
}
.ml-\[21px\]{
  margin-left: 21px;
}
.ml-auto{
  margin-left: auto;
}
.mr-\[10px\]{
  margin-right: 10px;
}
.mr-\[11px\]{
  margin-right: 11px;
}
.mr-\[12px\]{
  margin-right: 12px;
}
.mr-\[13px\]{
  margin-right: 13px;
}
.mr-\[3px\]{
  margin-right: 3px;
}
.mr-\[47px\]{
  margin-right: 47px;
}
.mr-auto{
  margin-right: auto;
}
.mt-11{
  margin-top: 2.75rem;
}
.mt-\[-10px\]{
  margin-top: -10px;
}
.mt-\[-130px\]{
  margin-top: -130px;
}
.mt-\[-150px\]{
  margin-top: -150px;
}
.mt-\[-190px\]{
  margin-top: -190px;
}
.mt-\[-24px\]{
  margin-top: -24px;
}
.mt-\[-35px\]{
  margin-top: -35px;
}
.mt-\[-39px\]{
  margin-top: -39px;
}
.mt-\[-44px\]{
  margin-top: -44px;
}
.mt-\[-50px\]{
  margin-top: -50px;
}
.mt-\[-62px\]{
  margin-top: -62px;
}
.mt-\[10px\]{
  margin-top: 10px;
}
.mt-\[30px\]{
  margin-top: 30px;
}
.mt-\[44px\]{
  margin-top: 44px;
}
.mt-auto{
  margin-top: auto;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.inline{
  display: inline;
}
.flex{
  display: flex;
}
.grid{
  display: grid;
}
.hidden{
  display: none;
}
.h-\[15\.46px\]{
  height: 15.46px;
}
.h-\[19px\]{
  height: 19px;
}
.h-\[229px\]{
  height: 229px;
}
.h-\[250px\]{
  height: 250px;
}
.h-\[400px\]{
  height: 400px;
}
.h-\[55px\]{
  height: 55px;
}
.h-\[874px\]{
  height: 874px;
}
.h-fit{
  height: -moz-fit-content;
  height: fit-content;
}
.h-full{
  height: 100%;
}
.w-\[130px\]{
  width: 130px;
}
.w-\[15\.46px\]{
  width: 15.46px;
}
.w-\[19px\]{
  width: 19px;
}
.w-\[30\%\]{
  width: 30%;
}
.w-\[322px\]{
  width: 322px;
}
.w-\[37\%\]{
  width: 37%;
}
.w-\[43\.8\%\]{
  width: 43.8%;
}
.w-\[44\%\]{
  width: 44%;
}
.w-\[62px\]{
  width: 62px;
}
.w-\[72\%\]{
  width: 72%;
}
.w-\[78\%\]{
  width: 78%;
}
.w-\[80\%\]{
  width: 80%;
}
.w-\[90\%\]{
  width: 90%;
}
.w-\[92\%\]{
  width: 92%;
}
.w-\[95\%\]{
  width: 95%;
}
.w-\[98\%\]{
  width: 98%;
}
.w-full{
  width: 100%;
}
.max-w-\[1350px\]{
  max-width: 1350px;
}
.max-w-\[611px\]{
  max-width: 611px;
}
.max-w-\[84\%\]{
  max-width: 84%;
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-pointer{
  cursor: pointer;
}
.resize{
  resize: both;
}
.grid-cols-12{
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.flex-col{
  flex-direction: column;
}
.flex-col-reverse{
  flex-direction: column-reverse;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.items-baseline{
  align-items: baseline;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.justify-items-center{
  justify-items: center;
}
.gap-\[15px\]{
  gap: 15px;
}
.gap-\[30px\]{
  gap: 30px;
}
.gap-\[35px\]{
  gap: 35px;
}
.gap-\[70px\]{
  gap: 70px;
}
.gap-x-\[140px\]{
  -moz-column-gap: 140px;
       column-gap: 140px;
}
.gap-x-\[15px\]{
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.gap-x-\[50px\]{
  -moz-column-gap: 50px;
       column-gap: 50px;
}
.gap-y-\[50px\]{
  row-gap: 50px;
}
.gap-y-\[52px\]{
  row-gap: 52px;
}
.gap-y-\[60px\]{
  row-gap: 60px;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-x-hidden{
  overflow-x: hidden;
}
.overflow-y-scroll{
  overflow-y: scroll;
}
.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rounded-\[21px\]{
  border-radius: 21px;
}
.rounded-\[36px\]{
  border-radius: 36px;
}
.rounded-\[50\%\]{
  border-radius: 50%;
}
.rounded-\[5px\]{
  border-radius: 5px;
}
.rounded-xl{
  border-radius: 0.75rem;
}
.border{
  border-width: 1px;
}
.border-\[1px\]{
  border-width: 1px;
}
.border-x{
  border-left-width: 1px;
  border-right-width: 1px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-b-\[1px\]{
  border-bottom-width: 1px;
}
.border-l{
  border-left-width: 1px;
}
.border-r-\[1\.5px\]{
  border-right-width: 1.5px;
}
.border-t{
  border-top-width: 1px;
}
.border-solid{
  border-style: solid;
}
.border-\[\#5C5C5C\]{
  --tw-border-opacity: 1;
  border-color: rgb(92 92 92 / var(--tw-border-opacity));
}
.border-\[\#749ED8\]{
  --tw-border-opacity: 1;
  border-color: rgb(116 158 216 / var(--tw-border-opacity));
}
.border-\[\#DDDDDD\]{
  --tw-border-opacity: 1;
  border-color: rgb(221 221 221 / var(--tw-border-opacity));
}
.border-\[\#E3E3E3\]{
  --tw-border-opacity: 1;
  border-color: rgb(227 227 227 / var(--tw-border-opacity));
}
.border-\[\#F5A54F\]{
  --tw-border-opacity: 1;
  border-color: rgb(245 165 79 / var(--tw-border-opacity));
}
.border-\[\#FFA156\]{
  --tw-border-opacity: 1;
  border-color: rgb(255 161 86 / var(--tw-border-opacity));
}
.border-orange{
  --tw-border-opacity: 1;
  border-color: rgb(245 165 79 / var(--tw-border-opacity));
}
.bg-\[\#171716\]{
  --tw-bg-opacity: 1;
  background-color: rgb(23 23 22 / var(--tw-bg-opacity));
}
.bg-\[\#2C2C2C\]{
  --tw-bg-opacity: 1;
  background-color: rgb(44 44 44 / var(--tw-bg-opacity));
}
.bg-\[\#FFA156\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 161 86 / var(--tw-bg-opacity));
}
.bg-dark-black{
  --tw-bg-opacity: 1;
  background-color: rgb(23 23 22 / var(--tw-bg-opacity));
}
.bg-dark-yellow{
  --tw-bg-opacity: 1;
  background-color: rgb(245 165 79 / var(--tw-bg-opacity));
}
.bg-light-gray{
  --tw-bg-opacity: 1;
  background-color: rgb(106 106 106 / var(--tw-bg-opacity));
}
.bg-light-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 252 244 / var(--tw-bg-opacity));
}
.bg-light-yellow{
  --tw-bg-opacity: 1;
  background-color: rgb(248 243 228 / var(--tw-bg-opacity));
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-\[url\(\'\.\/images\/R-round-border\.png\'\)\]{
  background-image: url('./images/R-round-border.png');
}
.bg-\[url\(\'\.\/images\/services-bg\.png\'\)\]{
  background-image: url('./images/services-bg.png');
}
.bg-contain{
  background-size: contain;
}
.bg-fixed{
  background-attachment: fixed;
}
.bg-center{
  background-position: center;
}
.bg-no-repeat{
  background-repeat: no-repeat;
}
.px-0{
  padding-left: 0px;
  padding-right: 0px;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-\[14px\]{
  padding-left: 14px;
  padding-right: 14px;
}
.px-\[17px\]{
  padding-left: 17px;
  padding-right: 17px;
}
.px-\[20px\]{
  padding-left: 20px;
  padding-right: 20px;
}
.px-\[26px\]{
  padding-left: 26px;
  padding-right: 26px;
}
.px-\[27px\]{
  padding-left: 27px;
  padding-right: 27px;
}
.px-\[29px\]{
  padding-left: 29px;
  padding-right: 29px;
}
.px-\[31px\]{
  padding-left: 31px;
  padding-right: 31px;
}
.pb-\[103px\]{
  padding-bottom: 103px;
}
.pb-\[104px\]{
  padding-bottom: 104px;
}
.pb-\[110px\]{
  padding-bottom: 110px;
}
.pb-\[114px\]{
  padding-bottom: 114px;
}
.pb-\[11px\]{
  padding-bottom: 11px;
}
.pb-\[122px\]{
  padding-bottom: 122px;
}
.pb-\[131px\]{
  padding-bottom: 131px;
}
.pb-\[142px\]{
  padding-bottom: 142px;
}
.pb-\[144px\]{
  padding-bottom: 144px;
}
.pb-\[150px\]{
  padding-bottom: 150px;
}
.pb-\[180px\]{
  padding-bottom: 180px;
}
.pb-\[20px\]{
  padding-bottom: 20px;
}
.pb-\[22px\]{
  padding-bottom: 22px;
}
.pb-\[25px\]{
  padding-bottom: 25px;
}
.pb-\[29px\]{
  padding-bottom: 29px;
}
.pb-\[38px\]{
  padding-bottom: 38px;
}
.pb-\[40px\]{
  padding-bottom: 40px;
}
.pb-\[4px\]{
  padding-bottom: 4px;
}
.pb-\[50px\]{
  padding-bottom: 50px;
}
.pb-\[55px\]{
  padding-bottom: 55px;
}
.pb-\[57px\]{
  padding-bottom: 57px;
}
.pb-\[5px\]{
  padding-bottom: 5px;
}
.pb-\[60px\]{
  padding-bottom: 60px;
}
.pb-\[61px\]{
  padding-bottom: 61px;
}
.pb-\[79px\]{
  padding-bottom: 79px;
}
.pb-\[7px\]{
  padding-bottom: 7px;
}
.pb-\[90px\]{
  padding-bottom: 90px;
}
.pl-5{
  padding-left: 1.25rem;
}
.pl-\[10px\]{
  padding-left: 10px;
}
.pl-\[13px\]{
  padding-left: 13px;
}
.pl-\[15px\]{
  padding-left: 15px;
}
.pl-\[19px\]{
  padding-left: 19px;
}
.pl-\[20px\]{
  padding-left: 20px;
}
.pl-\[21px\]{
  padding-left: 21px;
}
.pl-\[22px\]{
  padding-left: 22px;
}
.pl-\[23px\]{
  padding-left: 23px;
}
.pl-\[30px\]{
  padding-left: 30px;
}
.pl-\[32px\]{
  padding-left: 32px;
}
.pl-\[45px\]{
  padding-left: 45px;
}
.pr-\[11px\]{
  padding-right: 11px;
}
.pr-\[12px\]{
  padding-right: 12px;
}
.pr-\[15px\]{
  padding-right: 15px;
}
.pr-\[17px\]{
  padding-right: 17px;
}
.pr-\[20px\]{
  padding-right: 20px;
}
.pr-\[21px\]{
  padding-right: 21px;
}
.pr-\[24px\]{
  padding-right: 24px;
}
.pr-\[31px\]{
  padding-right: 31px;
}
.pr-\[33px\]{
  padding-right: 33px;
}
.pr-\[54px\]{
  padding-right: 54px;
}
.pr-\[60px\]{
  padding-right: 60px;
}
.pt-\[0px\]{
  padding-top: 0px;
}
.pt-\[106px\]{
  padding-top: 106px;
}
.pt-\[10px\]{
  padding-top: 10px;
}
.pt-\[117px\]{
  padding-top: 117px;
}
.pt-\[124px\]{
  padding-top: 124px;
}
.pt-\[132px\]{
  padding-top: 132px;
}
.pt-\[140px\]{
  padding-top: 140px;
}
.pt-\[153px\]{
  padding-top: 153px;
}
.pt-\[173px\]{
  padding-top: 173px;
}
.pt-\[175px\]{
  padding-top: 175px;
}
.pt-\[185px\]{
  padding-top: 185px;
}
.pt-\[190px\]{
  padding-top: 190px;
}
.pt-\[193px\]{
  padding-top: 193px;
}
.pt-\[222px\]{
  padding-top: 222px;
}
.pt-\[230px\]{
  padding-top: 230px;
}
.pt-\[278px\]{
  padding-top: 278px;
}
.pt-\[30px\]{
  padding-top: 30px;
}
.pt-\[314px\]{
  padding-top: 314px;
}
.pt-\[315px\]{
  padding-top: 315px;
}
.pt-\[347px\]{
  padding-top: 347px;
}
.pt-\[356px\]{
  padding-top: 356px;
}
.pt-\[38px\]{
  padding-top: 38px;
}
.pt-\[45px\]{
  padding-top: 45px;
}
.pt-\[50px\]{
  padding-top: 50px;
}
.pt-\[60px\]{
  padding-top: 60px;
}
.pt-\[65px\]{
  padding-top: 65px;
}
.pt-\[67px\]{
  padding-top: 67px;
}
.pt-\[69px\]{
  padding-top: 69px;
}
.pt-\[6px\]{
  padding-top: 6px;
}
.pt-\[77px\]{
  padding-top: 77px;
}
.pt-\[7px\]{
  padding-top: 7px;
}
.pt-\[80px\]{
  padding-top: 80px;
}
.pt-\[81px\]{
  padding-top: 81px;
}
.pt-\[85px\]{
  padding-top: 85px;
}
.pt-\[88px\]{
  padding-top: 88px;
}
.pt-\[8px\]{
  padding-top: 8px;
}
.pt-\[90px\]{
  padding-top: 90px;
}
.pt-\[96px\]{
  padding-top: 96px;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.text-end{
  text-align: end;
}
.font-space-mono{
  font-family: Space Mono, monospace;
}
.text-2xl{
  font-size: 1.313rem;
}
.text-3xl{
  font-size: 1.375rem;
}
.text-\[10px\]{
  font-size: 10px;
}
.text-\[11px\]{
  font-size: 11px;
}
.text-\[120px\]{
  font-size: 120px;
}
.text-\[12px\]{
  font-size: 12px;
}
.text-\[13px\]{
  font-size: 13px;
}
.text-\[16px\]{
  font-size: 16px;
}
.text-\[17px\]{
  font-size: 17px;
}
.text-\[18px\]{
  font-size: 18px;
}
.text-\[36px\]{
  font-size: 36px;
}
.text-\[41px\]{
  font-size: 41px;
}
.text-\[42px\]{
  font-size: 42px;
}
.text-\[45px\]{
  font-size: 45px;
}
.text-\[63px\]{
  font-size: 63px;
}
.text-\[65px\]{
  font-size: 65px;
}
.text-\[70px\]{
  font-size: 70px;
}
.text-\[72px\]{
  font-size: 72px;
}
.text-\[74px\]{
  font-size: 74px;
}
.text-\[77px\]{
  font-size: 77px;
}
.text-\[80px\]{
  font-size: 80px;
}
.text-\[87px\]{
  font-size: 87px;
}
.text-\[88px\]{
  font-size: 88px;
}
.text-\[8px\]{
  font-size: 8px;
}
.text-\[90px\]{
  font-size: 90px;
}
.text-\[9px\]{
  font-size: 9px;
}
.text-base{
  font-size: 0.875rem;
}
.text-sm{
  font-size: 0.813rem;
}
.text-xl{
  font-size: 1.25rem;
}
.text-xsm{
  font-size: 0.75rem;
}
.text-xxsm{
  font-size: 0.625rem;
}
.font-black{
  font-weight: 900;
}
.font-semibold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.capitalize{
  text-transform: capitalize;
}
.leading-13{
  line-height: 13px;
}
.leading-17{
  line-height: 17px;
}
.leading-18{
  line-height: 18px;
}
.leading-7{
  line-height: 1.75rem;
}
.leading-\[10px\]{
  line-height: 10px;
}
.leading-\[115px\]{
  line-height: 115px;
}
.leading-\[123px\]{
  line-height: 123px;
}
.leading-\[130px\]{
  line-height: 130px;
}
.leading-\[17px\]{
  line-height: 17px;
}
.leading-\[18px\]{
  line-height: 18px;
}
.leading-\[20px\]{
  line-height: 20px;
}
.leading-\[22px\]{
  line-height: 22px;
}
.leading-\[23px\]{
  line-height: 23px;
}
.leading-\[24px\]{
  line-height: 24px;
}
.leading-\[25PX\]{
  line-height: 25PX;
}
.leading-\[25px\]{
  line-height: 25px;
}
.leading-\[26px\]{
  line-height: 26px;
}
.leading-\[27px\]{
  line-height: 27px;
}
.leading-\[42px\]{
  line-height: 42px;
}
.leading-\[45px\]{
  line-height: 45px;
}
.leading-\[46px\]{
  line-height: 46px;
}
.leading-\[48px\]{
  line-height: 48px;
}
.leading-\[50px\]{
  line-height: 50px;
}
.leading-\[60px\]{
  line-height: 60px;
}
.leading-\[70px\]{
  line-height: 70px;
}
.leading-\[78px\]{
  line-height: 78px;
}
.leading-\[80px\]{
  line-height: 80px;
}
.leading-\[85px\]{
  line-height: 85px;
}
.leading-\[90px\]{
  line-height: 90px;
}
.leading-\[95px\]{
  line-height: 95px;
}
.tracking-\[-0\.5px\]{
  letter-spacing: -0.5px;
}
.tracking-\[-2px\]{
  letter-spacing: -2px;
}
.tracking-\[\.4px\]{
  letter-spacing: .4px;
}
.tracking-\[0\.5px\]{
  letter-spacing: 0.5px;
}
.tracking-\[0\.6px\]{
  letter-spacing: 0.6px;
}
.tracking-\[0\.8px\]{
  letter-spacing: 0.8px;
}
.tracking-\[1\.9px\]{
  letter-spacing: 1.9px;
}
.tracking-\[1px\]{
  letter-spacing: 1px;
}
.tracking-wider{
  letter-spacing: 0.05em;
}
.text-\[\#164269\]{
  --tw-text-opacity: 1;
  color: rgb(22 66 105 / var(--tw-text-opacity));
}
.text-\[\#5C5C5C\]{
  --tw-text-opacity: 1;
  color: rgb(92 92 92 / var(--tw-text-opacity));
}
.text-\[\#5D5D5D\]{
  --tw-text-opacity: 1;
  color: rgb(93 93 93 / var(--tw-text-opacity));
}
.text-\[\#F2EBD9\]{
  --tw-text-opacity: 1;
  color: rgb(242 235 217 / var(--tw-text-opacity));
}
.text-\[\#F2F2F2\]{
  --tw-text-opacity: 1;
  color: rgb(242 242 242 / var(--tw-text-opacity));
}
.text-\[\#F7F1E2\]{
  --tw-text-opacity: 1;
  color: rgb(247 241 226 / var(--tw-text-opacity));
}
.text-\[\#FAF5E9\]{
  --tw-text-opacity: 1;
  color: rgb(250 245 233 / var(--tw-text-opacity));
}
.text-\[\#dadada\]{
  --tw-text-opacity: 1;
  color: rgb(218 218 218 / var(--tw-text-opacity));
}
.text-\[\#dadada\]\/\[0\.3\]{
  color: rgb(218 218 218 / 0.3);
}
.text-\[\#f2ebd9\]{
  --tw-text-opacity: 1;
  color: rgb(242 235 217 / var(--tw-text-opacity));
}
.text-\[12SPX\]{
  color: 12SPX;
}
.text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-dark-yellow{
  --tw-text-opacity: 1;
  color: rgb(245 165 79 / var(--tw-text-opacity));
}
.text-gray{
  --tw-text-opacity: 1;
  color: rgb(93 93 93 / var(--tw-text-opacity));
}
.text-l-black{
  --tw-text-opacity: 1;
  color: rgb(44 44 44 / var(--tw-text-opacity));
}
.text-light-silver{
  --tw-text-opacity: 1;
  color: rgb(131 131 131 / var(--tw-text-opacity));
}
.text-light-white{
  --tw-text-opacity: 1;
  color: rgb(255 252 244 / var(--tw-text-opacity));
}
.text-simple-gray{
  --tw-text-opacity: 1;
  color: rgb(144 144 144 / var(--tw-text-opacity));
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-white-yellow{
  --tw-text-opacity: 1;
  color: rgb(247 241 226 / var(--tw-text-opacity));
}
.opacity-10{
  opacity: 0.1;
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-\[0\.6s\]{
  transition-duration: 0.6s;
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.selected h3{
  animation: auto !important;
}
.container-2{
  margin: 0 auto;
  max-width: 1450px;
}
.video-custom {
  position: relative;
 }
a:hover {
  outline: none;
  transition: all 0.3s ease-in-out;
}
.start-link{
    background-image: linear-gradient(#F5A54F, #F5A54F);
    background-size: 100% 1.5px;
    background-repeat: no-repeat;
    background-position: bottom;
    transition: background-size .7s, background-position .5s ease-in-out;
 }
.start-link:hover {
  background-size: 100% 100% !important;
  background-position: top !important;
  transition: background-position .7s, background-size .5s ease-in-out !important;
}
.site-map-col ul li a::after,.site-map-col2 a::after{
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  content: '';
  position: absolute;
  background: #FFA156;
  transition: ease-in-out 0.3s;
}
.inner-pages-header{
  background: url(../assets/images/about-banner.png) no-repeat center;
  background-size: cover;
}
.inner-pages-header::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 35%);
  top: 0;
}
.site-map-col ul li a:hover::after,.site-map-col2 a:hover::after {
  width: 100%;
}
.transparent-banner header a{
  color: black !important;
}
.jounral-text-heading h5{
  font-size:21px;
  line-height: 23px;
  margin-bottom: 14px;
  color: #ffffff;
}
.banner-heading svg{
  margin: 0 auto;
}
.project-inner div:nth-child(3) p{
  width: 19%;
}
.text-content .content-paragraph h2, .text-content .content-paragraph h3, .text-content .content-paragraph h4, .text-content .content-paragraph h5, .text-content .content-paragraph h6{
  color:black;
  font-size: 19px;
  line-height: 29px;
  margin-bottom: 28px;
}
.text-content .content-paragraph > p{
  font-size: 13px;
  line-height: 22px;
  color: #5D5D5D;
  margin-bottom: 21px;
}
.text-content .content-paragraph  a{
  font-size: 13px;
  color: #F5A54F;
  line-height: 22px;
}
.text-content .content-paragraph{
  padding-bottom: 37px;
  border-bottom: 1px solid #707070;
}
/* .video-custom .poster-img {
  display: block;
  width: 100%;
 } */
/* .video-custom video {
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
 } */
/* .video-custom .play-btn, .video-custom .pause-btn {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  margin: auto;
  width: 52px;
  height: 62px;
  z-index: 3;
  cursor: pointer;
  transition: 0.5s all;
  overflow: hidden;
 } */
/* .video-custom .pause-btn {
  display: none;
 }
 
 .video-custom .play-btn i {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 18px solid #000000;
  border-right: 0;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  margin: auto;
 }
 
 .pause-btn i {
  position: absolute;
  left: -3px;
  right: 0px;
  bottom: 0px;
  top: 2px;
  margin: auto;
  width: 16px;
  height: 24px;
  flex-flow: row wrap;
 }
 
 .pause-btn i:before {
  content: '';
  width: 4px;
  height: 100%;
  background-color: #000;
  display: inline-block;
 }
 
 .pause-btn i:after {
  content: '';
  width: 4px;
  height: 100%;
  margin-left: 8px;
  background-color: #000;
  display: inline-block;
 }
 
 .playvideo .video-custom img {
  opacity: 0;
 }
 
 .playvideo .video-custom video {
  opacity: 1;
 }
 
 .video-custom .vplay {
  display: none;
 }
 
 .video-custom:hover .vplay + .pause-btn {
  display: block;
 } */
/***Volume Control***/
/* html:not(.playvideo) .sound-ctrl {
  display: none;
 }
 
 .sound-ctrl {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 5px;
  cursor: pointer;
 }
 
 .sound-ctrl .on-button {
  display: none;
 }
 
 .sound-ctrl img {
  opacity: 0;
 }
 
 .sound-ctrl .off-button, .sound-ctrl .on-button {
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 0px;
  background-color: transparent;
  border: none;
  width: 100%;
  height: 100%;
  padding: 0px;
  cursor: pointer;
 }
 
 .soundctrlshow .on-button {
  display: block;
 }
 
 .soundctrlshow .off-button {
  display: none;
 }
 
 .playvideo .video-custom .sound-ctrl img {
  opacity: 1;
 }
 
 .soundctrlshow .on-button:before {
  content: '';
  position: absolute;
  left: 12px;
  top: -5px;
  z-index: 10;
  width: 3px;
  height: 32px;
  background-color: #fff;
  transform: rotate(45deg);
 } */
/***Volume Control***/
/******************/
/* @keyframes marquee {
  0% {
    transform: translate3d(0%, 0, 0);
}

100% {
    transform: translate3d(-100%, 0, 0);
}
}
.marquee a:hover{
  
  animation-play-state: paused !important;
}
.marquee a{
  white-space: nowrap;
  position: relative;
  transform: translate3d(0%, 0, 0);
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 30s;
} */
.case-study-paddingtop{
  padding-top: 32.5px;
}
.case-study-paddingbottom{
  padding-bottom: 32.5px;
}
.marquee2 {
  white-space: nowrap;
  position: relative;
  transform: translate3d(0%, 0, 0);
  animation-name: marquee2;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 47s;
}
.marquee2 li {
  display: inline-block;
  margin: 0 70px;
}
.marquee2:hover {
  animation-play-state: paused !important;
}
@keyframes marquee2{
  0% {
      transform: translate3d(0%, 0, 0);
  }

  100% {
      transform: translate3d(-100%, 0, 0);
  }
}
@font-face {
  font-family: "LarkenVariableRoman";
  src: url('./font.woff2') format('woff2'), 
  url('./font.woff') format('woff');
}
.larkenvariableroman{
  font-family: "LarkenVariableRoman";
}
.border-outline{
  -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #fff;
}
.navigation__background {
  position: fixed;
  top: 0;
  right: 0;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  background: orange;
  background-size: cover;
  background-position: center;
  z-index: 100;
  transition: all 1100ms cubic-bezier(0.86, 0, 0.07, 1);
  opacity: 0;
}
#checked:checked ~ .navigation__background {
  transform: scale(100);
  opacity: 1;
}
@keyframes fadeInUp{
  0%{transform:translate(0px, 100px); opacity: 0;}
  100%{transform:translate(0px, 0); opacity: 1;}
}
#checked:checked ~ .header-menu{
  opacity: 1;
  width: 100%;
  visibility: visible;
  animation:fadeInUp 2.5s ease backwards;
}
.header-menu{
  opacity: 0;
  width: 0;
  visibility: hidden;

}
#checked:checked ~ header .site-map-col ul li a label span{
  background: #fff;
}
#checked:checked ~ header .site-map-col ul li a:hover{
  color: black;
}
#checked:checked ~ header  .start-link:hover{
  background: linear-gradient(black, black);
}
.scroll-down header{
  transform: translateY(-130px);
  transition: all 0.5s ease-in-out;
}
.scroll-up header{
  transform: translateY(0);
  transition: all 0.5s ease-in-out;
}
.has-offcanvas{
  overflow: hidden;
}
header figure img{
  transition: all 0.5s ease-in-out;
}
.scroll-up header figure img{
  transform: rotate(-90deg);
}
.blink{
	animation: flash linear 1s infinite;
}
@keyframes flash {
	0% { opacity: 1; } 
	50% { opacity: .1; } 
	100% { opacity: 1; }
}
.video-custom .play-pause{
  display: none;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
.pin-spacer{
  margin: 0 !important;
  padding: 0 !important;
  height: auto !important;
}
.upper-video-sec{
  height: auto !important;
  max-height: auto !important;
  /* margin-bottom: 230px !important; */
}
figure{
  overflow: hidden;
}
header figure{
  overflow: initial;
}
.caf-featured-img-box{
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
figure > img:hover,
.caf-featured-img-box:hover img
{
  transform: scale(1.1);
    transition: transform 0.5s cubic-bezier(0.6, 0.03, 0.28, 0.98) 0s;
}
.sidebar-stick #service-txt{
  position: sticky;
  top: 30px;
  width: 100%;
}
.unstyle > ul > li > a{
  margin-bottom: 20px;
  display: inline-block;
  font-size: 60px;
  font-weight: 900;
  line-height: 65px;
  letter-spacing: .4px;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  font-family: "LarkenVariableRoman";
}
.drop-zone {
  max-width: 200px;
  height: 200px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
  color: #cccccc;
  border: 4px dashed #009578;
  border-radius: 10px;
}
.drop-zone--over {
  border-style: solid;
}
.drop-zone__input {
  display: none;
}
.drop-zone__thumb {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-color: #cccccc;
  background-size: cover;
  position: relative;
}
.drop-zone__thumb::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  text-align: center;
}
.has-offcanvas .header-menu{
  z-index: 9999999;
}
.has-offcanvas .navigation__background{
  z-index: 9999999;
}
.has-offcanvas header{
  z-index: 99999999;
}
/* 
.scroll-down #banner .upper-vedio-sec,
.scroll-up #banner .upper-vedio-sec
{
  position: relative;
  z-index: 99999;
}
.scroll-down #banner .banner-heading,
.scroll-up #banner .banner-heading{
  position: relative;
  z-index: 999999;
} */
div.accordion {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  border: none;
  outline: none;
  border-radius:20px;
  text-align: left;
  cursor: pointer;
  padding: 51px 48px 48px 48px;
  font-family: Space Mono, monospace;
  transition: background-color 0.2s linear;
}
div.accordion h3{
  margin-bottom: 16px;
}
div.accordion ul li{
  letter-spacing: 1.4px;
}
div.accordion.is-open + .accordion-content{
  padding-bottom: 79px;
}
div.accordion:after{
  top: 48.5%;
    width: 5px;
    content: "";
    right: 53px;
    height: 23px;
    /* content: "\f150"; */
    position: absolute;
    background-color: #F5A54F;
    transform: translateY(-50%);
}
div.accordion.is-open:after {
  display: none;
}
div.accordion::before {
  top: 47%;
  height: 5px;
  content: "";
  right: 33px;
  width: 23px;
  /* content: "\f150"; */
  position: absolute;
  background-color: #F5A54F;
  transform: translateX(-50%);
}
div.accordion.is-open:after {
  content: "\f151";
}
div.accordion.is-open {
  padding-bottom: 73px;
  border-radius: 16px 16px 0 0;
}
.accordion-content {
  background-color: white;
  border-left: 1px solid whitesmoke;
  border-right: 1px solid whitesmoke;
  padding: 0 48px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
}
/*  */
#header-filters ul.caf-filter-container.caf-filter-layout1{
  text-align: left;
}
#header-filters ul li:first-child a{
  margin-left: 0;
}
#header-filters ul li:last-child a{
  margin-right: 0;
}
#header-filters .caf-filter-layout1 a{
  margin: 0 3px;
}
.coloumn-video video {
  max-width: 100%;
  height: auto !important;
  width: 100% !important;
}
#header-filters .data-target-div1 #caf-filter-layout1 li a, .data-target-div1 #caf-filter-layout1 li.more span{
    font-size: 13px;
    line-height: 13px;
    color:black;
    font-weight: normal;
    border-radius: 36px;
    padding: 9px 22px 10px 24px;
    background: transparent;
    font-family: Space Mono, monospace;
    border: 1px solid #F5A54F;
  }
.data-target-div1 #caf-filter-layout1 li a:focus {
    background-color: #fcb040 !important;
  }
#header-filters .data-target-div1 #caf-filter-layout1 li a:hover{
    background: #F5A54F;
    color:white;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.6s;
    transition-property: all;
    transform: translateY(8px);

  }
#filter-results .caf-filter-layout,  #filter-results  .caf-meta-content , #filter-results  .caf-content-read-more,  #header-filters #manage-ajax-response{
    display: none;
  }
#filter-results  .caf-content, #filter-results .caf-post-title,  #filter-results #manage-post-area {
    background-color: transparent !important;
    padding: 0;
  }
#filter-results .caf-featured-img-box{
    height: auto;
  }
#filter-results .caf-featured-img-box img{
    width: 100%;
  }
.service-brand > section:first-child ul{
    grid-template-columns: 24% 24% 24%;
  }
.service-brand > section ul{
    grid-template-columns: 40% 37.5%;
  }
#filter-results #manage-ajax-response {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 67px 35px;
}
.project-content .case-study-paddingbottom div > figure:nth-child(2){
  margin-bottom: 0;
}
#filter-results #manage-ajax-response .caf-post-layout1 {
  padding: 0;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0 !important;
}
#filter-results #manage-ajax-response .caf-post-layout1 .caf-featured-img-box {
  border-radius: 5px;
  margin-bottom: 17px;
}
#filter-results .caf-post-layout1 .manage-layout1{
  box-shadow: none;
}
.caf-post-title{
  padding: 0;
}
/*  */
#checked:checked ~ header .start-link{
  color: black;
  background-image: linear-gradient(#ffffff, #ffffff);
}
#checked:checked ~ header .start-link:hover{
  background: linear-gradient(white, white);
  background-size: 100% 100% !important;
    background-position: top !important;
    transition: background-position .7s, background-size .5s ease-in-out !important;
}
.project-inner div:nth-child(3){
  grid-column: 1/-1;
}
#caf-post-layout-container.data-target-div1.post-layout1{
  padding-bottom: 52px !important;
  padding-left: 31px;
}
.data-target-div2 .caf-post-layout1 .caf-post-title{
  padding-top: 0 !important;
}
.service-section .data-target-div2 .caf-post-layout1 .caf-post-title h2{
 font-weight: normal !important;
}
.data-target-div2 .caf-post-layout1 .caf-post-title h2{
  width: 77%;
  color: black !important;
  font-size: 20px !important;
  line-height: 27px !important;
  margin-bottom: 8px !important;
  text-transform: capitalize !important;
  font-family: Space Mono, monospace !important;
}
.data-target-div2 .caf-post-layout1 .caf-content{
  width: 39%;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: #838383 !important;
  font-family: Space Mono, monospace !important;
  text-align: inherit;
}
.data-target-div2 .caf-post-layout1 span.bg-light-yellow{
  display: none;
}
ul#caf-layout-pagination.post-layout1 {
  grid-column: 1/-1;
}
/* .service-section #filter-results #manage-ajax-response{
  gap:72px 35px;
  grid-template-columns: 50% 50%;
} */
/* .service-section #filter-results #manage-ajax-response article:nth-child(2) , 
.service-section #filter-results #manage-ajax-response article:nth-child(7){
  grid-column: span 2 / span 2;
} */
/* #filter-results.journal-page #manage-ajax-response article:nth-child(8){
  grid-column: span 2 / span 2;
} */
.most-popular-post{
  grid-column: span 2 / span 2;
}
.journal-posts .data-target-div2 .caf-post-layout1 .caf-content{
  width: 50%;
}
#wpcf7-f106-o1 > form > div.form-with-custom-checkboxes-radios > div.contact-form{
     grid-template-columns: repeat(2, minmax(0, 1fr));
}
.form-btn{
  cursor: pointer;
}
.form-btn:hover{
  background: transparent;
  box-shadow: inset 0 0 0px 1px #F5A54F;
  transition: all 0.3s ease-in-out;
}
/* #header-filters{
  width: 100%;
  text-align: end;
} */
/* #header-filters ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
} */
#header-filters ul.caf-filter-layout1 li{
  margin-left: 2px;
  margin-right: 2px;
}
#filter-results.journal-page #manage-ajax-response article:nth-child(7){
  grid-column: span 1 / span 1;
}
#filter-results.journal-page #manage-ajax-response article:nth-child(2) #manage-post-area .caf-content , 
#filter-results.journal-page #manage-ajax-response article:nth-child(8) #manage-post-area .caf-content{
  width: 49% !important;
  text-align: inherit;
}
#filter-results.journal-page .caf-content{
  width: 64%;
  text-align: inherit;
}
#footer-page-menue #menu-fotter-nav .blink{
  display: none;
}
#footer-page-menue #menu-fotter-nav .careers_blink .blink{
  display: inline-block;
    margin-left: 10px;
}
.journal-single nav a,
.transparent_banner nav a{
  color: #000;
}
.wpcf7-spinner{
  display: none;
}
.coloumn-video iframe{
  border-radius: 8px;
}
.journal-filters#header-filters ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.service-section #filter-results.journal-page #manage-ajax-response {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
/* .service-section #filter-results.journal-page #manage-ajax-response .caf-post-layout1:nth-child(2),
.service-section #filter-results.journal-page #manage-ajax-response .caf-post-layout1:nth-child(8){
  grid-column: span 2 / span 2;
} */
.service-section #filter-results.journal-page #manage-ajax-response .caf-post-layout1:nth-child(3),
.service-section #filter-results.journal-page #manage-ajax-response .caf-post-layout1:nth-child(7){
  grid-column: span 1 / span 1;
}
.single-projects figure img:hover{
  transform: none;
}
.project-content > p{
  display: none;
}
.project-content section:nth-child(2){
  margin-top: -94px;
}
.text-line-limit-3, .text-line-limit-3 > p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
          line-clamp: 3; 
  -webkit-box-orient: vertical;
}
.marquee2 img[src$=".svg"] {
  min-height: 45px;
}
.project-content-block strong{
  text-decoration: underline;
  font-weight: inherit;
}
.services-list-con ul{
  width: 180px;
}
.banner-fixed-img{
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 1440px) and (min-width: 770px)  {
  .service-section #filter-results #manage-ajax-response {
    gap: 60px 40px !important;
    /* grid-template-columns: 47.5% 47.5% !important; */
}
 .container , .container-2 {
  padding-left: 40px !important;
  padding-right: 40px !important;
 }
}
@media only screen and (max-width: 1536px){
  .service-section #filter-results #manage-ajax-response {
    grid-template-columns: 48.5% 48.5%;
  }
  #header-filters {
    padding-right: 75px;
  }
  #caf-post-layout-container.data-target-div1.post-layout1 {
    padding-bottom: 40px !important;
  }
  .data-target-div2 .caf-post-layout1 .caf-content {
    width: 40%;
}
}
@media only screen and (max-width: 1280px){
  .data-target-div2 .caf-post-layout1 .caf-content {
    width: 48%;
  }

  .project-inner div:nth-child(3) p {
    width: 27%;
  }
  #caf-post-layout-container.data-target-div1.post-layout1 {
    padding-left: 30px;
}
}
@media only screen and (max-width: 1024px){
  .services-list-con{
    -moz-column-gap: 90px;
         column-gap: 90px;
  }
  .service-section #filter-results.journal-page #manage-ajax-response {
    grid-template-columns: 49% 49%;
}
  .accordion-content {
    padding: 0 20px;
}

  .data-target-div2 .caf-post-layout1 .caf-content {
    width: 80%;
}
  #caf-post-layout-container.data-target-div1.post-layout1 {
    padding-bottom: 20px !important;
}
  .project-inner div:nth-child(3) p {
    width: 35%;
  }
  .coloumn-video iframe{
    height: 420px !important;
  }
  /* .upper-video-sec{
    margin-bottom: 170px !important;
  } */
  #filter-results.journal-page .caf-content{
    width: 80% !important;
  }

  #filter-results.journal-page #manage-ajax-response article:nth-child(2) #manage-post-area .caf-content , 
  #filter-results.journal-page #manage-ajax-response article:nth-child(8) #manage-post-area .caf-content{
    width: 70% !important;
  }
  div.accordion {
    padding: 25px 20px 20px 20px;
  }
  div.accordion h3{
    margin-bottom: 10px;
  }


}
@media only screen and (max-width: 768px) {
  .services-list-con{
    justify-content: space-around;
  }

.services-list-con ul{
  width: auto;
}
  .project-content section:nth-child(2) {
    margin-top: -44px;
}
  .case-study-paddingtop{
    padding-top: 17.5px;
  }
  .case-study-paddingbottom{
    padding-bottom: 17.5px;
  }
  .data-target-div2 .caf-post-layout1 .caf-content {
    width: 81%;
}
  
  .service-section #filter-results #manage-ajax-response {
    gap: 40px 15px !important;
}
  .project-inner div:nth-child(3) p {
    width: 46%;
}
  .coloumn-video iframe {
    height: 350px !important;
  }
  /* .upper-video-sec{
    margin-bottom: 130px !important;
  } */
  #filter-results.journal-page #manage-ajax-response article .caf-post-title{
    width: 100%;
  }
  #filter-results.journal-page .data-target-div2 .caf-post-layout1 .caf-post-title h2{
    font-size: 21px !important;
  }
  #filter-results.journal-page .caf-content{
    width: 100% !important;
  }
}
@media only screen and (max-width: 640px) {

.banner-fixed-img{
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll !important;
}
  .services-list-con{
    flex-direction: column;
  }
  .project-content section:nth-child(2) {
    margin-top: -39px;
}
  .service-section #filter-results #manage-ajax-response {
    gap: 50px 15px !important;
     grid-template-columns: 100%;
}
  #caf-post-layout-container.data-target-div1.post-layout1{
    padding-left: 24px;
  }
  .journal-filters#header-filters ul {
    justify-content: flex-start;
}
  #filter-results.journal-page #manage-ajax-response article:nth-child(2) #manage-post-area .caf-content, #filter-results.journal-page #manage-ajax-response article:nth-child(8) #manage-post-area .caf-content {
    width: 100% !important;
}
  .service-section #filter-results.journal-page #manage-ajax-response .caf-post-layout1:nth-child(2),
   .service-section #filter-results.journal-page #manage-ajax-response .caf-post-layout1:nth-child(8),
   .service-section #filter-results.journal-page #manage-ajax-response .caf-post-layout1:nth-child(3),
    .service-section #filter-results.journal-page #manage-ajax-response .caf-post-layout1:nth-child(7){
    grid-column: 1/-1;
}
/* .service-section #filter-results.journal-page #manage-ajax-response {
  grid-template-columns: auto;
} */

 
  /* #header-filters ul {
    justify-content: flex-start;
    gap: 10px 0;
    padding-left: 32px;
} */
#header-filters .data-target-div1 #caf-filter-layout1 li a{
  padding: 6px 16px 8px 13px;
}
  .contact-form input, .contact-form textarea {
    padding: 20px 16px;
}
.drop-file {
  height: 116px;
}
  .project-inner div:nth-child(3) p {
    width: 88%;
}
  
  /* .upper-video-sec{
    margin-bottom: 100px !important;
  } */
  .text-content .content-paragraph h2, .text-content .content-paragraph h3, .text-content .content-paragraph h4, .text-content .content-paragraph h5, .text-content .content-paragraph h6{
    font-size: 17px;
    line-height: 23px;
    margin-bottom: 25px;
  }
  .text-content .content-paragraph > p{
    font-size: 12px;
    line-height: 19px;
    margin-bottom: 21px;
  }
  #filter-results.journal-page #manage-ajax-response{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  #filter-results.journal-page #manage-ajax-response article:nth-child(2), #filter-results.journal-page #manage-ajax-response article:nth-child(7) {
    grid-column: span 4 / span 4;
  }
  #filter-results.journal-page #manage-ajax-response article{
    grid-column: span 2 / span 2;
  }
  #wpcf7-f106-o1 > form > div.form-with-custom-checkboxes-radios > div.contact-form{
    display: block;
  }
  #wpcf7-f106-o1 > form > div.form-with-custom-checkboxes-radios > div.contact-form div:first-child{
    margin-bottom: 20px !important;
  }
  .contact-form textarea{
    margin-bottom: 4px !important;
  }
  .drop-file{
    margin-bottom: 34px !important;
  }
  .contact-form{
    margin-bottom: 51px !important;
  }
  .coloumn-video iframe {
    height: 194px !important;
  }

  .two_columns_images-grid{
    row-gap: 35px;
  }
  .banner-heading-before{
    margin-bottom: 30px;
  }
  .banner-heading svg{
    height: auto;
  }
  
}
@media only screen and (max-width: 425px){
  .service-section #filter-results.journal-page #manage-ajax-response {
    display: flex;
  }
  #banner{
    padding-top: 280px;
   
  }
  .project-content-block{
    width: 100%;
  }
  .marquee2 li {
    margin: 0 30px;
  }
  .marquee2 img[src$=".svg"] {
    max-height: 40px;
  }
  .marquee2 {
    animation-duration: 21s;
  }
}
@media only screen and (max-width: 375px){
  .coloumn-video iframe {
    height: 170px !important;
  }
  .text-content .content-paragraph  a{
    font-size: 12px;
  }
  .large-heading{
    font-size: 52px;
  }
  .big-heading{
    /* font-size: 55px; */
    font-size: 40px;
  }
  .footer-large-heading{
    /* font-size: 55px !important; */
    font-size: 40px;
  }
  .smmall-screen-heading{
    font-size: 55px;
  }
}
.after\:absolute::after{
  content: var(--tw-content);
  position: absolute;
}
.after\:bottom-\[15\%\]::after{
  content: var(--tw-content);
  bottom: 15%;
}
.after\:right-0::after{
  content: var(--tw-content);
  right: 0px;
}
.after\:h-\[390px\]::after{
  content: var(--tw-content);
  height: 390px;
}
.after\:w-\[347px\]::after{
  content: var(--tw-content);
  width: 347px;
}
.after\:bg-\[url\(\'\.\/images\/layout-mobile-img\.png\'\)\]::after{
  content: var(--tw-content);
  background-image: url('./images/layout-mobile-img.png');
}
.after\:content-\[\'\'\]::after{
  --tw-content: '';
  content: var(--tw-content);
}
.last\:mb-0:last-child{
  margin-bottom: 0px;
}
.hover\:-translate-y-\[0px\]:hover{
  --tw-translate-y: -0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:-translate-y-\[8px\]:hover{
  --tw-translate-y: -8px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:bg-\[\#749ED8\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(116 158 216 / var(--tw-bg-opacity));
}
.hover\:bg-\[\#F5A54F\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(245 165 79 / var(--tw-bg-opacity));
}
.hover\:text-\[\#FFA156\]:hover{
  --tw-text-opacity: 1;
  color: rgb(255 161 86 / var(--tw-text-opacity));
}
.hover\:text-black:hover{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.hover\:text-light-white:hover{
  --tw-text-opacity: 1;
  color: rgb(255 252 244 / var(--tw-text-opacity));
}
.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (min-width: 640px){
  .sm\:top-\[48px\]{
    top: 48px;
  }
  .sm\:col-\[1\\\/-1\]{
    grid-column: 1\/-1;
  }
  .sm\:col-span-5{
    grid-column: span 5 / span 5;
  }
  .sm\:col-span-7{
    grid-column: span 7 / span 7;
  }
  .sm\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }
  .sm\:my-\[50px\]{
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .sm\:mb-0{
    margin-bottom: 0px;
  }
  .sm\:mb-6{
    margin-bottom: 1.5rem;
  }
  .sm\:mb-8{
    margin-bottom: 2rem;
  }
  .sm\:mb-\[-27px\]{
    margin-bottom: -27px;
  }
  .sm\:mb-\[-34px\]{
    margin-bottom: -34px;
  }
  .sm\:mb-\[-43px\]{
    margin-bottom: -43px;
  }
  .sm\:mb-\[-59px\]{
    margin-bottom: -59px;
  }
  .sm\:mb-\[-95px\]{
    margin-bottom: -95px;
  }
  .sm\:mb-\[0\]{
    margin-bottom: 0;
  }
  .sm\:mb-\[100px\]{
    margin-bottom: 100px;
  }
  .sm\:mb-\[10px\]{
    margin-bottom: 10px;
  }
  .sm\:mb-\[11px\]{
    margin-bottom: 11px;
  }
  .sm\:mb-\[12px\]{
    margin-bottom: 12px;
  }
  .sm\:mb-\[14px\]{
    margin-bottom: 14px;
  }
  .sm\:mb-\[15px\]{
    margin-bottom: 15px;
  }
  .sm\:mb-\[19px\]{
    margin-bottom: 19px;
  }
  .sm\:mb-\[20px\]{
    margin-bottom: 20px;
  }
  .sm\:mb-\[21px\]{
    margin-bottom: 21px;
  }
  .sm\:mb-\[22px\]{
    margin-bottom: 22px;
  }
  .sm\:mb-\[25px\]{
    margin-bottom: 25px;
  }
  .sm\:mb-\[28px\]{
    margin-bottom: 28px;
  }
  .sm\:mb-\[30px\]{
    margin-bottom: 30px;
  }
  .sm\:mb-\[34px\]{
    margin-bottom: 34px;
  }
  .sm\:mb-\[40px\]{
    margin-bottom: 40px;
  }
  .sm\:mb-\[45px\]{
    margin-bottom: 45px;
  }
  .sm\:mb-\[47px\]{
    margin-bottom: 47px;
  }
  .sm\:mb-\[48px\]{
    margin-bottom: 48px;
  }
  .sm\:mb-\[50px\]{
    margin-bottom: 50px;
  }
  .sm\:mb-\[60px\]{
    margin-bottom: 60px;
  }
  .sm\:mb-\[7px\]{
    margin-bottom: 7px;
  }
  .sm\:mb-\[9px\]{
    margin-bottom: 9px;
  }
  .sm\:ml-\[-15px\]{
    margin-left: -15px;
  }
  .sm\:ml-\[17px\]{
    margin-left: 17px;
  }
  .sm\:mr-\[36px\]{
    margin-right: 36px;
  }
  .sm\:mt-\[-100px\]{
    margin-top: -100px;
  }
  .sm\:mt-\[-119px\]{
    margin-top: -119px;
  }
  .sm\:mt-\[-30px\]{
    margin-top: -30px;
  }
  .sm\:mt-\[-34px\]{
    margin-top: -34px;
  }
  .sm\:mt-\[-75px\]{
    margin-top: -75px;
  }
  .sm\:block{
    display: block;
  }
  .sm\:inline-block{
    display: inline-block;
  }
  .sm\:flex{
    display: flex;
  }
  .sm\:grid{
    display: grid;
  }
  .sm\:hidden{
    display: none;
  }
  .sm\:h-\[19px\]{
    height: 19px;
  }
  .sm\:h-\[240px\]{
    height: 240px;
  }
  .sm\:h-\[400px\]{
    height: 400px;
  }
  .sm\:h-\[500px\]{
    height: 500px;
  }
  .sm\:h-full{
    height: 100%;
  }
  .sm\:w-\[100\%\]{
    width: 100%;
  }
  .sm\:w-\[19px\]{
    width: 19px;
  }
  .sm\:w-\[35\%\]{
    width: 35%;
  }
  .sm\:w-\[41\%\]{
    width: 41%;
  }
  .sm\:w-\[45\%\]{
    width: 45%;
  }
  .sm\:w-\[48\%\]{
    width: 48%;
  }
  .sm\:w-\[54\%\]{
    width: 54%;
  }
  .sm\:w-\[600px\]{
    width: 600px;
  }
  .sm\:w-\[65\%\]{
    width: 65%;
  }
  .sm\:w-\[70\%\]{
    width: 70%;
  }
  .sm\:w-\[75\%\]{
    width: 75%;
  }
  .sm\:w-\[76\%\]{
    width: 76%;
  }
  .sm\:w-\[82\%\]{
    width: 82%;
  }
  .sm\:w-\[86\%\]{
    width: 86%;
  }
  .sm\:w-\[87\%\]{
    width: 87%;
  }
  .sm\:w-full{
    width: 100%;
  }
  .sm\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:flex-row{
    flex-direction: row;
  }
  .sm\:gap-\[10px\]{
    gap: 10px;
  }
  .sm\:gap-\[30px\]{
    gap: 30px;
  }
  .sm\:gap-\[50px\]{
    gap: 50px;
  }
  .sm\:gap-x-\[15px\]{
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  .sm\:gap-x-\[30px\]{
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .sm\:gap-y-\[30px\]{
    row-gap: 30px;
  }
  .sm\:gap-y-\[35px\]{
    row-gap: 35px;
  }
  .sm\:gap-y-\[40px\]{
    row-gap: 40px;
  }
  .sm\:overflow-hidden{
    overflow: hidden;
  }
  .sm\:rounded-\[5px\]{
    border-radius: 5px;
  }
  .sm\:bg-\[url\(\'\.\/images\/circule-img\.png\'\)\]{
    background-image: url('./images/circule-img.png');
  }
  .sm\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .sm\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .sm\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .sm\:px-\[10px\]{
    padding-left: 10px;
    padding-right: 10px;
  }
  .sm\:px-\[16px\]{
    padding-left: 16px;
    padding-right: 16px;
  }
  .sm\:pb-0{
    padding-bottom: 0px;
  }
  .sm\:pb-\[100px\]{
    padding-bottom: 100px;
  }
  .sm\:pb-\[10px\]{
    padding-bottom: 10px;
  }
  .sm\:pb-\[11px\]{
    padding-bottom: 11px;
  }
  .sm\:pb-\[120px\]{
    padding-bottom: 120px;
  }
  .sm\:pb-\[160px\]{
    padding-bottom: 160px;
  }
  .sm\:pb-\[180px\]{
    padding-bottom: 180px;
  }
  .sm\:pb-\[190px\]{
    padding-bottom: 190px;
  }
  .sm\:pb-\[45px\]{
    padding-bottom: 45px;
  }
  .sm\:pb-\[57px\]{
    padding-bottom: 57px;
  }
  .sm\:pb-\[60px\]{
    padding-bottom: 60px;
  }
  .sm\:pb-\[85px\]{
    padding-bottom: 85px;
  }
  .sm\:pb-\[90px\]{
    padding-bottom: 90px;
  }
  .sm\:pl-0{
    padding-left: 0px;
  }
  .sm\:pl-\[22px\]{
    padding-left: 22px;
  }
  .sm\:pl-\[32px\]{
    padding-left: 32px;
  }
  .sm\:pl-\[34px\]{
    padding-left: 34px;
  }
  .sm\:pl-\[67px\]{
    padding-left: 67px;
  }
  .sm\:pr-0{
    padding-right: 0px;
  }
  .sm\:pr-\[25px\]{
    padding-right: 25px;
  }
  .sm\:pr-\[33px\]{
    padding-right: 33px;
  }
  .sm\:pr-\[35px\]{
    padding-right: 35px;
  }
  .sm\:pt-4{
    padding-top: 1rem;
  }
  .sm\:pt-\[100px\]{
    padding-top: 100px;
  }
  .sm\:pt-\[105px\]{
    padding-top: 105px;
  }
  .sm\:pt-\[10px\]{
    padding-top: 10px;
  }
  .sm\:pt-\[18px\]{
    padding-top: 18px;
  }
  .sm\:pt-\[222px\]{
    padding-top: 222px;
  }
  .sm\:pt-\[250px\]{
    padding-top: 250px;
  }
  .sm\:pt-\[266px\]{
    padding-top: 266px;
  }
  .sm\:pt-\[330px\]{
    padding-top: 330px;
  }
  .sm\:pt-\[380px\]{
    padding-top: 380px;
  }
  .sm\:pt-\[50px\]{
    padding-top: 50px;
  }
  .sm\:pt-\[60px\]{
    padding-top: 60px;
  }
  .sm\:pt-\[70px\]{
    padding-top: 70px;
  }
  .sm\:pt-\[80px\]{
    padding-top: 80px;
  }
  .sm\:pt-\[90px\]{
    padding-top: 90px;
  }
  .sm\:pt-\[94px\]{
    padding-top: 94px;
  }
  .sm\:text-center{
    text-align: center;
  }
  .sm\:text-2xl{
    font-size: 1.313rem;
  }
  .sm\:text-3xl{
    font-size: 1.375rem;
  }
  .sm\:text-\[100px\]{
    font-size: 100px;
  }
  .sm\:text-\[110px\]{
    font-size: 110px;
  }
  .sm\:text-\[11px\]{
    font-size: 11px;
  }
  .sm\:text-\[120px\]{
    font-size: 120px;
  }
  .sm\:text-\[130px\]{
    font-size: 130px;
  }
  .sm\:text-\[13px\]{
    font-size: 13px;
  }
  .sm\:text-\[18px\]{
    font-size: 18px;
  }
  .sm\:text-\[19px\]{
    font-size: 19px;
  }
  .sm\:text-\[20px\]{
    font-size: 20px;
  }
  .sm\:text-\[28px\]{
    font-size: 28px;
  }
  .sm\:text-\[32px\]{
    font-size: 32px;
  }
  .sm\:text-\[40px\]{
    font-size: 40px;
  }
  .sm\:text-\[75px\]{
    font-size: 75px;
  }
  .sm\:text-\[77px\]{
    font-size: 77px;
  }
  .sm\:text-\[90px\]{
    font-size: 90px;
  }
  .sm\:text-base{
    font-size: 0.875rem;
  }
  .sm\:text-sm{
    font-size: 0.813rem;
  }
  .sm\:text-xl{
    font-size: 1.25rem;
  }
  .sm\:leading-3{
    line-height: .75rem;
  }
  .sm\:leading-34{
    line-height: 34px;
  }
  .sm\:leading-\[110px\]{
    line-height: 110px;
  }
  .sm\:leading-\[115px\]{
    line-height: 115px;
  }
  .sm\:leading-\[120px\]{
    line-height: 120px;
  }
  .sm\:leading-\[140px\]{
    line-height: 140px;
  }
  .sm\:leading-\[18px\]{
    line-height: 18px;
  }
  .sm\:leading-\[20px\]{
    line-height: 20px;
  }
  .sm\:leading-\[23px\]{
    line-height: 23px;
  }
  .sm\:leading-\[25px\]{
    line-height: 25px;
  }
  .sm\:leading-\[27px\]{
    line-height: 27px;
  }
  .sm\:leading-\[30px\]{
    line-height: 30px;
  }
  .sm\:leading-\[33px\]{
    line-height: 33px;
  }
  .sm\:leading-\[50px\]{
    line-height: 50px;
  }
  .sm\:leading-\[90px\]{
    line-height: 90px;
  }
  .sm\:leading-\[95px\]{
    line-height: 95px;
  }
  .sm\:tracking-\[1px\]{
    letter-spacing: 1px;
  }
  .sm\:tracking-normal{
    letter-spacing: 0em;
  }
  .sm\:after\:bottom-0::after{
    content: var(--tw-content);
    bottom: 0px;
  }
  .sm\:after\:h-\[550px\]::after{
    content: var(--tw-content);
    height: 550px;
  }
  .sm\:after\:w-\[450px\]::after{
    content: var(--tw-content);
    width: 450px;
  }
  .sm\:after\:bg-\[url\(\'\.\/images\/layout-bgimg\.png\'\)\]::after{
    content: var(--tw-content);
    background-image: url('./images/layout-bgimg.png');
  }
  .sm\:after\:opacity-\[10\%\]::after{
    content: var(--tw-content);
    opacity: 10%;
  }
}
@media (min-width: 768px){
  .md\:col-span-1{
    grid-column: span 1 / span 1;
  }
  .md\:col-span-2{
    grid-column: span 2 / span 2;
  }
  .md\:mb-0{
    margin-bottom: 0px;
  }
  .md\:mb-\[-54px\]{
    margin-bottom: -54px;
  }
  .md\:mb-\[0px\]{
    margin-bottom: 0px;
  }
  .md\:mb-\[100px\]{
    margin-bottom: 100px;
  }
  .md\:mb-\[115px\]{
    margin-bottom: 115px;
  }
  .md\:mb-\[138px\]{
    margin-bottom: 138px;
  }
  .md\:mb-\[18px\]{
    margin-bottom: 18px;
  }
  .md\:mb-\[20px\]{
    margin-bottom: 20px;
  }
  .md\:mb-\[25px\]{
    margin-bottom: 25px;
  }
  .md\:mb-\[60px\]{
    margin-bottom: 60px;
  }
  .md\:mb-\[70px\]{
    margin-bottom: 70px;
  }
  .md\:mb-\[75px\]{
    margin-bottom: 75px;
  }
  .md\:mb-\[85px\]{
    margin-bottom: 85px;
  }
  .md\:ml-\[42px\]{
    margin-left: 42px;
  }
  .md\:mr-\[42px\]{
    margin-right: 42px;
  }
  .md\:mt-\[-130px\]{
    margin-top: -130px;
  }
  .md\:mt-\[-34px\]{
    margin-top: -34px;
  }
  .md\:mt-\[-80px\]{
    margin-top: -80px;
  }
  .md\:mt-\[-88px\]{
    margin-top: -88px;
  }
  .md\:block{
    display: block;
  }
  .md\:flex{
    display: flex;
  }
  .md\:hidden{
    display: none;
  }
  .md\:h-\[274px\]{
    height: 274px;
  }
  .md\:h-\[450px\]{
    height: 450px;
  }
  .md\:h-\[500px\]{
    height: 500px;
  }
  .md\:h-\[600px\]{
    height: 600px;
  }
  .md\:w-\[34\%\]{
    width: 34%;
  }
  .md\:w-\[40\%\]{
    width: 40%;
  }
  .md\:w-\[42\%\]{
    width: 42%;
  }
  .md\:w-\[43\%\]{
    width: 43%;
  }
  .md\:w-\[45\%\]{
    width: 45%;
  }
  .md\:w-\[46\%\]{
    width: 46%;
  }
  .md\:w-\[47\%\]{
    width: 47%;
  }
  .md\:w-\[48\%\]{
    width: 48%;
  }
  .md\:w-\[50\%\]{
    width: 50%;
  }
  .md\:w-\[51\%\]{
    width: 51%;
  }
  .md\:w-\[55\%\]{
    width: 55%;
  }
  .md\:w-\[62\%\]{
    width: 62%;
  }
  .md\:w-\[64\%\]{
    width: 64%;
  }
  .md\:w-\[66\%\]{
    width: 66%;
  }
  .md\:w-\[72\%\]{
    width: 72%;
  }
  .md\:w-\[730px\]{
    width: 730px;
  }
  .md\:w-\[74\%\]{
    width: 74%;
  }
  .md\:w-\[88\%\]{
    width: 88%;
  }
  .md\:w-full{
    width: 100%;
  }
  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .md\:flex-row{
    flex-direction: row;
  }
  .md\:justify-items-start{
    justify-items: start;
  }
  .md\:gap-0{
    gap: 0px;
  }
  .md\:gap-\[15px\]{
    gap: 15px;
  }
  .md\:gap-\[56px\]{
    gap: 56px;
  }
  .md\:gap-x-\[100px\]{
    -moz-column-gap: 100px;
         column-gap: 100px;
  }
  .md\:gap-x-\[33px\]{
    -moz-column-gap: 33px;
         column-gap: 33px;
  }
  .md\:gap-x-\[35px\]{
    -moz-column-gap: 35px;
         column-gap: 35px;
  }
  .md\:gap-x-\[50px\]{
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
  .md\:gap-y-0{
    row-gap: 0px;
  }
  .md\:gap-y-\[65px\]{
    row-gap: 65px;
  }
  .md\:gap-y-\[67px\]{
    row-gap: 67px;
  }
  .md\:gap-y-\[72px\]{
    row-gap: 72px;
  }
  .md\:border-l{
    border-left-width: 1px;
  }
  .md\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .md\:px-\[50px\]{
    padding-left: 50px;
    padding-right: 50px;
  }
  .md\:pb-\[100px\]{
    padding-bottom: 100px;
  }
  .md\:pb-\[115px\]{
    padding-bottom: 115px;
  }
  .md\:pb-\[125px\]{
    padding-bottom: 125px;
  }
  .md\:pb-\[200px\]{
    padding-bottom: 200px;
  }
  .md\:pb-\[58px\]{
    padding-bottom: 58px;
  }
  .md\:pl-\[20px\]{
    padding-left: 20px;
  }
  .md\:pr-\[42px\]{
    padding-right: 42px;
  }
  .md\:pr-\[69px\]{
    padding-right: 69px;
  }
  .md\:pr-\[73px\]{
    padding-right: 73px;
  }
  .md\:pt-\[100px\]{
    padding-top: 100px;
  }
  .md\:pt-\[120px\]{
    padding-top: 120px;
  }
  .md\:pt-\[130px\]{
    padding-top: 130px;
  }
  .md\:pt-\[135px\]{
    padding-top: 135px;
  }
  .md\:pt-\[175px\]{
    padding-top: 175px;
  }
  .md\:pt-\[190px\]{
    padding-top: 190px;
  }
  .md\:pt-\[230px\]{
    padding-top: 230px;
  }
  .md\:pt-\[250px\]{
    padding-top: 250px;
  }
  .md\:pt-\[26px\]{
    padding-top: 26px;
  }
  .md\:pt-\[282px\]{
    padding-top: 282px;
  }
  .md\:pt-\[356px\]{
    padding-top: 356px;
  }
  .md\:pt-\[80px\]{
    padding-top: 80px;
  }
  .md\:pt-\[88px\]{
    padding-top: 88px;
  }
  .md\:pt-\[90px\]{
    padding-top: 90px;
  }
  .md\:text-left{
    text-align: left;
  }
  .md\:text-2xl{
    font-size: 1.313rem;
  }
  .md\:text-3xl{
    font-size: 1.375rem;
  }
  .md\:text-\[100px\]{
    font-size: 100px;
  }
  .md\:text-\[118px\]{
    font-size: 118px;
  }
  .md\:text-\[120px\]{
    font-size: 120px;
  }
  .md\:text-\[140px\]{
    font-size: 140px;
  }
  .md\:text-\[146px\]{
    font-size: 146px;
  }
  .md\:text-\[18px\]{
    font-size: 18px;
  }
  .md\:text-\[19px\]{
    font-size: 19px;
  }
  .md\:text-\[20px\]{
    font-size: 20px;
  }
  .md\:text-\[38px\]{
    font-size: 38px;
  }
  .md\:text-\[50px\]{
    font-size: 50px;
  }
  .md\:text-\[70px\]{
    font-size: 70px;
  }
  .md\:text-\[83px\]{
    font-size: 83px;
  }
  .md\:text-xl{
    font-size: 1.25rem;
  }
  .md\:leading-\[110px\]{
    line-height: 110px;
  }
  .md\:leading-\[130px\]{
    line-height: 130px;
  }
  .md\:leading-\[150px\]{
    line-height: 150px;
  }
  .md\:leading-\[186px\]{
    line-height: 186px;
  }
  .md\:leading-\[200px\]{
    line-height: 200px;
  }
  .md\:leading-\[20px\]{
    line-height: 20px;
  }
  .md\:leading-\[25px\]{
    line-height: 25px;
  }
  .md\:leading-\[65px\]{
    line-height: 65px;
  }
  .md\:leading-\[90px\]{
    line-height: 90px;
  }
}
@media (min-width: 1024px){
  .lg\:col-span-1{
    grid-column: span 1 / span 1;
  }
  .lg\:mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }
  .lg\:mb-\[-107px\]{
    margin-bottom: -107px;
  }
  .lg\:mb-\[-30px\]{
    margin-bottom: -30px;
  }
  .lg\:mb-\[-53px\]{
    margin-bottom: -53px;
  }
  .lg\:mb-\[-66px\]{
    margin-bottom: -66px;
  }
  .lg\:mb-\[130px\]{
    margin-bottom: 130px;
  }
  .lg\:mb-\[132px\]{
    margin-bottom: 132px;
  }
  .lg\:mb-\[18px\]{
    margin-bottom: 18px;
  }
  .lg\:mb-\[200px\]{
    margin-bottom: 200px;
  }
  .lg\:mb-\[20px\]{
    margin-bottom: 20px;
  }
  .lg\:mb-\[22px\]{
    margin-bottom: 22px;
  }
  .lg\:mb-\[30px\]{
    margin-bottom: 30px;
  }
  .lg\:mb-\[36px\]{
    margin-bottom: 36px;
  }
  .lg\:mb-\[40px\]{
    margin-bottom: 40px;
  }
  .lg\:mb-\[47px\]{
    margin-bottom: 47px;
  }
  .lg\:mb-\[70px\]{
    margin-bottom: 70px;
  }
  .lg\:mb-\[74px\]{
    margin-bottom: 74px;
  }
  .lg\:mr-\[50px\]{
    margin-right: 50px;
  }
  .lg\:mt-\[-123px\]{
    margin-top: -123px;
  }
  .lg\:mt-\[-328px\]{
    margin-top: -328px;
  }
  .lg\:mt-\[-34px\]{
    margin-top: -34px;
  }
  .lg\:mt-\[-66px\]{
    margin-top: -66px;
  }
  .lg\:mt-\[64px\]{
    margin-top: 64px;
  }
  .lg\:inline-block{
    display: inline-block;
  }
  .lg\:flex{
    display: flex;
  }
  .lg\:h-\[390px\]{
    height: 390px;
  }
  .lg\:h-\[550px\]{
    height: 550px;
  }
  .lg\:h-\[580px\]{
    height: 580px;
  }
  .lg\:h-\[700px\]{
    height: 700px;
  }
  .lg\:w-\[160px\]{
    width: 160px;
  }
  .lg\:w-\[26\%\]{
    width: 26%;
  }
  .lg\:w-\[30\%\]{
    width: 30%;
  }
  .lg\:w-\[34\%\]{
    width: 34%;
  }
  .lg\:w-\[35\%\]{
    width: 35%;
  }
  .lg\:w-\[36\%\]{
    width: 36%;
  }
  .lg\:w-\[38\%\]{
    width: 38%;
  }
  .lg\:w-\[39\%\]{
    width: 39%;
  }
  .lg\:w-\[42\%\]{
    width: 42%;
  }
  .lg\:w-\[42\.5\%\]{
    width: 42.5%;
  }
  .lg\:w-\[43\.8\%\]{
    width: 43.8%;
  }
  .lg\:w-\[46\%\]{
    width: 46%;
  }
  .lg\:w-\[47\%\]{
    width: 47%;
  }
  .lg\:w-\[50\%\]{
    width: 50%;
  }
  .lg\:w-\[51\%\]{
    width: 51%;
  }
  .lg\:w-\[52\%\]{
    width: 52%;
  }
  .lg\:w-\[53\%\]{
    width: 53%;
  }
  .lg\:w-\[59\%\]{
    width: 59%;
  }
  .lg\:w-\[60\%\]{
    width: 60%;
  }
  .lg\:w-\[63\%\]{
    width: 63%;
  }
  .lg\:w-\[64\%\]{
    width: 64%;
  }
  .lg\:w-\[70\%\]{
    width: 70%;
  }
  .lg\:w-\[73\.5\%\]{
    width: 73.5%;
  }
  .lg\:w-\[75\%\]{
    width: 75%;
  }
  .lg\:w-\[88\%\]{
    width: 88%;
  }
  .lg\:w-\[950px\]{
    width: 950px;
  }
  .lg\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:gap-\[30px\]{
    gap: 30px;
  }
  .lg\:gap-\[45px\]{
    gap: 45px;
  }
  .lg\:gap-x-\[100px\]{
    -moz-column-gap: 100px;
         column-gap: 100px;
  }
  .lg\:gap-x-\[150px\]{
    -moz-column-gap: 150px;
         column-gap: 150px;
  }
  .lg\:gap-x-\[30px\]{
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .lg\:gap-x-\[35px\]{
    -moz-column-gap: 35px;
         column-gap: 35px;
  }
  .lg\:px-\[40px\]{
    padding-left: 40px;
    padding-right: 40px;
  }
  .lg\:px-\[42px\]{
    padding-left: 42px;
    padding-right: 42px;
  }
  .lg\:px-\[50px\]{
    padding-left: 50px;
    padding-right: 50px;
  }
  .lg\:px-\[60px\]{
    padding-left: 60px;
    padding-right: 60px;
  }
  .lg\:pb-\[114px\]{
    padding-bottom: 114px;
  }
  .lg\:pb-\[115px\]{
    padding-bottom: 115px;
  }
  .lg\:pb-\[135px\]{
    padding-bottom: 135px;
  }
  .lg\:pb-\[147px\]{
    padding-bottom: 147px;
  }
  .lg\:pb-\[157px\]{
    padding-bottom: 157px;
  }
  .lg\:pb-\[206px\]{
    padding-bottom: 206px;
  }
  .lg\:pb-\[330px\]{
    padding-bottom: 330px;
  }
  .lg\:pb-\[429px\]{
    padding-bottom: 429px;
  }
  .lg\:pb-\[44px\]{
    padding-bottom: 44px;
  }
  .lg\:pb-\[57px\]{
    padding-bottom: 57px;
  }
  .lg\:pb-\[91px\]{
    padding-bottom: 91px;
  }
  .lg\:pl-\[50px\]{
    padding-left: 50px;
  }
  .lg\:pr-\[51px\]{
    padding-right: 51px;
  }
  .lg\:pr-\[67px\]{
    padding-right: 67px;
  }
  .lg\:pr-\[80px\]{
    padding-right: 80px;
  }
  .lg\:pt-\[100px\]{
    padding-top: 100px;
  }
  .lg\:pt-\[140px\]{
    padding-top: 140px;
  }
  .lg\:pt-\[144px\]{
    padding-top: 144px;
  }
  .lg\:pt-\[150px\]{
    padding-top: 150px;
  }
  .lg\:pt-\[157px\]{
    padding-top: 157px;
  }
  .lg\:pt-\[160px\]{
    padding-top: 160px;
  }
  .lg\:pt-\[175px\]{
    padding-top: 175px;
  }
  .lg\:pt-\[280px\]{
    padding-top: 280px;
  }
  .lg\:pt-\[300px\]{
    padding-top: 300px;
  }
  .lg\:pt-\[450px\]{
    padding-top: 450px;
  }
  .lg\:pt-\[70px\]{
    padding-top: 70px;
  }
  .lg\:pt-\[80px\]{
    padding-top: 80px;
  }
  .lg\:pt-\[90px\]{
    padding-top: 90px;
  }
  .lg\:text-2xl{
    font-size: 1.313rem;
  }
  .lg\:text-3xl{
    font-size: 1.375rem;
  }
  .lg\:text-4xl{
    font-size: 3rem;
  }
  .lg\:text-7xl{
    font-size: 11.625rem;
  }
  .lg\:text-\[100px\]{
    font-size: 100px;
  }
  .lg\:text-\[110px\]{
    font-size: 110px;
  }
  .lg\:text-\[115px\]{
    font-size: 115px;
  }
  .lg\:text-\[130px\]{
    font-size: 130px;
  }
  .lg\:text-\[134px\]{
    font-size: 134px;
  }
  .lg\:text-\[155px\]{
    font-size: 155px;
  }
  .lg\:text-\[165px\]{
    font-size: 165px;
  }
  .lg\:text-\[38px\]{
    font-size: 38px;
  }
  .lg\:text-\[42px\]{
    font-size: 42px;
  }
  .lg\:text-\[68px\]{
    font-size: 68px;
  }
  .lg\:leading-34{
    line-height: 34px;
  }
  .lg\:leading-\[102px\]{
    line-height: 102px;
  }
  .lg\:leading-\[105px\]{
    line-height: 105px;
  }
  .lg\:leading-\[115px\]{
    line-height: 115px;
  }
  .lg\:leading-\[135px\]{
    line-height: 135px;
  }
  .lg\:leading-\[170px\]{
    line-height: 170px;
  }
  .lg\:leading-\[186px\]{
    line-height: 186px;
  }
  .lg\:leading-\[200px\]{
    line-height: 200px;
  }
  .lg\:leading-\[50px\]{
    line-height: 50px;
  }
  .lg\:leading-\[72px\]{
    line-height: 72px;
  }
  .lg\:after\:h-\[750px\]::after{
    content: var(--tw-content);
    height: 750px;
  }
  .lg\:after\:w-\[710px\]::after{
    content: var(--tw-content);
    width: 710px;
  }
}
@media (min-width: 1280px){
  .xl\:mb-0{
    margin-bottom: 0px;
  }
  .xl\:mb-\[-58px\]{
    margin-bottom: -58px;
  }
  .xl\:mb-\[20px\]{
    margin-bottom: 20px;
  }
  .xl\:mb-\[253px\]{
    margin-bottom: 253px;
  }
  .xl\:mb-\[29px\]{
    margin-bottom: 29px;
  }
  .xl\:mb-\[33px\]{
    margin-bottom: 33px;
  }
  .xl\:mb-\[50px\]{
    margin-bottom: 50px;
  }
  .xl\:mb-\[80px\]{
    margin-bottom: 80px;
  }
  .xl\:mb-\[97px\]{
    margin-bottom: 97px;
  }
  .xl\:ml-\[-16px\]{
    margin-left: -16px;
  }
  .xl\:ml-\[-25px\]{
    margin-left: -25px;
  }
  .xl\:mr-\[101px\]{
    margin-right: 101px;
  }
  .xl\:mr-\[82px\]{
    margin-right: 82px;
  }
  .xl\:mt-\[-48px\]{
    margin-top: -48px;
  }
  .xl\:mt-\[-57px\]{
    margin-top: -57px;
  }
  .xl\:mt-\[5px\]{
    margin-top: 5px;
  }
  .xl\:h-\[390px\]{
    height: 390px;
  }
  .xl\:h-\[588px\]{
    height: 588px;
  }
  .xl\:h-\[635px\]{
    height: 635px;
  }
  .xl\:h-\[660px\]{
    height: 660px;
  }
  .xl\:h-\[741px\]{
    height: 741px;
  }
  .xl\:w-\[21\%\]{
    width: 21%;
  }
  .xl\:w-\[23\%\]{
    width: 23%;
  }
  .xl\:w-\[27\%\]{
    width: 27%;
  }
  .xl\:w-\[31\%\]{
    width: 31%;
  }
  .xl\:w-\[35\%\]{
    width: 35%;
  }
  .xl\:w-\[35\.5\%\]{
    width: 35.5%;
  }
  .xl\:w-\[37\%\]{
    width: 37%;
  }
  .xl\:w-\[39\%\]{
    width: 39%;
  }
  .xl\:w-\[40\%\]{
    width: 40%;
  }
  .xl\:w-\[41\%\]{
    width: 41%;
  }
  .xl\:w-\[42\%\]{
    width: 42%;
  }
  .xl\:w-\[45\%\]{
    width: 45%;
  }
  .xl\:w-\[47\%\]{
    width: 47%;
  }
  .xl\:w-\[51\%\]{
    width: 51%;
  }
  .xl\:w-\[59\%\]{
    width: 59%;
  }
  .xl\:w-\[60\%\]{
    width: 60%;
  }
  .xl\:w-\[61\%\]{
    width: 61%;
  }
  .xl\:w-\[65\%\]{
    width: 65%;
  }
  .xl\:w-\[68\%\]{
    width: 68%;
  }
  .xl\:w-\[69\%\]{
    width: 69%;
  }
  .xl\:w-\[80\%\]{
    width: 80%;
  }
  .xl\:gap-\[40px\]{
    gap: 40px;
  }
  .xl\:gap-\[56px\]{
    gap: 56px;
  }
  .xl\:gap-x-\[200px\]{
    -moz-column-gap: 200px;
         column-gap: 200px;
  }
  .xl\:gap-x-\[56px\]{
    -moz-column-gap: 56px;
         column-gap: 56px;
  }
  .xl\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .xl\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .xl\:pb-\[140px\]{
    padding-bottom: 140px;
  }
  .xl\:pb-\[387px\]{
    padding-bottom: 387px;
  }
  .xl\:pr-\[3px\]{
    padding-right: 3px;
  }
  .xl\:pt-\[117px\]{
    padding-top: 117px;
  }
  .xl\:pt-\[125px\]{
    padding-top: 125px;
  }
  .xl\:pt-\[135px\]{
    padding-top: 135px;
  }
  .xl\:pt-\[144px\]{
    padding-top: 144px;
  }
  .xl\:pt-\[150px\]{
    padding-top: 150px;
  }
  .xl\:pt-\[173px\]{
    padding-top: 173px;
  }
  .xl\:pt-\[190px\]{
    padding-top: 190px;
  }
  .xl\:pt-\[332px\]{
    padding-top: 332px;
  }
  .xl\:pt-\[340px\]{
    padding-top: 340px;
  }
  .xl\:pt-\[450px\]{
    padding-top: 450px;
  }
  .xl\:pt-\[93px\]{
    padding-top: 93px;
  }
  .xl\:text-2xl{
    font-size: 1.313rem;
  }
  .xl\:text-4xl{
    font-size: 3rem;
  }
  .xl\:text-5xl{
    font-size: 7.75rem;
  }
  .xl\:text-6xl{
    font-size: 9.375rem;
  }
  .xl\:text-\[130px\]{
    font-size: 130px;
  }
  .xl\:text-\[135px\]{
    font-size: 135px;
  }
  .xl\:text-\[151px\]{
    font-size: 151px;
  }
  .xl\:text-\[157px\]{
    font-size: 157px;
  }
  .xl\:text-\[48px\]{
    font-size: 48px;
  }
  .xl\:leading-\[135px\]{
    line-height: 135px;
  }
  .xl\:leading-\[140px\]{
    line-height: 140px;
  }
  .xl\:leading-\[150px\]{
    line-height: 150px;
  }
  .xl\:leading-\[151px\]{
    line-height: 151px;
  }
}
@media (min-width: 1536px){
  .\32xl\:mb-\[112px\]{
    margin-bottom: 112px;
  }
  .\32xl\:mb-\[230px\]{
    margin-bottom: 230px;
  }
  .\32xl\:mb-\[57px\]{
    margin-bottom: 57px;
  }
  .\32xl\:mb-\[63px\]{
    margin-bottom: 63px;
  }
  .\32xl\:mb-\[97px\]{
    margin-bottom: 97px;
  }
  .\32xl\:ml-\[-90px\]{
    margin-left: -90px;
  }
  .\32xl\:h-\[390px\]{
    height: 390px;
  }
  .\32xl\:h-\[628px\]{
    height: 628px;
  }
  .\32xl\:w-\[1050px\]{
    width: 1050px;
  }
  .\32xl\:w-\[21\%\]{
    width: 21%;
  }
  .\32xl\:w-\[23\%\]{
    width: 23%;
  }
  .\32xl\:w-\[31\%\]{
    width: 31%;
  }
  .\32xl\:w-\[32\%\]{
    width: 32%;
  }
  .\32xl\:w-\[34\%\]{
    width: 34%;
  }
  .\32xl\:w-\[35\%\]{
    width: 35%;
  }
  .\32xl\:w-\[36\%\]{
    width: 36%;
  }
  .\32xl\:w-\[38\%\]{
    width: 38%;
  }
  .\32xl\:w-\[40\%\]{
    width: 40%;
  }
  .\32xl\:w-\[43\%\]{
    width: 43%;
  }
  .\32xl\:w-\[50\%\]{
    width: 50%;
  }
  .\32xl\:w-\[60\%\]{
    width: 60%;
  }
  .\32xl\:w-\[61\%\]{
    width: 61%;
  }
  .\32xl\:p-0{
    padding: 0px;
  }
  .\32xl\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .\32xl\:pt-\[117px\]{
    padding-top: 117px;
  }
  .\32xl\:pt-\[175px\]{
    padding-top: 175px;
  }
  .\32xl\:pt-\[300px\]{
    padding-top: 300px;
  }
  .\32xl\:pt-\[346px\]{
    padding-top: 346px;
  }
  .\32xl\:pt-\[389px\]{
    padding-top: 389px;
  }
  .\32xl\:text-2xl{
    font-size: 1.313rem;
  }
  .\32xl\:text-4xl{
    font-size: 3rem;
  }
  .\32xl\:text-7xl{
    font-size: 11.625rem;
  }
}
